/* ==========================================================================
   Codru Lemne — presentation site
   Sections: tokens, base, layout, header, hero, cards, forms, footer, utils
   ========================================================================== */

:root {
  --bark: #2a1d15;
  --bark-soft: #3c2b20;
  --timber: #8b5e34;
  --amber: #e0972f;
  --amber-dark: #c47f1d;
  --moss: #4f6142;
  --cream: #faf5ec;
  --cream-dark: #f1e7d6;
  --paper: #ffffff;
  --ink: #241a13;
  --ink-soft: #6b5a4c;
  --line: #e2d5c2;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(42, 29, 21, .06), 0 4px 12px rgba(42, 29, 21, .05);
  --shadow-md: 0 10px 30px rgba(42, 29, 21, .10);
  --shadow-lg: 0 24px 60px rgba(42, 29, 21, .18);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--bark);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1rem; letter-spacing: 0; }

p { margin: 0 0 1rem; }

a { color: var(--timber); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber-dark); }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--amber); color: #fff; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 200;
  background: var(--bark); color: #fff; padding: 12px 18px;
  border-radius: 0 0 10px 10px; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-alt { background: var(--cream-dark); }

.section-dark {
  background: var(--bark);
  color: #e9dccb;
  background-image:
    radial-gradient(900px 400px at 10% -10%, rgba(224, 151, 47, .16), transparent 60%),
    radial-gradient(700px 400px at 90% 110%, rgba(79, 97, 66, .30), transparent 60%);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--amber); }
.section-dark .section-sub { color: #c9b8a4; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

.section-note {
  margin-top: 36px;
  padding: 18px 22px;
  border-left: 3px solid var(--amber);
  background: rgba(224, 151, 47, .08);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-soft);
}

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--timber);
  margin: 0 0 .8rem;
}

.grid { display: grid; gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: 600 .98rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber);
  color: #26170a;
  box-shadow: 0 8px 20px rgba(224, 151, 47, .35);
}
.btn-primary:hover {
  background: var(--amber-dark);
  color: #1d1206;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(224, 151, 47, .42);
}

.btn-ghost {
  border-color: currentColor;
  color: var(--bark);
  background: transparent;
}
.btn-ghost:hover { background: var(--bark); color: var(--cream); border-color: var(--bark); }

.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 236, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px rgba(42, 29, 21, .07);
}

.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 22px;
}

.brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--bark); flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.34rem;
  letter-spacing: -.01em;
}
.brand-text span {
  font-size: .68rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-soft);
}

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 4px; align-items: center; }
.nav a {
  display: block;
  padding: 9px 12px;
  font-size: .93rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  border-radius: 9px;
  transition: background .18s, color .18s;
}
.nav a:hover { background: rgba(139, 94, 52, .1); color: var(--bark); }
.nav a.is-current { color: var(--amber-dark); background: rgba(224, 151, 47, .13); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .93rem;
  color: var(--bark); text-decoration: none;
  white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; fill: var(--amber-dark); }
.header-phone:hover { color: var(--amber-dark); }

.lang-switch {
  display: inline-flex;
  background: rgba(139, 94, 52, .12);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: 0; background: transparent;
  font: 600 .78rem/1 var(--font-body);
  letter-spacing: .05em;
  color: var(--ink-soft);
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.lang-switch button.is-active {
  background: var(--bark); color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
}
.bars { display: grid; gap: 5px; justify-items: center; }
.bars i {
  display: block; width: 20px; height: 2px;
  background: var(--bark); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] .bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bark);
  color: #f0e5d6;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(26, 17, 11, .93) 0%, rgba(31, 21, 14, .82) 45%, rgba(42, 29, 21, .45) 100%);
}

.hero-inner {
  padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 8vw, 104px);
  max-width: 820px;
}
.hero .eyebrow { color: var(--amber); }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .lead {
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  color: #ddcdb8;
  max-width: 620px;
  margin-bottom: 2.1rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(44px, 6vw, 68px); }
.hero .btn-ghost { color: #f0e5d6; }
.hero .btn-ghost:hover { background: #f0e5d6; color: var(--bark); border-color: #f0e5d6; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 26px;
  margin: 0;
  padding-top: 30px;
  border-top: 1px solid rgba(240, 229, 214, .18);
}
.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--amber);
  line-height: 1;
}
.hero-stats dd {
  margin: 8px 0 0;
  font-size: .87rem;
  color: #c2b09a;
  line-height: 1.4;
}

.hero-marquee {
  position: relative;
  background: var(--amber);
  color: #2b1a06;
  overflow: hidden;
  padding: 11px 0;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee-track span::after {
  content: "";
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  opacity: .5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards & products ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.products-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.product {
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.product::before {
  content: "";
  position: absolute; inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--timber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 151, 47, .5);
}
.product:hover::before { transform: scaleX(1); }

.product-icon {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  background: rgba(224, 151, 47, .12);
  border-radius: 18px;
  margin-bottom: 20px;
}
.product h3 { margin-bottom: .45em; }
.product > p { color: var(--ink-soft); font-size: .97rem; }

.specs { margin: 4px 0 22px; display: grid; gap: 9px; }
.specs li {
  position: relative;
  padding-left: 26px;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.specs li::before {
  content: "";
  position: absolute; left: 0; top: .45em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--moss);
  border-bottom: 2px solid var(--moss);
  transform: rotate(-45deg);
}

.price-from {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: .9rem;
  color: var(--ink-soft);
}
.price-from strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--bark);
  margin: 0 4px;
}

/* ---------- Services ---------- */
.services-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.service {
  padding: 30px 28px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: rgba(139, 94, 52, .26);
  line-height: 1;
  margin-bottom: 14px;
}
.service h3 { margin-bottom: .4em; }
.service p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  right: -14px; bottom: 34px;
  background: var(--amber);
  color: #2b1a06;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 190px;
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}
.about-badge span { font-size: .8rem; line-height: 1.35; display: block; margin-top: 6px; }

.about-copy p { color: var(--ink-soft); }

.checklist { display: grid; gap: 12px; margin: 26px 0 32px; }
.checklist li {
  position: relative;
  padding-left: 36px;
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--moss);
}
.checklist li::after {
  content: "";
  position: absolute; left: 6px; top: 8px;
  width: 10px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bark);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s;
}
.gallery-item:hover img { transform: scale(1.07); opacity: .82; }
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 13px;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(26, 17, 11, .88), transparent);
}

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20, 13, 8, .94);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(92vw, 1000px); }
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox figcaption {
  color: #e5d6c2;
  text-align: center;
  margin-top: 14px;
  font-size: .95rem;
}
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 46px; height: 46px;
  font-size: 30px; line-height: 1;
  color: #fff; background: rgba(255, 255, 255, .12);
  border: 0; border-radius: 50%; cursor: pointer;
}
.lightbox-nav {
  width: 52px; height: 52px;
  flex-shrink: 0;
  font-size: 32px; line-height: 1;
  color: #fff; background: rgba(255, 255, 255, .12);
  border: 0; border-radius: 50%; cursor: pointer;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, .25); }

/* ---------- Pricing ---------- */
.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
.price-table th, .price-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.price-table thead th {
  background: var(--bark);
  color: #e9dccb;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: rgba(224, 151, 47, .07); }
.price-table td:first-child { font-weight: 600; }
.price-table td.num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber-dark);
  white-space: nowrap;
}
.price-table td:last-child { color: var(--ink-soft); font-size: .92rem; }

.pricing-extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.extra {
  padding: 20px 22px;
  border-radius: var(--radius);
  background: rgba(139, 94, 52, .08);
  border: 1px dashed rgba(139, 94, 52, .3);
}
.extra h4 { margin-bottom: .35em; }
.extra p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.quote {
  margin: 0;
  padding: 32px 30px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(233, 220, 203, .16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}
.stars { color: var(--amber); letter-spacing: .18em; font-size: .95rem; margin-bottom: 16px; }
.quote blockquote {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.62;
  color: #e4d7c6;
}
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { color: #fff; font-size: .97rem; }
.quote figcaption span { color: #a89684; font-size: .84rem; }

/* ---------- Order ---------- */
.order-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.order-copy p { color: var(--ink-soft); }

.steps { display: grid; gap: 18px; margin: 30px 0; counter-reset: step; }
.steps li {
  padding-left: 22px;
  border-left: 2px solid var(--line);
  display: grid; gap: 3px;
  position: relative;
}
.steps li::before {
  content: "";
  position: absolute; left: -7px; top: 8px;
  width: 12px; height: 12px;
  background: var(--amber);
  border: 2px solid var(--cream);
  border-radius: 50%;
}
.steps strong { font-size: 1rem; color: var(--bark); }
.steps span { color: var(--ink-soft); font-size: .93rem; }

.order-help { padding-top: 8px; }
.order-help p { margin-bottom: 12px; font-weight: 600; color: var(--bark); }
.order-help-links { display: flex; gap: 12px; flex-wrap: wrap; }

.order-form { padding: clamp(26px, 3.4vw, 38px); display: grid; gap: 18px; }

.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label { font-size: .88rem; font-weight: 600; color: var(--bark); }
.opt { font-weight: 400; color: var(--ink-soft); }

input[type="text"], input[type="tel"], input[type="email"],
input[type="number"], input[type="date"], select, textarea {
  width: 100%;
  padding: 13px 15px;
  font: 400 .97rem/1.4 var(--font-body);
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  background: var(--paper);
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(224, 151, 47, .16);
}
input.is-invalid, select.is-invalid, textarea.is-invalid {
  border-color: #c0392b;
  background: rgba(192, 57, 43, .05);
}
textarea { resize: vertical; min-height: 92px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b5a4c'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 38px;
}

.qty-group { display: grid; grid-template-columns: 1fr 118px; gap: 10px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-block;
  padding: 9px 17px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  background: var(--cream);
  cursor: pointer;
  transition: all .18s;
}
.chip input:checked + span {
  background: var(--bark);
  border-color: var(--bark);
  color: var(--cream);
}
.chip input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }

.consent {
  display: flex; gap: 11px; align-items: flex-start;
  font-weight: 400; font-size: .87rem; color: var(--ink-soft);
  line-height: 1.5;
}
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--amber-dark); flex-shrink: 0; }

.error { margin: 0; font-size: .82rem; color: #c0392b; min-height: 0; }
.error:empty { display: none; }

.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

.form-status {
  margin: 0;
  padding: 14px 18px;
  border-radius: 11px;
  font-size: .92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-ok { background: rgba(79, 97, 66, .13); color: #3a4a30; border: 1px solid rgba(79, 97, 66, .3); }
.form-status.is-err { background: rgba(192, 57, 43, .09); color: #a03024; border: 1px solid rgba(192, 57, 43, .28); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.contact-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--timber);
  margin-bottom: .8em;
}
.contact-card p { margin: 0 0 10px; line-height: 1.6; font-size: .96rem; }
.contact-card a { text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.link { font-size: .88rem; font-weight: 600; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; }
.map-fallback { margin: 0; padding: 16px 22px; font-size: .89rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--moss);
  background-image: linear-gradient(120deg, #46583b, #5d7150);
  color: #f3efe4;
  padding: clamp(48px, 6vw, 74px) 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { margin: 0; color: #dfe4d5; max-width: 560px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bark);
  color: #b8a894;
  padding: clamp(50px, 6vw, 74px) 0 26px;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(233, 220, 203, .14);
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand-text span { color: #9c8b78; }
.footer-brand p { margin: 0; max-width: 330px; line-height: 1.62; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #b8a894; text-decoration: none; }
.footer-col a:hover { color: var(--amber); }
.footer-col.plain li, .footer-col ul.plain li { line-height: 1.5; }

.footer-bottom {
  display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-top: 22px;
  font-size: .84rem;
  color: #8d7d6c;
}
.footer-bottom p { margin: 0; }

/* ---------- To top ---------- */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 50px; height: 50px;
  border: 0; border-radius: 50%;
  background: var(--bark);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--amber); }
.to-top svg { width: 22px; height: 22px; fill: var(--cream); }
.to-top:hover svg { fill: #26170a; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22, .8, .3, 1), transform .7s cubic-bezier(.22, .8, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav a { padding: 9px 9px; font-size: .89rem; }
  .header-phone { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: grid; place-items: center; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px 20px 26px;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 13px 14px; font-size: 1rem; border-radius: 10px; }

  .about-grid, .order-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge { right: 10px; bottom: 12px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 26px; }
  .lightbox { padding: 12px; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .to-top, .hero-marquee, .order-form, .map-wrap, .cta-band { display: none; }
  body { background: #fff; }
}
