/* ==========================================================================
   Gatti Ground Control — design tokens + base
   Palette sampled directly from the brand logo (Images/9DB2DA49...png):
   deep forest green + brass/gold + warm stone. Bold/premium contractor tone.
   ========================================================================== */

:root {
  /* Forest green scale */
  --forest-950: #10190a;
  --forest-900: #16220c;
  --forest-800: #1f3212;
  --forest-700: #2c441a;
  --forest-600: #3e5b24;
  --forest-500: #55742f;
  --forest-400: #74914a;

  /* Brass / gold scale */
  --gold-700: #8a6a1a;
  --gold-600: #a9821f;
  --gold-500: #c79a33;
  --gold-400: #d4af52;
  --gold-300: #e0c877;
  --gold-100: #f3e9c9;

  /* Neutrals */
  --khaki-500: #a6924f;
  --stone-50: #faf7ef;
  --stone-100: #f3eee0;
  --stone-0: #ffffff;
  --ink-900: #1b2314;
  --ink-700: #33402a;
  --ink-600: #4a5540;
  --ink-400: #7c8570;

  /* Semantic */
  --color-danger: #a6401f;
  --color-danger-bg: #fbe9e2;
  --color-success: #2f5c22;
  --color-success-bg: #e9f2e3;

  --bg: var(--stone-50);
  --surface: var(--stone-0);
  --text: var(--ink-900);
  --text-muted: var(--ink-600);
  --border: #e4dcc4;

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

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;

  /* Spacing (4/8px rhythm) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 0.4rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.5rem;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(22, 34, 12, 0.08);
  --shadow-md: 0 10px 30px rgba(22, 34, 12, 0.14);
  --shadow-lg: 0 24px 60px rgba(22, 34, 12, 0.22);

  --container: 1240px;
  --gutter: 1.25rem;
  --header-h: 104px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-sm: 180ms;
  --dur-md: 300ms;
}

@media (min-width: 768px) {
  :root { --gutter: 2rem; }
}
@media (min-width: 1280px) {
  :root { --gutter: 2.5rem; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; }

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

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-9); }
.section--tight { padding-block: var(--space-8); }
.section--dark {
  background: linear-gradient(160deg, var(--forest-900), var(--forest-800) 70%);
  color: var(--stone-50);
}
.section--alt { background: var(--stone-100); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-7);
}
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-3);
}
.section--dark .eyebrow { color: var(--gold-300); }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--stone-50); }

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); }
@media (min-width: 640px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
}

p { color: var(--text-muted); }
.section--dark p { color: rgba(250, 247, 239, 0.78); }

.lede { font-size: var(--text-md); max-width: 60ch; }

.visually-hidden {
  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: fixed; top: -100%; left: var(--space-4);
  background: var(--forest-900); color: var(--stone-50);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--dur-sm) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform var(--dur-sm) var(--ease-out), box-shadow var(--dur-sm) var(--ease-out), background-color var(--dur-sm) var(--ease-out), color var(--dur-sm) var(--ease-out), border-color var(--dur-sm) var(--ease-out);
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--gold {
  background: var(--gold-500);
  color: var(--forest-900);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }

.btn--outline-dark {
  border-color: var(--forest-800);
  color: var(--forest-900);
  background: transparent;
}
.btn--outline-dark:hover { background: var(--forest-900); color: var(--stone-50); }

.btn--outline-light {
  border-color: rgba(250, 247, 239, 0.5);
  color: var(--stone-50);
  background: transparent;
}
.btn--outline-light:hover { background: rgba(250, 247, 239, 0.12); border-color: var(--stone-50); }

.btn--block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn--loading .btn__label { visibility: hidden; }
.btn--loading .btn__spinner { display: inline-flex; }
.btn__spinner {
  display: none;
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
.btn { position: relative; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 239, 0.0);
  transition: background-color var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out), height var(--dur-md) var(--ease-out);
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--stone-50);
  opacity: 0;
  transition: opacity var(--dur-md) var(--ease-out);
  z-index: -1;
}
.site-header.is-scrolled {
  height: 80px;
  box-shadow: var(--shadow-sm);
}
.site-header.is-scrolled::before { opacity: 1; }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { height: 84px; width: auto; transition: height var(--dur-md) var(--ease-out); }
.is-scrolled .brand img { height: 62px; }

.primary-nav {
  display: none;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.primary-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--forest-800);
  padding-block: var(--space-2);
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-sm) var(--ease-out);
}
.primary-nav a:hover::after,
.primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav a.is-active { color: var(--forest-900); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.header-call {
  display: none;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--forest-900);
}
.header-call svg { width: 20px; height: 20px; color: var(--gold-600); }

@media (min-width: 1024px) {
  .primary-nav { display: block; }
  .header-call { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--forest-900);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--stone-50);
  z-index: 400;
  padding: var(--space-6) var(--gutter) var(--space-8);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-md) var(--ease-out), transform var(--dur-md) var(--ease-out), visibility var(--dur-md);
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-1); }
.mobile-nav a {
  display: block;
  padding: var(--space-4) var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-decoration: none;
  color: var(--forest-900);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: var(--space-6); }
@media (min-width: 1024px) { .mobile-nav { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--space-8));
  padding-bottom: var(--space-9);
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(199, 154, 51, 0.16), transparent 60%),
    var(--stone-50);
  overflow: hidden;
}
.hero .container {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-7); }
}

.hero-copy .eyebrow { }
.hero-copy h1 { margin-bottom: var(--space-5); }
.hero-copy .lede { margin-bottom: var(--space-6); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-6);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest-800);
}
.hero-trust svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-media__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%, 0 94%);
  box-shadow: var(--shadow-lg);
}
.hero-media__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media__accent {
  position: absolute;
  inset: var(--space-5) calc(-1 * var(--space-5)) calc(-1 * var(--space-5)) var(--space-5);
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero-media__badge {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--stone-0);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 260px;
}
.hero-media__badge .icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-700);
  flex-shrink: 0;
}
.hero-media__badge .icon-chip svg { width: 20px; height: 20px; }
.hero-media__badge strong { display: block; font-size: var(--text-sm); color: var(--forest-900); }
.hero-media__badge span { font-size: var(--text-xs); color: var(--text-muted); }

/* ---------- Trust strip ---------- */
.trust-strip { padding-block: var(--space-7); background: var(--stone-100); border-block: 1px solid var(--border); }
.trust-strip ul {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .trust-strip ul { grid-template-columns: repeat(4, 1fr); } }
.trust-strip li { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); text-align: center; }
.trust-strip .icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest-900); color: var(--gold-300);
}
.trust-strip .icon-chip svg { width: 24px; height: 24px; }
.trust-strip strong { font-size: var(--text-sm); color: var(--forest-900); }

/* ---------- About ---------- */
.about .container {
  display: grid;
  gap: var(--space-7);
}
@media (min-width: 1024px) {
  .about .container { grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: var(--space-8); }
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-copy p + p { margin-top: var(--space-4); }
.about-copy .btn { margin-top: var(--space-6); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform var(--dur-md) var(--ease-out), box-shadow var(--dur-md) var(--ease-out), border-color var(--dur-md) var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--forest-900); color: var(--gold-300);
  margin-bottom: var(--space-4);
}
.service-card .icon-chip svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: var(--space-2); }
.service-card p { font-size: var(--text-sm); }

/* ---------- Why choose us ---------- */
.why .container {
  display: grid;
  gap: var(--space-7);
}
@media (min-width: 1024px) {
  .why .container { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--space-8); }
}
.why-media img { border-radius: var(--radius-lg); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-md); }
.why-list { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-6); }
.why-item { display: flex; gap: var(--space-4); }
.why-item .icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-700);
  flex-shrink: 0;
}
.why-item .icon-chip svg { width: 22px; height: 22px; }
.why-item h3 { font-size: var(--text-md); margin-bottom: var(--space-1); }
.why-item p { font-size: var(--text-sm); }

/* ---------- Process (dark band) ---------- */
.process-grid {
  display: grid;
  gap: var(--space-7) var(--space-6);
  grid-template-columns: 1fr;
  counter-reset: step;
  position: relative;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; text-align: left; }
.process-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-500); color: var(--forest-900);
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-md);
  margin-bottom: var(--space-4);
}
.process-step h3 { color: var(--stone-50); margin-bottom: var(--space-2); font-size: var(--text-md); }
.process-step p { font-size: var(--text-sm); }

/* ---------- Before / After ---------- */
.ba-grid {
  display: grid;
  gap: var(--space-8) var(--space-6);
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-inline: auto;
}
.ba-wrap { max-width: 480px; margin-inline: auto; width: 100%; }
.ba-slider {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  touch-action: pan-y;
  user-select: none;
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-tag {
  position: absolute; top: var(--space-4);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(22, 34, 12, 0.72);
  color: var(--stone-50);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ba-tag--before { left: var(--space-4); }
.ba-tag--after { right: var(--space-4); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 0;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(-50%);
}
.ba-handle::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 3px; background: var(--stone-0);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.ba-handle__grip {
  position: relative;
  width: 48px; height: 48px;
  flex: none;
  border-radius: 50%;
  background: var(--stone-0);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-900);
  border: none;
  touch-action: none;
}
.ba-handle__grip svg { width: 22px; height: 22px; }
.ba-caption { text-align: center; margin-top: var(--space-5); font-size: var(--text-sm); }

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 1;
  gap: var(--space-4);
}
@media (min-width: 640px) { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-item button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  border-radius: inherit;
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform var(--dur-md) var(--ease-out);
}
.gallery-item button:hover img,
.gallery-item button:focus-visible img { transform: scale(1.045); }
.gallery-item .gallery-caption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(0deg, rgba(16, 25, 10, 0.75), transparent);
  color: var(--stone-50);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transition: opacity var(--dur-sm) var(--ease-out);
}
.gallery-item button:hover .gallery-caption,
.gallery-item button:focus-visible .gallery-caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(16, 25, 10, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-6);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-md) var(--ease-out), visibility var(--dur-md);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(90vw, 900px); max-height: 82vh; width: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(250, 247, 239, 0.12);
  color: var(--stone-50);
  border: none;
}
.lightbox-close svg, .lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(250, 247, 239, 0.22); }
.lightbox-close { top: var(--space-5); right: var(--space-5); }
.lightbox-nav--prev { left: var(--space-5); top: 50%; transform: translateY(-50%); }
.lightbox-nav--next { right: var(--space-5); top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute; bottom: var(--space-6); left: 0; right: 0;
  text-align: center; color: var(--stone-50); font-size: var(--text-sm);
}

/* ---------- Book Now form ---------- */
.book .container { display: grid; gap: var(--space-8); }
@media (min-width: 1024px) { .book .container { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-8); } }

.book-info-card {
  background: var(--forest-900);
  color: var(--stone-50);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.book-info-card h3 { color: var(--stone-50); margin-bottom: var(--space-4); }
.book-info-card > p { color: rgba(250, 247, 239, 0.82); }
.book-info-list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-6); }
.book-info-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.book-info-list a { color: var(--stone-50); text-decoration: none; font-weight: 600; }
.book-info-list a:hover { color: var(--gold-300); }
.book-info-list svg { width: 22px; height: 22px; color: var(--gold-300); flex-shrink: 0; margin-top: 2px; }
.book-info-list span { display: block; font-size: var(--text-xs); color: rgba(250,247,239,0.65); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.form-grid--2 { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: var(--space-2);
}
.field .required { color: var(--color-danger); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--stone-50);
  font-size: var(--text-base);
  transition: border-color var(--dur-sm) var(--ease-out), box-shadow var(--dur-sm) var(--ease-out);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(199, 154, 51, 0.18);
}
.field-hint { font-size: var(--text-xs); color: var(--ink-400); margin-top: var(--space-1); }
.field-error {
  font-size: var(--text-xs);
  color: var(--color-danger);
  margin-top: var(--space-1);
  display: none;
  align-items: center;
  gap: var(--space-1);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--color-danger); }
.field.has-error .field-error { display: flex; }

.form-actions { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-2); flex-wrap: wrap; }
.form-note { font-size: var(--text-xs); color: var(--ink-400); }

.form-status {
  display: none;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-status.is-visible { display: flex; }
.form-status--success { background: var(--color-success-bg); color: var(--color-success); }
.form-status--error { background: var(--color-danger-bg); color: var(--color-danger); }

/* Star rating (accessible radio group) */
.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: var(--space-1); }
.star-rating input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-rating label {
  cursor: pointer;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--border);
  margin: 0;
}
.star-rating label svg { width: 30px; height: 30px; }
.star-rating input:focus-visible + label { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 50%; }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color: var(--gold-500); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.empty-state {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  margin-bottom: var(--space-8);
}
.empty-state .icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-700);
  margin-bottom: var(--space-4);
}
.empty-state .icon-chip svg { width: 28px; height: 28px; }
.empty-state h3 { margin-bottom: var(--space-2); }
.empty-state p { max-width: 44ch; margin-inline: auto; }

.feedback-form-wrap { max-width: 640px; margin-inline: auto; }
.feedback-form-wrap .form-card { text-align: left; }

/* ---------- Contact / Footer ---------- */
.contact .container { display: grid; gap: var(--space-7); }
@media (min-width: 1024px) { .contact .container { grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: stretch; } }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 320px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.contact-info-card {
  background: var(--stone-100);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.contact-info-list { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-5); }
.contact-info-list li { display: flex; gap: var(--space-4); }
.contact-info-list .icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest-900); color: var(--gold-300);
  flex-shrink: 0;
}
.contact-info-list .icon-chip svg { width: 20px; height: 20px; }
.contact-info-list a { text-decoration: none; font-weight: 700; color: var(--forest-900); }
.contact-info-list a:hover { color: var(--gold-600); }
.contact-info-list .area-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-2); }
.area-tags span {
  font-size: var(--text-xs); font-weight: 600;
  padding: 0.25rem 0.65rem;
  background: var(--stone-0); border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--forest-800);
}

.site-footer {
  background: var(--forest-950);
  color: rgba(250, 247, 239, 0.7);
  padding-block: var(--space-8) var(--space-6);
}
.footer-top {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(250, 247, 239, 0.12);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand img { height: 110px; width: auto; margin-bottom: var(--space-4); }
.footer-brand p { max-width: 36ch; font-size: var(--text-sm); color: rgba(250, 247, 239, 0.7); }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(250, 247, 239, 0.1);
  color: rgba(250, 247, 239, 0.85);
  transition: background-color var(--dur-sm) var(--ease-out), color var(--dur-sm) var(--ease-out), transform var(--dur-sm) var(--ease-out);
}
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { background: var(--gold-500); color: var(--forest-900); transform: translateY(-2px); }
.footer-col h4 { color: var(--stone-50); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-4); font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { text-decoration: none; font-size: var(--text-sm); color: rgba(250, 247, 239, 0.7); }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: space-between;
  padding-top: var(--space-6);
  font-size: var(--text-xs);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
