﻿/* ─── 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-muted: #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;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
main { flex: 1; }
[hidden] { display: none !important; }
::selection { background: rgba(217,188,162,0.42); color: #151311; }

/* ─── Shell / 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 { background: rgba(15,18,23,0.9); border-bottom: 1px solid rgba(214,181,137,0.08); backdrop-filter: blur(24px); }
.nav-bar { background: rgba(15,18,23,0.82); border-bottom: 1px solid rgba(214,181,137,0.1); backdrop-filter: blur(24px); }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 48px; gap: 1rem; width: min(1184px, calc(100vw - 3rem)); margin: 0 auto; }
.nav-bar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 1.5rem; width: min(1184px, calc(100vw - 3rem)); margin: 0 auto; }
.top-bar-socials { display: flex; align-items: center; gap: 1.4rem; }
.top-bar-socials a { color: #d4c0ab; font-size: 0.9rem; transition: color 160ms ease; }
.top-bar-socials a:hover { color: #f1ece7; }
.top-bar-meta { display: flex; align-items: center; gap: 2rem; }
.top-bar-meta a { color: #98a0b1; font-size: 0.8rem; transition: color 160ms ease; }
.top-bar-meta a:hover { color: #f1ece7; }
.brand-logo { display: inline-flex; align-items: center; opacity: 1; transition: opacity 160ms ease; }
.brand-logo:hover { opacity: 0.85; }
.brand-logo img { height: 44px; width: auto; object-fit: contain; }
.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: var(--gold); transform: scaleX(0); transition: transform 160ms ease; transform-origin: left; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: #f1ece7; }
.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; transition: color 160ms ease; }
.action-icons a:hover { color: #f1ece7; }
.mobile-toggle { display: none; background: none; border: none; color: #f1ece7; padding: 0.5rem; font-size: 1.6rem; line-height: 1; }
.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:hover, .mobile-nav-link.active { color: var(--gold); }
.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: var(--gold); color: #694b00; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; border: 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; }
.mobile-meta-link { color: #98a0b1; font-size: 0.8rem; }

/* ─── Buttons ───────────────────��───────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0.9rem 1.75rem; border-radius: 8px; background: var(--gold); 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; border: none; font-family: var(--font-sans); }
.btn-primary:hover { 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); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0.9rem 1.75rem; border-radius: 8px; border: 1px solid rgba(214,181,137,0.3); color: var(--gold-light); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; transition: border-color 160ms ease, color 160ms ease; background: transparent; font-family: var(--font-sans); }
.btn-secondary:hover { border-color: rgba(214,181,137,0.6); color: #f1ece7; }

/* ─── Eyebrow ───────────────────────────────────────────────── */
.eyebrow { color: var(--gold-light); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

/* ─── Section Heading ───────────────────────────────────────── */
.section-heading { display: grid; gap: 0.9rem; }
.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-heading p { max-width: 38rem; color: #b1a18d; font-size: 1.125rem; font-weight: 300; line-height: 1.75; }
.section-heading-center { display: grid; gap: 0.9rem; justify-items: center; text-align: center; }
.section-heading-center 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: center top; margin-bottom: 3.5rem; }
.section-heading-center p { max-width: 38rem; color: #b1a18d; font-size: 1.125rem; font-weight: 300; line-height: 1.75; }

/* ─── Inline Link ───────────────────────────────────────────── */
.inline-link { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--gold-light); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: color 160ms ease; }
.inline-link:hover { color: #f1ece7; }

/* ─── 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 { 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: 2; min-height: 760px; padding-top: 80px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; width: min(1184px, calc(100vw - 3rem)); margin: 0 auto; }
.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 { width: min(1020px, 100%); font-family: var(--font-display); font-weight: 400; font-size: clamp(4rem,10vw,8rem); letter-spacing: -0.03em; text-shadow: 0 4px 24px rgba(0,0,0,0.4); margin-bottom: 2rem; white-space: normal; line-height: 1.0; }
.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: 58rem; color: #d4c4ad; font-size: 1.125rem; font-weight: 300; line-height: 1.55; transition-delay: 320ms; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; transition-delay: 420ms; }
.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; }

/* ─── Reveal Animations ──────────────────────��──────────────── */
[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); }
[data-visible="true"] { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }

/* ─── Cover Image ──────────────────────���────────────────────── */
.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ─── About Section ───────────────────��─────────────────────── */
.about-section { position: relative; background: #1a1b21; padding: 6rem 0; }
.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 .cover-img { transform: scale(1.06); transition: transform 1400ms cubic-bezier(0.16,1,0.3,1); }
[data-visible="true"] .about-visual-inner .cover-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: #292a30; box-shadow: 0 28px 60px -40px rgba(0,0,0,0.95); }
.stat-card strong { color: var(--gold-light); font-family: var(--font-display); font-size: 3rem; font-weight: 400; line-height: 0.9; }
.stat-card span { color: #b1a18d; line-height: 1.75; font-size: 0.82rem; }
.about-content { display: grid; gap: 3rem; }
.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; }

/* ─── Services Carousel ─────────────────────────────────────── */
.services-section { position: relative; background: #111317; padding: 6rem 0; }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.carousel-controls { display: flex; gap: 1.2rem; align-items: center; }
.section-arrow { background: none; border: none; color: var(--gold-light); 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; }
.section-arrow:hover { opacity: 0.8; transform: scale(1.05); }
.services-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 420px; gap: 32px; margin-top: 2.6rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; scroll-snap-type: x proximity; }
.services-rail::-webkit-scrollbar { display: none; }
.service-card { display: grid; gap: 0.8rem; scroll-snap-align: start; }
.service-media { position: relative; min-height: 460px; overflow: hidden; isolation: isolate; 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.5)) 100%); }
.service-media .cover-img { transform: scale(1.06); transition: transform 1400ms cubic-bezier(0.16,1,0.3,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 .cover-img { transform: scale(1.1); }
.service-copy h3 { color: #e5e1ea; font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; margin-bottom: 0.4rem; }
.service-copy p { color: #b1a18d; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; }

/* ─── Portfolio Section ─────────────────────────────────────── */
.portfolio-section { position: relative; background: #111217; padding: 6rem 0; 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; border-radius: 8px 8px 0 0; overflow: hidden; box-shadow: 0 35px 90px -60px rgba(0,0,0,0.95); }
.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; }
.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; border-radius: 8px; overflow: hidden; box-shadow: 0 32px 90px -65px rgba(0,0,0,0.95); }
.side-project-media .cover-img { transform: scale(1.06); transition: transform 1400ms cubic-bezier(0.16,1,0.3,1); }
[data-visible="true"] .side-project-media .cover-img, [data-visible="true"] .featured-project-media .cover-img { transform: scale(1); }
.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; margin-bottom: 0.6rem; }
.side-project-copy p { color: #b1a18d; font-size: 0.88rem; line-height: 1.75; }
.project-category { color: var(--gold-light); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

/* ─── Product Carousel ──────────────────────────────────────── */
.product-section { padding: 6rem 0; border-top: 1px solid rgba(80,69,51,0.14); background: #111317; }
.product-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; }
.product-heading-block { display: grid; gap: 0; max-width: 44rem; }
.product-section-title { --text-size: clamp(3rem,5vw,3.9rem); --text-height: 1.05; font-family: var(--font-display); font-size: var(--text-size); color: #e5e1ea; font-weight: 400; line-height: var(--text-height); transform: scaleY(1.25); transform-origin: left top; margin: .5rem 0 1.35rem; }
.product-section-subtext { --text-size: 0.96rem; --text-height: 1.8; max-width: 38rem; color: #b1a18d; font-size: var(--text-size); font-weight: 300; line-height: var(--text-height); }
.product-header-actions { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; }
.view-all-link { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-muted); transition: opacity 160ms ease; }
.view-all-link:hover { opacity: 0.75; }
.product-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 420px; gap: 32px; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; scroll-snap-type: x proximity; }
.product-rail::-webkit-scrollbar { display: none; }
.product-card { scroll-snap-align: start; background: #1a1b21; border: 1px solid rgba(214,181,137,0.08); border-radius: 8px; padding: 2rem 1.5rem; transition: border-color 200ms ease, transform 200ms ease; }
.product-card:hover { border-color: rgba(247,181,31,0.25); transform: translateY(-4px); }
.product-card-inner { display: grid; grid-template-rows: auto 1fr; gap: 1rem; height: 100%; color: inherit; }
.product-media { position: relative; min-height: 420px; overflow: hidden; background: #16181f; border-radius: 4px; isolation: isolate; }
.product-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,14,0.55) 100%); }
.product-card:hover .product-media .cover-img { transform: scale(1.06); transition: transform 500ms cubic-bezier(0.22,1,0.36,1); }
.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: var(--gold-muted); padding: 0.25rem 0.55rem; }
.product-copy { display: grid; align-content: start; gap: 0.45rem; min-height: 5.4rem; }
.product-title { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: #e5e1ea; font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; line-height: 1.22; transition: color 200ms ease; }
.product-card:hover .product-title { color: var(--gold-muted); }
.product-price { color: var(--gold-muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; white-space: normal; }

/* ─── Mission Section ────────────────────────────────���──────── */
.mission-section { position: relative; background: #14161b; padding: 6rem 0; }
.mission-icon-row { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold-light); }
.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 { color: #e5e1ea; font-size: clamp(2rem,4.5vw,4rem); font-family: var(--font-display); line-height: 1.05; white-space: pre-line; transform: scaleY(1.25); transform-origin: center top; max-width: none; }
.mission-statement p { margin-bottom: -0.2rem; }
.mission-statement h2 { margin-bottom: 3.5rem; }
.gold-accent { color: var(--gold-light); 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-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 { position: relative; background: #111217; padding: 6rem 0; 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; }
.testimonial-item { display: grid; gap: 1rem; padding-top: 0.5rem; }
.quote-mark { color: rgba(240,206,151,0.12); font-size: 5rem; font-style: italic; line-height: 0.75; }
.testimonial-item p { color: #e5e1ea; font-size: 1rem; font-style: italic; font-weight: 300; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.testimonial-author span { width: 48px; height: 1px; background: var(--gold-light); flex-shrink: 0; }
.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 { position: relative; background: #111217; 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); 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; }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer { position: relative; background: #111217; 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 { display: grid; gap: 0.8rem; }
.footer-brand h2 { font-family: var(--font-display); font-weight: 400; color: var(--gold-light); font-size: 2rem; }
.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; margin-top: 0.4rem; }
.footer-socials 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-socials a:hover { color: #f1ece7; }
.footer-col { display: grid; gap: 0.8rem; }
.footer-col h3 { color: var(--gold-light); font-family: var(--font-meta); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.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 { display: flex; justify-content: center; 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; }

/* ─── CTA Section ──────────────────────���────────────────────── */
.cta-section { position: relative; background: #111217; padding: 5rem 0; }
.cta-panel { display: grid; justify-items: center; gap: 1.4rem; text-align: center; }
.cta-panel h2 { font-family: var(--font-display); font-weight: 400; color: #e5e1ea; font-size: clamp(2rem,4vw,3.4rem); line-height: 1.1; }
.cta-panel p { color: #b1a18d; font-size: 1rem; max-width: 36rem; line-height: 1.8; }
.cta-buttons { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }

/* ─── Forms ───────────────────────────────��─────────────────── */
.form-field { display: grid; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-label { color: var(--gold-light); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.85rem 1rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(214,181,137,0.15); border-radius: 6px; color: #e5e1ea; font-family: var(--font-sans); font-size: 0.92rem; transition: border-color 160ms ease; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: rgba(247,181,31,0.4); }
.form-input::placeholder, .form-textarea::placeholder { color: #5a5650; }
.form-textarea { resize: vertical; min-height: 120px; }

/* ─── Blog ─────────────────────────────────���────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 2.5rem; }
.blog-card { display: grid; gap: 1rem; }
.blog-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #1a1b21; border-radius: 4px; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(0.22,1,0.36,1); }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { display: grid; gap: 0.6rem; }
.blog-category { color: var(--gold-light); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.blog-date { color: #6b6560; font-size: 0.75rem; }
.blog-card-title { color: #e5e1ea; font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; line-height: 1.3; transition: color 160ms ease; }
.blog-card:hover .blog-card-title { color: var(--gold-light); }
.blog-excerpt { color: #b1a18d; font-size: 0.88rem; line-height: 1.7; }
.blog-meta { display: flex; align-items: center; gap: 1rem; }
.blog-reading-time { color: #6b6560; font-size: 0.75rem; }

/* ─── Projects Filter Grid ─────────────────────────��────────── */
.projects-filter { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { background: none; border: 1px solid rgba(214,181,137,0.15); color: #98a0b1; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.6rem 1.2rem; border-radius: 4px; transition: all 160ms ease; font-family: var(--font-sans); }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); }
.projects-masonry { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; }
.project-item { position: relative; overflow: hidden; border-radius: 4px; }
.project-item.large { grid-column: span 2; }
.project-item-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #1a1b21; }
.project-item.large .project-item-media { aspect-ratio: 16/9; }
.project-item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.22,1,0.36,1); }
.project-item:hover .project-item-media img { transform: scale(1.06); }
.project-item-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,12,16,0.85) 100%); opacity: 0; transition: opacity 300ms ease; }
.project-item:hover .project-item-overlay { opacity: 1; }
.project-item-copy { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; transform: translateY(10px); opacity: 0; transition: all 300ms ease; }
.project-item:hover .project-item-copy { transform: translateY(0); opacity: 1; }
.project-item-copy h3 { color: #f0ece4; font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; }
.project-item-copy p { color: #b1a18d; font-size: 0.8rem; margin-top: 0.3rem; }

/* ─── Hero (background image via inline style) ──────────────── */
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.5rem; padding: 4rem 0; }
.hero-sub { max-width: 42rem; color: #d4c4ad; font-size: 1.125rem; font-weight: 300; line-height: 1.75; }

/* ─── Section Header ─────────────────────────────────────── */
.section-header { display: grid; gap: 0.8rem; text-align: center; justify-items: center; margin-bottom: 3rem; }
.section-header h2 { font-family: var(--font-display); font-weight: 400; color: #e5e1ea; font-size: clamp(2.2rem,4vw,3.2rem); line-height: 1.1; }
.section-header p { max-width: 38rem; color: #b1a18d; font-size: 1rem; line-height: 1.75; }

/* ─── Stat Row ───────────────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1.5rem; }
.stat-row .stat-card { position: static; width: auto; right: auto; bottom: auto; padding: 1.5rem 1rem; }

/* ─── Carousel Button ────────────────────────────────────── */
.carousel-btn { background: none; border: 1px solid rgba(214,181,137,0.2); color: var(--gold-light); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 160ms ease; flex-shrink: 0; }
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.services-rail-wrap, .products-rail-wrap, .testimonials-rail-wrap { display: flex; align-items: center; gap: 1rem; }
.services-rail-wrap .services-rail, .products-rail-wrap .products-rail, .testimonials-rail-wrap .testimonials-rail { flex: 1; min-width: 0; }

/* ─── Service Card (icon version) ───────────────────────── */
.service-icon { font-size: 2rem; line-height: 1; }
.services-section .service-card { background: #1a1b21; border: 1px solid rgba(214,181,137,0.08); border-radius: 8px; padding: 2rem 1.5rem; gap: 1rem; transition: border-color 200ms ease, transform 200ms ease; }
.services-section .service-card:hover { border-color: rgba(247,181,31,0.25); transform: translateY(-4px); }
.services-section .service-card h3 { color: #e5e1ea; font-size: 1.1rem; font-weight: 600; }
.services-section .service-card p { color: #b1a18d; font-size: 0.88rem; line-height: 1.7; }

/* ─── Portfolio Card ────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.portfolio-card { position: relative; display: block; overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.22,1,0.36,1); }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.2rem 1.2rem; background: linear-gradient(0deg, rgba(11,12,16,0.9) 0%, transparent 100%); }
.portfolio-cat { color: var(--gold-light); 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: 1.05rem; font-weight: 500; }

/* ─── Products Rail ─────────────────────────────────────── */
.products-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 260px; gap: 20px; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; scroll-snap-type: x proximity; }
.products-rail::-webkit-scrollbar { display: none; }
.products-rail .product-card { scroll-snap-align: start; display: block; }
.product-img-wrap { aspect-ratio: 3/4; overflow: hidden; background: #16181f; border-radius: 4px; margin-bottom: 0.75rem; }
.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-info { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; }
.product-info h3 { color: #f0ece4; font-size: 0.92rem; font-weight: 500; flex: 1; }
.product-info .product-price { color: var(--gold-muted); font-size: 0.88rem; font-weight: 600; white-space: nowrap; }

/* ─── Mission (simplified) ──────────────────────────────── */
.mission-section { text-align: center; }
.mission-section h2 { font-family: var(--font-display); font-weight: 400; color: #e5e1ea; font-size: clamp(2.2rem,4vw,3.6rem); line-height: 1.1; margin: 1rem 0 1.5rem; }
.mission-section p { max-width: 42rem; margin: 0 auto; color: #b1a18d; line-height: 1.8; font-size: 1rem; }
.mission-section .btn-primary { margin-top: 2.5rem; }

/* ─── Testimonials Rail ─────────────────────────────────── */
.testimonials-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 360px; gap: 24px; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; scroll-snap-type: x proximity; }
.testimonials-rail::-webkit-scrollbar { display: none; }
.testimonial-card { scroll-snap-align: start; background: #1a1b21; border: 1px solid rgba(80,69,51,0.2); border-radius: 8px; padding: 2rem; display: grid; gap: 1rem; }
.testimonial-card blockquote { color: #e5e1ea; font-size: 1rem; font-style: italic; line-height: 1.8; font-weight: 300; }
.testimonial-card cite { display: grid; gap: 0.2rem; font-style: normal; }
.testimonial-card cite strong { color: var(--gold-light); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; }
.testimonial-card cite span { color: #8c867d; font-size: 0.78rem; }

/* ─── Final CTA (simplified) ────────────────────────────── */
.final-cta-section h2 { font-family: var(--font-display); font-weight: 400; color: #e5e1ea; font-size: clamp(2.2rem,4vw,3.6rem); line-height: 1.1; text-align: center; margin-bottom: 1rem; }
.final-cta-section p { color: #b1a18d; font-size: 1rem; text-align: center; max-width: 38rem; margin: 0 auto; line-height: 1.8; }
.cta-actions { display: flex; align-items: center; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ─── Section CTA ───────────────────────────────────────── */
.section-cta { text-align: center; margin-top: 3rem; }

/* ─── Keyframes ─────────────────────────────────────────────── */
@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 ──────────────────────────────���─────────────── */
@media (max-width: 1080px) {
  .shell { width: min(1184px, calc(100vw - 2rem)); }
  .about-grid, .portfolio-grid, .mission-grid, .testimonial-grid, .footer-inner { grid-template-columns: 1fr; }
  .site-nav, .top-bar { display: none; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-bar-inner .btn-primary { display: none; }
  .header-actions { margin-left: auto; }
  .services-rail { grid-auto-columns: minmax(18rem, 72vw); }
  .product-rail, .products-rail { grid-auto-columns: minmax(220px, 68vw); }
  .product-media { height: min(420px, 74vw); min-height: 0; }
  .testimonials-rail { grid-auto-columns: minmax(280px, 80vw); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .projects-masonry { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .project-item.large { grid-column: span 2; }
  .stat-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .shell { width: calc(100vw - 1.5rem); }
  .hero-shell { width: calc(100vw - 1.5rem); padding-top: 0; justify-content: center; }
  .hero { min-height: 880px; padding-top: 170px; }
  .hero-title { font-size: clamp(3.2rem, 12vw, 5rem); }
  .hero-actions { justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .stat-card { right: 1rem; bottom: 1rem; }
  .stat-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mission-grid, .testimonial-grid, .blog-grid, .projects-masonry { grid-template-columns: 1fr; }
  .project-item.large { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .final-cta-panel { min-height: 360px; }
  .product-header { flex-direction: column; align-items: flex-start; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-rail-wrap, .products-rail-wrap, .testimonials-rail-wrap { gap: 0.5rem; }
  .carousel-btn { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-image, .hero-overlay, .hero-content, .scroll-label, .hero-title-line > span { transform: none !important; filter: none !important; }
  .hero-overlay, .hero-content, .scroll-label, .hero-title-line > span { opacity: 1 !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !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: #0c0d11;
  padding: 0 0 8rem;
}

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

/* ─── Project Grid ───────────────────────────────────────────── */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
  transition: opacity 200ms ease, filter 200ms ease;
}

.proj-grid.is-transitioning {
  opacity: 0.12;
  filter: blur(3px);
  pointer-events: none;
}

/* ─── Project Card ───────────────────────────────────────────── */
.proj-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #16171e;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.proj-card--large  { height: 520px; }
.proj-card--medium { height: 360px; }
.proj-card--small  { height: 250px; }

.proj-card[data-featured] {
  grid-column: span 2;
  height: 540px;
}

.proj-card__link {
  display: block;
  position: absolute;
  inset: 0;
  color: inherit;
  text-decoration: none;
}

.proj-card__img-wrap {
  position: absolute;
  inset: 0;
}

.proj-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.proj-card:hover .proj-card__img,
.proj-card:focus-within .proj-card__img {
  transform: scale(1.07);
}

.proj-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(4, 3, 2, 0.04) 0%,
    rgba(4, 3, 2, 0.5) 55%,
    rgba(4, 3, 2, 0.93) 100%
  );
  transition: background 400ms ease;
}

.proj-card:hover .proj-card__overlay,
.proj-card:focus-within .proj-card__overlay {
  background: linear-gradient(
    160deg,
    rgba(4, 3, 2, 0.08) 0%,
    rgba(4, 3, 2, 0.62) 55%,
    rgba(4, 3, 2, 0.97) 100%
  );
}

.proj-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem 1.5rem;
}

.proj-card__badge {
  align-self: flex-start;
  font-family: var(--font-meta);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0ce97;
  background: rgba(240, 206, 151, 0.1);
  border: 1px solid rgba(240, 206, 151, 0.24);
  padding: 0.26rem 0.68rem;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}

.proj-card__body {
  display: grid;
  gap: 0.5rem;
  transform: translateY(0);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.proj-card:hover .proj-card__body,
.proj-card:focus-within .proj-card__body {
  transform: translateY(-8px);
}

.proj-card__title {
  --text-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
}

.proj-card[data-featured] .proj-card__title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.proj-card__excerpt {
  --text-size: 0.78rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease;
}

.proj-card:hover .proj-card__excerpt,
.proj-card:focus-within .proj-card__excerpt {
  max-height: 5rem;
  opacity: 1;
}

.proj-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-meta);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0ce97;
  margin-top: 0.15rem;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 360ms ease 60ms,
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1) 60ms;
}

.proj-card:hover .proj-card__cta,
.proj-card:focus-within .proj-card__cta {
  opacity: 1;
  transform: translateX(0);
}

.projects-empty-state {
  padding: 5rem 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);
  }

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

@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;
  }

  .proj-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .proj-card[data-featured] {
    grid-column: span 1;
    height: 460px;
  }

  .proj-card--large  { height: 440px; }
  .proj-card--medium { height: 320px; }
  .proj-card--small  { height: 240px; }
}

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

  .proj-card__excerpt {
    max-height: none !important;
    opacity: 1 !important;
  }

  .proj-card__cta {
    opacity: 1 !important;
    transform: none !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 {
  --text-size: 3.75rem;
  --text-height: 1;
  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 {
  --text-size: 1.25rem;
  --text-height: 1.2;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e4e1ea;
  line-height: 1.2;
}

.about-page-milestone-description {
  --text-size: 0.875rem;
  --text-height: 1.75;
  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-post-block-image {
  width: 100%;
  margin: 1rem 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(240, 206, 151, 0.1);
}

.journal-post-block-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 34rem;
  transition: transform 400ms ease;
}

.journal-post-block-image:hover img {
  transform: scale(1.015);
}

.journal-post-block-caption {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #9d9082;
  letter-spacing: 0.02em;
  background: rgba(20, 21, 27, 0.6);
}

.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;
  }
}

/* Project journal articles */
.journal-post-page {
  background:
    linear-gradient(180deg, rgba(13, 14, 18, 0.98) 0%, #111217 48%, #0d0e12 100%);
}

.journal-post-hero {
  gap: 3.5rem;
  align-items: end;
}

.journal-post-back-link {
  width: fit-content;
  color: #c9a96e;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.journal-post-back-link:hover,
.journal-post-back-link:focus-visible {
  color: #f0ce97;
  transform: translateX(-3px);
}

.journal-post-hero-copy {
  align-content: end;
  padding-bottom: 0.75rem;
}

.journal-post-hero-copy h1 {
  max-width: 12ch;
}

.journal-post-hero-copy > span {
  font-size: 1.05rem;
}

.journal-post-hero-media {
  min-height: 31rem;
  border-radius: 8px;
  border: 1px solid rgba(240, 206, 151, 0.12);
  box-shadow: 0 40px 90px -60px rgba(0, 0, 0, 0.95);
}

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

.journal-post-content-wrap {
  display: grid;
  gap: 2rem;
  max-width: 960px;
  padding-top: 5rem;
}

.journal-post-prose {
  max-width: 760px;
}

.journal-post-prose p {
  margin: 0;
}

.journal-post-block-image,
.journal-post-image-gallery {
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(240, 206, 151, 0.1);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 30px 70px -56px rgba(0, 0, 0, 0.95);
}

.journal-post-image-gallery {
  overflow: hidden;
}

.journal-post-image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(240, 206, 151, 0.12);
}

.journal-post-image-gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #17181f;
}

.journal-post-block-caption {
  border-top: 1px solid rgba(240, 206, 151, 0.08);
  background: rgba(13, 14, 18, 0.72);
}

.journal-related-inner {
  border-radius: 8px;
}

@media (max-width: 960px) {
  .journal-post-hero {
    gap: 2rem;
  }

  .journal-post-hero-copy h1 {
    max-width: none;
  }

  .journal-post-image-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .journal-post-image-gallery-grid {
    grid-template-columns: 1fr;
  }

  .journal-post-image-gallery-grid img {
    height: 260px;
  }
}

/* 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;
  }
}

/* Cart drawer */
.cart-is-open {
  overflow: hidden;
}

.cart-nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #d4c0ab;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 160ms ease;
}

.cart-nav-btn:hover,
.cart-nav-btn:focus-visible {
  color: #f1ece7;
}

.cart-nav-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: #f7b51f;
  color: #3a2800;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(2px);
}

.cart-backdrop[hidden],
.cart-footer[hidden],
.cart-nav-badge[hidden] {
  display: none !important;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 960;
  width: min(420px, 100vw);
  background: #181920;
  border-left: 1px solid rgba(240, 206, 151, 0.12);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer[data-open="true"] {
  transform: translateX(0);
}

.cart-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(240, 206, 151, 0.1);
  flex-shrink: 0;
}

.cart-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: #e5e1ea;
}

.cart-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c6b59f;
  cursor: pointer;
  transition: background 140ms ease;
}

.cart-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 3rem 2rem;
  text-align: center;
}

.cart-empty[hidden] {
  display: none !important;
}

.cart-empty p {
  color: #e5e1ea;
  font-size: 1.05rem;
  font-weight: 500;
}

.cart-empty span {
  color: #8a7e6e;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cart-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0;
  margin: 0;
  list-style: none;
}

.cart-list:empty {
  display: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #101116;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-info {
  display: grid;
  gap: 0.2rem;
  overflow: hidden;
}

.cart-item-category {
  color: #f0ce97;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-item-title {
  color: #e5e1ea;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  color: #f7b51f;
  font-family: var(--font-display);
  font-size: 1rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e5e1ea;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: background 120ms ease;
}

.cart-qty-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cart-qty-value {
  min-width: 1.5rem;
  text-align: center;
  color: #e5e1ea;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-footer {
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid rgba(240, 206, 151, 0.1);
  display: grid;
  gap: 0.9rem;
  flex-shrink: 0;
}

.cart-footer p {
  color: #8a7e6e;
  font-size: 0.82rem;
  text-align: center;
}

.cart-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  border-radius: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
  transition: filter 160ms ease, transform 160ms ease;
}

.cart-whatsapp-btn:hover,
.cart-whatsapp-btn:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 196px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(247, 181, 31, 0.2), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #0f1116 0%, #16181f 52%, #0e0f14 100%);
}

.shop-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.shop-hero__glow--left {
  top: 120px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: rgba(247, 181, 31, 0.2);
}

.shop-hero__glow--right {
  right: -50px;
  bottom: 30px;
  width: 220px;
  height: 220px;
  background: rgba(240, 206, 151, 0.12);
}

.shop-hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.shop-hero__content {
  display: grid;
  gap: 1.35rem;
}

.shop-hero__eyebrow {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-hero__title {
  max-width: 11ch;
  color: #f4efe9;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 6.7rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.shop-hero__description {
  max-width: 36rem;
  color: #c8baaa;
  font-size: 1.04rem;
  line-height: 1.9;
}

.shop-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}

.shop-hero__secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(240, 206, 151, 0.22);
  border-radius: 999px;
  color: #f0ce97;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.shop-hero__secondary-link:hover {
  border-color: rgba(247, 181, 31, 0.42);
  color: #fff3d6;
  transform: translateY(-1px);
}

.shop-hero__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.shop-hero__note {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(240, 206, 151, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.shop-hero__note span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-hero__note strong {
  color: #ede6df;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

.shop-hero__spotlight-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(240, 206, 151, 0.1);
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(17, 18, 23, 0.82);
  box-shadow: 0 38px 90px -58px rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(18px);
}

.shop-hero__spotlight-header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.shop-hero__spotlight-header p {
  color: #f1ebe4;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.shop-hero__spotlight-header span {
  color: #9d968c;
  font-size: 0.88rem;
  line-height: 1.7;
}

.shop-hero__spotlight-list {
  display: grid;
  gap: 1rem;
}

.shop-hero__mini-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid rgba(240, 206, 151, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.025);
}

.shop-hero__mini-card.is-featured {
  background: linear-gradient(135deg, rgba(247, 181, 31, 0.12), rgba(255, 255, 255, 0.03));
  border-color: rgba(247, 181, 31, 0.18);
}

.shop-hero__mini-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.95rem;
  background: #181a20;
}

.shop-hero__mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-hero__mini-copy {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.shop-hero__mini-category {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-hero__mini-title {
  color: #f4efe9;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
}

.shop-hero__mini-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.shop-hero__mini-price {
  color: #f0ce97;
  font-size: 0.88rem;
  font-weight: 700;
}

.shop-hero__mini-link {
  color: #f4efe9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-showcase {
  padding: 5.5rem 0 6.5rem;
  background:
    linear-gradient(180deg, rgba(17, 18, 23, 0.98) 0%, rgba(13, 14, 18, 1) 100%);
}

.shop-showcase__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.shop-showcase__copy {
  display: grid;
  gap: 0.9rem;
  max-width: 42rem;
}

.shop-showcase__copy h2 {
  color: #f2ede6;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.shop-showcase__copy p {
  color: #afa18e;
  font-size: 1rem;
  line-height: 1.85;
}

.shop-showcase__support-link {
  color: #f0ce97;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(240, 206, 151, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.025);
}

.shop-filter-panel__copy {
  display: grid;
  gap: 0.35rem;
  max-width: 21rem;
}

.shop-filter-panel__eyebrow {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-filter-panel__copy p {
  color: #9e978d;
  font-size: 0.88rem;
  line-height: 1.7;
}

.shop-filter-panel__actions {
  margin-bottom: 0;
  justify-content: flex-end;
}

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

.shop-product-card {
  display: grid;
  min-width: 0;
  border: 1px solid rgba(240, 206, 151, 0.08);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 181, 31, 0.22);
  box-shadow: 0 30px 60px -42px rgba(0, 0, 0, 0.92);
}

.shop-product-card__media {
  position: relative;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: #181a20;
}

.shop-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-product-card:hover .shop-product-card__media img {
  transform: scale(1.08);
}

.shop-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 15, 0) 48%, rgba(10, 11, 15, 0.72) 100%);
}

.shop-product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(15, 17, 22, 0.74);
  border: 1px solid rgba(240, 206, 151, 0.14);
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.shop-product-card__body {
  display: grid;
  gap: 1rem;
  padding: 1.3rem 1.2rem 1.2rem;
}

.shop-product-card__headline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.shop-product-card__title {
  color: #f2ede6;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.shop-product-card__price {
  flex-shrink: 0;
  color: #f0ce97;
  font-size: 0.98rem;
  font-weight: 700;
}

.shop-product-card__description {
  color: #a79a89;
  font-size: 0.92rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.shop-add-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #694b00;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px -18px rgba(247, 181, 31, 0.55);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.shop-add-cart-btn:hover,
.shop-add-cart-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 30px -18px rgba(247, 181, 31, 0.65);
}

.shop-enquire-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .shop-hero__shell {
    grid-template-columns: 1fr;
  }

  .shop-showcase__header,
  .shop-filter-panel {
    align-items: start;
    flex-direction: column;
  }

  .shop-filter-panel__actions {
    justify-content: flex-start;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shop-hero {
    padding: 164px 0 72px;
  }

  .shop-hero__notes,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero__mini-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .shop-hero__title {
    max-width: none;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .shop-product-card__headline,
  .shop-product-card__footer {
    flex-direction: column;
    align-items: start;
  }

  .shop-add-cart-btn,
  .shop-enquire-link {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SHOP PAGE — pixel-perfect match to deric-interiors2
   ============================================================ */

/* --- HERO --- */
.sp-hero {
  position: relative;
  min-height: 860px;
  padding: 184px 0 72px;
  overflow: hidden;
  background: #111217;
}
.sp-hero__img,
.sp-cover-img {
  object-fit: cover;
}
.sp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sp-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,14,0.15) 0%, rgba(10,12,16,0.36) 24%, rgba(12,14,18,0.82) 74%, rgba(17,18,23,1) 100%),
    linear-gradient(120deg, rgba(0,0,0,0.58) 0%, rgba(25,18,12,0.48) 100%);
}
.sp-hero__shell,
.sp-section-shell {
  position: relative;
  z-index: 1;
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
}
.sp-hero__shell {
  min-height: 620px;
  display: flex;
  align-items: center;
}
.sp-hero__content,
.sp-intro__copy,
.sp-featured__content,
.sp-cta__panel {
  display: grid;
  gap: 1rem;
}
.sp-hero__content {
  max-width: 44rem;
}
.sp-eyebrow,
.sp-product-category {
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sp-hero h1,
.sp-intro__copy h2,
.sp-featured__content h2,
.sp-collection__header h2,
.sp-product__content h3,
.sp-cta__panel h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #e5e1ea;
  line-height: 1.1;
}
.sp-hero h1 {
  font-size: clamp(3.8rem, 7vw, 7rem);
  max-width: 15ch;
  line-height: 1.0;
}
.sp-hero__desc,
.sp-intro__copy p:last-child,
.sp-featured__desc,
.sp-product-desc,
.sp-cta__panel p:last-of-type {
  color: #c6b59f;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}
.sp-hero__desc { max-width: 42rem; }
.sp-hero__actions,
.sp-featured__meta,
.sp-product__footer,
.sp-category-chips {
  display: flex;
  align-items: center;
}
.sp-hero__actions {
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.sp-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.8rem;
  border-radius: 8px;
  background: #f7b51f;
  color: #694b00;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 10px -6px rgba(247,181,31,0.22), 0 24px 32px -22px rgba(247,181,31,0.45);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  border: none;
  font-family: var(--font-sans);
}
.sp-primary-btn:hover, .sp-primary-btn:focus-visible,
.sp-category-chip:hover, .sp-category-chip:focus-visible,
.sp-product-card:hover, .sp-product-card:focus-within { transform: translateY(-2px); }
.sp-primary-btn:hover, .sp-primary-btn:focus-visible { filter: brightness(1.02); }
.sp-secondary-link, .sp-inline-link {
  color: #f0ce97;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.sp-intro, .sp-featured, .sp-collection, .sp-cta { background: #111217; }
.sp-intro, .sp-collection, .sp-cta { padding: 6rem 0; }
.sp-featured { padding: 0 0 6rem; }
.sp-featured, .sp-collection, .sp-cta { border-top: 1px solid rgba(240,206,151,0.07); }
.sp-collection { background: #0d0e12; }
.sp-intro__header {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(18rem, 1fr);
  gap: 2.5rem;
  align-items: end;
}
.sp-intro__copy h2, .sp-collection__header h2, .sp-cta__panel h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.15;
}
.sp-category-chips { gap: 0.75rem; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.sp-category-chips::-webkit-scrollbar { display: none; }
.sp-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(240,206,151,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  color: #e5e1ea;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.sp-category-chip:hover, .sp-category-chip:focus-visible {
  border-color: rgba(240,206,151,0.36);
  background: rgba(240,206,151,0.08);
}
.sp-category-chip.is-active {
  border-color: rgba(240,206,151,0.55);
  background: rgba(240,206,151,0.13);
  color: #f0ce97;
}
.sp-featured__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  overflow: hidden;
  border: 1px solid rgba(240,206,151,0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(31,33,40,0.92), rgba(19,20,24,0.98));
  box-shadow: 0 32px 80px -42px rgba(0,0,0,0.72);
}
.sp-featured__media { position: relative; min-height: 620px; }
.sp-cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sp-featured__content { align-content: center; padding: 3rem; }
.sp-featured__content h2 { font-size: clamp(1.75rem, 2.8vw, 2.6rem); line-height: 1.2; }
.sp-featured__meta { justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.sp-price-tag, .sp-product-price {
  color: var(--shop-accent, #f0ce97);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}
.sp-featured__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.sp-collection__header { display: grid; gap: 1.25rem; margin-bottom: 2.4rem; }
.sp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}
.sp-product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(240,206,151,0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28,30,37,0.94), rgba(17,18,23,1));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.sp-product-card:hover, .sp-product-card:focus-within {
  border-color: rgba(240,206,151,0.28);
  box-shadow: 0 24px 48px -32px rgba(0,0,0,0.85);
}
.sp-product__media { position: relative; min-height: 320px; }
.sp-product__content { display: grid; gap: 0.9rem; padding: 1.35rem 1.25rem 1.5rem; }
.sp-product__content h3 { font-size: 1.1rem; line-height: 1.35; }
.sp-product-desc { color: #c6b59f; font-size: 1rem; font-weight: 300; line-height: 1.85; }
.sp-product__footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; margin-top: 0.5rem; }
.sp-product__actions { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.sp-product-price { font-size: 1.15rem; }
.sp-product-card.is-filtered-out { display: none; }
.sp-add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(247,181,31,0.5);
  border-radius: 6px;
  background: rgba(247,181,31,0.08);
  color: #f7b51f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.sp-add-to-cart:hover, .sp-add-to-cart:focus-visible {
  background: rgba(247,181,31,0.18);
  border-color: rgba(247,181,31,0.8);
  transform: translateY(-1px);
}
.sp-cta__panel {
  justify-items: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(240,206,151,0.12);
  border-radius: 18px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(247,181,31,0.07), transparent 34%),
    repeating-linear-gradient(150deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, rgba(17,18,23,0.88), rgba(17,18,23,0.98));
}
.sp-cart-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f7b51f;
  color: #3a2800;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(247,181,31,0.35), 0 1px 4px rgba(0,0,0,0.4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.sp-cart-fab:hover, .sp-cart-fab:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(247,181,31,0.5), 0 2px 8px rgba(0,0,0,0.5);
}
.sp-cart-fab__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e04040;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #111217;
}
@media (max-width: 1080px) {
  .sp-hero__shell, .sp-section-shell { width: min(1184px, calc(100vw - 2rem)); }
  .sp-intro__header, .sp-featured__card { grid-template-columns: 1fr; }
  .sp-category-chips { justify-content: flex-start; }
  .sp-featured__media { min-height: 480px; }
  .sp-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .sp-hero__shell, .sp-section-shell { width: calc(100vw - 1.5rem); }
  .sp-hero { min-height: 760px; padding-top: 160px; }
  .sp-hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .sp-intro, .sp-featured, .sp-collection, .sp-cta { padding: 4rem 0; }
  .sp-featured__content, .sp-cta__panel { padding: 2rem 1.25rem; }
  .sp-product-grid { grid-template-columns: 1fr; }
  .sp-product__media { min-height: 280px; }
}
@media (max-width: 480px) {
  .sp-cart-fab { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

@media (max-width: 960px) {
  .action-icons .cart-nav-btn {
    font-size: 1.2rem;
  }
}

@media (max-width: 520px) {
  .cart-item {
    grid-template-columns: 60px 1fr;
  }

  .cart-item-controls {
    grid-column: 2;
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
  }
}

/* Catalogue page */
.catalogue-page {
  background: #111217;
}

.cat-hero {
  position: relative;
  min-height: 780px;
  padding: 184px 0 80px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #121318;
}

.cat-hero-bg-wrap,
.cat-hero-overlay {
  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));
  transition: transform 180ms linear;
}

.cat-hero-overlay {
  opacity: var(--hero-overlay-opacity, 0.84);
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.22) 0%, rgba(10, 12, 16, 0.52) 38%, #111217 100%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.72), rgba(45, 31, 14, 0.42));
}

.cat-hero-shell,
.cat-intro-inner,
.cat-cta-inner {
  position: relative;
  z-index: 1;
}

.cat-hero-shell {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  transform: translateY(var(--hero-shell-shift, 0));
  opacity: var(--hero-shell-opacity, 1);
  transition: transform 180ms linear, opacity 180ms linear;
}

.cat-eyebrow,
.cat-badge {
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cat-hero-title,
.cat-intro-title,
.cat-card-title,
.cat-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: #f2ede6;
}

.cat-hero-title {
  display: grid;
  gap: 0.1em;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.95;
}

.cat-hero-title-bottom {
  color: #f0ce97;
  font-style: italic;
}

.cat-hero-desc,
.cat-intro-desc,
.cat-card-desc,
.cat-cta-desc {
  color: #c6b59f;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

.cat-hero-desc {
  max-width: 44rem;
}

.cat-intro-section,
.cat-grid-section,
.cat-cta-section {
  background: #111217;
}

.cat-intro-section {
  padding: 6rem 0 4.5rem;
}

.cat-intro-inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cat-intro-title,
.cat-cta-title {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.cat-title-rule {
  width: 88px;
  height: 1px;
  background: rgba(240, 206, 151, 0.45);
}

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

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

.cat-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 206, 151, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(29, 31, 38, 0.96), rgba(17, 18, 23, 1));
  box-shadow: 0 26px 60px -44px rgba(0, 0, 0, 0.9);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.cat-card:hover,
.cat-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(240, 206, 151, 0.32);
  box-shadow: 0 34px 80px -52px rgba(0, 0, 0, 0.95);
}

.cat-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  background: #191b22;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cat-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0) 44%, rgba(8, 10, 14, 0.76) 100%);
}

.cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  border: 1px solid rgba(240, 206, 151, 0.18);
  border-radius: 999px;
  background: rgba(15, 17, 22, 0.74);
  backdrop-filter: blur(12px);
}

.cat-card-body {
  display: grid;
  gap: 1.4rem;
  padding: 1.35rem;
}

.cat-card-copy {
  display: grid;
  gap: 0.75rem;
}

.cat-card-title {
  font-size: 1.45rem;
  line-height: 1.2;
}

.cat-card-desc {
  font-size: 0.92rem;
}

.cat-download-btn,
.cat-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  width: fit-content;
  max-width: 100%;
  padding: 0.8rem 1.15rem;
  border-radius: 8px;
  border: 1px solid rgba(247, 181, 31, 0.52);
  background: rgba(247, 181, 31, 0.1);
  color: #f7b51f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cat-download-btn:hover,
.cat-download-btn:focus-visible,
.cat-cta-btn:hover,
.cat-cta-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(247, 181, 31, 0.82);
  background: rgba(247, 181, 31, 0.18);
}

.cat-download-btn--disabled {
  cursor: not-allowed;
  opacity: 0.55;
  border-color: rgba(198, 181, 159, 0.18);
  background: rgba(255, 255, 255, 0.025);
  color: #c6b59f;
}

.cat-download-btn--disabled:hover {
  transform: none;
  border-color: rgba(198, 181, 159, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.cat-cta-section {
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
  background-image: url('/assets/interior-studio.jpg');
  background-size: cover;
  background-position: center;
  border-top: none;
}

.cat-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 12, 0.72);
  z-index: 0;
}

.cat-cta-inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cat-cta-btn {
  margin-top: 0.75rem;
}

.sp-compare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(240, 206, 151, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: #f0ce97;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.sp-compare-btn:hover,
.sp-compare-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 206, 151, 0.48);
  background: rgba(240, 206, 151, 0.08);
}

/* Product detail and comparison */
.product-detail-page {
  background: #111217;
}

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

.pd-hero {
  padding: 184px 0 6rem;
  background:
    linear-gradient(180deg, rgba(17, 18, 23, 0.95), #111217 72%),
    radial-gradient(circle at 12% 24%, rgba(247, 181, 31, 0.1), transparent 28%);
}

.pd-hero__grid,
.pd-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.pd-visual {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.pd-media {
  position: relative;
  min-height: 620px;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(240, 206, 151, 0.12);
  background: #191b22;
  box-shadow: 0 36px 90px -58px rgba(0, 0, 0, 0.9);
}

.pd-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 180ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.pd-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(240, 206, 151, 0.14);
  border-radius: 8px;
  background: #191b22;
  padding: 0;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.pd-thumb:hover,
.pd-thumb:focus-visible,
.pd-thumb.is-active {
  border-color: rgba(247, 181, 31, 0.72);
}

.pd-thumb:hover,
.pd-thumb:focus-visible {
  transform: translateY(-2px);
}

.pd-thumb.is-active {
  box-shadow: 0 0 0 2px rgba(247, 181, 31, 0.16);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-summary {
  display: grid;
  gap: 1rem;
}

.pd-back-link,
.pd-category,
.pd-availability {
  color: #f0ce97;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pd-back-link {
  width: fit-content;
  color: #bba887;
}

.pd-summary h1 {
  max-width: 12ch;
  color: #f2ede6;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.pd-description,
.pd-richtext p,
.pd-richtext li,
.pd-spec-list dd,
.pd-materials li {
  color: #c6b59f;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

.pd-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.pd-price {
  color: #f0ce97;
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1;
}

.pd-availability {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  border: 1px solid rgba(240, 206, 151, 0.18);
  border-radius: 999px;
}

.pd-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.pd-main-action,
.pd-compare-action {
  min-height: 48px;
}

.pd-info-section,
.pd-gallery-section,
.pd-related-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(240, 206, 151, 0.08);
}

.pd-info-section,
.pd-related-section {
  background: #0d0e12;
}

.pd-detail-copy,
.pd-spec-panel {
  display: grid;
  gap: 1.2rem;
}

.pd-richtext {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.pd-spec-panel {
  align-self: start;
  padding: 2rem;
  border: 1px solid rgba(240, 206, 151, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(29, 31, 38, 0.92), rgba(17, 18, 23, 0.98));
}

.pd-spec-list {
  display: grid;
  gap: 1rem;
}

.pd-spec-list div {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(240, 206, 151, 0.08);
}

.pd-spec-list dt,
.pd-materials h2 {
  color: #f2ede6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pd-materials {
  display: grid;
  gap: 0.75rem;
}

.pd-materials ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1rem;
}

.pd-materials li::marker {
  color: #f0ce97;
}

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

.pd-gallery__item {
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #191b22;
}

.pd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ─── Compare Feature ────────────────────────────────────────── */

/* Full-screen overlay */
.cmp-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(7, 8, 12, 0.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.cmp-overlay[hidden] { display: none; }

/* Modal panel */
.cmp-modal {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  max-height: 100vh;
  background: #111217;
  overflow: hidden;
}

/* Modal header */
.cmp-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(240, 206, 151, 0.1);
  flex-shrink: 0;
  background: #13141a;
}
.cmp-modal-eyebrow {
  color: #f0ce97;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.cmp-modal-title {
  color: #f2ede6;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
}
.cmp-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(240, 206, 151, 0.16);
  border-radius: 50%;
  background: transparent;
  color: #b1a18d;
  flex-shrink: 0;
  transition: border-color 160ms ease, color 160ms ease;
}
.cmp-modal-close:hover { border-color: rgba(240, 206, 151, 0.4); color: #f2ede6; }

/* Scrollable table wrapper */
.cmp-table-wrap {
  overflow: auto;
  padding: 1.5rem 2rem 3rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 206, 151, 0.15) transparent;
}
.cmp-table-wrap::-webkit-scrollbar { width: 5px; height: 5px; }
.cmp-table-wrap::-webkit-scrollbar-track { background: transparent; }
.cmp-table-wrap::-webkit-scrollbar-thumb { background: rgba(240, 206, 151, 0.18); border-radius: 3px; }

/* Table */
.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 580px;
}

/* Sticky label column */
.cmp-label-cell {
  position: sticky;
  left: 0;
  z-index: 10;
  background: #111217;
  min-width: 130px;
  width: 130px;
  padding: 1.1rem 1.25rem 1.1rem 0;
  vertical-align: top;
  color: #c9a96e;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid rgba(240, 206, 151, 0.07);
}
.cmp-label-cell.cmp-head-label {
  color: #f0ce97;
  font-size: 0.76rem;
  padding-top: 0;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(240, 206, 151, 0.14);
  background: #111217;
}

/* Product header */
.cmp-head-row th { vertical-align: bottom; }
.cmp-head-product {
  min-width: 210px;
  padding: 0 1.25rem 1.25rem;
  border-bottom: 2px solid rgba(240, 206, 151, 0.14);
}
.cmp-head-product-inner { display: grid; gap: 0.3rem; }
.cmp-head-cat { color: #f0ce97; font-size: 0.63rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.cmp-head-name { color: #f2ede6; font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; line-height: 1.25; }
.cmp-head-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #7a746b;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.25rem;
  transition: color 160ms ease;
}
.cmp-head-remove:hover { color: #c6b59f; }

/* Add-slot header */
.cmp-head-add {
  min-width: 160px;
  padding: 0 1.25rem 1.25rem;
  vertical-align: bottom;
  border-bottom: 2px solid rgba(240, 206, 151, 0.14);
}

/* Generic cells */
.cmp-cell {
  padding: 1.1rem 1.25rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(240, 206, 151, 0.07);
  color: #c6b59f;
  font-size: 0.9rem;
  line-height: 1.65;
}
.cmp-cell-empty { color: rgba(180, 160, 130, 0.28); font-size: 1.2rem; }

/* Image cell */
.cmp-cell-image { vertical-align: top; }
.cmp-product-img {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: #191b22;
  border: 1px solid rgba(240, 206, 151, 0.1);
}
.cmp-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 380ms ease; }
.cmp-product-img:hover img { transform: scale(1.04); }
.cmp-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.cmp-view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f0ce97;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.7rem;
  transition: color 160ms ease;
}
.cmp-view-link:hover { color: #f2ede6; }

/* Price */
.cmp-price { color: #f0ce97; font-family: var(--font-display); font-size: 1.35rem; line-height: 1; }

/* WhatsApp order button */
.cmp-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #111217;
  border: 1px solid rgba(240, 206, 151, 0.22);
  color: #f2ede6;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease;
}
.cmp-wa-btn:hover { border-color: rgba(240, 206, 151, 0.44); background: rgba(240, 206, 151, 0.06); }

/* Add-slot button (dashed card) */
.cmp-add-slot-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  min-height: 100px;
  border: 2px dashed rgba(240, 206, 151, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  color: #7a746b;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}
.cmp-add-slot-btn:hover { border-color: rgba(240, 206, 151, 0.44); color: #f0ce97; background: rgba(240, 206, 151, 0.04); }
.cmp-add-slot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.cmp-add-cell { vertical-align: middle; text-align: center; }

/* Compare btn active state */
.sp-compare-btn.is-comparing {
  background: rgba(247, 181, 31, 0.1);
  border-color: rgba(247, 181, 31, 0.45);
  color: #f7b51f;
}

/* ─── Compare Search Popup ────────────────────────────────── */
.cmp-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(7, 8, 12, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cmp-search-overlay[hidden] { display: none; }

.cmp-search-card {
  position: relative;
  width: min(480px, 100%);
  max-height: 68vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #f8f5f1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 80px -36px rgba(0, 0, 0, 0.95);
}
.cmp-search-dismiss {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  color: #555;
  z-index: 1;
  transition: background 160ms ease;
}
.cmp-search-dismiss:hover { background: rgba(0, 0, 0, 0.16); }

.cmp-search-input {
  width: 100%;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  background: #f0ece6;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1510;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
}
.cmp-search-input::placeholder { color: #9a9189; font-style: italic; }

.cmp-search-list {
  overflow-y: auto;
  padding: 0.4rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.12) transparent;
}
.cmp-search-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 1.25rem;
  transition: background 120ms ease;
}
.cmp-search-item:hover { background: rgba(0, 0, 0, 0.04); }

.cmp-search-thumb { width: 50px; height: 50px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #e8e2d8; }
.cmp-search-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cmp-search-name { flex: 1; color: #1a1510; font-size: 0.9rem; font-weight: 500; line-height: 1.3; }

.cmp-search-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: transparent;
  color: #555;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.cmp-search-add-btn:hover:not(:disabled) { border-color: #c9a96e; background: #f7b51f; color: #3a2800; }
.cmp-search-add-btn.is-added,
.cmp-search-add-btn:disabled { border-color: #c9a96e; background: rgba(201, 169, 110, 0.12); color: #c9a96e; cursor: not-allowed; }
.cmp-search-empty { padding: 1.5rem 1.25rem; color: #9a9189; font-size: 0.88rem; text-align: center; }

/* ─── Compare Bottom Bar ─────────────────────────────────── */
.cmp-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(9, 10, 15, 0.97);
  border-top: 1px solid rgba(240, 206, 151, 0.13);
  backdrop-filter: blur(24px);
  padding: 0.6rem 1.5rem;
}
.cmp-bar[hidden] { display: none; }

.cmp-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1184px;
  margin: 0 auto;
}
.cmp-bar-left { display: flex; align-items: center; gap: 0.45rem; flex-shrink: 0; }
.cmp-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 206, 151, 0.16);
  border-radius: 8px;
  background: transparent;
  color: #b1a18d;
  transition: border-color 160ms ease, color 160ms ease;
}
.cmp-bar-btn:hover { border-color: rgba(240, 206, 151, 0.36); color: #f0ce97; }
.cmp-bar-add-btn { border-color: rgba(240, 206, 151, 0.28); color: #f0ce97; }

.cmp-bar-thumbs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.2rem 0;
}
.cmp-bar-thumbs::-webkit-scrollbar { display: none; }

.cmp-bar-thumb {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid rgba(240, 206, 151, 0.2);
  overflow: visible;
}
.cmp-bar-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; }
.cmp-bar-thumb-placeholder { width: 100%; height: 100%; background: #1a1b22; border-radius: 5px; }
.cmp-bar-thumb-remove {
  position: absolute;
  top: -7px;
  right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1a1b21;
  border: 1px solid rgba(240, 206, 151, 0.28);
  color: #b1a18d;
  font-size: 0.6rem;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}
.cmp-bar-thumb-remove:hover { background: rgba(240, 206, 151, 0.15); color: #f0ce97; }

.cmp-bar-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.cmp-bar-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(240, 206, 151, 0.16);
  background: transparent;
  color: #7a746b;
  transition: border-color 160ms ease, color 160ms ease;
}
.cmp-bar-clear:hover { border-color: rgba(240, 206, 151, 0.38); color: #f0ce97; }

.cmp-bar-compare {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  background: #f7b51f;
  color: #3a2800;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  transition: filter 160ms ease, transform 160ms ease;
}
.cmp-bar-compare:hover { filter: brightness(1.05); transform: translateY(-1px); }
.cmp-bar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: rgba(58, 40, 0, 0.25);
  font-size: 0.63rem;
}

/* Scroll lock */
html.cmp-is-open { overflow: hidden; }

/* Print */
@media print {
  .cmp-bar, .cmp-search-overlay, .cmp-modal-head,
  .cmp-head-remove, .cmp-add-cell, .cmp-head-add { display: none !important; }
  .cmp-overlay { position: static; background: none; backdrop-filter: none; }
  .cmp-modal { background: white; }
  .cmp-table-wrap { overflow: visible; padding: 0; }
  .cmp-label-cell { color: #333; background: white; }
  .cmp-head-name, .cmp-head-cat { color: #333; }
  .cmp-price { color: #8a6000; }
  .cmp-cell { color: #333; border-bottom-color: #ddd; }
}

@media (max-width: 1080px) {
  .cat-catalog-grid,
  .pd-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-hero__grid,
  .pd-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pd-media {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .cat-hero {
    min-height: 700px;
    padding-top: 164px;
  }

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

  .cat-hero-title {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .cat-intro-section,
  .cat-cta-section,
  .pd-info-section,
  .pd-gallery-section,
  .pd-related-section {
    padding: 4rem 0;
  }

  .cat-catalog-grid,
  .pd-gallery {
    grid-template-columns: 1fr;
  }

  .cat-download-btn,
  .cat-cta-btn {
    width: 100%;
  }

  .pd-hero {
    padding: 164px 0 4rem;
  }

  .pd-media {
    min-height: 420px;
  }

  .pd-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pd-summary h1 {
    max-width: none;
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .pd-actions,
  .pd-main-action,
  .pd-compare-action {
    width: 100%;
  }

  .pd-actions .sp-inline-link {
    min-height: 44px;
    width: 100%;
    justify-content: center;
  }

  .pd-related-header {
    align-items: start;
    flex-direction: column;
  }

  .cmp-bar { padding: 0.5rem 1rem; }
  .cmp-bar-inner { gap: 0.65rem; }
  .cmp-bar-btn { width: 32px; height: 32px; }
  .cmp-bar-compare { font-size: 0.68rem; padding: 0.55rem 1rem; letter-spacing: 0.08em; }
  .cmp-bar-thumb { width: 40px; height: 40px; }
  .cmp-modal-head { padding: 1rem; }
  .cmp-table-wrap { padding: 1rem 0 2rem; }
  .cmp-label-cell { min-width: 90px; width: 90px; padding-right: 0.65rem; font-size: 0.63rem; }
  .cmp-head-product { min-width: 170px; padding: 0 0.75rem 1rem; }
  .cmp-cell { padding: 0.85rem 0.75rem; font-size: 0.85rem; }
  .cmp-search-overlay { padding: 1rem; align-items: flex-end; }
  .cmp-search-card { max-height: 80vh; border-radius: 12px 12px 0 0; }
}

/* Policy pages */
.legal-page {
  background: #131313;
}

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

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

.legal-eyebrow,
.legal-meta-label,
.legal-contact-card p,
.legal-protocol-title,
.legal-support-label {
  color: #e9c175;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-privacy-page {
  padding: 192px 0 7rem;
}

.legal-privacy-shell {
  width: min(1024px, calc(100vw - 3rem));
  margin: 0 auto;
  padding: 0 48px;
}

.legal-privacy-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 55px;
}

.legal-privacy-header h1,
.legal-article-heading h2,
.legal-image-break blockquote,
.legal-return-title,
.legal-policy-heading-row h2,
.legal-standard-shell h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

.legal-privacy-header h1 {
  color: #e5e2e0;
  font-size: clamp(3rem, 6vw, 3.75rem);
  line-height: 1.05;
}

.legal-header-rule {
  width: 96px;
  height: 1px;
  background: rgba(233, 193, 117, 0.4);
  margin-top: 0.75rem;
}

.legal-privacy-intro,
.legal-article-section {
  display: grid;
  grid-template-columns: 277px minmax(0, 1fr);
  gap: 48px;
}

.legal-privacy-intro {
  padding: 0 0 55px;
  border-bottom: 1px solid rgba(78, 70, 57, 0.1);
}

.legal-privacy-meta {
  padding-top: 0.85rem;
}

.legal-privacy-intro-body,
.legal-article-body,
.legal-policy-paragraphs {
  display: grid;
}

.legal-privacy-intro-body {
  gap: 1rem;
  max-width: 566px;
}

.legal-article-section {
  padding: 56px 0;
  border-top: 1px solid rgba(78, 70, 57, 0.1);
}

.legal-article-heading h2 {
  color: #e9c175;
  font-size: 1.5rem;
  line-height: 1.2;
}

.legal-article-body {
  gap: 1.5rem;
  max-width: 603px;
}

.legal-privacy-intro-body p,
.legal-article-body p,
.legal-article-body li,
.legal-contact-card a,
.legal-return-quote,
.legal-policy-paragraphs p,
.legal-protocol-card p,
.legal-support-value,
.legal-standard-shell p {
  color: #d1c5b4;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
}

.legal-article-body ul {
  display: grid;
  gap: 1rem;
  padding-left: 1.1rem;
  margin: 0;
}

.legal-article-body li::marker {
  color: #e9c175;
}

.legal-image-break {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.8fr);
  gap: 32px;
  align-items: end;
  padding: 22px 0;
}

.legal-image-frame {
  position: relative;
  min-height: 672px;
  overflow: hidden;
  border-radius: 8px;
  background: #1c1b1b;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.4);
}

.legal-break-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05) brightness(0.8);
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.legal-image-break blockquote {
  align-self: end;
  max-width: 358px;
  color: #786f6c;
  font-size: clamp(2rem, 3vw, 2.2rem);
  line-height: 1.25;
  padding-bottom: 1rem;
}

.legal-contact-card {
  display: grid;
  gap: 0.5rem;
  padding: 2rem 2.125rem;
  border: 1px solid rgba(233, 193, 117, 0.28);
  border-radius: 12px;
  background: #1c1b1b;
  margin-top: 0.25rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.legal-contact-card:hover,
.legal-contact-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(233, 193, 117, 0.42);
  box-shadow: 0 22px 48px -38px rgba(0, 0, 0, 0.92);
}

.legal-contact-card a {
  color: #e5e2e0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
}

.legal-return-hero-shell,
.legal-return-policy-shell,
.legal-standard-shell {
  width: min(1184px, calc(100vw - 3rem));
  margin: 0 auto;
}

.legal-return-hero-shell {
  padding: 208px 0 0;
}

.legal-return-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 552px);
  gap: 80px;
  align-items: center;
  min-height: 383px;
}

.legal-return-hero-copy {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.legal-return-title {
  color: #e5e2e0;
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 1.05;
}

.legal-return-quote {
  max-width: 32rem;
}

.legal-return-hero-media {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

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

.legal-return-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(17, 18, 23, 0.15), rgba(17, 18, 23, 0.45));
}

.legal-policy-band {
  margin-top: 6rem;
  background: #1c1b1b;
  padding: 5rem 0;
}

.legal-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem 6rem;
}

.legal-policy-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.legal-policy-card:hover,
.legal-policy-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -40px rgba(0, 0, 0, 0.9);
}

.legal-policy-icon-wrap {
  flex: 0 0 auto;
  padding-top: 0.2rem;
}

.legal-policy-icon {
  width: 1.7rem;
  height: 1.7rem;
  color: #e9c175;
}

.legal-policy-body {
  display: grid;
  gap: 1.5rem;
}

.legal-policy-heading-row {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.legal-policy-number {
  color: #e9c175;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.legal-policy-heading-row h2 {
  color: #e5e2e0;
  font-size: 2rem;
  line-height: 1.15;
}

.legal-policy-paragraphs {
  gap: 1.5rem;
}

.legal-protocol-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.5rem 1.625rem;
  border-left: 1px solid rgba(233, 193, 117, 0.4);
  border-radius: 8px;
  background: #2a2a2a;
}

.legal-protocol-card p,
.legal-support-value {
  color: #e5e2e0;
  line-height: 1.6;
}

.legal-support-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-support-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #353534;
  color: #e9c175;
  flex: 0 0 auto;
}

.legal-support-icon-circle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.legal-support-copy {
  display: grid;
  gap: 0.1rem;
}

.legal-support-value {
  font-size: 1.125rem;
}

.legal-standard-section {
  padding: 9rem 0 10rem;
}

.legal-standard-shell {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.legal-standard-icon {
  width: 2.35rem;
  height: 2.35rem;
  color: rgba(233, 193, 117, 0.6);
}

.legal-standard-shell h2 {
  color: #e5e2e0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.legal-standard-shell p {
  max-width: 40rem;
  color: #cbc0b0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

@media (max-width: 1080px) {
  .legal-privacy-shell,
  .legal-return-hero-shell,
  .legal-return-policy-shell,
  .legal-standard-shell {
    width: calc(100vw - 2rem);
  }

  .legal-privacy-shell {
    padding: 0 32px;
  }

  .legal-return-hero-content,
  .legal-policy-grid {
    grid-template-columns: 1fr;
  }

  .legal-return-hero-content {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .legal-privacy-intro,
  .legal-article-section,
  .legal-image-break {
    grid-template-columns: 1fr;
  }

  .legal-privacy-meta,
  .legal-article-heading {
    padding-top: 0;
  }

  .legal-image-frame {
    min-height: 520px;
  }

  .legal-image-break blockquote {
    max-width: 100%;
    padding-bottom: 0;
  }
}

@media (max-width: 720px) {
  .legal-privacy-page {
    padding: 164px 0 5rem;
  }

  .legal-privacy-shell,
  .legal-return-hero-shell,
  .legal-return-policy-shell,
  .legal-standard-shell {
    width: calc(100vw - 1.5rem);
  }

  .legal-privacy-shell {
    padding: 0;
  }

  .legal-privacy-header h1 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .legal-privacy-intro,
  .legal-article-section,
  .legal-image-break {
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .legal-image-frame {
    min-height: 420px;
  }

  .legal-contact-card {
    padding: 1.5rem;
  }

  .legal-return-hero-shell {
    padding-top: 164px;
  }

  .legal-return-hero-content {
    gap: 2rem;
  }

  .legal-return-hero-media {
    min-height: 240px;
  }

  .legal-policy-band {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .legal-policy-grid {
    gap: 3rem;
  }

  .legal-policy-card {
    flex-direction: column;
    gap: 1rem;
  }

  .legal-policy-heading-row {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }

  .legal-policy-heading-row h2 {
    font-size: 1.7rem;
  }

  .legal-standard-section {
    padding: 6rem 0 7rem;
  }
}
[data-hero-slider] {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  --hero-slide-transition: 900ms;
  --hero-slide-active-opacity: 1;
  --hero-tint-opacity: 40;
}

[data-hero-slider] .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity var(--hero-slide-transition) ease,
    transform 180ms linear;
}

[data-hero-slider] .hero-slide.is-active {
  opacity: var(--hero-slide-active-opacity, 1);
  z-index: 1;
}

[data-hero-slider]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  opacity: clamp(0, calc(var(--hero-tint-opacity, 40) / 100), 0.9);
  pointer-events: none;
}

.about-page-hero [data-hero-slider] {
  --hero-slide-active-opacity: 0.6;
}

.sp-hero__slider,
.journal-hero-slider {
  position: absolute;
  inset: 0;
}

.journal-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.journal-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.18) 0%, rgba(12, 14, 18, 0.64) 55%, #12131a 100%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.62), rgba(45, 31, 14, 0.38));
}

.journal-hero-inner {
  position: relative;
  z-index: 2;
}

.hero,
.projects-hero,
.services-hero,
.about-page-hero,
.contact-page-hero,
.book-hero,
.cat-hero,
.sp-hero,
.journal-hero {
  isolation: isolate;
}

.hero-image-wrap,
.book-hero-bg-wrap,
.cat-hero-bg-wrap,
.sp-hero__slider,
.journal-hero-slider {
  z-index: 0;
}

.hero-overlay,
.projects-hero-overlay,
.services-hero-overlay,
.about-page-hero-overlay,
.contact-page-hero-overlay,
.book-hero-overlay,
.cat-hero-overlay,
.sp-hero__overlay,
.journal-hero-overlay {
  z-index: 1;
  pointer-events: none;
}

.hero-shell,
.projects-hero-shell,
.services-hero-shell,
.about-page-hero-shell,
.contact-page-hero-shell,
.book-hero-shell,
.cat-hero-shell,
.sp-hero__shell,
.journal-hero-inner {
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  [data-hero-slider] .hero-slide {
    transition: none !important;
  }
}
[data-text-control] {
  font-size: var(--text-size, inherit);
  line-height: var(--text-height, inherit);
}

[data-text-control][data-text-has-width="true"] {
  width: var(--text-width);
  max-width: 100%;
}

[data-text-control]::placeholder {
  font-size: var(--text-size, inherit);
  line-height: var(--text-height, inherit);
}
