/* =========================================================
   Tactical Detail Co — Design System
   Bone / cream / soft sand + charcoal + signature gold
   ========================================================= */

:root {
  /* Brand tokens */
  --bone: #F7F3EB;
  --cream: #FBF8F2;
  --sand: #EDE4D4;
  --sand-deep: #D9CBB3;
  --coyote: #C4A882;
  --white: #FFFFFF;
  --charcoal: #1C1B19;
  --charcoal-soft: #2E2C29;
  --ink: #3D3A36;
  --muted: #6B6560;
  --gold: #C9A227;
  --gold-mid: #D4AF37;
  --gold-light: #E9D182;
  --gold-pale: #F5EBC7;
  --shadow: 0 20px 50px rgba(28, 27, 25, 0.12);
  --shadow-sm: 0 8px 24px rgba(28, 27, 25, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--bone);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid) 45%, var(--gold));
  color: var(--charcoal);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
}
.btn--gold:hover { box-shadow: 0 14px 36px rgba(201, 162, 39, 0.45); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-light);
}
.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.nav {
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.nav__mark { flex-shrink: 0; }
.nav__name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__name strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
}
.site-header:not(.is-scrolled) .nav__name strong { color: var(--charcoal); }
.site-header:not(.is-scrolled) .nav__name small { color: var(--muted); }
.site-header:not(.is-scrolled) .nav__menu a { color: var(--ink); }
.site-header.is-scrolled .nav__name strong { color: var(--charcoal); }
.site-header:not(.is-scrolled) {
  background: rgba(251, 248, 242, 0.55);
  backdrop-filter: blur(10px);
}
.nav__name small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}
.nav__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.25s;
}
.nav__menu a:hover { color: var(--gold); }
.nav__cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--charcoal) !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 2;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}
.site-header:not(.is-scrolled) .nav__toggle span { background: var(--charcoal); }
.site-header.is-scrolled .nav__toggle span { background: var(--charcoal); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Sections common ---------- */
.section {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 1.25rem;
  overflow: hidden;
  isolation: isolate;
}
.section__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.25rem;
}
.section__head--light h2,
.section__head--light .section__sub {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1rem;
}
.section__sub {
  color: var(--muted);
  margin-top: 0.85rem;
  font-size: 1.05rem;
}
.deco { margin: 1rem auto 0; opacity: 0.9; }
.deco--light { filter: brightness(1.3); }
.deco-line { margin: 1.25rem 0; }

/* Parallax layers */
.parallax-layer {
  will-change: transform;
}
.parallax-bg {
  position: absolute;
  inset: -8% 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: translateZ(0);
}
.parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(247, 243, 235, 0.42) 0%,
    rgba(251, 248, 242, 0.48) 55%,
    rgba(237, 228, 212, 0.55) 100%);
}
.parallax-soft {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(233, 209, 130, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(196, 168, 130, 0.10), transparent 50%);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--nav-h) + 1.5rem) 1.25rem 3.5rem;
}

.hero__bg {
  position: absolute;
  inset: -14% 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(1.22) saturate(1.08) contrast(0.95);
}

/* Soft cream / gold mist — NOT heavy black vignette */
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(251, 248, 242, 0.72) 0%,
      rgba(247, 243, 235, 0.35) 26%,
      rgba(255, 252, 245, 0.18) 52%,
      rgba(251, 248, 242, 0.78) 100%),
    radial-gradient(ellipse 95% 75% at 50% 42%,
      rgba(233, 209, 130, 0.22),
      transparent 62%),
    linear-gradient(90deg,
      rgba(251, 248, 242, 0.45) 0%,
      transparent 18%,
      transparent 82%,
      rgba(251, 248, 242, 0.45) 100%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-mid);
  opacity: 0.4;
  animation: float-particle 9s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.hero__particles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero__particles span:nth-child(2) { top: 32%; left: 78%; width: 4px; height: 4px; animation-delay: 1.5s; }
.hero__particles span:nth-child(3) { top: 58%; left: 22%; width: 8px; height: 8px; animation-delay: 3s; }
.hero__particles span:nth-child(4) { top: 72%; left: 88%; animation-delay: 2s; }
.hero__particles span:nth-child(5) { top: 42%; left: 52%; width: 3px; height: 3px; animation-delay: 4s; }
.hero__particles span:nth-child(6) { top: 14%; left: 48%; animation-delay: 5.5s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-28px) scale(1.2); opacity: 0.6; }
}

.hero__stage {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.hero__brand {
  text-align: center;
  max-width: 720px;
}

.hero__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.65);
  border: 1px solid rgba(201, 162, 39, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__title {
  font-size: clamp(2.35rem, 6vw, 4.25rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
  text-shadow: 0 1px 0 rgba(255, 252, 245, 0.5);
}

.hero__line { display: block; }

.hero__line--gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-mid), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tag {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: var(--ink);
  opacity: 0.85;
}

/* Frosted glass process cards — hero star */
.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  width: 100%;
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.35rem, 2.8vw, 1.85rem) clamp(1rem, 2vw, 1.4rem) clamp(1.5rem, 3vw, 1.9rem);
  border-radius: 18px;
  background: rgba(255, 252, 245, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 18px 48px rgba(28, 27, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow:
    0 24px 56px rgba(28, 27, 25, 0.16),
    0 0 0 1px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.35rem;
}

.hero-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 0.15rem 0 0.35rem;
}

.hero-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.hero-card__copy {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 28ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.15rem;
}

.btn--ghost-light {
  background: rgba(255, 252, 245, 0.72);
  border-color: rgba(201, 162, 39, 0.55);
  color: var(--charcoal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Offer ---------- */
.offer { padding-top: 1rem; padding-bottom: 1rem; }
.offer .parallax-bg::after {
  background: linear-gradient(180deg, rgba(247,243,235,0.45), rgba(251,248,242,0.52));
}
.offer__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: var(--shadow);
}
.offer__icon { margin: 0 auto 1rem; }
.offer__card h2 { margin-bottom: 0.5rem; }
.offer__card > p { color: var(--ink); font-size: 1.1rem; }
.offer__note {
  color: var(--muted) !important;
  font-size: 0.95rem !important;
  margin: 1rem auto 1.5rem;
  max-width: 420px;
}

/* ---------- Services ---------- */
.services {
  background: var(--cream);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc {
  background: var(--white);
  border: 1px solid rgba(217, 203, 179, 0.7);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  box-shadow: var(--shadow-sm);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-mid);
}
.svc img { margin-bottom: 0.85rem; }
.svc h3 { margin-bottom: 0.45rem; color: var(--charcoal); }
.svc p { color: var(--muted); font-size: 0.95rem; }
.svc--featured {
  background: linear-gradient(160deg, var(--cream) 0%, var(--gold-pale) 100%);
  border-color: var(--gold);
  color: var(--charcoal);
}
.svc--featured h3 { color: var(--gold); }
.svc--featured p { color: var(--ink); }
.svc--featured .btn { margin-top: 1rem; }


/* ---------- Process — compact inline strip ---------- */
.process {
  background: var(--bone);
  padding: 0.85rem 1rem 0.5rem;
  overflow: hidden;
}
.process__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.process__strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.75rem;
  width: fit-content;
  max-width: 100%;
  background: var(--white);
  border: 1px solid rgba(217, 203, 179, 0.85);
  border-radius: 999px;
  padding: 0.65rem 0.85rem 0.65rem 1rem;
  box-shadow: var(--shadow-sm);
}
.process__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.95);
  border: 1px solid rgba(201, 162, 39, 0.3);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  white-space: nowrap;
}
.process__chip:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.16);
}
.process__chip-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.process__arrow {
  color: var(--gold-mid);
  font-size: 1rem;
  opacity: 0.75;
}
.process__cta { margin-left: 0.15rem; }

/* ---------- Gallery ---------- */
.gallery {
  background: var(--bone);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.85rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }

/* ---------- Mobile service ---------- */
.mobile-svc .eyebrow--light { color: var(--gold); }
.mobile-svc .deco--light { filter: none; }


.mobile-svc__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.mobile-svc__copy { color: var(--charcoal); }
.mobile-svc__copy h2 { margin-bottom: 0.25rem; }
.mobile-svc__copy > p { margin: 1rem 0 1.25rem; color: var(--ink); max-width: 480px; }
.mobile-svc__list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.mobile-svc__list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 500;
}
.mobile-svc__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-mid);
}
.mobile-svc__card {
  background: rgba(251, 248, 242, 0.95);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 39, 0.4);
}
.mobile-svc__card img { margin: 0 auto 1rem; }
.mobile-svc__card h3 { margin-bottom: 0.5rem; }
.mobile-svc__card p { color: var(--muted); }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about__visual { position: relative; }
.about__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
}
.about__frame img {
  width: 100%;
  height: 520px; object-fit: cover; object-position: center top;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  background: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--gold-light);
}
.about__badge img { width: 70px; height: auto; }
.about__role {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0.35rem 0 0;
}
.about__copy p { margin-bottom: 1rem; color: var(--ink); }
.about__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.about__links a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.about__links a:hover { border-color: var(--gold); }

/* ---------- Contact ---------- */
.contact .section__head--light h2,
.contact .section__head--light .section__sub { color: var(--charcoal); }
.contact .eyebrow--light,
.contact .section__head--light .eyebrow { color: var(--gold); }
.contact .deco--light { filter: none; }


.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact__card {
  background: rgba(255, 252, 245, 0.82);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  text-align: center;
  color: var(--charcoal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.contact__card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
.contact__phone:hover { color: var(--gold); }
.contact__card p { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; }
.contact__social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.contact__social a {
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,162,39,0.35);
}
.contact__social a:hover { color: var(--charcoal); }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(251, 248, 242, 0.96);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand-deep);
  border-radius: 10px;
  background: var(--white);
  color: var(--charcoal);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}
.contact__full { grid-column: 1 / -1; }
.contact__form-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
}
.contact__form-note a { color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--sand) 0%, #E5D9C4 100%);
  color: var(--ink);
  padding: 3.5rem 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer__brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.footer__brand p { font-size: 0.9rem; color: var(--muted); }
.footer__meta p { margin-bottom: 0.35rem; font-size: 0.92rem; }
.footer__meta a { color: var(--gold); font-weight: 600; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}
.footer__links a {
  font-weight: 500;
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--gold); }
.footer__bar {
  border-top: 1px solid rgba(28, 27, 25, 0.1);
  padding: 1.15rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .parallax-layer {
    transform: none !important;
    will-change: auto;
  }
  .hero__scroll-line { animation: none; }
  .hero__particles span { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  /* Kill parallax drift + invisible reveals that invent empty cream */
  .parallax-layer {
    transform: none !important;
    will-change: auto !important;
  }
  /* No invisible headers creating fake empty gaps */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .section {
    padding: 1.25rem 0.85rem;
  }
  .section__head {
    margin: 0 auto 0.85rem;
  }
  .section__head .deco,
  .section__sub {
    display: none;
  }
  .section__head h2 {
    font-size: 1.35rem;
    margin: 0.15rem 0 0;
  }
  .eyebrow { font-size: 0.68rem; margin-bottom: 0.2rem; }

  /* Hero cards — 3 across, compact, no clamp cut-off */
  .hero__stage { padding-inline: 0.65rem; padding-bottom: 1.25rem; }
  .hero__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    max-width: none;
    width: 100%;
    margin: 0;
  }
  .hero-card {
    padding: 0.65rem 0.45rem 0.7rem;
    overflow: hidden;
    min-width: 0;
  }
  .hero-card__icon { width: 24px; height: 24px; }
  .hero-card__num { font-size: 1.05rem; }
  .hero-card__title { font-size: 0.72rem; line-height: 1.2; }
  .hero-card__copy {
    font-size: 0.58rem;
    line-height: 1.35;
    max-height: 4.2em;
    overflow: hidden;
  }

  /* Services — 3 across */
  .services { padding-top: 1rem; padding-bottom: 1.1rem; }
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }
  .svc {
    padding: 0.7rem 0.5rem;
    min-width: 0;
    overflow: hidden;
  }
  .svc img { width: 24px; height: 24px; margin-bottom: 0.35rem; }
  .svc h3 { font-size: 0.78rem; line-height: 1.2; }
  .svc p {
    font-size: 0.62rem;
    line-height: 1.35;
    max-height: 5.4em;
    overflow: hidden;
  }
  .svc--featured .btn { display: none; }

  /* Process strip — fully visible, wraps if needed */
  .process {
    padding: 0.65rem 0.65rem 0.35rem;
    overflow: visible;
  }
  .process__inner {
    width: 100%;
    padding: 0;
    justify-content: center;
  }
  .process__strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 0.3rem 0.35rem;
    padding: 0.45rem 0.5rem;
    border-radius: 18px;
    overflow: visible;
  }
  .process__arrow { display: none; }
  .process__chip {
    padding: 0.28rem 0.5rem;
    font-size: 0.68rem;
    white-space: nowrap;
  }
  .process__chip-num { font-size: 0.8rem; }
  .process__cta {
    margin: 0;
    padding: 0.35rem 0.75rem !important;
    font-size: 0.68rem !important;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  /* Gallery — 3 across, tight under process */
  .gallery {
    padding-top: 0.75rem;
    padding-bottom: 1.1rem;
  }
  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 100px;
    gap: 0.4rem;
  }
  .gallery__item--wide {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* About / mobile svc — side by side but safe */
  .mobile-svc__layout,
  .about__layout {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .about__frame img { height: 220px; }
  .about__badge,
  .about__badge {
    width: 64px;
    height: 64px;
    right: 0.25rem;
    bottom: -0.5rem;
  }
  .about__badge img { width: 40px; }
  .about__copy p { font-size: 0.78rem; }
  .about__links { flex-wrap: wrap; gap: 0.25rem; font-size: 0.72rem; }

  /* Contact — 3 cards, no overflow */
  .contact { padding-top: 1rem; padding-bottom: 1.1rem; }
  .contact__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }
  .contact__card {
    padding: 0.75rem 0.45rem;
    min-width: 0;
    overflow: hidden;
    text-align: center;
  }
  .contact__card h3 { font-size: 0.8rem; }
  .contact__card p {
    font-size: 0.58rem;
    line-height: 1.3;
  }
  .contact__phone {
    display: block;
    font-size: 0.72rem !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.2;
    margin: 0.35rem 0;
  }
  .contact__card .btn {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 0.4rem 0.35rem !important;
    font-size: 0.58rem !important;
    white-space: normal;
    line-height: 1.2;
  }
  .contact__social {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }
  .contact__social a { font-size: 0.7rem; }

  /* Footer — stack cleanly, no overlap */
  .footer__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    text-align: left;
  }
  .footer__brand {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
  }
  .footer__meta p { font-size: 0.8rem; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(251, 248, 242, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: 90;
  }
  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
  }
  .nav__menu a {
    font-size: 1.2rem;
    color: var(--charcoal) !important;
  }
  .site-header:not(.is-scrolled) .nav__name strong { color: var(--charcoal); }
  .site-header:not(.is-scrolled) .nav__name small { color: var(--muted); }
  .nav.is-open .nav__toggle span { background: var(--charcoal); }

  .hero__title { font-size: clamp(1.45rem, 6vw, 2rem); }
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.45rem;
  }
  .hero__actions .btn {
    width: auto;
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero__cards,
  .services__grid,
  .gallery__grid,
  .contact__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.3rem;
  }
  .hero-card { padding: 0.5rem 0.3rem; }
  .hero-card__title { font-size: 0.62rem; }
  .hero-card__copy { font-size: 0.52rem; max-height: 3.6em; }
  .svc h3 { font-size: 0.68rem; }
  .svc p { font-size: 0.55rem; max-height: 4.5em; }
  .gallery__grid { grid-auto-rows: 84px; }
  .process__chip span:last-child { font-size: 0.62rem; }
  .contact__phone { font-size: 0.62rem !important; }
  .about__layout { gap: 0.5rem; }
  .about__frame img { height: 180px; }
}
