/* SLA Groups — house theme
   Brand: red · forest green · gold */

:root {
  --red: #c8102e;
  --red-deep: #8e0b20;
  --green: #1a5c32;
  --green-deep: #0d331c;
  --gold: #e4b73a;
  --gold-soft: rgba(228, 183, 58, 0.16);
  --ink: #0c100e;
  --ink-2: #161c18;
  --paper: #f6f1e8;
  --cream: #efe8d8;
  --white: #fffcf6;
  --muted: #5d675f;
  --line: rgba(228, 183, 58, 0.28);
  --shadow: 0 28px 60px rgba(12, 16, 14, 0.18);
  --radius: 22px;
  --header-h: 86px;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

body.nav-open { overflow: hidden; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.container-wide {
  width: min(1400px, calc(100% - 28px));
  margin-inline: auto;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- Type / buttons ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.display {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg, #b8891c, #e4b73a 35%, #fff1b0 50%, #e4b73a 65%, #b8891c);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil 8s linear infinite;
}

.lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section { padding: 100px 0; }
.section-ink {
  background: var(--ink);
  color: var(--white);
}
.section-cream { background: var(--cream); }

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  z-index: -1;
}

.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(120%); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(228, 183, 58, 0.28);
}

.btn-line {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

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

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

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Chrome ---------- */
.page-grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: 2px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(228, 183, 58, 0.7);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity 0.55s ease, visibility 0.55s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(228, 183, 58, 0.22);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader img {
  width: 96px;
  mix-blend-mode: lighten;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(12, 16, 14, 0.42);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, height 0.35s, border-color 0.35s, transform 0.45s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(12, 16, 14, 0.94);
  border-bottom-color: var(--line);
  height: 74px;
}

.site-header.is-hidden { transform: translateY(-110%); }
body.nav-open .site-header.is-hidden { transform: none; }

.header-inner {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand-logo img {
  height: 64px;
  width: auto;
  mix-blend-mode: lighten;
  transition: transform 0.45s var(--ease);
}

.brand-logo:hover img { transform: scale(1.04); }

.site-nav ul {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(255, 252, 246, 0.78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--gold); }

.site-nav a.is-active::after,
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { min-height: 42px; padding: 0 18px; font-size: 11px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.3s;
}

.menu-toggle span { top: 21px; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero (aligned with SS Events) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 14, 0.88) 0%, rgba(12, 16, 14, 0.55) 48%, rgba(12, 16, 14, 0.28) 100%),
    linear-gradient(180deg, rgba(12, 16, 14, 0.35) 0%, rgba(12, 16, 14, 0.15) 40%, rgba(12, 16, 14, 0.7) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(228, 183, 58, 0.35) 0.6px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 0 140px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content { max-width: none; }

.hero-content .kicker { color: var(--gold); }

.hero-content h1 {
  margin: 18px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  font-weight: 600;
  line-height: 0.92;
}

.hero-content h1 em {
  display: block;
  font-style: italic;
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: var(--gold);
  animation: none;
}

.hero-content p {
  max-width: 520px;
  color: rgba(255, 252, 246, 0.78);
  font-size: 1.08rem;
  margin-bottom: 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-ornament {
  position: absolute;
  right: 8%;
  top: 28%;
  width: min(280px, 30vw);
  height: min(280px, 30vw);
  border: 1px solid rgba(228, 183, 58, 0.28);
  border-radius: 50%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(228, 183, 58, 0.35);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}

.hero-ornament::after {
  inset: 40px;
  animation-direction: reverse;
  animation-duration: 16s;
}

.hero-panel {
  justify-self: end;
  width: min(360px, 100%);
  padding: 28px 24px 20px;
  background: rgba(12, 16, 14, 0.55);
  border: 1px solid var(--line);
  border-radius: 28px;
  backdrop-filter: blur(16px);
}

.contact-seal {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.contact-seal span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.contact-seal small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, 0.7);
}

.contact-quick { display: grid; gap: 8px; }

.contact-quick a {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.contact-quick a:hover {
  border-color: var(--line);
  background: rgba(228, 183, 58, 0.08);
}

.contact-quick i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
}

.contact-quick strong { display: block; font-size: 0.95rem; }
.contact-quick span { display: block; color: rgba(255, 252, 246, 0.62); font-size: 0.85rem; }

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(228, 183, 58, 0.18);
}

.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(12, 16, 14, 0.72);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.marquee-track span { padding: 0 28px; white-space: nowrap; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- About / house ---------- */
.house-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.photo-stack {
  position: relative;
  height: min(520px, 70vh);
}

.photo-stack img {
  position: absolute;
  width: 58%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-stack img:nth-child(1) { left: 0; top: 10%; transform: rotate(-6deg); }
.photo-stack img:nth-child(2) { right: 4%; top: 0; transform: rotate(5deg); z-index: 2; }
.photo-stack img:nth-child(3) { left: 22%; bottom: 0; width: 48%; transform: rotate(2deg); z-index: 3; }

.photo-frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.photo-frame:hover img { transform: scale(1.06); }

.values { display: grid; gap: 0; margin-top: 28px; }

.values li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(12,16,14,0.1);
  transition: transform 0.35s var(--ease);
}

.values li:hover { transform: translateX(8px); }

.values em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--red);
}

.values h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.values p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--white);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: transform 0.45s var(--ease);
}

.pillar:hover { transform: translateY(-8px); }

.pillar-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.9s var(--ease);
  z-index: -2;
}

.pillar:hover .pillar-media { transform: scale(1.12); }

.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12,16,14,0.1) 10%, rgba(12,16,14,0.88) 100%);
}

.pillar-no {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 8px 0 10px;
}

.pillar p { color: rgba(255,252,246,0.76); margin-bottom: 18px; }

.pillar.wide { grid-column: span 2; min-height: 420px; }

/* ---------- Stats / process ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #101610, #1a5c32 55%, #0c100e);
  color: var(--white);
}

.stat {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--gold);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,252,246,0.68);
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.process-list { display: grid; gap: 16px; }

.process-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(12,16,14,0.08);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.process-item:hover {
  transform: translateX(8px);
  border-color: var(--gold);
}

.process-item b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.process-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.process-item p { color: var(--muted); font-size: 0.95rem; }

.process-visual {
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
}

.process-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  place-items: end start;
  padding: calc(var(--header-h) + 48px) 0 56px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: ken 18s ease-in-out infinite alternate;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12,16,14,0.9), rgba(12,16,14,0.4));
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.95;
  margin: 10px 0 12px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.crumbs {
  display: flex;
  gap: 10px;
  color: rgba(255,252,246,0.6);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crumbs a { color: var(--gold); }

/* ---------- Services chapters ---------- */
.chapter {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: 72vh;
  padding: 80px min(60px, 5vw);
  scroll-margin-top: 90px;
}

.chapter:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--cream);
}

.chapter:nth-child(even) .chapter-visual { order: 2; }

.chapter-visual {
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
}

.chapter-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.chapter:hover .chapter-visual img { transform: scale(1.06); }

.chapter-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin: 8px 0 14px;
}

.chapter-copy p { color: var(--muted); margin-bottom: 22px; }

.chapter-no {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}

/* ---------- Gallery ---------- */
.gallery-wall {
  columns: 3;
  column-gap: 14px;
}

.gallery-shot {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-shot img {
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease);
}

.gallery-shot:hover img { transform: scale(1.06); }

.gallery-shot::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(12,16,14,0.42);
  color: var(--gold);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-shot:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(12,16,14,0.92);
  display: none;
  place-items: center;
  padding: 40px;
}

.lightbox.is-open { display: grid; }

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close { top: 18px; right: 24px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* ---------- Contact ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(12,16,14,0.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}

.contact-card:hover { transform: translateY(-6px); }

.contact-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  margin-bottom: 14px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.contact-card p, .contact-card a { color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

.field input,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(12,16,14,0.12);
  color: var(--ink);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.25s;
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field textarea:focus { border-color: var(--gold); }

.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(228,183,58,0.28);
}

.form-note { margin-top: 10px; font-size: 0.92rem; }
.form-note.ok { color: var(--green); }
.form-note.err { color: var(--red); }

.contact-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(12,16,14,0.08);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-goldline {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 40px;
  padding: 72px 0 36px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  height: 72px;
  mix-blend-mode: lighten;
  margin-bottom: 14px;
}

.footer-brand p { color: rgba(255,252,246,0.66); max-width: 360px; }

.socials { display: flex; gap: 10px; margin-top: 18px; }

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  transition: 0.3s;
}

.socials a:hover { background: var(--gold); color: var(--ink); }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255,252,246,0.72);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p,
.footer-contact a {
  color: rgba(255,252,246,0.72);
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0;
  color: rgba(255,252,246,0.5);
  font-size: 13px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.78;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228,183,58,0.28);
  pointer-events: none;
  user-select: none;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(12,16,14,0.28);
  animation: float 5s ease-in-out infinite;
}

.whatsapp-float img { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
}

.stagger.is-in > * {
  animation: rise 0.7s var(--ease) forwards;
}

.stagger.is-in > *:nth-child(1) { animation-delay: 0.04s; }
.stagger.is-in > *:nth-child(2) { animation-delay: 0.12s; }
.stagger.is-in > *:nth-child(3) { animation-delay: 0.2s; }
.stagger.is-in > *:nth-child(4) { animation-delay: 0.28s; }
.stagger.is-in > *:nth-child(5) { animation-delay: 0.36s; }

.hero-content .kicker,
.hero-content h1,
.hero-content p,
.hero-actions,
.hero-panel,
.page-hero .kicker,
.page-hero h1,
.page-hero p,
.page-hero .crumbs {
  animation: rise 1s var(--ease) both;
}

.hero-content h1, .page-hero h1 { animation-delay: 0.12s; }
.hero-content p, .page-hero p { animation-delay: 0.24s; }
.hero-actions, .page-hero .crumbs { animation-delay: 0.36s; }
.hero-panel { animation-delay: 0.28s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes foil { to { background-position: 220% center; } }

@keyframes ken {
  from { transform: scale(1.04); }
  to { transform: scale(1.12) translate3d(-1.4%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal, .stagger > * { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .hero-layout,
  .house-grid,
  .process,
  .contact-grid,
  .footer-top,
  .chapter,
  .chapter:nth-child(even) { grid-template-columns: 1fr; }
  .chapter:nth-child(even) .chapter-visual { order: 0; }
  .pillars { grid-template-columns: 1fr; }
  .pillar.wide { grid-column: auto; min-height: 360px; }
  .hero-panel { justify-self: stretch; width: 100%; }
  .hero-ornament { display: none; }
  .gallery-wall { columns: 2; }
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    background: rgba(12,16,14,0.97);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    display: none;
  }
  body.nav-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; }
  .menu-toggle { display: block; }
  .stats, .contact-cards { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .photo-stack { height: 380px; margin-bottom: 20px; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .section { padding: 72px 0; }
  .gallery-wall { columns: 1; }
  .hero-layout { padding-bottom: 120px; }
  .brand-logo img { height: 52px; }
  .chapter, .chapter:nth-child(even) { padding: 48px 20px; min-height: 0; }
  .chapter-visual, .chapter-visual img, .process-visual img { min-height: 240px; }
}

/* ---------- Contact desk ---------- */
.desk-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 36px) 0 88px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.desk-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: ken 18s ease-in-out infinite alternate;
}

.desk-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(228, 183, 58, 0.16), transparent 42%),
    linear-gradient(105deg, rgba(12, 16, 14, 0.94) 8%, rgba(12, 16, 14, 0.58) 48%, rgba(12, 16, 14, 0.32) 100%);
}

.desk-orbit,
.desk-orbit-2 {
  position: absolute;
  right: 6%;
  top: 16%;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  border: 1px solid rgba(228, 183, 58, 0.28);
  border-radius: 50%;
  animation: spin 28s linear infinite;
  pointer-events: none;
}

.desk-orbit-2 {
  inset: auto 10% 12% auto;
  width: min(220px, 28vw);
  height: min(220px, 28vw);
  top: auto;
  right: 10%;
  bottom: 12%;
  border-style: dashed;
  animation-duration: 16s;
  animation-direction: reverse;
}

.desk-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.desk-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 560;
  line-height: 0.92;
  margin: 14px 0 18px;
}

.desk-copy h1 em {
  font-style: italic;
  background: linear-gradient(100deg, #b8891c, #e4b73a 35%, #fff1b0 50%, #e4b73a 65%, #b8891c);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil 8s linear infinite;
}

.desk-copy p {
  max-width: 520px;
  color: rgba(255, 252, 246, 0.76);
  margin-bottom: 28px;
}

.desk-panel {
  justify-self: end;
  width: min(380px, 100%);
  padding: 28px 26px 22px;
  background: rgba(12, 16, 14, 0.55);
  border: 1px solid var(--line);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.desk-seal {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  text-align: center;
  animation: float 6s ease-in-out infinite;
  position: relative;
}

.desk-seal::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px dashed rgba(228, 183, 58, 0.35);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.desk-seal span {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}

.desk-seal small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, 0.7);
}

.desk-quick { display: grid; gap: 6px; }

.desk-quick a {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.desk-quick a:hover {
  border-color: var(--line);
  background: rgba(228, 183, 58, 0.08);
}

.desk-quick i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
}

.desk-quick strong { display: block; font-size: 0.95rem; }
.desk-quick span { display: block; color: rgba(255, 252, 246, 0.62); font-size: 0.85rem; }

.desk-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.desk-hours-ring {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin 3.2s linear infinite;
  flex-shrink: 0;
}

.desk-hours strong {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desk-hours span { color: rgba(255, 252, 246, 0.7); font-size: 0.9rem; }

.desk-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.desk-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 8px auto 0;
  background: var(--gold);
  animation: deskDrop 1.6s ease-in-out infinite;
}

.desk-studio { background: var(--cream); }

.desk-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
}

.desk-map {
  grid-column: span 7;
  grid-row: span 2;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(12, 16, 14, 0.08);
}

.desk-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.desk-map-pin {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desk-tile {
  grid-column: span 5;
  position: relative;
  padding: 28px 26px;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(12, 16, 14, 0.08);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.desk-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 183, 58, 0.55);
}

.desk-tile-no {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
}

.desk-tile i {
  color: var(--green);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.desk-tile h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.desk-tile p { color: var(--muted); }

.desk-tile-wide {
  grid-column: span 5;
  background:
    linear-gradient(160deg, rgba(26, 92, 50, 0.94), rgba(12, 16, 14, 0.92)),
    url("../images/banner/banner2.png") center/cover no-repeat;
  color: var(--white);
}

.desk-tile-wide h3 { color: var(--white); }
.desk-tile-wide p { color: rgba(255, 252, 246, 0.78); }
.desk-tile-wide .desk-tile-no { color: var(--gold); }

.desk-letter {
  background:
    radial-gradient(circle at 12% 20%, rgba(228, 183, 58, 0.12), transparent 28%),
    var(--paper);
}

.desk-letter-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.desk-steps { display: grid; gap: 18px; }

.desk-steps li {
  padding: 16px 0 16px 18px;
  border-left: 2px solid var(--gold);
}

.desk-steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.desk-steps span { color: var(--muted); }

.desk-invite {
  position: relative;
  padding: 36px 32px 28px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.desk-invite-foil {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.7;
  animation: deskFoil 4s ease-in-out infinite;
}

.desk-invite-head {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(228, 183, 58, 0.35);
}

.desk-invite-head span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
}

.desk-invite-head em {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--ink);
}

.desk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.desk-chips button {
  border: 1px solid rgba(12, 16, 14, 0.12);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
}

.desk-chips button.is-active,
.desk-chips button:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--gold);
}

.desk-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.desk-full { grid-column: 1 / -1; }
.desk-fields .field { margin-bottom: 0; }

.desk-invite-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.desk-invite-foot span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.desk-copy .kicker,
.desk-copy h1,
.desk-copy p,
.desk-copy .btn-row,
.desk-panel {
  animation: rise 1s var(--ease) both;
}

.desk-copy h1 { animation-delay: 0.12s; }
.desk-copy p { animation-delay: 0.24s; }
.desk-copy .btn-row { animation-delay: 0.36s; }
.desk-panel { animation-delay: 0.28s; }

@keyframes deskDrop {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(1.35); opacity: 1; }
}

@keyframes deskFoil {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}

@media (max-width: 1100px) {
  .desk-hero-grid,
  .desk-letter-grid { grid-template-columns: 1fr; }
  .desk-panel { justify-self: stretch; width: 100%; }
  .desk-map,
  .desk-tile,
  .desk-tile-wide { grid-column: span 12; }
  .desk-map { grid-row: auto; min-height: 320px; }
  .desk-orbit { display: none; }
}

@media (max-width: 700px) {
  .desk-fields { grid-template-columns: 1fr; }
  .desk-hero { padding-bottom: 72px; align-items: end; }
  .desk-invite { padding: 28px 18px 20px; }
}

/* ---------- HQ home (distinct from SS Events) ---------- */
.hq-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) 1.08fr;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink);
  color: var(--white);
}

.hq-brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 36px) 48px 48px;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(200, 16, 46, 0.18), transparent 46%),
    radial-gradient(ellipse at 80% 0%, rgba(26, 92, 50, 0.22), transparent 40%),
    var(--ink);
  border-right: 1px solid var(--line);
}

.hq-brand h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  font-weight: 560;
  line-height: 0.95;
  margin: 14px 0 16px;
}

.hq-brand h1 em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hq-brand p {
  max-width: 420px;
  color: rgba(255, 252, 246, 0.72);
  margin-bottom: 8px;
}

.hq-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hq-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.hq-facts span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, 0.55);
}

.hq-triptych {
  display: flex;
  min-height: 100%;
}

.hq-door {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 22px 32px;
  color: var(--white);
  isolation: isolate;
  transition: flex 0.7s var(--ease);
}

.hq-door.is-on,
.hq-door:hover { flex: 2.1; }

.hq-door-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.9s var(--ease);
}

.hq-door.is-on .hq-door-bg,
.hq-door:hover .hq-door-bg { transform: scale(1); }

.hq-door::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 16, 14, 0.15) 20%, rgba(12, 16, 14, 0.88) 100%);
}

.hq-door em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
}

.hq-door h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin: 6px 0 8px;
}

.hq-door p {
  max-width: 260px;
  color: rgba(255, 252, 246, 0.72);
  font-size: 0.92rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.45s var(--ease);
}

.hq-door.is-on p,
.hq-door:hover p {
  opacity: 1;
  max-height: 80px;
}

.hq-door-go {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hq-intro {
  background:
    radial-gradient(ellipse at 8% 20%, rgba(200, 16, 46, 0.08), transparent 42%),
    radial-gradient(ellipse at 90% 80%, rgba(26, 92, 50, 0.1), transparent 40%),
    var(--paper);
}

.hq-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.hq-lockup {
  position: relative;
  display: grid;
  justify-items: start;
  padding: 28px 8px 12px;
}

.hq-lockup-oval {
  position: absolute;
  inset: -8% -6% 4% -10%;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
  animation: spin 28s linear infinite;
}

.hq-lockup-sla {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 12vw, 8.5rem);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: var(--red);
}

.hq-lockup-groups {
  position: relative;
  margin-top: -0.08em;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
  color: var(--green);
  letter-spacing: 0.12em;
}

.hq-lockup-line {
  position: relative;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gold);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hq-intro-copy .btn { margin-top: 22px; }

.hq-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.hq-mosaic-main {
  grid-row: span 2;
  overflow: hidden;
  border-radius: 28px;
  min-height: 520px;
  margin: 0;
}

.hq-mosaic-main img,
.hq-mosaic-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hq-mosaic-main:hover img,
.hq-mosaic-side:hover img { transform: scale(1.05); }

.hq-mosaic-side {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  min-height: 200px;
}

.hq-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hq-why article {
  padding: 18px 16px;
  background: var(--white);
  border-radius: 16px;
  border-left: 3px solid var(--gold);
}

.hq-why b {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.1rem;
}

.hq-why h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 4px 0 6px;
}

.hq-why p { color: var(--muted); font-size: 0.9rem; }

.hq-doors { display: grid; gap: 14px; }

.hq-doors article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(12, 16, 14, 0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.hq-doors article:hover {
  transform: translateX(8px);
  border-color: var(--gold);
}

.hq-doors img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.hq-doors article > div { padding: 18px 22px 18px 0; }

.hq-doors span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hq-doors h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 4px 0 8px;
}

.hq-doors p { color: var(--muted); margin-bottom: 10px; }

.hq-doors a {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.hq-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.hq-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hq-steps article {
  text-align: center;
  padding: 0 24px;
}

.hq-steps b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.hq-steps h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.hq-steps p { color: var(--muted); }

.hq-cta {
  background:
    linear-gradient(120deg, rgba(12, 16, 14, 0.92), rgba(26, 92, 50, 0.82)),
    url("../images/about/about3.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 88px 0;
}

.hq-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hq-cta p {
  margin-top: 12px;
  color: rgba(255, 252, 246, 0.72);
  max-width: 460px;
}

.hq-cta-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.hq-cta-links a:not(.btn) {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.hq-brand .kicker,
.hq-brand h1,
.hq-brand p,
.hq-brand .btn-row,
.hq-facts {
  animation: rise 1s var(--ease) both;
}

.hq-brand h1 { animation-delay: 0.1s; }
.hq-brand p { animation-delay: 0.2s; }
.hq-brand .btn-row { animation-delay: 0.3s; }
.hq-facts { animation-delay: 0.4s; }

@media (max-width: 1100px) {
  .hq-hero,
  .hq-intro-grid,
  .hq-mosaic,
  .hq-cta-grid,
  .hq-steps { grid-template-columns: 1fr; }
  .hq-mosaic-main { grid-row: auto; min-height: 320px; }
  .hq-hero { min-height: 0; }
  .hq-triptych { min-height: 72vh; }
  .hq-brand { padding: calc(var(--header-h) + 28px) 28px 32px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hq-doors article { grid-template-columns: 1fr; }
  .hq-doors article > div { padding: 18px 20px 20px; }
  .hq-steps::before { display: none; }
  .hq-steps { gap: 28px; }
}

@media (max-width: 700px) {
  .hq-triptych { flex-direction: column; min-height: 0; }
  .hq-door { min-height: 220px; flex: none !important; }
  .hq-door p { opacity: 1; max-height: none; }
  .hq-why { grid-template-columns: 1fr; }
}
