/* ─── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Noto+Serif:ital,wght@0,400;0,500;1,400&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-meta: 'Manrope', sans-serif;
  --font-display: 'Noto Serif', serif;
  --background: #111217;
  --foreground: #ebe6e0;
  --muted-foreground: #b1a18d;
  --surface: #1a1b21;
  --surface-dark: #101317;
  --gold: #f7b51f;
  --gold-light: #f0ce97;
  --gold-dim: #c9a96e;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; padding: 0; margin: 0; }
html { height: 100%; scroll-behavior: smooth; }
html, body { max-width: 100vw; overflow-x: hidden; }
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
main { flex: 1; }
::selection { background: rgba(217,188,162,0.42); color: #151311; }

/* ─── Shell (layout container) ─────────────────────────────── */
.shell {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
}

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
}

.top-bar,
.nav-bar {
  width: 100%;
  backdrop-filter: blur(24px);
}

.top-bar {
  background: rgba(15,18,23,0.9);
  border-bottom: 1px solid rgba(214,181,137,0.08);
}

.nav-bar {
  background: rgba(15,18,23,0.82);
  border-bottom: 1px solid rgba(214,181,137,0.1);
}

.top-bar-inner,
.nav-bar-inner {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-inner { min-height: 48px; gap: 1rem; }
.nav-bar-inner { min-height: 88px; gap: 1.5rem; }

/* Top Bar Socials */
.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.top-bar-socials a {
  color: #d4c0ab;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}
.top-bar-socials a:hover { color: #f1ece7; }

/* Top Bar Meta */
.top-bar-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.top-bar-meta a {
  color: #98a0b1;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 160ms ease;
}
.top-bar-meta a:hover { color: #f1ece7; }

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  opacity: 1;
  transition: opacity 160ms ease;
}
.brand-logo:hover,
.brand-logo:focus-visible { opacity: 0.85; }
.brand-logo img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

/* Primary Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0 auto;
}
.nav-link {
  position: relative;
  color: #98a0b1;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
  padding-bottom: 0.4rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: #f7b51f;
  transform: scaleX(0);
  transition: transform 160ms ease;
  transform-origin: left;
}
.nav-link.active { color: #f7b51f; }
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover,
.nav-link:focus-visible { color: #f1ece7; }
.nav-link:hover::after { transform: scaleX(1); background: #f1ece7; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.action-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-right: 0.5rem;
}
.action-icons a {
  color: #d4c0ab;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}
.action-icons a:hover { color: #f1ece7; }

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  background: #f7b51f;
  color: #694b00;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 8px 10px -6px rgba(247,181,31,0.22), 0 20px 24px -18px rgba(247,181,31,0.34);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 10px 14px -8px rgba(247,181,31,0.28), 0 26px 30px -22px rgba(247,181,31,0.44);
}

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  background: transparent;
  color: #f0ce97;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 1px solid rgba(240,206,151,0.35);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
  text-decoration: none;
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #f0ce97;
  background: rgba(240,206,151,0.06);
  color: #f1ece7;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #f1ece7;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

/* Mobile Drawer */
.mobile-drawer {
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: rgba(15,18,23,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(214,181,137,0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
  z-index: 50;
}
.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.mobile-nav-link {
  color: #98a0b1;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
}
.mobile-nav-link.active,
.mobile-nav-link:hover { color: #f7b51f; }

.mobile-primary-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  background: #f7b51f;
  color: #694b00;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(214,181,137,0.1);
  width: 100%;
}
.mobile-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.mobile-socials a {
  color: #d4c0ab;
  font-size: 1.1rem;
  transition: color 160ms ease;
}
.mobile-socials a:hover { color: #f1ece7; }
.mobile-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #98a0b1;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ─── Eyebrow Label ──────────────────────────────────────────── */
.eyebrow,
.project-category,
.footer-col h3 {
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 1024px;
  padding: 180px 0 40px;
  overflow: hidden;
  background: #12131a;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--hero-image-shift, 0)) scale(var(--hero-image-scale, 1));
  transform-origin: center center;
  transition: transform 180ms linear;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity, 1);
  background:
    linear-gradient(180deg, rgba(10,10,14,0.25) 0%, rgba(10,10,14,0.4) 22%, var(--hero-overlay-start, rgba(11,12,16,0.82)) 78%, rgba(16,18,23,1) 100%),
    linear-gradient(115deg, rgba(0,0,0,0.54) 0%, var(--hero-overlay-end, rgba(31,20,13,0.35)) 100%);
  transition: opacity 180ms linear;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  text-align: center;
  color: #e4e1ea;
  transform: translateY(var(--hero-content-shift, 0));
  opacity: var(--hero-content-opacity, 1);
  transition: transform 180ms linear, opacity 180ms linear;
  will-change: transform, opacity;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 0;
  white-space: pre-line;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title-line > span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  filter: blur(10px);
  animation: heroLineReveal 1100ms cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(180ms + var(--line-index, 0) * 140ms);
}

.hero-description {
  max-width: 42rem;
  color: #d4c4ad;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.1rem;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f0ce97;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.inline-link:hover { color: #f1ece7; }

.scroll-label {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  color: rgba(226,223,234,0.45);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: var(--hero-scroll-opacity, 1);
  transition: opacity 180ms linear;
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
[data-reveal] {
  --stagger-delay: calc(var(--stagger-index, 0) * 120ms);
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(10px);
  transition:
    opacity 800ms cubic-bezier(0.16,1,0.3,1) var(--stagger-delay),
    transform 1000ms cubic-bezier(0.16,1,0.3,1) var(--stagger-delay),
    filter 800ms ease var(--stagger-delay);
  will-change: transform, opacity, filter;
}
[data-visible="true"] {
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

/* ─── Section Backgrounds ────────────────────────────────────── */
.about-section,
.services-section,
.portfolio-section,
.mission-section,
.testimonials-section,
.final-cta-section,
.site-footer {
  position: relative;
  background: var(--section-bg, #111217);
}

.about-section,
.services-section,
.portfolio-section,
.mission-section,
.testimonials-section {
  padding: 6rem 0;
}

/* ─── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 416px minmax(0, 608px);
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.about-visual {
  position: relative;
  min-height: 520px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
}

.about-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1400ms cubic-bezier(0.16,1,0.3,1), filter 700ms ease;
  will-change: transform, filter;
}
[data-visible="true"] .about-visual-inner img { transform: scale(1); }

.stat-card {
  position: absolute;
  right: -32px;
  bottom: -32px;
  display: grid;
  gap: 0.35rem;
  width: 212px;
  padding: 2.1rem 1.5rem;
  border: 1px solid rgba(80,69,51,0.24);
  border-radius: 8px;
  background: var(--panel-bg, #1a1b21);
  box-shadow: 0 28px 60px -40px rgba(0,0,0,0.95);
}
.stat-card strong {
  color: #f0ce97;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.9;
}
.stat-card span { color: #b1a18d; line-height: 1.75; }

.about-content { display: grid; gap: 3rem; }

.section-header,
.section-heading {
  display: grid;
  gap: 0.9rem;
}
.section-header-center { justify-items: center; text-align: center; }

.section-header h2,
.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #e5e1ea;
  font-size: clamp(3rem, 5vw, 3.9rem);
  line-height: 1.05;
  white-space: pre-line;
  transform: scaleY(1.25);
  transform-origin: left top;
  margin-bottom: 3.5rem;
}
.section-header-center h2 { transform-origin: center top; }

.section-header p,
.section-heading p {
  max-width: 38rem;
  color: #b1a18d;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(80,69,51,0.12);
}
.about-features h3 {
  color: #e5e1ea;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  transform: scaleY(1.25);
  transform-origin: left top;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}
.about-features p { color: #b1a18d; line-height: 1.75; font-size: 0.92rem; }

/* stat-row in homepage about */
.stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-row .stat-card {
  position: static;
  flex: 1;
  min-width: 140px;
}

/* ─── Services ───────────────────────────────────────────────── */
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.carousel-controls {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.carousel-btn {
  background: none;
  border: none;
  color: #f0ce97;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
  cursor: pointer;
  padding: 0.2rem;
  transition: opacity 200ms ease, transform 200ms ease;
}
.carousel-btn:hover { opacity: 0.8; transform: scale(1.05); }
.carousel-btn:active { transform: scale(0.95); }

.services-rail-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.6rem;
}
.services-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 352px;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  flex: 1;
}
.services-rail::-webkit-scrollbar { display: none; }

.service-card {
  display: grid;
  gap: 0.8rem;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.service-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1), box-shadow 500ms ease;
}
.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--service-overlay, rgba(0,0,0,0.6)) 100%);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1400ms cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
[data-visible="true"] .service-media img { transform: scale(1); }
.service-card:hover .service-media {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px -50px rgba(0,0,0,0.9);
}
.service-card:hover .service-media img { transform: scale(1.08) translateY(-10px); }

.service-copy h3 {
  color: #e5e1ea;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  transform: scaleY(1.25);
  transform-origin: left top;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}
.service-copy p {
  color: #b1a18d;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.75;
}

.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* ─── Portfolio ──────────────────────────────────────────────── */
.portfolio-section { border-top: 1px solid rgba(80,69,51,0.2); }

.portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0,768px) 352px;
  gap: 4rem;
  align-items: start;
  margin-top: 2.4rem;
}

.featured-project { display: grid; gap: 1.4rem; }
.featured-project-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 35px 90px -60px rgba(0,0,0,0.95);
}
.featured-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1400ms cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
[data-visible="true"] .featured-project-media img { transform: scale(1); }

.featured-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,18,23,0) 0%, rgba(16,18,23,0.46) 100%);
}
.featured-project-copy { display: grid; gap: 0.7rem; max-width: 38rem; }
.featured-project-copy h3 {
  color: #e5e1ea;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  transform: scaleY(1.25);
  transform-origin: left top;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}
.featured-project-copy p { color: #b1a18d; line-height: 1.75; }

.side-projects { display: grid; gap: 4rem; padding-top: 1.125rem; }
.side-project { display: grid; gap: 0.9rem; }
.side-project-media {
  position: relative;
  min-height: 352px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 32px 90px -65px rgba(0,0,0,0.95);
}
.side-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1400ms cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
[data-visible="true"] .side-project-media img { transform: scale(1); }
.side-project-copy { display: grid; gap: 0.55rem; }
.side-project-copy h3 {
  color: #e5e1ea;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  transform: scaleY(1.25);
  transform-origin: left top;
  line-height: 1.1;
}
.side-project-copy p { color: #b1a18d; line-height: 1.75; }

/* Portfolio card (simple grid, shop/projects pages) */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  text-decoration: none;
  color: inherit;
}
.portfolio-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 500ms ease; }
.portfolio-card:hover img { transform: scale(1.04); }
.portfolio-card-info {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(10,10,14,0.85) 0%, transparent 100%);
}
.portfolio-cat {
  color: #f0ce97;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}
.portfolio-card-info h3 { color: #f0ece4; font-size: 1rem; font-weight: 500; }

.section-cta { margin-top: 3rem; display: flex; justify-content: center; }

/* ─── Products (homepage carousel) ──────────────────────────── */
.product-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(80,69,51,0.14);
}

.product-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.products-rail-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.products-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  flex: 1;
}
.products-rail::-webkit-scrollbar { display: none; }

.product-card {
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card-inner { display: grid; gap: 0.9rem; }
.product-img-wrap {
  position: relative;
  aspect-ratio: 7/9;
  overflow: hidden;
  background: #16181f;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,14,0.55) 100%);
  transition: opacity 300ms ease;
}
.product-category-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d0e12;
  background: #c9a96e;
  padding: 0.25rem 0.55rem;
}
.product-info,
.product-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0;
}
.product-title {
  font-size: 0.96rem;
  font-weight: 500;
  color: #f0ece4;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1;
}
.product-card:hover .product-title { color: #c9a96e; transition: color 200ms ease; }
.product-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: #c9a96e;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ─── Mission ────────────────────────────────────────────────── */
.mission-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #f0ce97;
}
.mission-icon-row span {
  width: 48px;
  height: 1px;
  background: rgba(240,206,151,0.42);
}
.mission-icon-row strong { font-size: 0.9rem; font-weight: 700; }

.mission-statement {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  margin-top: 3rem;
  text-align: center;
}
.mission-statement p,
.mission-statement h2 {
  max-width: none;
  color: #e5e1ea;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  white-space: pre-line;
  transform: scaleY(1.25);
  transform-origin: center top;
}
.mission-statement p { margin-bottom: -0.2rem; }
.mission-statement h2 { margin-bottom: 3.5rem; }

.gold-accent {
  color: #f0ce97;
  text-shadow: 0 0 24px rgba(240,206,151,0.15);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 4rem;
  margin-top: 3.8rem;
}
.mission-card { display: grid; gap: 1rem; }
.mission-card h3 {
  color: #e5e1ea;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mission-card p { color: #b1a18d; font-size: 0.92rem; line-height: 1.75; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-section { border-top: 1px solid rgba(80,69,51,0.2); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 4rem;
  margin-top: 3rem;
}
.testimonials-rail-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  flex: 1;
}
.testimonials-rail::-webkit-scrollbar { display: none; }

.testimonial-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(80,69,51,0.16);
  border-radius: 8px;
  background: var(--panel-bg, rgba(26,27,33,0.6));
}
.testimonial-item {
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
}
.quote-mark {
  color: rgba(240,206,151,0.12);
  font-family: var(--font-sans);
  font-size: 5rem;
  font-style: italic;
  line-height: 0.75;
}
.testimonial-card blockquote,
.testimonial-item p {
  color: #e5e1ea;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
}
.testimonial-card cite {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-style: normal;
}
.testimonial-card cite strong {
  color: #e5e1ea;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.testimonial-card cite span {
  color: #b1a18d;
  font-size: 0.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.testimonial-author span {
  width: 48px; height: 1px;
  background: #f0ce97;
}
.testimonial-author strong {
  color: #e5e1ea;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.final-cta-section { padding: 0 0 2rem; }

.final-cta-panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  min-height: 442px;
  padding: 4rem 2rem;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(247,181,31,0.08), transparent 30%),
    repeating-linear-gradient(150deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, rgba(17,18,23,0.8), rgba(17,18,23,0.95));
  overflow: hidden;
}
.final-cta-panel::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 35%, rgba(247,181,31,0.12), transparent 24%),
    radial-gradient(circle at 50% 65%, rgba(255,255,255,0.05), transparent 32%);
  animation: ambientDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.final-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: #e5e1ea;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.94;
  white-space: pre-line;
  transform: scaleY(1.25);
  transform-origin: center top;
  margin-bottom: 3.5rem;
}
.final-cta-description {
  max-width: 38rem;
  color: #b1a18d;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  padding: 0 0 1rem;
  border-top: 1px solid rgba(80,69,51,0.2);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0,2fr) repeat(3, minmax(0,1fr));
  gap: 3rem;
  padding: 3.6rem 0 1.8rem;
  align-items: start;
}
.footer-brand,
.footer-col {
  display: grid;
  gap: 0.8rem;
}
.footer-brand h2 {
  color: #f0ce97;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}
.footer-brand p {
  max-width: 20rem;
  color: #b1a18d;
  font-size: 0.92rem;
  line-height: 1.75;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-socials a {
  color: #8c867d;
  font-family: var(--font-meta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}
.footer-socials a:hover { color: #f1ece7; }
.footer-col h3 {
  font-family: var(--font-meta);
}
.footer-links { display: grid; gap: 0.5rem; }
.footer-links a {
  color: #8c867d;
  font-family: var(--font-meta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.footer-links a:hover { color: #f1ece7; }

.footer-bar {
  padding: 0.9rem 0 0.2rem;
  border-top: 1px solid rgba(80,69,51,0.16);
  text-align: center;
}
.footer-bar p {
  color: #8c867d;
  font-family: var(--font-meta);
  font-size: 0.82rem;
}

/* ─── Shop / Projects Filter ─────────────────────────────────── */
.projects-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(214,181,137,0.2);
  color: #98a0b1;
  font-family: var(--font-meta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 160ms ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: #f7b51f;
  border-color: #f7b51f;
  color: #3a2800;
}

/* ─── Shop product grid cards ────────────────────────────────── */
#shop-grid .product-card {
  cursor: default;
  display: block;
}
#shop-grid .product-img-wrap {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: #16181f;
  margin-bottom: 0.75rem;
}
#shop-grid .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes heroLineReveal {
  0%   { transform: translateY(110%); opacity: 0; filter: blur(10px); }
  100% { transform: translateY(0);    opacity: 1; filter: blur(0);    }
}

@keyframes ambientDrift {
  0%   { transform: translate3d(-2%,-1%,0) scale(1);    }
  100% { transform: translate3d(2%,2%,0) scale(1.04);   }
}

/* ─── Responsive 1080px ──────────────────────────────────────── */
@media (max-width: 1080px) {
  .shell,
  .top-bar-inner,
  .nav-bar-inner,
  .hero-shell,
  .about-grid,
  .portfolio-grid,
  .mission-grid,
  .testimonial-grid,
  .footer-inner {
    width: min(1184px, calc(100vw - 2rem));
  }

  .about-grid,
  .portfolio-grid,
  .mission-grid,
  .testimonial-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .nav-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }

  .top-bar,
  .site-nav,
  .nav-bar-inner .btn-primary {
    display: none;
  }

  .header-actions { margin-left: auto; }
  .action-icons { gap: 1.1rem; margin-right: 0.25rem; }
  .action-icons a { font-size: 1.2rem; }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-visual { max-width: 416px; }

  .services-rail { grid-auto-columns: minmax(18rem, 72vw); }
  .service-media { min-height: 460px; }
  .products-rail { grid-auto-columns: minmax(220px, 68vw); }

  .product-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* ─── Responsive 720px ───────────────────────────────────────── */
@media (max-width: 720px) {
  .shell,
  .top-bar-inner,
  .nav-bar-inner,
  .hero-shell,
  .footer-inner,
  .footer-bar { width: calc(100vw - 1.5rem); }

  .hero { min-height: 880px; padding-top: 170px; }
  .hero-title { font-size: clamp(3.2rem, 12vw, 5rem); }
  .hero-actions { flex-wrap: wrap; justify-content: center; }
  .hero-actions a { width: 100%; }

  .top-bar-inner { flex-direction: column; gap: 0.6rem; padding: 0.8rem 0; justify-content: center; align-items: center; }
  .top-bar-meta { flex-direction: column; gap: 0.3rem; align-items: center; }
  .top-bar-meta a { font-size: 0.75rem; }

  .about-section,
  .services-section,
  .portfolio-section,
  .mission-section,
  .testimonials-section { padding: 4rem 0; }

  .stat-card { right: 1rem; bottom: 1rem; }
  .about-features { grid-template-columns: 1fr; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .final-cta-panel { min-height: 360px; }

  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ─── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap img,
  .hero-overlay,
  .hero-content,
  .scroll-label,
  [data-reveal],
  .hero-title-line > span,
  .about-visual-inner img,
  .service-media,
  .service-media img,
  .featured-project-media img,
  .side-project-media img,
  .final-cta-panel::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Projects Page */
.projects-page {
  position: relative;
}

.projects-hero {
  position: relative;
  min-height: 860px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px 0 100px;
  overflow: hidden;
  background: #0d0e12;
}

.projects-page .hero-image {
  opacity: 0.5;
}

.projects-hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(13, 14, 19, 0.26) 0%,
      rgba(13, 14, 19, 0.58) 45%,
      rgba(13, 14, 19, 0.94) 100%
    ),
    linear-gradient(100deg, rgba(0, 0, 0, 0.58) 0%, transparent 68%);
}

.projects-hero-shell,
.projects-filter-shell,
.projects-gallery-shell,
.projects-cta-shell {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
}

.projects-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  max-width: 860px;
  transform: translateY(var(--hero-shell-shift, 0));
  opacity: var(--hero-shell-opacity, 1);
  transition:
    transform 180ms linear,
    opacity 180ms linear;
  will-change: transform, opacity;
}

.projects-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.projects-eyebrow-line {
  width: 36px;
  height: 1px;
  background: #f0ce97;
  flex-shrink: 0;
  opacity: 0.75;
}

.projects-eyebrow {
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.projects-hero-title,
.projects-gallery-title,
.projects-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
}

.projects-hero-title {
  font-size: clamp(4.2rem, 9vw, 9rem);
  line-height: 0.96;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  transform: scaleY(1.25);
  transform-origin: left top;
  margin-bottom: 7rem;
}

.projects-hero-title-line {
  display: block;
  overflow: hidden;
}

.projects-hero-title-line > span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  filter: blur(8px);
  animation: heroLineReveal 1100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(220ms + var(--line-index, 0) * 160ms);
}

.projects-hero-description {
  max-width: 40rem;
  color: #c8baa8;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  white-space: pre-line;
  margin-top: 0.5rem;
}

.projects-filter-section {
  background: #12131a;
  border-bottom: 1px solid rgba(80, 69, 51, 0.2);
}

.projects-filter-shell {
  padding: 0;
}

.projects-filter-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(80, 69, 51, 0.2);
}

.projects-filter-btn {
  padding: 0.5rem 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #d4c4ad;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.projects-filter-btn:hover,
.projects-filter-btn:focus-visible {
  color: #e4e1ea;
}

.projects-filter-btn.is-active {
  color: #f0ce97;
  font-weight: 700;
  border-bottom-color: #f0ce97;
}

.projects-gallery-section {
  background:
    radial-gradient(circle at top center, rgba(240, 206, 151, 0.05), transparent 24%),
    #12131a;
  padding: 0 0 6rem;
}

.projects-gallery-shell {
  padding-top: 4.5rem;
}

.projects-gallery-grid {
  display: grid;
  grid-template-columns: 1.44fr 1fr;
  gap: 0 48px;
  align-items: start;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.projects-gallery-grid.is-transitioning {
  opacity: 0.55;
  transform: translateY(12px);
  filter: blur(4px);
}

.projects-gallery-card {
  display: grid;
  gap: 2rem;
  padding-bottom: 4rem;
  opacity: 0;
  transform: translate3d(0, 54px, 0);
  filter: blur(10px);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms ease;
}

.projects-gallery-card[data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.projects-gallery-card.is-stagger {
  margin-top: 96px;
}

.projects-gallery-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 42px 90px -64px rgba(0, 0, 0, 0.95);
}

.projects-gallery-media.is-large {
  min-height: 720px;
}

.projects-gallery-media.is-medium {
  min-height: 480px;
}

.projects-gallery-media.is-small {
  min-height: 340px;
}

.projects-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
}

.projects-gallery-card[data-visible="true"] .projects-gallery-image {
  transform: scale(1);
}

.projects-gallery-card:hover .projects-gallery-image,
.projects-gallery-card:focus-within .projects-gallery-image {
  transform: scale(1.08) translateY(-12px);
}

.projects-gallery-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 19, 26, 0.02) 28%, rgba(18, 19, 26, 0.45) 100%),
    linear-gradient(0deg, rgba(240, 206, 151, 0.03), rgba(240, 206, 151, 0.03));
  pointer-events: none;
}

.projects-gallery-copy {
  display: grid;
  gap: 1rem;
}

.projects-gallery-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0ce97;
  opacity: 0.8;
}

.projects-gallery-title {
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.08;
  color: #ffffff;
}

.projects-gallery-excerpt {
  font-size: 0.9rem;
  font-weight: 300;
  color: #b1a18d;
  line-height: 1.82;
  max-width: 29rem;
}

.projects-gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0ce97;
  transition:
    gap 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.projects-gallery-link:hover,
.projects-gallery-link:focus-visible {
  gap: 0.8rem;
  color: #f7deaf;
  transform: translateX(4px);
}

.projects-empty-state {
  padding: 4rem 0;
  text-align: center;
  color: #b1a18d;
  font-size: 0.9rem;
  font-weight: 300;
}

.projects-cta-section {
  position: relative;
  background: #1a1b21;
  padding: 6rem 0;
  border-top: 1px solid rgba(80, 69, 51, 0.14);
  overflow: hidden;
}

.projects-cta-section::before {
  content: "";
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at 50% 42%, rgba(247, 181, 31, 0.12), transparent 22%),
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.05), transparent 28%);
  animation: ambientDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.projects-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 2rem;
}

.projects-cta-title {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  color: #ffffff;
}

.projects-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  background: #f7b51f;
  color: #694b00;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow:
    0 8px 10px -6px rgba(247, 181, 31, 0.22),
    0 20px 24px -18px rgba(247, 181, 31, 0.38);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.projects-cta-button:hover,
.projects-cta-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 12px 18px -8px rgba(247, 181, 31, 0.32),
    0 24px 30px -22px rgba(247, 181, 31, 0.46);
}

@media (max-width: 1080px) {
  .projects-hero-shell,
  .projects-filter-shell,
  .projects-gallery-shell,
  .projects-cta-shell {
    width: calc(100vw - 2rem);
  }

  .projects-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
  }
}

@media (max-width: 720px) {
  .projects-hero {
    min-height: auto;
    padding: 160px 0 64px;
  }

  .projects-hero-title {
    font-size: clamp(3.4rem, 12vw, 5.5rem);
    margin-bottom: 5rem;
  }

  .projects-hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .projects-eyebrow-row {
    margin-bottom: 1.5rem;
  }

  .projects-hero-shell,
  .projects-filter-shell,
  .projects-gallery-shell,
  .projects-cta-shell {
    width: calc(100vw - 1.5rem);
  }

  .projects-filter-row {
    gap: 1.25rem;
  }

  .projects-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .projects-gallery-card.is-stagger {
    margin-top: 0;
  }

  .projects-gallery-media.is-large {
    min-height: 480px;
  }

  .projects-gallery-media.is-medium {
    min-height: 360px;
  }

  .projects-gallery-media.is-small {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects-hero-shell,
  .projects-gallery-grid,
  .projects-gallery-card,
  .projects-gallery-image,
  .projects-cta-section::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Services Page */
.services-page {
  position: relative;
}

.services-hero {
  position: relative;
  min-height: 837px;
  padding: 200px 0 80px;
  overflow: hidden;
  background: #0e0f13;
}

.services-hero .hero-image {
  transform: translateY(var(--hero-image-shift, 0)) scale(var(--hero-image-scale, 1));
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity, 1);
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 14, 0.18) 0%,
      rgba(10, 10, 14, 0.52) 38%,
      rgba(14, 15, 19, 0.9) 100%
    ),
    linear-gradient(
      110deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(20, 14, 10, 0.28) 100%
    );
  transition: opacity 180ms linear;
}

.services-shell,
.services-hero-shell,
.services-stats-shell,
.services-cta-shell {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
}

.services-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
  max-width: 1100px;
  transform: translateY(var(--hero-shell-shift, 0));
  opacity: var(--hero-shell-opacity, 1);
  transition:
    transform 180ms linear,
    opacity 180ms linear;
  will-change: transform, opacity;
}

.services-hero-eyebrow {
  color: #f0ce97;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.5vw, 8rem);
  font-weight: 400;
  line-height: 0.94;
  color: #e4e1ea;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  transform: scaleY(1.15);
  transform-origin: left bottom;
}

.services-hero-accent {
  color: #f0ce97;
}

.services-hero-description {
  max-width: 42rem;
  color: #d4c4ad;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
}

.services-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 1rem 2.1rem;
  border-radius: 8px;
  background: #f7b51f;
  color: #694b00;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow:
    0 8px 10px -6px rgba(247, 181, 31, 0.22),
    0 20px 24px -18px rgba(247, 181, 31, 0.38);
  transition: transform 160ms ease, filter 160ms ease;
  width: fit-content;
}

.services-hero-cta:hover,
.services-hero-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.services-page [data-reveal] {
  --stagger-delay: calc(var(--stagger-index, 0) * 110ms);
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  filter: blur(8px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    filter 800ms ease var(--stagger-delay);
}

.services-page [data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.services-stats-section {
  background: #1a1b21;
  border-top: 1px solid rgba(80, 69, 51, 0.12);
  border-bottom: 1px solid rgba(80, 69, 51, 0.12);
}

.services-stats-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.services-stat-item {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  border-right: 1px solid rgba(80, 69, 51, 0.12);
}

.services-stat-item:last-child {
  border-right: none;
}

.services-stat-item::before {
  content: "*";
  color: #f0ce97;
  font-size: 0.75rem;
  opacity: 0.6;
}

.services-stat-item strong {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: #e4e1ea;
  line-height: 1;
}

.services-stat-item span {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4c4ad;
}

.services-cards-section {
  background: #12131a;
  padding: 6rem 0;
}

.services-section-header {
  margin-bottom: 3.5rem;
}

.services-section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  color: #e4e1ea;
  margin-bottom: 1.1rem;
}

.services-section-description {
  max-width: 40rem;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #b1a18d;
  line-height: 1.75;
}

.services-rows {
  display: grid;
  gap: 12px;
}

.services-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  min-height: 326px;
}

.services-card {
  --card-flex: 1;
  position: relative;
  flex: var(--card-flex) 1 0;
  min-width: 0;
  overflow: hidden;
  min-height: 326px;
  border-radius: 8px;
  background: #1a1b21;
  border: 1px solid rgba(80, 69, 51, 0.1);
  display: flex;
  flex-direction: column;
  transition:
    flex 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms ease,
    transform 200ms ease,
    box-shadow 220ms ease;
}

.services-card:hover {
  border-color: rgba(240, 206, 151, 0.22);
  box-shadow: 0 24px 54px -36px rgba(0, 0, 0, 0.88);
}

.services-row:hover .services-card {
  flex: 0.92 1 0;
}

.services-row:hover .services-card:hover {
  flex: 1.85 1 0;
}

.services-card.is-wide {
  --card-flex: 1.7;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
}

.services-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.75rem;
  margin-top: auto;
}

.services-card.is-wide .services-card-body {
  margin-top: 0;
  grid-column: 1;
  grid-row: 1;
  height: 100%;
}

.services-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.services-card.is-wide .services-card-media {
  position: relative;
  inset: auto;
  overflow: hidden;
  grid-column: 2;
  grid-row: 1;
}

.services-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services-row[data-visible="true"] .services-card-image {
  transform: scale(1);
}

.services-card:hover .services-card-image,
.services-card:focus-within .services-card-image {
  transform: scale(1.07) translateY(-8px);
}

.services-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 19, 26, 0.22) 0%,
    rgba(18, 19, 26, 0.88) 62%
  );
}

.services-card.is-wide .services-card-overlay {
  background: linear-gradient(
    90deg,
    rgba(26, 27, 33, 1) 0%,
    rgba(26, 27, 33, 0.3) 45%,
    transparent 70%
  );
}

.services-card-number {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #f0ce97;
  opacity: 0.65;
}

.services-card-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: #e4e1ea;
  margin-bottom: 0.55rem;
  line-height: 1.15;
}

.services-card-text p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #b1a18d;
  line-height: 1.7;
}

.services-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0ce97;
  transition: gap 150ms ease;
}

.services-card-link:hover,
.services-card-link:focus-visible {
  gap: 0.8rem;
}

.services-process-section {
  background: #1a1b21;
  padding: 6rem 0;
  border-top: 1px solid rgba(80, 69, 51, 0.14);
}

.services-process-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  color: #e4e1ea;
  margin-bottom: 3.5rem;
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(80, 69, 51, 0.12);
}

.services-process-step {
  display: grid;
  gap: 1rem;
}

.services-process-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(240, 206, 151, 0.25);
  line-height: 1;
}

.services-process-step h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e4e1ea;
}

.services-process-step p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #b1a18d;
  line-height: 1.75;
}

.services-cta-section {
  padding: 6rem 0;
  background-color: #f7b51f;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.035) 0,
      rgba(0, 0, 0, 0.035) 1px,
      transparent 0,
      transparent 50%
    );
  background-size: 14px 14px;
}

.services-cta-shell {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.5rem;
}

.services-cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 0.94;
  color: #2a1a00;
}

.services-cta-description {
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(42, 26, 0, 0.68);
  line-height: 1.8;
}

.services-cta-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  background: #2a1a00;
  color: #f0ce97;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 160ms ease, opacity 160ms ease;
}

.services-cta-button:hover,
.services-cta-button:focus-visible {
  transform: translateY(-1px);
  opacity: 0.88;
}

.services-cta-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(42, 26, 0, 0.62);
  transition: color 150ms ease;
}

.services-cta-link:hover,
.services-cta-link:focus-visible {
  color: #2a1a00;
}

@media (max-width: 1080px) {
  .services-shell,
  .services-hero-shell,
  .services-stats-shell,
  .services-cta-shell {
    width: calc(100vw - 2rem);
  }

  .services-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  .services-hero {
    min-height: auto;
    padding: 160px 0 60px;
  }

  .services-shell,
  .services-hero-shell,
  .services-stats-shell,
  .services-cta-shell {
    width: calc(100vw - 1.5rem);
  }

  .services-stats-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-stat-item:nth-child(2) {
    border-right: none;
  }

  .services-stat-item:nth-child(3) {
    border-right: 1px solid rgba(80, 69, 51, 0.12);
  }

  .services-row {
    flex-direction: column;
    min-height: auto;
  }

  .services-card,
  .services-row:hover .services-card,
  .services-row:hover .services-card:hover {
    flex: 1 1 auto;
  }

  .services-card.is-wide {
    --card-flex: 1;
    grid-template-columns: 1fr;
    min-height: 326px;
    display: flex;
    flex-direction: column;
  }

  .services-card.is-wide .services-card-media {
    position: absolute;
    inset: 0;
  }

  .services-card.is-wide .services-card-overlay {
    background: linear-gradient(
      180deg,
      rgba(18, 19, 26, 0.22) 0%,
      rgba(18, 19, 26, 0.88) 62%
    );
  }

  .services-card.is-wide .services-card-body {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    margin-top: auto;
  }

  .services-process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-cta-actions {
    flex-direction: column;
    gap: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero-shell,
  .services-card-image,
  .services-page [data-reveal] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* About Page */
.about-page {
  position: relative;
}

.about-page-hero {
  position: relative;
  min-height: 921px;
  padding: 200px 0 100px;
  overflow: hidden;
  background: #12131a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page-hero .hero-image {
  opacity: 0.6;
  transform: translateY(var(--hero-image-shift, 0)) scale(var(--hero-image-scale, 1));
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity, 1);
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 14, 0.18) 0%,
      rgba(10, 10, 14, 0.55) 42%,
      rgba(18, 19, 26, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      transparent 65%
    );
  transition: opacity 180ms linear;
}

.about-page-hero-shell,
.about-page-story-shell,
.about-page-milestones-shell,
.about-page-foundations-shell,
.about-page-cta-shell {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
}

.about-page-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.5rem;
  transform: translateY(var(--hero-shell-shift, 0));
  opacity: var(--hero-shell-opacity, 1);
  transition:
    transform 180ms linear,
    opacity 180ms linear;
  will-change: transform, opacity;
}

.about-page-eyebrow {
  color: #f0ce97;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  color: #ffffff;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.about-page-hero-accent {
  color: #f0ce97;
}

.about-page-hero-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(240, 206, 151, 0.55) 0%,
    transparent 100%
  );
  margin-top: 0.25rem;
}

.about-page [data-reveal] {
  --stagger-delay: calc(var(--stagger-index, 0) * 110ms);
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  filter: blur(8px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    filter 800ms ease var(--stagger-delay);
}

.about-page [data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.about-page-story-section {
  background: #12131a;
  padding: 8rem 0;
  border-top: 1px solid rgba(80, 69, 51, 0.18);
}

.about-page-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.46fr;
  gap: 4rem;
  align-items: start;
}

.about-page-story-text {
  display: grid;
  gap: 1.5rem;
}

.about-page-story-eyebrow {
  color: #f0ce97;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-page-story-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  color: #e4e1ea;
}

.about-page-story-body {
  font-size: 0.875rem;
  font-weight: 300;
  color: #d4c4ad;
  line-height: 1.8;
  max-width: 32rem;
}

.about-page-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.about-page-story-image-tall {
  position: relative;
  aspect-ratio: 320 / 427;
  border-radius: 2px;
  overflow: hidden;
}

.about-page-story-image-square {
  position: relative;
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
}

.about-page-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page-story-images[data-visible="true"] .about-page-cover-image,
.about-page-cta-section[data-visible="true"] .about-page-cta-bg {
  transform: scale(1);
}

.about-page-story-images:hover .about-page-cover-image,
.about-page-story-images:focus-within .about-page-cover-image {
  transform: scale(1.06) translateY(-6px);
}

.about-page-milestones-section {
  background: #1a1b21;
  padding: 5rem 0 8rem;
  border-top: 1px solid rgba(80, 69, 51, 0.12);
}

.about-page-milestones-header {
  margin-bottom: 5rem;
}

.about-page-milestones-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  color: #e4e1ea;
  margin-bottom: 1.5rem;
}

.about-page-milestones-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: #d4c4ad;
  line-height: 1.75;
  max-width: 38rem;
}

.about-page-milestones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-page-milestone-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  min-height: 25rem;
  border-radius: 8px;
  background: #292a30;
  border: 1px solid rgba(240, 206, 151, 0.2);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.about-page-milestone-card.is-highlighted {
  background: #33343b;
  border-color: #f0ce97;
}

.about-page-milestone-card:hover,
.about-page-milestone-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(240, 206, 151, 0.34);
  box-shadow: 0 26px 60px -42px rgba(0, 0, 0, 0.95);
}

.about-page-milestone-value {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(240, 206, 151, 0.4);
}

.about-page-milestone-value.is-full {
  color: #f0ce97;
}

.about-page-milestone-text {
  display: grid;
  gap: 0.625rem;
}

.about-page-milestone-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e4e1ea;
  line-height: 1.2;
}

.about-page-milestone-description {
  font-size: 0.875rem;
  font-weight: 400;
  color: #d4c4ad;
  line-height: 1.75;
}

.about-page-foundations-section {
  background: #12131a;
  padding: 6rem 0;
  border-top: 1px solid rgba(80, 69, 51, 0.14);
}

.about-page-foundations-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  color: #e4e1ea;
  text-align: center;
  margin-bottom: 4rem;
}

.about-page-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-page-value-card {
  display: grid;
  gap: 0.75rem;
  padding: 2rem;
  border-radius: 8px;
  background: #1a1b21;
  border: 1px solid rgba(80, 69, 51, 0.14);
  transition:
    border-color 200ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.about-page-value-card:hover {
  border-color: rgba(240, 206, 151, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px -32px rgba(0, 0, 0, 0.9);
}

.about-page-value-number {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #f0ce97;
  opacity: 0.65;
}

.about-page-value-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  color: #e4e1ea;
}

.about-page-value-description {
  font-size: 0.8rem;
  font-weight: 300;
  color: #b1a18d;
  line-height: 1.7;
}

.about-page-cta-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d0e12;
}

.about-page-cta-bg-wrap {
  position: absolute;
  inset: 0;
}

.about-page-cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.05);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 14, 18, 0.35) 0%,
    rgba(13, 14, 18, 0.72) 100%
  );
}

.about-page-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 2rem;
  padding: 5rem 0;
}

.about-page-cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
}

.about-page-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  background: #f7b51f;
  color: #694b00;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow:
    0 8px 10px -6px rgba(247, 181, 31, 0.22),
    0 20px 24px -18px rgba(247, 181, 31, 0.38);
  transition: transform 160ms ease, filter 160ms ease;
}

.about-page-cta-button:hover,
.about-page-cta-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

@media (max-width: 1080px) {
  .about-page-hero-shell,
  .about-page-story-shell,
  .about-page-milestones-shell,
  .about-page-foundations-shell,
  .about-page-cta-shell {
    width: calc(100vw - 2rem);
  }

  .about-page-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page-milestones-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 720px) {
  .about-page-hero {
    min-height: auto;
    padding: 160px 0 60px;
  }

  .about-page-hero-shell,
  .about-page-story-shell,
  .about-page-milestones-shell,
  .about-page-foundations-shell,
  .about-page-cta-shell {
    width: calc(100vw - 1.5rem);
  }

  .about-page-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-page-story-images {
    order: -1;
  }

  .about-page-milestones-grid {
    grid-template-columns: 1fr;
  }

  .about-page-milestone-card {
    min-height: auto;
    padding: 2rem;
    gap: 2rem;
  }

  .about-page-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-hero-shell,
  .about-page-cover-image,
  .about-page-cta-bg,
  .about-page [data-reveal] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Contact Page */
.contact-page {
  position: relative;
}

.contact-page-hero {
  position: relative;
  min-height: 867px;
  padding: 200px 0 80px;
  overflow: hidden;
  background: #0d0e12;
  display: flex;
  align-items: center;
}

.contact-page-hero .hero-image {
  transform: translateY(var(--hero-image-shift, 0)) scale(var(--hero-image-scale, 1));
}

.contact-page-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity, 1);
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 12, 0.18) 0%,
      rgba(8, 8, 12, 0.52) 38%,
      rgba(13, 14, 18, 0.9) 100%
    ),
    linear-gradient(
      110deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(20, 14, 10, 0.28) 100%
    );
  transition: opacity 180ms linear;
}

.contact-page-hero-shell,
.contact-page-shell {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
}

.contact-page-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  max-width: 58rem;
  transform: translateY(var(--hero-shell-shift, 0));
  opacity: var(--hero-shell-opacity, 1);
  transition:
    transform 180ms linear,
    opacity 180ms linear;
  will-change: transform, opacity;
}

.contact-page-eyebrow {
  color: #f0ce97;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-page-hero-title {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  color: #e4e1ea;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  white-space: pre-line;
}

.contact-page-hero-title-top,
.contact-page-hero-title-bottom {
  display: block;
}

.contact-page-hero-title-top {
  max-width: 5.2ch;
}

.contact-page-hero-title-bottom {
  max-width: 11.5ch;
  color: #f3efec;
  letter-spacing: -0.02em;
}

.contact-page-hero-description {
  max-width: 36rem;
  color: #d4c4ad;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
}

.contact-page [data-reveal] {
  --stagger-delay: calc(var(--stagger-index, 0) * 110ms);
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  filter: blur(8px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    filter 800ms ease var(--stagger-delay);
}

.contact-page [data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.contact-page-section {
  background: #12131a;
  padding: 6rem 0 7rem;
  border-top: 1px solid rgba(80, 69, 51, 0.18);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 632px 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-page-form-column {
  display: grid;
  gap: 3rem;
}

.contact-page-form-header {
  display: grid;
  gap: 1rem;
}

.contact-page-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #f0ce97;
  line-height: 1.1;
}

.contact-page-form-rule {
  display: block;
  width: 96px;
  height: 1px;
  background: #f7b51f;
}

.contact-page-form {
  display: grid;
  gap: 3rem;
}

.contact-page-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-page-field {
  display: grid;
  gap: 1rem;
}

.contact-page-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #d4c4ad;
  text-transform: uppercase;
}

.contact-page-input,
.contact-page-select {
  width: 100%;
  height: 3.5rem;
  background: #0d0e13;
  border: 1px solid rgba(80, 69, 51, 0.3);
  padding: 0 0.875rem;
  color: #e4e1ea;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  transition: border-color 160ms ease;
  border-radius: 0;
}

.contact-page-input:focus,
.contact-page-select:focus {
  border-color: rgba(240, 206, 151, 0.45);
}

.contact-page-input::placeholder {
  color: #3f3f46;
  font-weight: 300;
}

.contact-page-input-date {
  color-scheme: dark;
}

.contact-page-textarea {
  height: auto;
  padding: 0.875rem;
  resize: vertical;
  min-height: 7.5rem;
  line-height: 1.7;
}

.contact-page-select-wrap {
  position: relative;
}

.contact-page-select {
  padding: 0 2.5rem 0 0.875rem;
  appearance: none;
  cursor: pointer;
}

.contact-page-select option {
  background: #1a1b21;
  color: #e4e1ea;
}

.contact-page-select option:disabled {
  color: #3f3f46;
}

.contact-page-select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: #6b7280;
  font-size: 1.1rem;
  pointer-events: none;
  line-height: 1;
}

.contact-page-submit-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0.9rem 2.5rem;
  background: #f7b51f;
  color: #694b00;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow:
    0 8px 10px -6px rgba(247, 181, 31, 0.22),
    0 20px 24px -18px rgba(247, 181, 31, 0.38);
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.contact-page-submit-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.contact-page-success-state {
  display: grid;
  gap: 1.25rem;
  padding: 3rem;
  background: #1a1b21;
  border: 1px solid rgba(240, 206, 151, 0.2);
  border-radius: 4px;
  box-shadow: 0 22px 50px -38px rgba(0, 0, 0, 0.9);
}

.contact-page-success-icon {
  color: #f0ce97;
  font-size: 1.25rem;
}

.contact-page-success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #e4e1ea;
}

.contact-page-success-body {
  font-size: 0.875rem;
  font-weight: 300;
  color: #d4c4ad;
  line-height: 1.75;
}

.contact-page-reset-link {
  justify-self: start;
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 150ms ease;
}

.contact-page-reset-link:hover {
  opacity: 0.75;
}

.contact-page-info-column {
  display: grid;
  gap: 1.5rem;
}

.contact-page-card {
  padding: 2rem;
  background: #1a1b21;
  border: 1px solid rgba(240, 206, 151, 0.18);
  border-radius: 4px;
  display: grid;
  gap: 1rem;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-page-card:hover,
.contact-page-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(240, 206, 151, 0.3);
  box-shadow: 0 24px 54px -38px rgba(0, 0, 0, 0.92);
}

.contact-page-card-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0ce97;
  opacity: 0.75;
}

.contact-page-card-address {
  display: grid;
  gap: 0.25rem;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 300;
  color: #d4c4ad;
  line-height: 1.6;
}

.contact-page-card-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-page-card-link {
  font-size: 0.8rem;
  font-weight: 400;
  color: #f0ce97;
  transition: opacity 150ms ease;
}

.contact-page-card-link:hover {
  opacity: 0.7;
}

.contact-page-office-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}

.contact-page-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-page-info-column[data-visible="true"] .contact-page-cover-image,
.contact-page-map-section[data-visible="true"] .contact-page-map-frame {
  transform: none;
}

.contact-page-location-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(80, 69, 51, 0.14);
}

.contact-page-location-item {
  display: grid;
  gap: 0.4rem;
}

.contact-page-location-city {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #f0ce97;
  text-transform: uppercase;
}

.contact-page-location-address {
  font-size: 0.8rem;
  font-weight: 300;
  color: #d4c4ad;
  line-height: 1.6;
}

.contact-page-location-phone {
  font-size: 0.75rem;
  font-weight: 400;
  color: #b1a18d;
  transition: color 150ms ease;
}

.contact-page-location-phone:hover {
  color: #f0ce97;
}

.contact-page-map-section {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-top: 1px solid rgba(80, 69, 51, 0.14);
}

.contact-page-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) saturate(0.55) brightness(0.88);
  transform: scale(1.03);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1080px) {
  .contact-page-hero-shell,
  .contact-page-shell {
    width: calc(100vw - 2rem);
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-page-form-row {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .contact-page-hero {
    min-height: auto;
    padding: 160px 0 60px;
  }

  .contact-page-hero-title {
    gap: 0.2rem;
    white-space: normal;
  }

  .contact-page-hero-shell,
  .contact-page-shell {
    width: calc(100vw - 1.5rem);
  }

  .contact-page-form-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-page-location-list {
    grid-template-columns: 1fr;
  }

  .contact-page-map-section {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page-hero-shell,
  .contact-page-cover-image,
  .contact-page-map-frame,
  .contact-page [data-reveal] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Blog Index */
.journal-page {
  background:
    radial-gradient(circle at top center, rgba(240, 206, 151, 0.05), transparent 22%),
    #12131a;
}

.journal-page [data-reveal],
.journal-post-page [data-reveal] {
  --stagger-delay: calc(var(--stagger-index, 0) * 110ms);
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  filter: blur(8px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    filter 800ms ease var(--stagger-delay);
}

.journal-page [data-visible="true"],
.journal-post-page [data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.journal-hero {
  padding: 11rem 1.5rem 4rem;
}

.journal-hero-inner,
.journal-grid,
.journal-post-hero,
.journal-post-content-wrap,
.journal-related-inner {
  width: min(1184px, 100%);
  margin: 0 auto;
}

.journal-hero-inner {
  display: grid;
  gap: 1.25rem;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(240, 206, 151, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(28, 29, 36, 0.96), rgba(18, 19, 26, 1));
  border: 1px solid rgba(240, 206, 151, 0.08);
  box-shadow: 0 32px 70px -52px rgba(0, 0, 0, 0.95);
}

.journal-hero-inner p,
.journal-meta-row,
.journal-meta-footer,
.journal-post-hero-copy p,
.journal-post-meta,
.journal-related-heading p {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journal-hero-inner p,
.journal-meta-row,
.journal-post-hero-copy p,
.journal-related-heading p {
  color: #e9c175;
}

.journal-hero-inner h1 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.95;
  color: #f4f1ed;
}

.journal-hero-inner span {
  max-width: 42rem;
  color: #b8ac99;
  line-height: 1.85;
}

.journal-grid-section {
  padding: 0 1.5rem 6rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.journal-card {
  display: grid;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(28, 29, 36, 0.96), rgba(20, 21, 27, 1));
  border: 1px solid rgba(240, 206, 151, 0.08);
  box-shadow: 0 30px 60px -46px rgba(0, 0, 0, 0.95);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.journal-card:hover,
.journal-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(240, 206, 151, 0.18);
  box-shadow: 0 38px 72px -48px rgba(0, 0, 0, 1);
}

.journal-card-link {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.journal-card-media {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
}

.journal-cover-image {
  width: 100%;
  height: 100%;
  min-height: 19rem;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-card[data-visible="true"] .journal-cover-image {
  transform: scale(1);
}

.journal-card:hover .journal-cover-image,
.journal-card:focus-within .journal-cover-image {
  transform: scale(1.06) translateY(-6px);
}

.journal-card-copy {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.journal-meta-row,
.journal-meta-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.journal-meta-row span,
.journal-meta-footer span {
  color: #aa9c8a;
}

.journal-card-copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.98;
  color: #f4f1ed;
}

.journal-card-copy p {
  color: #b8ac99;
  line-height: 1.85;
}

.journal-meta-footer {
  align-items: center;
  margin-top: 0.5rem;
}

.journal-meta-footer .journal-read-link {
  color: #f0ce97;
  font-weight: 700;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.journal-card:hover .journal-read-link,
.journal-card:focus-within .journal-read-link {
  color: #f6e2bc;
  transform: translateX(3px);
}

/* Blog Post */
.journal-post-page {
  background:
    radial-gradient(circle at top center, rgba(240, 206, 151, 0.05), transparent 20%),
    #12131a;
  padding: 10.5rem 1.5rem 5rem;
}

.journal-post-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: center;
}

.journal-post-hero-copy,
.journal-related-heading,
.journal-related-card {
  display: grid;
  gap: 1rem;
}

.journal-post-hero-copy h1,
.journal-related-heading h2,
.journal-post-prose h2,
.journal-post-prose h3 {
  font-family: var(--font-display);
}

.journal-post-hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.95;
  color: #f4f1ed;
}

.journal-post-hero-copy > span {
  color: #b8ac99;
  line-height: 1.85;
  max-width: 42rem;
}

.journal-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.journal-post-meta strong,
.journal-post-meta span {
  color: #aa9c8a;
}

.journal-post-hero-media {
  position: relative;
  min-height: 35rem;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(240, 206, 151, 0.08);
  box-shadow: 0 32px 70px -48px rgba(0, 0, 0, 0.95);
}

.journal-post-cover-image {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-post-hero-media[data-visible="true"] .journal-post-cover-image {
  transform: scale(1);
}

.journal-post-content-wrap {
  max-width: 52rem;
  padding-top: 4.5rem;
}

.journal-post-prose {
  display: grid;
  gap: 1.6rem;
  font-size: 1.05rem;
  line-height: 1.95;
  color: #d3c7b8;
}

.journal-post-prose h2 {
  margin-top: 2rem;
  font-size: 2.8rem;
  line-height: 0.98;
  color: #f4f1ed;
}

.journal-post-prose h3 {
  margin-top: 1.6rem;
  font-size: 2rem;
  line-height: 1.02;
  color: #efe8e1;
}

.journal-post-prose p,
.journal-post-prose ul,
.journal-post-prose ol,
.journal-post-prose blockquote {
  color: #d3c7b8;
}

.journal-post-prose ul,
.journal-post-prose ol {
  padding-left: 1.25rem;
}

.journal-post-prose li::marker {
  color: #e9c175;
}

.journal-post-prose blockquote {
  padding-left: 1.4rem;
  border-left: 1px solid rgba(233, 193, 117, 0.38);
  color: #efe8e1;
}

.journal-post-prose a {
  color: #f0ce97;
  text-decoration: underline;
  text-decoration-color: rgba(240, 206, 151, 0.32);
  text-underline-offset: 0.22em;
}

.journal-related-section {
  padding: 0 1.5rem 5rem;
}

.journal-related-inner {
  display: grid;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(28, 29, 36, 0.96), rgba(20, 21, 27, 1));
  border: 1px solid rgba(240, 206, 151, 0.08);
  box-shadow: 0 30px 64px -48px rgba(0, 0, 0, 0.95);
}

.journal-related-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  color: #f4f1ed;
}

.journal-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.journal-related-card {
  padding: 1.4rem;
  border-radius: 1.3rem;
  background: rgba(247, 242, 235, 0.04);
  border: 1px solid rgba(240, 206, 151, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.journal-related-card:hover,
.journal-related-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(240, 206, 151, 0.18);
  box-shadow: 0 24px 54px -42px rgba(0, 0, 0, 0.9);
}

.journal-related-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: #f4f1ed;
}

.journal-related-card p {
  color: #b8ac99;
  line-height: 1.8;
}

.journal-related-card a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0ce97;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.journal-related-card a:hover,
.journal-related-card a:focus-visible {
  color: #f6e2bc;
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .journal-grid,
  .journal-post-hero,
  .journal-related-grid {
    grid-template-columns: 1fr;
  }

  .journal-post-hero-media {
    min-height: 22rem;
  }

  .journal-post-cover-image {
    min-height: 22rem;
  }
}

@media (max-width: 640px) {
  .journal-hero {
    padding-top: 9.5rem;
  }

  .journal-post-page {
    padding: 9.5rem 1rem 4rem;
  }

  .journal-related-section {
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journal-page [data-reveal],
  .journal-post-page [data-reveal],
  .journal-card,
  .journal-cover-image,
  .journal-post-cover-image,
  .journal-related-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Page Transitions */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0b0f;
  pointer-events: none;
  will-change: transform;
}

.page-transition-overlay::before,
.page-transition-overlay::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240, 206, 151, 0.55) 25%,
    rgba(240, 206, 151, 0.55) 75%,
    transparent 100%
  );
}

.page-transition-overlay::before {
  top: 0;
}

.page-transition-overlay::after {
  bottom: 0;
}

.page-transition-overlay[data-state="covering"],
.page-transition-overlay[data-state="covered"] {
  pointer-events: all;
}

.page-transition-brand {
  display: grid;
  justify-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(12px);
  filter: blur(6px);
  transition:
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1) 40ms,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1) 40ms,
    filter 260ms ease 40ms;
}

.page-transition-overlay[data-state="covered"] .page-transition-brand {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.page-transition-brand-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  color: #f0ce97;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-transition-brand-rule {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f0ce97, transparent);
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1) 90ms;
}

.page-transition-overlay[data-state="covered"] .page-transition-brand-rule {
  width: 140px;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition-overlay {
    display: none !important;
  }
}

/* Book appointment page */
.book-page {
  position: relative;
  background: #0d0e12;
}

.book-shell {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
}

.book-hero {
  position: relative;
  min-height: 820px;
  padding: 200px 0 100px;
  overflow: hidden;
  background: #0d0e12;
  display: flex;
  align-items: center;
}

.book-hero-bg-wrap,
.book-cta-bg-wrap {
  position: absolute;
  inset: 0;
}

.book-hero-bg,
.book-cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-hero-bg {
  transform: translateY(var(--hero-image-shift, 0)) scale(var(--hero-image-scale, 1));
  transform-origin: center center;
  transition: transform 180ms linear;
  will-change: transform;
}

.book-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity, 1);
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.15) 0%, rgba(8, 8, 12, 0.55) 40%, rgba(13, 14, 18, 0.94) 100%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.65) 0%, rgba(20, 14, 10, 0.25) 100%);
  transition: opacity 180ms linear;
}

.book-hero-shell {
  position: relative;
  z-index: 1;
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  max-width: 60rem;
  transform: translateY(var(--hero-shell-shift, 0));
  opacity: var(--hero-shell-opacity, 1);
  transition:
    transform 180ms linear,
    opacity 180ms linear;
  will-change: transform, opacity;
}

.book-eyebrow,
.book-section-eyebrow,
.book-cta-eyebrow {
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.book-hero-title {
  display: grid;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 0.93;
  color: #e4e1ea;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.book-hero-title span {
  display: block;
}

.book-hero-title-accent {
  color: #f0ce97;
  letter-spacing: -0.02em;
}

.book-hero-description {
  max-width: 38rem;
  color: #d4c4ad;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
}

.book-hero-button,
.book-submit-button,
.book-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 0.9rem 2.75rem;
  background: #f7b51f;
  color: #694b00;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow:
    0 8px 10px -6px rgba(247, 181, 31, 0.28),
    0 20px 24px -18px rgba(247, 181, 31, 0.44);
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.book-hero-button:hover,
.book-submit-button:hover:not(:disabled),
.book-cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.book-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.book-page [data-reveal] {
  --stagger-delay: calc(var(--stagger-index, 0) * 120ms);
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  filter: blur(6px);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1) var(--stagger-delay),
    filter 780ms ease var(--stagger-delay);
}

.book-page [data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.book-expect-section {
  background: #0d0e12;
  padding: 7rem 0 8rem;
  border-top: 1px solid rgba(80, 69, 51, 0.15);
}

.book-section-header {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 4rem;
}

.book-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: #e4e1ea;
  line-height: 1.15;
  max-width: 38rem;
}

.book-title-rule {
  display: block;
  width: 80px;
  height: 2px;
  background: #f7b51f;
}

.book-expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.book-expect-card {
  background: #12131a;
  border: 1px solid rgba(80, 69, 51, 0.2);
  padding: 2.25rem 1.75rem 2.5rem;
  display: grid;
  gap: 1.1rem;
  align-content: start;
  transition:
    border-color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.book-expect-card:hover {
  border-color: rgba(240, 206, 151, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 24px 54px -32px rgba(0, 0, 0, 0.8);
}

.book-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(247, 181, 31, 0.1);
  color: #f7b51f;
  border-radius: 50%;
}

.book-expect-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: #e4e1ea;
  line-height: 1.3;
}

.book-expect-card p {
  font-size: 0.83rem;
  font-weight: 300;
  color: #98a0b1;
  line-height: 1.8;
}

.book-form-section {
  background: #12131a;
  padding: 7rem 0 8rem;
  border-top: 1px solid rgba(80, 69, 51, 0.15);
  scroll-margin-top: 100px;
}

.book-form-grid {
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 5rem;
  align-items: start;
}

.book-form-side {
  display: grid;
  gap: 3rem;
}

.book-form-side .book-section-header {
  margin-bottom: 0;
}

.book-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #f0ce97;
  line-height: 1.1;
}

.book-form {
  display: grid;
  gap: 2.75rem;
}

.book-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.book-field {
  display: grid;
  gap: 0.9rem;
}

.book-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #d4c4ad;
  text-transform: uppercase;
}

.book-input,
.book-select {
  width: 100%;
  height: 3.5rem;
  background: #0d0e13;
  border: 1px solid rgba(80, 69, 51, 0.3);
  padding: 0 0.875rem;
  color: #e4e1ea;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  outline: none;
  transition: border-color 160ms ease;
  border-radius: 0;
}

.book-input:focus,
.book-select:focus {
  border-color: rgba(240, 206, 151, 0.45);
}

.book-input::placeholder {
  color: #3f3f46;
  font-weight: 300;
}

.book-input-date {
  color-scheme: dark;
}

.book-textarea {
  height: auto;
  padding: 0.875rem;
  resize: vertical;
  min-height: 7rem;
  line-height: 1.7;
}

.book-select-wrap {
  position: relative;
}

.book-select {
  padding: 0 2.5rem 0 0.875rem;
  appearance: none;
  cursor: pointer;
}

.book-select option {
  background: #1a1b21;
  color: #e4e1ea;
}

.book-select option:disabled {
  color: #3f3f46;
}

.book-select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: #6b7280;
  font-size: 1.1rem;
  pointer-events: none;
  line-height: 1;
}

.book-submit-button {
  justify-self: start;
  letter-spacing: 0.11em;
}

.book-success-state {
  display: grid;
  gap: 1.25rem;
  padding: 3rem;
  background: #1a1b21;
  border: 1px solid rgba(240, 206, 151, 0.2);
}

.book-success-icon {
  color: #f0ce97;
  font-size: 1.25rem;
}

.book-success-state h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #e4e1ea;
}

.book-success-state p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #d4c4ad;
  line-height: 1.75;
}

.book-reset-button {
  justify-self: start;
  background: none;
  border: none;
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: opacity 150ms ease;
}

.book-reset-button:hover {
  opacity: 0.75;
}

.book-aside {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: 110px;
}

.book-aside-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.book-aside-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.book-aside[data-visible="true"] .book-aside-image {
  transform: scale(1);
}

.book-aside-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 14, 18, 0.55) 100%);
}

.book-aside-note {
  padding: 1.5rem 1.75rem;
  background: #1a1b21;
  border: 1px solid rgba(80, 69, 51, 0.2);
  display: grid;
  gap: 0.6rem;
}

.book-aside-note-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0ce97;
  opacity: 0.7;
}

.book-aside-note-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: #98a0b1;
  line-height: 1.75;
}

.book-aside-note-link {
  color: #f0ce97;
  transition: opacity 150ms ease;
}

.book-aside-note-link:hover {
  opacity: 0.75;
}

.book-cta-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.book-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.55) 0%, rgba(8, 8, 12, 0.78) 100%);
}

.book-cta-shell {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: 1.75rem;
  justify-items: center;
  padding: 5rem 1.5rem;
}

.book-cta-eyebrow {
  letter-spacing: 0.2em;
}

.book-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #e4e1ea;
  line-height: 1.1;
  max-width: 20ch;
}

.book-cta-title em {
  color: #f7b51f;
  font-style: italic;
}

.book-cta-button {
  padding: 0.9rem 3rem;
  letter-spacing: 0.14em;
}

@media (max-width: 1080px) {
  .book-expect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .book-form-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .book-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .book-aside-image-wrap {
    aspect-ratio: 16 / 9;
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .book-hero {
    min-height: auto;
    padding: 160px 0 72px;
  }

  .book-shell,
  .book-hero-shell {
    width: calc(100vw - 1.5rem);
  }

  .book-expect-grid,
  .book-form-row,
  .book-aside {
    grid-template-columns: 1fr;
  }

  .book-form-row {
    gap: 2.25rem;
  }

  .book-aside-image-wrap {
    grid-column: unset;
  }
}

@media (prefers-reduced-motion: reduce) {
  .book-hero-bg,
  .book-hero-overlay,
  .book-hero-shell,
  .book-aside-image,
  .book-cta-bg,
  .book-page [data-reveal] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* ================================================================
   CATALOGUE PAGE
   ================================================================ */

.catalogue-page {
  position: relative;
  background: #0d0e12;
  color: #e8e6e0;
}

.catalogue-page [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: calc(var(--stagger-index, 0) * 80ms);
}

.catalogue-page [data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ── */
.cat-hero {
  position: relative;
  min-height: 680px;
  padding: 200px 0 100px;
  overflow: hidden;
  background: #0d0e12;
  display: flex;
  align-items: center;
}

.cat-hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.cat-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--hero-image-shift, 0)) scale(var(--hero-image-scale, 1.08));
  transform-origin: center center;
  transition: transform 180ms linear;
  will-change: transform;
}

.cat-hero-overlay {
  position: absolute;
  inset: 0;
  opacity: var(--hero-overlay-opacity, 0.84);
  background:
    linear-gradient(180deg, rgba(8,8,12,0.2) 0%, rgba(8,8,12,0.6) 40%, rgba(13,14,18,0.96) 100%),
    rgba(10,10,14,0.5);
}

.cat-hero-shell {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100vw - 3rem));
  margin: 0 auto;
  text-align: center;
  transform: translateY(var(--hero-shell-shift, 0));
  opacity: var(--hero-shell-opacity, 1);
}

.cat-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1.25rem;
}

.cat-hero-title {
  font-family: var(--font-display, serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f5f3ee;
  margin-bottom: 1.5rem;
}

.cat-hero-title-top {
  display: block;
  font-weight: 200;
}

.cat-hero-title-bottom {
  display: block;
  font-weight: 600;
  font-style: italic;
  color: #c9a96e;
}

.cat-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(232,230,224,0.72);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Intro ── */
.cat-intro-section {
  background: #111317;
  padding: 6rem 0 5rem;
}

.cat-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cat-intro-title {
  font-family: var(--font-display, serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: #f5f3ee;
  margin-bottom: 1rem;
}

.cat-title-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: #c9a96e;
  margin: 0 auto 1.75rem;
}

.cat-intro-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,230,224,0.65);
}

/* ── Grid ── */
.cat-grid-section {
  background: #0d0e12;
  padding: 5rem 0 7rem;
}

.cat-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .cat-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cat-catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Card ── */
.cat-card {
  background: #16181f;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.cat-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.cat-card-img-wrap {
  position: relative;
  aspect-ratio: 8 / 11;
  overflow: hidden;
  background: #0d0e12;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.cat-card:hover .cat-card-img {
  transform: scale(1.04);
}

.cat-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,14,18,0.7) 100%);
}

.cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d0e12;
  background: #c9a96e;
  padding: 0.3rem 0.65rem;
  border-radius: 1px;
}

.cat-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.cat-card-title {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #f5f3ee;
  line-height: 1.3;
}

.cat-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(232,230,224,0.58);
  flex: 1;
}

.cat-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.5);
  color: #c9a96e;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.cat-download-btn:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #0d0e12;
}

/* ── CTA ── */
.cat-cta-section {
  background: #111317;
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cat-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cat-cta-title {
  font-family: var(--font-display, serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: #f5f3ee;
  margin-bottom: 1rem;
}

.cat-cta-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(232,230,224,0.6);
  margin-bottom: 2rem;
}

.cat-cta-btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: #c9a96e;
  color: #0d0e12;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.cat-cta-btn:hover {
  background: #d4b87a;
}
