/* ============================================================
   Rodinná Truhlica — bootmaker.digital
   Paleta: dielňa s kožou, mosadz, pergamen
   ============================================================ */

:root {
  --espresso: #1E140D;
  --leather: #33200F;
  --saddle: #6B4226;
  --cognac: #8C5A32;
  --brass: #C89B4A;
  --brass-soft: #E7C176;
  --parchment: #EFE3CE;
  --cream: #FAF3E7;
  --ink: #2B1D14;
  --ink-soft: #6A5342;
  --line: rgba(107, 66, 38, 0.24);
  --shadow-deep: 0 28px 60px -28px rgba(20, 12, 6, 0.65);
  --shadow-soft: 0 14px 34px -20px rgba(20, 12, 6, 0.5);
  --radius: 14px;
  --wrap: 1180px;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: "Karla", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--saddle); text-underline-offset: 3px; }
a:hover { color: var(--cognac); }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .6rem;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p { margin: 0 0 1rem; }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cognac);
  margin: 0 0 .9rem;
}
.on-dark .eyebrow, .hero .eyebrow { color: var(--brass); }

.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 60ch; }
.on-dark .lead { color: rgba(239, 227, 206, .8); }

.section { padding: clamp(3.6rem, 7vw, 6.2rem) 0; }
.section-head { max-width: 62ch; margin-bottom: 2.6rem; }

/* ---------- Textúry ---------- */
.leather-bg {
  background-color: var(--leather);
  background-image:
    radial-gradient(120% 90% at 15% 0%, rgba(140, 90, 50, .5), transparent 60%),
    radial-gradient(90% 80% at 90% 100%, rgba(40, 24, 14, .85), transparent 65%);
  color: var(--parchment);
  position: relative;
}
.leather-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .16;

  pointer-events: none;
}
.leather-bg > * { position: relative; z-index: 1; }

/* ---------- Tlačidlá ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: "Karla", sans-serif;
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: .01em;
  padding: .82rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--brass-soft), var(--brass));
  color: #2A1A0E;
  box-shadow: 0 10px 24px -14px rgba(200, 155, 74, .95);
}
.btn-primary:hover { transform: translateY(-2px); color: #2A1A0E; }
.btn-ghost {
  background: transparent;
  border-color: rgba(200, 155, 74, .55);
  color: var(--parchment);
}
.btn-ghost:hover { background: rgba(200, 155, 74, .14); color: var(--brass-soft); }
.btn-outline {
  background: transparent;
  border-color: var(--saddle);
  color: var(--saddle);
}
.btn-outline:hover { background: var(--saddle); color: var(--cream); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Hlavička ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(30, 20, 13, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 155, 74, .28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--parchment);
}
.brand img { width: 38px; height: 38px; }
.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.05;
  display: block;
}
.brand-sub {
  font-family: "IBM Plex Mono", monospace;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
}
.nav { display: flex; align-items: center; gap: 1.45rem; }
.nav a {
  color: rgba(239, 227, 206, .82);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}
.nav a:hover { color: var(--brass-soft); }
.header-cta { display: flex; align-items: center; gap: .9rem; }
.header-phone {
  font-family: "IBM Plex Mono", monospace;
  font-size: .88rem;
  color: var(--brass-soft);
  text-decoration: none;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(200, 155, 74, .5);
  border-radius: 10px;
  padding: .5rem .7rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brass-soft);
  margin: 4px 0;
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3.2rem, 7vw, 5.6rem) 0 clamp(3.6rem, 8vw, 6rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { color: var(--cream); }
.hero h1 em {
  font-style: italic;
  color: var(--brass-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-note {
  font-family: "IBM Plex Mono", monospace;
  font-size: .8rem;
  color: rgba(239, 227, 206, .62);
  margin-top: 1.2rem;
}

.hero-visual { position: relative; }
.hero-photo {
  border-radius: 18px;
  border: 1px solid rgba(200, 155, 74, .35);
  box-shadow: var(--shadow-deep);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Signature: prešívaná účtovná karta */
.ledger-card {
  background: linear-gradient(180deg, #FBF5E9, #EFE3CE);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem 1.1rem;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.ledger-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px dashed rgba(107, 66, 38, .45);
  border-radius: 9px;
  pointer-events: none;
}
.hero-ledger {
  position: absolute;
  right: -12px;
  bottom: -34px;
  width: min(300px, 86%);
}
.ledger-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: .7rem;
}
.ledger-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.ledger-row:last-child { border-bottom: 0; }
.ledger-row span:last-child { font-family: "IBM Plex Mono", monospace; }
.ledger-row.total {
  margin-top: .35rem;
  padding-top: .6rem;
  border-top: 2px solid var(--saddle);
  font-weight: 700;
}
.ledger-row.plus span:last-child { color: #4A6B34; }
.ledger-row.minus span:last-child { color: #8C3A22; }

/* ---------- Dôveryhodnostný pás ---------- */
.trust-strip {
  border-top: 1px solid rgba(200, 155, 74, .25);
  border-bottom: 1px solid var(--line);
  background: var(--parchment);
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 1.5rem 0;
}
.trust-list li {
  font-family: "IBM Plex Mono", monospace;
  font-size: .82rem;
  color: var(--saddle);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  line-height: 1.45;
}
.trust-list li b { color: var(--brass); font-size: 1rem; }

/* ---------- Karty výhod ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -26px rgba(20, 12, 6, .55); }
.card svg { color: var(--saddle); margin-bottom: .9rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ---------- Postup ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  counter-reset: krok;
}
.step {
  position: relative;
  padding: 1.7rem 1.4rem 1.4rem;
  background: var(--parchment);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: krok;
  content: "Krok " counter(krok);
  position: absolute;
  top: -.75rem;
  left: 1.3rem;
  background: var(--leather);
  color: var(--brass-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
}
.step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ---------- Rozdelené sekcie ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  aspect-ratio: 5 / 4;
}
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .7rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(200, 155, 74, .22);
}

/* ---------- Kalkulačka ---------- */
.calc {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
.calc-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--ink);
}
.field .hint { font-size: .78rem; color: var(--ink-soft); font-weight: 400; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%;
  padding: .72rem .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brass); outline: none; box-shadow: 0 0 0 3px rgba(200, 155, 74, .25); }

.calc-result {
  background: var(--leather);
  color: var(--parchment);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-deep);
}
.calc-result .amount {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--brass-soft);
  line-height: 1;
  margin: .4rem 0 .2rem;
}
.calc-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(239, 227, 206, .18);
  overflow: hidden;
  margin: 1.1rem 0 .5rem;
}
.calc-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brass), var(--brass-soft));
  transition: width .35s ease;
}
.calc-note { font-size: .82rem; color: rgba(239, 227, 206, .68); margin: 1rem 0 0; }
.calc-breakdown { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(239, 227, 206, .22);
  padding: .45rem 0;
  font-size: .92rem;
}
.calc-breakdown span:last-child { font-family: "IBM Plex Mono", monospace; color: var(--brass-soft); }

/* ---------- Cenník ---------- */
.billing-switch {
  display: inline-flex;
  gap: .3rem;
  padding: .3rem;
  border-radius: 999px;
  background: var(--parchment);
  border: 1px solid var(--line);
  margin-bottom: 2.2rem;
}
.billing-switch button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
}
.billing-switch button[aria-pressed="true"] {
  background: var(--leather);
  color: var(--brass-soft);
}
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.plan.featured {
  background: var(--leather);
  color: var(--parchment);
  border-color: rgba(200, 155, 74, .5);
  box-shadow: var(--shadow-deep);
}
.plan.featured h3 { color: var(--cream); }
.plan-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: .5rem;
  display: block;
}
.plan.featured .plan-tag { color: var(--brass-soft); }
.price {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  line-height: 1;
  margin: .6rem 0 .2rem;
}
.plan.featured .price { color: var(--brass-soft); }
.price small {
  font-family: "Karla", sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.plan.featured .price small { color: rgba(239, 227, 206, .75); }
.price-note { font-size: .82rem; color: var(--ink-soft); margin: 0 0 1rem; }
.plan.featured .price-note { color: rgba(239, 227, 206, .7); }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.6rem; font-size: .95rem; }
.plan li {
  padding: .45rem 0 .45rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.plan.featured li { border-bottom-color: rgba(239, 227, 206, .16); }
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .95rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brass);
}
.plan .btn { margin-top: auto; }
.plan.featured .btn-outline { border-color: var(--brass); color: var(--brass-soft); }
.plan.featured .btn-outline:hover { background: var(--brass); color: #2A1A0E; }

.price-terms {
  margin-top: 2.2rem;
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.price-terms h3 { font-size: 1.1rem; color: var(--ink); }
.price-terms ul { margin: .6rem 0 0; padding-left: 1.1rem; }
.price-terms li { margin-bottom: .35rem; }

/* ---------- Recenzie ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 1.5rem; }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.quote p { font-size: 1rem; color: var(--ink); }
.quote-person { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.quote-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brass);
}
.quote-person b { display: block; font-size: .93rem; }
.quote-person span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: .3rem 0;
}
.faq summary {
  cursor: pointer;
  padding: 1.05rem 2.2rem 1.05rem 0;
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  font-weight: 600;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: .4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  font-size: 1.5rem;
  font-family: "Karla", sans-serif;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); padding-right: 2rem; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: start;
}
.contact-card {
  background: var(--parchment);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.8rem;
}
.contact-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.contact-list li { display: flex; gap: .9rem; margin-bottom: 1.1rem; align-items: flex-start; }
.contact-list b { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cognac); font-family: "IBM Plex Mono", monospace; }
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--cognac); text-decoration: underline; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .87rem;
  color: var(--ink-soft);
  margin: 1.2rem 0;
}
.consent input { margin-top: .28rem; width: 18px; height: 18px; accent-color: var(--saddle); flex: none; }
.form-status {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-radius: 10px;
  font-size: .92rem;
  display: none;
}
.form-status.ok { display: block; background: #E5EEDC; color: #3C5527; border: 1px solid #B7CDA2; }
.form-status.err { display: block; background: #F6E1DA; color: #7C3620; border: 1px solid #DDB2A1; }

/* ---------- Päta ---------- */
.site-footer { padding: 3.4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.4rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(200, 155, 74, .22);
}
.site-footer h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .9rem;
}
.site-footer p, .site-footer li { color: rgba(239, 227, 206, .74); font-size: .92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: rgba(239, 227, 206, .8); text-decoration: none; }
.site-footer a:hover { color: var(--brass-soft); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  font-size: .84rem;
  color: rgba(239, 227, 206, .6);
}

/* ---------- Cookie lišta ---------- */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(100% - 2rem, 900px);
  background: var(--leather);
  color: var(--parchment);
  border: 1px solid rgba(200, 155, 74, .45);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-deep);
  display: none;
  gap: 1.2rem;
  align-items: center;
  z-index: 90;
}
.cookie-bar.show { display: flex; flex-wrap: wrap; }
.cookie-bar p { margin: 0; font-size: .9rem; flex: 1 1 340px; color: rgba(239, 227, 206, .85); }
.cookie-bar a { color: var(--brass-soft); }
.cookie-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: .62rem 1.1rem; font-size: .88rem; }

/* ---------- Právne stránky ---------- */
.legal-hero { padding: clamp(2.8rem, 6vw, 4.4rem) 0 clamp(2.4rem, 5vw, 3.4rem); }
.legal-body { padding: clamp(2.6rem, 5vw, 4rem) 0 4rem; }
.legal-body .wrap { max-width: 820px; }
.legal-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-top: 2.4rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body ul { padding-left: 1.2rem; }
.legal-body li { margin-bottom: .5rem; color: var(--ink-soft); }
.legal-body p { color: var(--ink-soft); }
.legal-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: .8rem;
  color: var(--cognac);
}
.legal-box {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin: 2rem 0;
}
.legal-box p:last-child { margin-bottom: 0; }

/* ---------- Adaptív ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .calc, .contact-grid { grid-template-columns: 1fr; }
  .hero-ledger { position: static; width: 100%; margin-top: 1.2rem; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--leather);
    border-bottom: 1px solid rgba(200, 155, 74, .3);
    padding: .6rem 1.25rem 1.2rem;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .7rem 0; width: 100%; border-bottom: 1px solid rgba(200, 155, 74, .16); }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .site-header { position: relative; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .trust-list, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .header-cta .btn { display: none; }
  .cookie-bar { bottom: 10px; padding: 1rem; }
  .cookie-actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
