/* =================================================================
   Kitchen Transformations · Alex Rodriguez
   Editorial · minimalist · cream + ink + gold
   Mobile-first · WebP-optimized · bilingual-ready
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  --cream:       #f4ecd9;
  --cream-soft:  #faf4e6;
  --cream-warm:  #ebe0c6;
  --ivory:       #fbf7ec;

  --ink:         #1a1814;
  --ink-soft:    #3a3630;
  --ink-mute:    #6b6557;

  --gold:        #b8893f;
  --gold-light:  #d4af6f;
  --gold-pale:   #e8c47c;
  --gold-deep:   #8a6428;

  --dark:        #15130f;
  --dark-2:      #1c1a14;
  --dark-line:   rgba(212, 175, 111, 0.22);

  --line-ink:    rgba(26, 24, 20, 0.12);
  --line-gold:   rgba(184, 137, 63, 0.35);

  --green-wa:    #25d366;

  --ff-script:  'Dancing Script', cursive;
  --ff-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --ff-sans:    'Montserrat', system-ui, -apple-system, sans-serif;

  --container:  1180px;
  --container-narrow: 880px;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);

  --safe-bottom: env(safe-area-inset-bottom, 0px);

  --ease:       cubic-bezier(.22, 1, .36, 1);
  --tap-min:    44px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--ink); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { margin: 0 0 .5em; font-family: var(--ff-serif); font-weight: 400; line-height: 1.15; color: var(--ink); letter-spacing: -0.005em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: var(--cream);
  padding: .75rem 1rem; z-index: 1000;
  font-family: var(--ff-sans);
  font-size: .85rem;
}
.skip-link:focus { top: 0; }

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

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }

/* ---------- TYPE HELPERS ---------- */
.eyebrow {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .68rem;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 500;
}
.script  { font-family: var(--ff-script); font-weight: 700; line-height: 1; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-title {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  margin: 0 0 1rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.section-lede {
  color: var(--ink-soft);
  font-size: clamp(.98rem, 1.6vw, 1.15rem);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* Kitchen-mark used across sections */
.kitchen-mark {
  display: block;
  margin: 0 auto 1.5rem;
  width: 90px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(184, 137, 63, 0.18));
}

/* Stars */
.stars {
  color: var(--gold);
  letter-spacing: .15em;
  font-size: 1.1rem;
  line-height: 1;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: var(--tap-min);
  padding: .95rem 1.7rem;
  border-radius: 0;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: .82rem; }
.btn-block { width: 100%; }

.btn-ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 137, 63, 0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(212, 175, 111, 0.45);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 236, 217, 0);
  backdrop-filter: blur(0);
  transition: all .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(244, 236, 217, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-ink);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .85rem;
  padding-bottom: .85rem;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .75rem;
  color: var(--ink);
  flex-shrink: 0;
}
.brand picture { flex-shrink: 0; }
.brand-mark { width: auto; height: 38px; filter: drop-shadow(0 2px 4px rgba(184, 137, 63, 0.3)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--ff-serif);
  font-size: .98rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.brand-tag {
  font-family: var(--ff-script);
  font-size: .82rem;
  letter-spacing: 0;
  color: var(--gold);
  margin-top: 1px;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.header-actions { display: flex; align-items: center; gap: .65rem; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink);
  padding: .55rem .8rem;
  border: 1px solid var(--line-ink);
  border-radius: 999px;
  min-height: 36px;
  transition: all .2s var(--ease);
}
.lang-toggle:hover {
  border-color: var(--gold);
  background: rgba(184, 137, 63, 0.06);
}
.lang-toggle .lang-current {
  color: var(--gold);
}
.lang-toggle .lang-divider {
  color: var(--ink-mute);
  opacity: 0.5;
}
.lang-toggle .lang-other {
  color: var(--ink-mute);
}

.primary-nav ul {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: nowrap;
}
.primary-nav a {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  padding: .5rem 0;
}
.primary-nav a::after {
  content: ''; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.primary-nav a:hover::after { width: 100%; }
.primary-nav .nav-cta a { padding: .65rem 1.3rem; color: var(--cream); }
.primary-nav .nav-cta a:hover { color: var(--ink); }
.primary-nav .nav-cta a::after { display: none; }

.nav-toggle {
  display: none;
  width: var(--tap-min); height: var(--tap-min);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px; width: 24px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
/* ===================================================================
   HERO — Editorial luxury: full-bleed photo, text bottom-left
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) saturate(0.9);
}
/* Strong dark gradient overlay — guarantees text legibility everywhere */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(15, 13, 10, 0.55) 0%,
      rgba(15, 13, 10, 0.25) 25%,
      rgba(15, 13, 10, 0.25) 45%,
      rgba(15, 13, 10, 0.75) 80%,
      rgba(15, 13, 10, 0.92) 100%),
    linear-gradient(90deg,
      rgba(15, 13, 10, 0.65) 0%,
      rgba(15, 13, 10, 0.25) 50%,
      rgba(15, 13, 10, 0.15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
  width: 100%;
}

.hero-content {
  max-width: 640px;
  animation: fadeUp 1s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin: 0 0 1.5rem;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 1.5rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.4);
}
.hero-title-main {
  display: block;
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 400;
}
.hero-title-sub {
  display: block;
  margin-top: .85rem;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  letter-spacing: .08em;
  color: var(--cream);
  font-weight: 300;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.signature {
  font-family: var(--ff-script);
  font-weight: 700;
  font-style: normal;
  font-size: 1.55em;
  margin-left: .12em;
  vertical-align: -0.1em;
  color: var(--gold-pale);
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(250, 244, 230, 0.95);
  margin: 0 0 2.25rem;
  line-height: 1.5;
  max-width: 34ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 0 0 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-trust .stars {
  color: var(--gold-pale);
  font-size: 1.05rem;
  letter-spacing: .12em;
}
.hero-trust-text {
  font-family: var(--ff-sans);
  font-size: .82rem;
  color: rgba(250, 244, 230, 0.95);
  letter-spacing: .03em;
}
.hero-trust-text strong { color: var(--cream); font-weight: 600; }

/* Services strip pinned to bottom of hero */
.hero-services-strip {
  position: relative;
  z-index: 2;
  margin: 3rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(212, 175, 111, 0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  list-style: none;
}
.hero-services-strip li {
  font-family: var(--ff-sans);
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(250, 244, 230, 0.92);
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 3;
  width: 24px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.5;
  transition: opacity .25s var(--ease);
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, var(--gold-light) 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* Header on hero should be transparent over photo with subtle gradient for legibility */
.site-header { color: var(--cream); transition: all .3s var(--ease); }
.site-header:not(.scrolled)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 13, 10, 0.55) 0%, rgba(15, 13, 10, 0) 100%);
  pointer-events: none;
  z-index: -1;
}
.site-header { position: fixed; }
.site-header.scrolled { color: var(--ink); }
.brand-name, .brand-tag { transition: color .3s var(--ease); }
.site-header:not(.scrolled) .brand-name {
  color: var(--cream);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.site-header:not(.scrolled) .brand-tag {
  color: var(--gold-pale);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.site-header:not(.scrolled) .primary-nav a {
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.site-header:not(.scrolled) .lang-toggle {
  color: var(--cream);
  border-color: rgba(244, 236, 217, 0.5);
  background: rgba(15, 13, 10, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-header:not(.scrolled) .lang-toggle .lang-current { color: var(--gold-pale); }
.site-header:not(.scrolled) .lang-toggle .lang-other { color: rgba(244, 236, 217, 0.7); }
.site-header:not(.scrolled) .lang-toggle .lang-divider { color: rgba(244, 236, 217, 0.5); }
.site-header:not(.scrolled) .nav-toggle span { background: var(--cream); }
.site-header:not(.scrolled) .brand-mark {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
}
.site-header:not(.scrolled) .primary-nav .nav-cta a {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.site-header:not(.scrolled) .primary-nav .nav-cta a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* Services trio (moved from hero) */
.services-trio {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .6rem;
  margin: 0 auto 2rem;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(184, 137, 63, 0.2));
}
.services-trio .trio-pendant {
  height: 70%;
  width: auto;
  align-self: flex-start;
  opacity: 0.95;
}
.services-trio .trio-pendant--right { transform: scaleX(-1); }
.services-trio .trio-hood {
  height: 100%;
  width: auto;
}

/* ===================================================================
   VALUE STRIP — dark band, smooth transition from hero
   =================================================================== */
.value-strip {
  background: var(--dark);
  padding: 2rem 0;
  position: relative;
}
.value-strip::before {
  /* Top gold hairline */
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.4;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.value {
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-content: center;
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.value svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold-light); }

/* ===================================================================
   SERVICES
   =================================================================== */
.services { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-ink);
  border-left: 1px solid var(--line-ink);
}
.service-card {
  padding: 2.5rem 1.85rem;
  border-right: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  background: var(--cream);
  transition: all .35s var(--ease);
  position: relative;
}
.service-card:hover {
  background: var(--cream-soft);
}
.service-card:hover .service-icon { color: var(--gold-deep); transform: translateY(-2px); }
.service-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: all .35s var(--ease);
}
.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: .6rem;
  font-weight: 400;
}
.service-card .service-no {
  font-family: var(--ff-sans);
  font-size: .62rem;
  letter-spacing: .3em;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
  text-transform: uppercase;
}
.service-card p {
  color: var(--ink-soft);
  font-size: .98rem;
  margin: 0;
  line-height: 1.65;
}
.service-card--cta {
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--cta h3 {
  font-family: var(--ff-script);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.85rem;
  font-weight: 700;
}
.service-card--cta p {
  color: rgba(244, 236, 217, 0.75);
  margin-bottom: 1.5rem;
}
.service-card--cta .btn { align-self: flex-start; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gallery {
  background: var(--cream-warm);
  border-top: 1px solid var(--line-ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cream-warm);
  border: 1px solid var(--line-ink);
  box-shadow: 0 4px 20px rgba(26, 24, 20, 0.08);
  transition: box-shadow .35s var(--ease);
}
.gallery-item:hover {
  box-shadow: 0 12px 36px rgba(26, 24, 20, 0.15);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(0deg, rgba(21, 19, 15, 0.92) 0%, transparent 100%);
  color: var(--cream);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .98rem;
  transform: translateY(35%);
  opacity: 0;
  transition: all .35s var(--ease);
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }

.gallery-item--feature {
  grid-column: span 8;
  aspect-ratio: 16 / 10;
}
.gallery-item--portrait {
  grid-column: span 4;
  aspect-ratio: 4 / 5;
}
.gallery-item--wide {
  grid-column: span 6;
  aspect-ratio: 4 / 3;
}

/* "Coming soon / Facebook" styled placeholders */
.gallery-item--coming {
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--cream-warm) 100%);
  border: 1px solid var(--line-gold);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-content {
  text-align: center;
  padding: 1.75rem;
}
.coming-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(184, 137, 63, 0.1);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.coming-content p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.coming-fb-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 1rem;
  transition: color .2s var(--ease);
}
.coming-fb-link svg {
  width: 36px; height: 36px;
  color: var(--gold);
}
.coming-fb-link:hover { color: var(--gold); }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials {
  background: var(--cream-soft);
  border-top: 1px solid var(--line-ink);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--cream);
  border: 1px solid var(--line-ink);
  padding: 2.25rem 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all .3s var(--ease);
}
.testimonial:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 36px rgba(26, 24, 20, 0.08);
}
.testimonial .stars { font-size: 1rem; }
.testimonial blockquote {
  margin: 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.55;
  flex-grow: 1;
}
.testimonial blockquote p { margin: 0; }
.testimonial figcaption {
  font-family: var(--ff-sans);
  font-size: .8rem;
  border-top: 1px solid var(--line-ink);
  padding-top: 1rem;
}
.testimonial figcaption strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: .15rem;
}
.testimonial figcaption span {
  color: var(--ink-mute);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ===================================================================
   WHY US — DARK SECTION
   =================================================================== */
.why {
  background: var(--dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why .eyebrow { color: var(--gold-light); }
.why .section-title { color: var(--cream); }
.why .section-title .script { color: var(--gold-light); }
.why .section-lede { color: rgba(244, 236, 217, 0.7); }
.why p { color: rgba(244, 236, 217, 0.85); }

.why-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.why-text .section-title { text-align: left; }
.why-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
}
.why-list li {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--dark-line);
  color: rgba(244, 236, 217, 0.75);
}
.why-list li:last-child { border-bottom: 0; }
.why-list .num {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.15rem;
  min-width: 2rem;
}
.why-list strong {
  display: block;
  color: var(--cream);
  font-family: var(--ff-serif);
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: .35rem;
}

.why-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(244, 236, 217, 0.03);
  border: 1px solid var(--dark-line);
}
.why-monogram {
  width: auto;
  height: 200px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 12px 30px rgba(232, 196, 124, 0.2));
}
.why-card blockquote {
  margin: 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.55;
}
.why-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.why-bg-bird {
  position: absolute;
  left: -8%; bottom: -15%;
  width: 480px;
  height: auto;
  opacity: 0.07;
  z-index: 0;
  transform: rotate(-12deg);
  pointer-events: none;
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact { background: var(--cream); border-top: 1px solid var(--line-ink); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-lede { color: var(--ink-soft); font-size: 1.02rem; }
.contact-list { display: grid; gap: 1.4rem; margin-top: 2.25rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-ink);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-list strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
  font-weight: 500;
}
.contact-list a, .contact-list span:not(.contact-icon) {
  color: var(--ink);
  font-family: var(--ff-serif);
  font-size: 1.08rem;
}
.contact-list a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--cream-soft);
  border: 1px solid var(--line-ink);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
}
.contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-weight: 400;
}
.contact-form h3::after {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
  margin-top: .9rem;
}
.contact-form label {
  display: block;
  margin-bottom: 1.1rem;
}
.contact-form label > span {
  display: block;
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .45rem;
  font-weight: 500;
}
.contact-form label small { color: var(--ink-mute); letter-spacing: 0; text-transform: none; font-size: .85em; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .9rem 0;
  min-height: var(--tap-min);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-ink);
  color: var(--ink);
  font-family: var(--ff-serif);
  font-size: 1.05rem; /* >=16px prevents iOS zoom */
  transition: border-color .25s var(--ease);
  border-radius: 0;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form select:invalid:not(:focus) {
  border-bottom-color: rgba(180, 50, 50, 0.4);
}
.contact-form textarea { resize: vertical; min-height: 100px; padding: .85rem 0; }
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23b8893f' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  padding-right: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-note {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--ink-mute);
  margin: .85rem 0 0;
  text-transform: uppercase;
}

/* Form submit states */
.contact-form .btn-loading { display: none; }
.contact-form.submitting .btn-label { display: none; }
.contact-form.submitting .btn-loading { display: inline; font-size: 1.4em; animation: pulse 1.2s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

.form-success {
  position: absolute;
  inset: 0;
  background: var(--cream-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: fadeIn .4s var(--ease) both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.form-success svg {
  width: 64px; height: 64px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success h4 {
  font-size: 1.85rem;
  color: var(--ink);
  margin: 0 0 .75rem;
}
.form-success p {
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(244, 236, 217, 0.75);
  padding: 4rem 0 calc(2rem + var(--safe-bottom));
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}
.footer-brand img { margin-bottom: 1.25rem; height: 90px; width: auto; filter: drop-shadow(0 6px 18px rgba(232, 196, 124, 0.15)); }
.footer-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  max-width: 320px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { display: grid; gap: .75rem; }
.footer-col a, .footer-col li {
  color: rgba(244, 236, 217, 0.7);
  font-family: var(--ff-serif);
  font-size: 1rem;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(244, 236, 217, 0.5);
  font-family: var(--ff-sans);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.footer-bottom p { margin: 0; }
.footer-bg-bird {
  position: absolute;
  right: -4%; top: 5%;
  width: 380px;
  height: auto;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

/* ===================================================================
   MOBILE STICKY CTA BAR
   =================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(21, 19, 15, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--dark-line);
  padding: .65rem .65rem calc(.65rem + var(--safe-bottom));
  gap: .5rem;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: .75rem 1rem;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: transform .15s var(--ease);
}
.mobile-cta-btn:active { transform: scale(0.97); }
.mobile-cta-btn svg { width: 18px; height: 18px; }
.mobile-cta-btn--call {
  background: var(--gold);
  color: var(--ink);
}
.mobile-cta-btn--call:hover { color: var(--ink); background: var(--gold-light); }
.mobile-cta-btn--text {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}
.mobile-cta-btn--text:hover { color: var(--gold-light); background: rgba(184, 137, 63, 0.12); }

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 80;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top:hover { background: var(--gold); color: var(--ink); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .why-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-text .section-title,
  .contact-info .section-title { text-align: center; }
  .why-list { max-width: 520px; margin-left: auto; margin-right: auto; }

  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-item--feature { grid-column: span 6; }
  .gallery-item--portrait { grid-column: span 3; aspect-ratio: 4/4; }
  .gallery-item--wide { grid-column: span 6; aspect-ratio: 5/3; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; text-align: left; }
  .footer-brand { grid-column: span 2; text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-tagline { margin-left: auto; margin-right: auto; }

  .hero-woodpecker {
    right: 50%;
    top: auto;
    bottom: -40px;
    transform: translateX(50%);
    width: 110px;
    opacity: 0.12;
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; flex-shrink: 0; }
  .brand { flex-shrink: 1; min-width: 0; }
  .brand-name { font-size: .82rem; letter-spacing: .18em; }
  .brand-tag { font-size: .72rem; }
  .header-inner { gap: .65rem; }
  .lang-toggle { padding: .5rem .65rem; font-size: .68rem; flex-shrink: 0; }

  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    padding: 6rem 2.25rem 2rem;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    border-left: 1px solid var(--line-ink);
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.65rem;
  }
  .primary-nav a { font-size: .92rem; padding: .35rem 0; }
  .primary-nav .nav-cta { margin-top: 1rem; width: 100%; }
  .primary-nav .nav-cta a { width: 100%; padding: 1rem; font-size: .82rem; min-height: 52px; }

  /* Backdrop when menu is open */
  body.menu-open { overflow: hidden; }
  body.menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 95;
    animation: fadeIn .25s ease both;
  }
  .site-header { z-index: 100; }
  .primary-nav { z-index: 110; }

  .hero {
    min-height: 92vh;
    min-height: 92dvh;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(21, 19, 15, 0.3) 0%,
        rgba(21, 19, 15, 0.1) 25%,
        rgba(21, 19, 15, 0.4) 55%,
        rgba(21, 19, 15, 0.9) 100%);
  }
  .hero-bg img { filter: brightness(0.8) saturate(0.95); }
  .hero-inner { padding-top: 6rem; padding-bottom: 1.5rem; }
  .hero-content { max-width: 100%; }
  .hero-title-main { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-title-sub { font-size: 1.05rem; }
  .signature { font-size: 1.5em; }
  .hero-tagline { font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: .65rem; }
  .hero-ctas .btn { width: 100%; min-height: 50px; }
  .hero-services-strip {
    margin-top: 2rem;
    padding: 1rem 0;
    gap: .65rem 1rem;
    justify-content: flex-start;
  }
  .hero-services-strip li { font-size: .62rem; letter-spacing: .18em; }
  .hero-scroll { display: none; }

  .section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2rem; }
  .service-card { padding: 2rem 1.5rem; }
  .service-card h3 { font-size: 1.4rem; }
  .testimonial { padding: 1.75rem 1.5rem; }
  .testimonial blockquote { font-size: 1.02rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-col { text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }

  /* Gallery: full width on mobile */
  .gallery-grid { grid-template-columns: 1fr; gap: .85rem; }
  .gallery-item--feature,
  .gallery-item--portrait,
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  /* Always show caption on mobile (no hover) */
  .gallery-item figcaption {
    transform: translateY(0);
    opacity: 1;
    padding: 1.25rem 1rem .85rem;
    font-size: .9rem;
  }

  /* Show mobile sticky CTA */
  .mobile-cta { display: flex; }

  /* Reserve space at bottom for sticky CTA */
  body { padding-bottom: 78px; }
  .site-footer { padding-bottom: calc(2rem + var(--safe-bottom)); }
  .back-to-top { bottom: calc(88px + var(--safe-bottom)); }
}

@media (max-width: 480px) {
  /* Hide brand text on smallest screens — woodpecker icon is the home link */
  .brand-text { display: none; }
  .brand-mark { height: 34px; }
  .lang-toggle { padding: .5rem .7rem; font-size: .68rem; }
  .value-grid { gap: 1rem; }
  .value { font-size: .65rem; letter-spacing: .18em; }
  .hero-location { font-size: .62rem; letter-spacing: .25em; }
  .hero-trio { height: 90px; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .nav-toggle, .hero-ctas, .contact-form, .footer-bg-bird, .why-bg-bird, .mobile-cta, .back-to-top, .lang-toggle { display: none; }
  body { color: #000; background: #fff; padding: 0; }
  .why, .site-footer { background: #fff; color: #000; }
  * { background-image: none !important; }
}
