/* ==========================================================================
   Harvest Operations — Design Tokens & Base
   Palette derived from brand logo (black / warm gray / harvest gold)
   ========================================================================== */

:root {
  /* Brand colors */
  --ink: #17150f;
  --ink-soft: #232019;
  --charcoal: #33302a;
  --slate: #6d6a63;
  --slate-light: #9b978e;
  --gold: #bd7f3e;
  --gold-deep: #8f5e28;
  --gold-light: #e0ac6c;
  --cream: #f6f2e9;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: rgba(23, 21, 15, 0.1);
  --line-invert: rgba(255, 253, 249, 0.14);

  /* Semantic */
  --bg: var(--paper);
  --bg-alt: var(--cream);
  --bg-dark: var(--ink);
  --text: var(--ink);
  --text-muted: var(--slate);
  --text-invert: var(--paper);
  --accent: var(--gold);
  --accent-deep: var(--gold-deep);

  /* Type */
  --font-display: "Roboto Slab", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  /* Scale (fluid) */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --fs-body: clamp(1rem, 0.96rem + 0.15vw, 1.0625rem);
  --fs-lead: clamp(1.15rem, 1.05rem + 0.4vw, 1.375rem);
  --fs-h3: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --fs-h2: clamp(1.9rem, 1.5rem + 1.6vw, 2.75rem);
  --fs-h1: clamp(2.5rem, 1.9rem + 3vw, 4.25rem);

  /* Spacing (standard density) */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;

  --container: 1240px;
  --shadow-sm: 0 2px 10px rgba(23, 21, 15, 0.06);
  --shadow-md: 0 12px 40px rgba(23, 21, 15, 0.12);
  --shadow-lg: 0 24px 70px rgba(23, 21, 15, 0.22);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 var(--space-sm);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 var(--space-sm); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================================
   Ambient background — soft organic light behind the whole site
   ========================================================================== */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.ambient-blob--a {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  top: -16vw; right: -10vw;
  background: radial-gradient(circle, rgba(224,168,108,0.34), rgba(224,168,108,0) 70%);
  animation: drift-a 34s ease-in-out infinite;
}
.ambient-blob--b {
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  bottom: -12vw; left: -9vw;
  background: radial-gradient(circle, rgba(189,127,62,0.3), rgba(189,127,62,0) 70%);
  animation: drift-b 40s ease-in-out infinite;
}
.ambient-blob--c {
  width: 26vw; height: 26vw; max-width: 380px; max-height: 380px;
  top: 42%; left: 58%;
  background: radial-gradient(circle, rgba(157,110,60,0.22), rgba(157,110,60,0) 70%);
  animation: drift-c 46s ease-in-out infinite;
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 5%) scale(1.08); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, -4%) scale(1.06); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, -6%) scale(1.1); }
}
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 620px; height: 620px;
  margin-left: -310px; margin-top: -310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,168,108,0.24) 0%, rgba(224,168,108,0.1) 38%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  will-change: transform;
}
.cursor-glow.is-active { opacity: 1; }

main, .site-footer { position: relative; z-index: 1; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}
section { position: relative; }
.section-pad { padding-block: var(--space-2xl); }
@media (max-width: 720px) {
  .section-pad { padding-block: var(--space-xl); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-light); }

.lead { font-size: var(--fs-lead); color: var(--text-muted); max-width: 62ch; }
h2 { font-size: var(--fs-h2); }
h1 { font-size: var(--fs-h1); }
h3 { font-size: var(--fs-h3); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.on-dark { color: var(--text-invert); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--text-invert); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm); transition: top var(--dur-med) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --_bg: var(--ink);
  --_fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 48px;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  background: var(--_bg);
  color: var(--_fg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-gold { --_bg: var(--gold); --_fg: var(--ink); }
.btn-gold:hover { --_bg: var(--gold-light); }
.btn-outline {
  --_bg: transparent; --_fg: var(--ink);
  border-color: currentColor;
}
.btn-outline.on-dark { --_fg: var(--paper); }
.btn-outline:hover { --_bg: var(--ink); --_fg: var(--paper); }
.btn-outline.on-dark:hover { --_bg: var(--paper); --_fg: var(--ink); }
.btn-sm { min-height: 40px; padding: 0.6em 1.2em; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 0.6rem;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: background var(--dur-med) var(--ease), padding var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 42px; height: 42px; flex-shrink: 0; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  transition: color var(--dur-med) var(--ease);
}
.brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color var(--dur-med) var(--ease);
}

.nav-desktop { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links { display: flex; gap: var(--space-md); }
.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding-block: 0.4rem;
  transition: color var(--dur-fast) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right var(--dur-med) var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--gold-deep); }
.header-cta { display: flex; align-items: center; gap: 0.9rem; }
.header-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.92rem;
}
.header-phone svg { width: 18px; height: 18px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: all var(--dur-med) var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 6.5rem var(--space-lg) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav .nav-links { flex-direction: column; gap: var(--space-md); }
.mobile-nav .nav-link { color: var(--paper); font-size: 1.4rem; }
.mobile-nav .nav-link::after { display: none; }
.mobile-nav-footer { margin-top: auto; padding-top: var(--space-lg); border-top: 1px solid var(--line-invert); color: var(--paper); }
.mobile-nav-footer a { color: var(--gold-light); font-weight: 600; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-top: 6rem;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(189, 127, 62, 0.28), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(189, 127, 62, 0.16), transparent 60%),
    linear-gradient(180deg, #1c1912 0%, #17150f 60%, #100e0a 100%);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 68px);
}
.hero-grain { position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-title { font-size: var(--fs-h1); margin-bottom: var(--space-md); }
.hero-title .accent { color: var(--gold-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: var(--space-lg); }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line-invert);
}
.hero-badge { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; font-weight: 600; color: var(--slate-light); }
.hero-badge svg { width: 22px; height: 22px; color: var(--gold-light); flex-shrink: 0; }
.hero-scroll {
  position: absolute; bottom: var(--space-lg); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--slate-light); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.4; } }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding-top: calc(6rem + var(--space-xl));
  padding-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 0%, rgba(189, 127, 62, 0.25), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.85rem; color: var(--slate-light); margin-bottom: var(--space-md); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ==========================================================================
   Services
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--cream), #efe7d7);
  color: var(--gold-deep);
  margin-bottom: var(--space-md);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--space-sm); }
.service-card .card-link { font-weight: 600; font-size: 0.88rem; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 0.4em; }
.service-card .card-link svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease); }
.service-card .card-link:hover svg { transform: translateX(4px); }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-2xl);
  border-bottom: 1px solid var(--line);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse .detail-media { order: 2; }
.detail-feature-list { display: grid; gap: 0.7rem; margin: var(--space-md) 0 var(--space-lg); }
.detail-feature-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; }
.detail-feature-list svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .detail-media { order: 0; }
}

/* ==========================================================================
   Placeholder media block (swap for real photography)
   ========================================================================== */
.media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--charcoal), var(--ink));
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.media-frame::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(189,127,62,0.16) 0 2px, transparent 2px 26px);
}
.media-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 15% 100%, rgba(189,127,62,0.35), transparent 60%);
}
.media-frame.square { aspect-ratio: 1 / 1; }
.media-frame.wide { aspect-ratio: 16 / 10; }
.media-frame.tall { aspect-ratio: 3 / 4; }
.media-label {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0.6rem;
  padding: var(--space-sm);
  color: var(--slate-light);
  font-size: 0.78rem;
  font-weight: 600;
}
.media-label svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-band { background: var(--ink); color: var(--paper); padding-block: var(--space-xl); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); text-align: center; }
.stat-item {
  position: relative;
  padding-bottom: 1.1rem;
  transition: transform 0.5s var(--ease);
}
.stat-item::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 34px; height: 2px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0.55;
  transition: transform 0.8s var(--ease) 0.25s, opacity 0.4s var(--ease);
}
.stat-item.is-visible::after { transform: translateX(-50%) scaleX(1); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  color: var(--gold-light);
  font-weight: 700;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.stat-label {
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate-light); margin-top: 0.3rem;
  transition: letter-spacing 0.4s var(--ease), color 0.4s var(--ease);
}
@media (hover: hover) {
  .stat-item:hover::after { opacity: 1; }
  .stat-item:hover .stat-num { transform: translateY(-3px); }
  .stat-item:hover .stat-label { letter-spacing: 0.14em; color: var(--paper); }
}

/* ==========================================================================
   Process / timeline
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  position: relative;
}
.process-step { position: relative; padding-top: var(--space-lg); }
.process-step::before {
  content: attr(data-step);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  background: var(--ink);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 0 rgba(189,127,62,0.45);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.process-step::after {
  content: "";
  position: absolute; top: 26px; left: 52px; right: -50%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 14px);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s var(--ease) 0.2s;
}
.process-step.is-visible::after { transform: scaleX(1); }
.process-step:last-child::after { display: none; }
@media (hover: hover) {
  .process-step:hover::before { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(189,127,62,0.35); }
}
@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-track { display: flex; gap: var(--space-md); overflow: hidden; margin-top: var(--space-xl); }
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -0.4rem; left: 1.2rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
}
.testimonial-stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: var(--space-sm); position: relative; z-index: 1; }
.testimonial-stars svg { width: 18px; height: 18px; opacity: 0; transform: scale(0.4); animation: star-pop 0.4s var(--ease) forwards; }
.testimonial-stars svg:nth-child(1) { animation-delay: 0.05s; }
.testimonial-stars svg:nth-child(2) { animation-delay: 0.12s; }
.testimonial-stars svg:nth-child(3) { animation-delay: 0.19s; }
.testimonial-stars svg:nth-child(4) { animation-delay: 0.26s; }
.testimonial-stars svg:nth-child(5) { animation-delay: 0.33s; }
@keyframes star-pop { to { opacity: 1; transform: scale(1); } }
.testimonial-quote { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: var(--space-md); position: relative; z-index: 1; }
.testimonial-name { font-weight: 700; position: relative; z-index: 1; }
.testimonial-loc { color: var(--text-muted); font-size: 0.85rem; position: relative; z-index: 1; }
.testimonial-nav { display: flex; align-items: center; gap: 1rem; margin-top: var(--space-lg); justify-content: center; }
.testimonial-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.testimonial-nav button:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.testimonial-nav button:active { transform: translateY(0) scale(0.94); }
.testimonial-nav svg { width: 18px; height: 18px; }
.testimonial-progress {
  width: 96px; height: 3px; border-radius: 999px;
  background: var(--line); overflow: hidden;
}
.testimonial-progress-fill {
  display: block; height: 100%; width: 0%;
  background: var(--gold); border-radius: inherit;
  transition: width linear;
}

/* ==========================================================================
   Service area
   ========================================================================== */
.area-chip-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: var(--space-lg); }
.area-chip {
  padding: 0.5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.area-chip.is-hq { border-color: var(--gold); color: var(--gold-deep); background: rgba(189,127,62,0.08); }
@media (hover: hover) {
  .area-chip:hover {
    border-color: var(--gold); color: var(--gold-deep);
    background: rgba(189,127,62,0.08); transform: translateY(-2px);
  }
}
.chip-dot {
  position: relative;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.chip-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: chip-pulse 2.2s ease-out infinite;
}
@keyframes chip-pulse {
  0% { transform: scale(0.4); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--ink), var(--charcoal));
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(189,127,62,0.3), transparent 65%);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(224,168,108,0.28), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.cta-band.is-glowing::after { opacity: 1; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2, .cta-band h3 { color: var(--paper); }
.cta-band .hero-actions { justify-content: center; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: var(--space-xl) 0 var(--space-lg); }
.filter-btn {
  padding: 0.55rem 1.2rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); font-weight: 600; font-size: 0.88rem; cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.filter-btn.is-active, .filter-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; }
.gallery-item.hidden { display: none; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   About
   ========================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.value-card { padding: var(--space-md); border-radius: var(--radius-md); background: var(--bg-alt); }
.value-card svg { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: var(--space-sm); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font: inherit;
  background: var(--paper);
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(189,127,62,0.16);
}
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }
.form-success {
  display: none;
  align-items: center; gap: 0.6rem;
  background: rgba(189,127,62,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: var(--space-md);
}
.form-success.is-visible { display: flex; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.contact-info-card {
  background: var(--bg-alt); border-radius: var(--radius-md); padding: var(--space-md);
  display: flex; flex-direction: column; gap: 0.5rem;
  min-width: 0;
}
.contact-info-card svg { width: 26px; height: 26px; color: var(--gold-deep); }
.contact-info-card a, .contact-info-card span { overflow-wrap: break-word; word-break: break-word; }
.contact-info-card a:hover { color: var(--gold-deep); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); margin-top: var(--space-xl); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--slate-light); padding-block: var(--space-2xl) var(--space-lg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--line-invert);
}
.footer-brand p { max-width: 32ch; font-size: 0.9rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: var(--space-md); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-invert);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.footer-social a:hover svg { transform: rotate(-10deg) scale(1.1); }
.footer-col h4 { color: var(--paper); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-md); }
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col li { font-size: 0.92rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-col svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: var(--space-lg); font-size: 0.82rem; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Scroll reveal utility (JS toggles .is-visible)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed; right: var(--space-md); bottom: var(--space-md); z-index: 80;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--paper); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all var(--dur-med) var(--ease);
  box-shadow: var(--shadow-md);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
