:root {
  --terracotta: #a53623;
  --terracotta-light: #c44a35;
  --terracotta-dark: #7a2819;
  --cream: #f7f4ef;
  --charcoal: #2d2d2d;
  --charcoal-soft: #4a4a4a;
  --sage: #c5d5d0;
  --gold: #d4a853;
  --gold-light: #e8c47a;
  --white: #fff;
  --display: 'Bebas Neue', sans-serif;
  --body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px), (pointer: coarse) {
  body { cursor: auto; }
  .cade-cursor { display: none !important; }
}
img { max-width: 100%; display: block; }

/* Logo watermark — bottom-right on portfolio & marketing photos */
.cade-watermark {
  position: relative;
}
.cade-watermark::after {
  content: '';
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  width: clamp(44px, 20%, 68px);
  aspect-ratio: 1;
  background: url('images/cade-studio-logo.png') center / contain no-repeat;
  pointer-events: none;
  z-index: 4;
  opacity: 0.93;
  border-radius: 4px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.cade-watermark--wrap {
  display: block;
}
.service-media-split .cade-watermark--wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}
.service-media-split .cade-watermark--wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-compare.cade-watermark::after {
  width: clamp(52px, 14%, 84px);
  z-index: 8;
}
.work-lightbox-static.cade-watermark::after,
.work-lightbox-slide.cade-watermark::after {
  width: clamp(60px, 11%, 96px);
}
.vf-hero .cade-watermark--wrap,
.vf-strip .cade-watermark--wrap,
.vf-aside-img.cade-watermark--wrap,
.vf-footer-thumb.cade-watermark--wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.vf-hero .cade-watermark--wrap img,
.vf-strip .cade-watermark--wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vf-hero .cade-watermark--wrap::after,
.vf-strip .cade-watermark--wrap::after {
  width: clamp(36px, 14%, 52px);
}
a { color: inherit; text-decoration: none; }
.stencil { font-family: var(--display); letter-spacing: 0.1em; text-transform: uppercase; }
.container { width: min(1200px, 92vw); margin-inline: auto; }

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { font-size: 3rem; color: var(--white); line-height: 1; }
.preloader-logo span { display: block; font-size: 0.45em; letter-spacing: 0.4em; color: var(--gold); }
.preloader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,0.1);
  margin: 1.5rem auto; overflow: hidden;
}
.preloader-progress {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--terracotta), var(--gold));
  transition: width 0.1s;
}
.preloader-tag { text-align: center; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); }

/* —— Simple custom pointer —— */
.cade-cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100000;
  opacity: 1;
  transition: opacity 0.2s;
}
.cade-cursor.is-away { opacity: 0; }

.cade-cursor-dot,
.cade-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cade-cursor-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(165, 54, 35, 0.75);
  z-index: 2;
}
.cade-cursor-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(165, 54, 35, 0.22);
  z-index: 1;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.cade-cursor.is-hover .cade-cursor-ring {
  width: 40px;
  height: 40px;
  border-color: rgba(212, 168, 83, 0.4);
}

/* Orbs */
.orb {
  position: fixed; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0; opacity: 0.4;
  animation: floatOrb 12s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: rgba(165,54,35,0.25); top: 10%; left: -10%; }
.orb-2 { width: 300px; height: 300px; background: rgba(212,168,83,0.2); top: 50%; right: -5%; animation-delay: -4s; }
.orb-3 { width: 250px; height: 250px; background: rgba(197,213,208,0.3); bottom: 10%; left: 30%; animation-delay: -8s; }
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
}

/* Glass */
.glass-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 32px rgba(45,45,45,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  border-radius: 6px;
}
.glass-dark {
  background: rgba(45,45,45,0.55);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.glass-royal {
  background: linear-gradient(135deg, rgba(45,45,45,0.7), rgba(165,54,35,0.25));
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(212,168,83,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.glass-pill {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,1);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--charcoal);
}

/* —— Ultra glass & premium motion layer —— */
.glass-ultra {
  position: relative;
  isolation: isolate;
  --spot-x: 50%;
  --spot-y: 50%;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(28px) saturate(195%);
  -webkit-backdrop-filter: blur(28px) saturate(195%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    0 4px 24px rgba(45, 45, 45, 0.06),
    0 20px 50px rgba(45, 45, 45, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(45, 45, 45, 0.03);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.4s;
}
.glass-ultra::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(212, 168, 83, 0.45) 35%,
    rgba(165, 54, 35, 0.25) 65%,
    rgba(255, 255, 255, 0.55) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}
.has-glass-spot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    520px circle at var(--spot-x) var(--spot-y),
    rgba(255, 255, 255, 0.5),
    transparent 40%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
}
.has-glass-spot:hover::after { opacity: 1; }
.glass-ultra > * { position: relative; z-index: 2; }

.glass-panel {
  position: relative;
  isolation: isolate;
  border-radius: 14px;
  padding: 2rem 2.25rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.service-glass { will-change: transform; }
.service-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.55), transparent);
  pointer-events: none;
}

.spin-glass {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  max-width: 640px;
  margin-inline: auto;
}

.pricing-jump.glass-ultra-nav {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 16px 48px rgba(45, 45, 45, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section-dark .glass-ultra,
.section-dark .contact-info.glass-ultra {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.values-highlights.glass-ultra-strip {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.7);
}

.portfolio-cat-card.glass-ultra {
  border-radius: 14px;
  overflow: hidden;
}
.portfolio-cat-card.glass-ultra .portfolio-cat-body {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}
.portfolio-cat-card.glass-ultra:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 32px 70px rgba(45, 45, 45, 0.14);
}
.portfolio-cat-card .portfolio-cat-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease);
}
.portfolio-cat-card:hover .portfolio-cat-shine { transform: translateX(120%); }

.pkg-detail.glass-ultra { border-radius: 12px; overflow: hidden; }
.pkg-detail.glass-ultra:hover,
.pkg-detail.glass-ultra:focus-within {
  transform: none;
  border-color: rgba(212, 168, 83, 0.65);
  box-shadow:
    0 0 0 2px rgba(212, 168, 83, 0.45),
    0 0 32px rgba(212, 168, 83, 0.35),
    0 0 56px rgba(165, 54, 35, 0.1),
    0 12px 40px rgba(45, 45, 45, 0.14);
}

.price-category-card.glass-ultra-category {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(170%);
}

.scroll-hint {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  opacity: 0.85;
  animation: scrollHintPulse 2.4s ease-in-out infinite;
}
@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(3px); }
}

.nav.scrolled {
  background: rgba(247, 244, 239, 0.68);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 10px 40px rgba(45, 45, 45, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.scroll-progress {
  height: 2px;
  box-shadow: 0 0 18px rgba(212, 168, 83, 0.55), 0 0 6px rgba(165, 54, 35, 0.35);
}

.btn-glass {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-glass:hover::after { transform: translateX(100%); }

.hero-vf.glass-ultra {
  animation: heroCardTilt 7s ease-in-out infinite, heroGlassGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlassGlow {
  0% { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
  100% { box-shadow: 0 32px 80px rgba(165, 54, 35, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
}

.marquee-wrap { position: relative; overflow: hidden; }
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--terracotta), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--terracotta), transparent);
}

.slash-content.glass-slash {
  padding: 2rem 2.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form.glass-ultra input,
.contact-form.glass-ultra select,
.contact-form.glass-ultra textarea {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.5);
}

.tilt-card.glass-ultra:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(45, 45, 45, 0.1);
}
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.footer-geo {
  width: 100%;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-align: center;
  opacity: 0.8;
}
.footer-geo a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 0.25rem;
}
.footer-geo a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
}
.sage-rule {
  height: 2px; background: var(--sage); width: 60px; position: relative; margin: 1rem 0;
}
.sage-rule::before, .sage-rule::after {
  content: ''; position: absolute; top: -3px; width: 8px; height: 8px; background: var(--sage);
}
.sage-rule::before { left: 0; } .sage-rule::after { right: 0; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: padding 0.5s var(--ease), background 0.5s, transform 0.5s var(--ease);
}
.nav.hide { transform: translateY(-100%); }
.nav.scrolled {
  padding: 0.7rem 0;
}
.nav-inner { display: flex; align-items: center; gap: 2rem; }
.logo { font-size: 1.5rem; line-height: 0.9; color: var(--charcoal); }
.logo .mark { color: var(--terracotta); }
.logo .sub { font-size: 0.55em; letter-spacing: 0.38em; display: block; }
.nav-links { display: flex; gap: 2rem; margin-left: auto; }
.nav-link {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  position: relative; padding: 0.25rem 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--terracotta); transition: width 0.4s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 0.7rem 1.4rem; background: var(--terracotta); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 3px; position: relative; overflow: hidden;
}
.menu-btn {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; margin-left: auto; padding: 8px;
}
.menu-btn span {
  display: block; width: 24px; height: 2px; background: var(--charcoal);
  transition: transform 0.35s;
}
.mobile-drawer {
  position: fixed; top: 0; right: 0; width: min(320px, 85vw); height: 100%;
  background: var(--charcoal); z-index: 999;
  padding: 5rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transform: translateX(100%); transition: transform 0.5s var(--ease);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.1em;
  color: var(--white); text-transform: uppercase;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--white); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 3px;
  position: relative; overflow: hidden;
  box-shadow: 0 12px 40px rgba(165,54,35,0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(165,54,35,0.45); }
.btn-primary.full { width: 100%; justify-content: center; }
.btn-glass {
  padding: 1rem 1.75rem; color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px); background: rgba(255,255,255,0.08);
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 3px; transition: border-color 0.35s, background 0.35s;
}
.btn-glass:hover { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.btn-shine::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* Hero */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding-top: 6rem; overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-parallax { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-img-layer {
  position: absolute; inset: -15%; width: 130%; height: 130%;
  will-change: transform;
}
.hero-img-layer img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(125deg,
    rgba(45,45,45,0.94) 0%,
    rgba(45,45,45,0.78) 45%,
    rgba(122,40,25,0.55) 100%);
}
.hero-content { position: relative; z-index: 4; color: var(--white); max-width: 700px; padding: 4rem 0 6rem; }
.pulse-dot {
  width: 8px; height: 8px; background: var(--terracotta); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(165,54,35,0.3); } }
.hero-title { font-size: clamp(3rem, 11vw, 6rem); line-height: 0.92; margin: 1.25rem 0 1rem; }
.line-mask { display: block; overflow: hidden; }
.line-inner { display: block; transform: translateY(110%); }
.line-inner.revealed { transform: translateY(0); transition: transform 1.1s var(--ease); }
.gold-text .line-inner { color: var(--gold); }
.hero-desc { font-size: 1.1rem; opacity: 0.88; max-width: 520px; margin-bottom: 2rem; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.pillars { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.pillars i { color: var(--gold); font-style: normal; margin: 0 0.5rem; }

.hero-vf {
  position: absolute; right: 4vw; bottom: 15vh; z-index: 4;
  width: min(360px, 38vw); padding: 2rem; border-radius: 6px;
  display: none;
  animation: heroCardTilt 6s ease-in-out infinite;
}
@keyframes heroCardTilt {
  0%, 100% { transform: perspective(800px) rotateY(-6deg) rotateX(4deg); }
  50% { transform: perspective(800px) rotateY(6deg) rotateX(-3deg); }
}
@media (min-width: 1100px) { .hero-vf { display: block; } }
.vf { position: absolute; width: 28px; height: 28px; border: 2px solid rgba(255,255,255,0.8); }
.c-tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.c-tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.c-bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.c-br { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.hero-card-words { display: flex; flex-wrap: wrap; gap: 0.35rem 0.6rem; font-family: var(--display); font-size: 1.6rem; color: var(--white); }
.hcw.gold { color: var(--gold); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* Marquee */
.marquee-wrap {
  background: var(--terracotta); padding: 1rem 0; overflow: hidden;
  border-top: 1px solid rgba(212,168,83,0.3);
  border-bottom: 1px solid rgba(212,168,83,0.3);
}
.marquee {
  display: flex; gap: 2rem; white-space: nowrap;
  font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.15em;
  color: var(--white); width: max-content;
}
.marquee .dot { color: var(--gold); }

/* Sections */
.section { padding: clamp(5rem, 12vw, 8rem) 0; position: relative; z-index: 1; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-cream { background: var(--cream); }
.section-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 300px;
  background: radial-gradient(ellipse, rgba(165,54,35,0.2), transparent 70%);
  pointer-events: none;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); display: block; margin-bottom: 0.6rem; }
.gold-label { color: var(--gold); }
.section-title { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 0.95; }
.section-title.light { color: var(--white); }
.section-sub { max-width: 520px; margin: 0.75rem auto 0; color: var(--charcoal-soft); }
.section-sub.light { color: rgba(255,255,255,0.6); }
.section-head .gold-line { width: 100px; margin: 1.5rem auto 0; }
.anim-width { transform: scaleX(0); transform-origin: center; }
.anim-width.revealed { transform: scaleX(1); transition: transform 1.2s var(--ease); }

/* Values — compact block (does not overpower the page) */
.section#values {
  padding: clamp(2rem, 5vw, 2.75rem) 0;
}
.section#values .section-head {
  margin-bottom: 1.25rem;
}
.section#values .section-label {
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
}
.section#values .section-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}
.section#values .section-sub {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  max-width: 420px;
}
.section#values .section-head .gold-line {
  width: 72px;
  margin-top: 0.75rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section#values .tilt-card {
  padding: 1rem 1.1rem;
}
.card-glow {
  position: absolute; top: var(--y, 50%); left: var(--x, 50%);
  width: 200px; height: 200px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,168,83,0.15), transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity 0.35s;
}
.tilt-card {
  position: relative; overflow: hidden;
  transform-style: preserve-3d; transition: transform 0.1s;
}
.tilt-card:hover .card-glow { opacity: 1; }
.section#values .card-icon {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.section#values .tilt-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}
.section#values .tilt-card .sage-rule {
  margin: 0.4rem 0 0.5rem;
}
.section#values .tilt-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* Values — highlights strip */
.values-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0.25rem;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(197, 213, 208, 0.65);
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(247,244,239,0.95) 100%);
  box-shadow: 0 12px 40px rgba(45,45,45,0.06);
}
.highlight-item {
  position: relative;
  text-align: center;
  padding: 1.35rem 1rem 1.25rem;
}
.highlight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: linear-gradient(180deg, transparent, rgba(165,54,35,0.22), transparent);
}
.highlight-accent {
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto 0.65rem;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  border-radius: 2px;
}
.highlight-value {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  line-height: 1;
  color: var(--terracotta);
  margin: 0 0 0.4rem;
}
.highlight-value .counter,
.highlight-unit {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
.highlight-unit {
  margin-left: 0.05em;
  opacity: 0.9;
}
.highlight-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* Services */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 6rem;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-media {
  position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 4/3;
}
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service-block:hover .service-media img { transform: scale(1.06); }
.frame-double::before, .frame-double::after {
  content: ''; position: absolute; pointer-events: none; border-radius: 2px;
}
.frame-double::before { inset: 12px; border: 2px solid var(--terracotta); z-index: 2; }
.frame-double::after { inset: 24px; border: 1px solid rgba(255,255,255,0.4); z-index: 2; }
.service-num {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 3;
  font-size: 3.5rem; color: var(--gold); text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.service-text .tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.service-text h3 { font-size: 2.25rem; margin: 0.4rem 0; }
.service-text p { color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; line-height: 1.75; }
.feature-list li { padding: 0.35rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.feature-list li::before { content: '✓ '; color: var(--sage); font-weight: 700; }
.link-arrow { font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta-light); transition: color 0.3s, transform 0.3s; display: inline-block; }
.link-arrow:hover { color: var(--gold); transform: translateX(6px); }

.service-media-duo .service-media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  width: 100%;
  height: 100%;
}
.service-media-duo .service-media-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.service-actions .btn-primary,
.service-actions .btn-glass {
  font-size: 0.72rem;
  padding: 0.85rem 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.service-actions-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-top: 1rem;
}
.service-work-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.service-work-link:hover { color: var(--gold); }
.service-actions-dot { color: rgba(255, 255, 255, 0.35); user-select: none; }

/* Portfolio showcase */
.portfolio-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #ebe6dc 0%, var(--cream) 40%, #f7f4ef 100%);
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}
.portfolio-showcase-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 20%, rgba(212, 168, 83, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 75%, rgba(165, 54, 35, 0.1), transparent 50%);
}
.portfolio-showcase-inner { position: relative; z-index: 1; }

.portfolio-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: end;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}
.portfolio-head-sub { max-width: 42ch; margin-top: 0.75rem; }
.portfolio-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}
.portfolio-head-actions a { text-decoration: none; }

.portfolio-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.portfolio-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(45, 45, 45, 0.08);
  box-shadow: 0 16px 48px rgba(45, 45, 45, 0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.35s;
}
.portfolio-cat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(165, 54, 35, 0.25);
  box-shadow: 0 28px 60px rgba(45, 45, 45, 0.12);
}
.portfolio-cat-card-wide { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .portfolio-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .portfolio-cat-card-wide { grid-column: auto; }
  .portfolio-cat-card-wide .portfolio-cat-media { aspect-ratio: 16/10; }
}
.portfolio-cat-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 2.5rem;
  color: var(--gold);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  line-height: 1;
}
.portfolio-cat-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--charcoal);
}
.portfolio-cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.portfolio-cat-card:hover .portfolio-cat-media img { transform: scale(1.07); }
.portfolio-cat-body { padding: 1.35rem 1.5rem 1.5rem; }
.portfolio-cat-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.portfolio-cat-body h3 {
  font-size: 1.65rem;
  margin: 0.35rem 0 0.5rem;
  line-height: 1;
}
.portfolio-cat-body p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
  margin: 0 0 0.85rem;
}
.portfolio-cat-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: color 0.3s;
}
.portfolio-cat-card:hover .portfolio-cat-link { color: var(--gold); }

@media (max-width: 768px) {
  .portfolio-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .portfolio-head-actions { justify-content: flex-start; }
  .portfolio-cat-grid { grid-template-columns: 1fr; }
}

/* Pricing — premium shell & interactive cards */
.pricing-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f2efe8 0%, var(--cream) 45%, #ebe4d9 100%);
}
.pricing-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 10%, rgba(212, 168, 83, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 25%, rgba(165, 54, 35, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(197, 213, 208, 0.45), transparent 55%);
  opacity: 1;
}
.pricing-inner { position: relative; z-index: 1; }
.pricing-hero {
  text-align: center;
  margin-bottom: 2.25rem;
}
.pricing-hero-label { color: var(--terracotta); }
.pricing-hero-title { max-width: 18ch; margin-left: auto; margin-right: auto; }
.pricing-hero-accent {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212, 168, 83, 0.35);
}
.pricing-hero-sub { max-width: 38rem; }
.pricing-hero-cta {
  display: inline-flex;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.pricing-jump {
  position: sticky;
  top: 72px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  margin: 0 auto 2.25rem;
  max-width: 52rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 45, 45, 0.08);
  box-shadow: 0 12px 40px rgba(45, 45, 45, 0.08);
}
.pricing-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.pricing-jump-link .pj-num {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--terracotta);
  opacity: 0.85;
}
.pricing-jump-link:hover {
  color: var(--terracotta);
  background: rgba(165, 54, 35, 0.06);
  transform: translateY(-2px);
}
.pricing-jump-link.is-active {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(165, 54, 35, 0.35);
}
.pricing-jump-link.is-active .pj-num { color: var(--gold-light); }

.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.tabs button {
  padding: 0.75rem 1.5rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(45,45,45,0.12); background: transparent;
  cursor: pointer; border-radius: 3px; transition: all 0.35s var(--ease);
}
.tabs button.active { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(165,54,35,0.25); }
.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.price-grid-detailed {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}
.price-category-intro {
  padding: 2rem 2.25rem; margin-bottom: 2rem;
  border-left: 3px solid var(--terracotta);
}
.intro-inner h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.intro-inner p { color: var(--charcoal-soft); line-height: 1.75; margin-bottom: 0.75rem; }
.intro-note { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); }

.pricing-all-categories { display: flex; flex-direction: column; gap: 0; }
.price-category-block {
  margin-top: 2.5rem;
  scroll-margin-top: 120px;
}
.price-category-block:first-child { margin-top: 0; }

.price-category-card {
  position: relative;
  padding: 2.25rem 1.5rem 2rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.55) 100%);
  border: 1px solid rgba(45, 45, 45, 0.08);
  box-shadow:
    0 4px 24px rgba(45, 45, 45, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.price-category-card::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold), var(--terracotta));
  opacity: 0.85;
}
.price-category-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.75rem;
  color: var(--terracotta);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}

.price-category-head { text-align: center; margin-bottom: 1.75rem; padding: 0 0.5rem; }
.price-category-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.price-category-num {
  font-size: 1.5rem;
  color: var(--terracotta);
  line-height: 1;
}
.price-category-chip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(165, 54, 35, 0.1);
  color: var(--terracotta-dark);
}
.price-category-title {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  margin-bottom: 0.55rem;
  line-height: 1.02;
}
.price-category-desc {
  max-width: 38rem;
  margin: 0.4rem auto 0;
  color: var(--charcoal-soft);
  line-height: 1.75;
  font-size: 0.95rem;
}
.price-category-note {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.price-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto 0.5rem;
}

/* Side-by-side tiers on tablets and up; single row of 3 when space allows */
@media (min-width: 640px) {
  .price-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1000px) {
  .price-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* One package in a category (e.g. “Coming soon”) — don’t stretch full row */
.price-category-grid .pkg-detail:only-child {
  grid-column: 1 / -1;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Three tiers in a 2-column grid — center the lone card on the last row */
@media (min-width: 640px) and (max-width: 999px) {
  .price-category-grid .pkg-detail:last-child:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.pkg-detail {
  padding: 1.85rem 1.75rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(45, 45, 45, 0.08);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s;
  overflow: hidden;
}
.pkg-detail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,83,0.08), transparent 45%, rgba(165,54,35,0.05));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.pkg-detail:hover,
.pkg-detail:focus-within {
  border-color: rgba(212, 168, 83, 0.65);
  box-shadow:
    0 0 0 2px rgba(212, 168, 83, 0.45),
    0 0 32px rgba(212, 168, 83, 0.35),
    0 0 56px rgba(165, 54, 35, 0.1),
    0 12px 40px rgba(45, 45, 45, 0.14);
}
.pkg-detail:hover::after,
.pkg-detail:focus-within::after {
  opacity: 1;
}
.pkg-detail.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 20px 50px rgba(212, 168, 83, 0.22);
}
@keyframes pulse-popular {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.45); }
  60% { box-shadow: 0 0 0 12px rgba(212, 168, 83, 0); }
}
.pulse-popular { animation: pulse-popular 2.6s ease-out infinite; }

.pkg-head h3 { font-size: 1.7rem; line-height: 1; margin-bottom: 0.35rem; }
.pkg-tagline { font-size: 0.88rem; color: var(--charcoal-soft); font-style: italic; }
.pkg-rule-line {
  height: 2px;
  margin: 0.25rem 0 0.5rem;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.35;
}
.pkg-price-row { margin: 0.85rem 0 0.65rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.35rem 0.75rem; }
.pkg-price-row .price-was {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(165, 54, 35, 0.45);
  opacity: 0.75;
  letter-spacing: 0.02em;
}
.pkg-price-row .price { font-size: 2.85rem; color: var(--terracotta); line-height: 1; }
.pkg-price-row .price-unit { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-soft); }
.pkg-price-row .price-sub { width: 100%; font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.pkg-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.15rem; }
.pill { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.65rem; background: rgba(45,45,45,0.06); border-radius: 100px; color: var(--charcoal-soft); }
.pill-gold { background: rgba(212,168,83,0.2); color: var(--charcoal); }
.pkg-summary { font-size: 0.92rem; color: var(--charcoal-soft); line-height: 1.65; margin: 0.85rem 0 1rem; }

.pkg-includes-wrap { flex: 1; margin-bottom: 1rem; }
.pkg-details { border-radius: 8px; border: 1px solid rgba(45, 45, 45, 0.1); background: rgba(247, 244, 239, 0.75); }
.pkg-details-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1rem;
  user-select: none;
}
.pkg-details-summary::-webkit-details-marker { display: none; }
.pkg-details-title-stencil { font-size: 0.85rem; letter-spacing: 0.06em; color: var(--charcoal); }
.pkg-details-count {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.pkg-details-chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  margin-left: 0.25rem;
}
.pkg-details[open] .pkg-details-chevron { transform: rotate(-135deg); }
.pkg-details-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(45, 45, 45, 0.06);
}
.pkg-details-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.45rem 0;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(45,45,45,0.06);
}
.pkg-details-list li:last-child { border-bottom: none; }
.pkg-details-list .check { color: var(--sage); font-weight: 700; flex-shrink: 0; }

.addon-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.addon-chip { font-size: 0.72rem; padding: 0.35rem 0.65rem; background: var(--cream); border: 1px dashed rgba(45,45,45,0.15); border-radius: 3px; color: var(--charcoal-soft); }
.pkg-addons h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.65rem; }

.pkg-cta {
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--charcoal);
  transition: all 0.35s;
  margin-top: auto;
}
.pkg-cta:hover { background: var(--charcoal); color: var(--white); }
.pkg-cta.featured-cta {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(165,54,35,0.35);
}

.pricing-compare-wrap {
  margin: 2.25rem auto 0;
  max-width: 820px;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(45, 45, 45, 0.1);
  background: rgba(255, 255, 255, 0.55);
}
.pricing-compare-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(165,54,35,0.08), rgba(212,168,83,0.12));
}
.pricing-compare-summary::-webkit-details-marker { display: none; }
.pricing-compare-sum-ico { color: var(--terracotta); font-size: 1.1rem; }
.pricing-compare-sum-copy { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); flex: 1; }
.pricing-compare-sum-hint { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); }
.pricing-compare-body { padding: 0 1rem 1.25rem; }

.pricing-error {
  grid-column: 1 / -1;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--charcoal-soft);
  background: rgba(197,213,208,0.35);
  border-radius: 6px;
  border: 1px solid rgba(165,54,35,0.2);
}
.pricing-notes { margin-top: 2.5rem; padding: 1.75rem 2rem; background: rgba(197,213,208,0.25); border-radius: 6px; border-left: 3px solid var(--sage); }
.pricing-notes.pricing-notes-accent {
  margin-top: 3rem;
  padding: 2rem 1.75rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-left: 1px solid rgba(45, 45, 45, 0.08);
  background: linear-gradient(135deg, rgba(197,213,208,0.35), rgba(255,255,255,0.6));
  box-shadow: 0 16px 48px rgba(45, 45, 45, 0.06);
}
.notes-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.notes-list li { font-size: 0.85rem; color: var(--charcoal-soft); padding: 0.35rem 0 0.35rem 1.25rem; position: relative; line-height: 1.55; list-style: none; }
.notes-list li::before { content: '◆'; position: absolute; left: 0; color: var(--terracotta); font-size: 0.5rem; top: 0.55rem; }
.pricing-compare { margin-top: 2rem; padding: 2rem; overflow: hidden; }
.compare-title { font-size: 1.15rem; margin: 1rem 0 1rem; padding: 0 0.25rem; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 560px; }
.compare-table th, .compare-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid rgba(45,45,45,0.08); }
.compare-table th { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.compare-table td:first-child { font-weight: 600; color: var(--charcoal-soft); width: 28%; }
.col-featured { background: rgba(212,168,83,0.1); font-weight: 600; color: var(--terracotta); }

.popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  transform: none;
  z-index: 3;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card {
  padding: 2rem; position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(45,45,45,0.12); }
.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 24px 60px rgba(212,168,83,0.2);
}
.price-card h3 { font-size: 1.5rem; }
.price-card .price { font-family: var(--display); font-size: 2.5rem; color: var(--terracotta); line-height: 1; margin: 0.5rem 0; }
.price-card p { font-size: 0.9rem; color: var(--charcoal-soft); margin: 1rem 0 1.5rem; min-height: 3em; }
.price-card a {
  display: block; text-align: center; padding: 0.9rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--charcoal); border-radius: 3px; transition: all 0.35s;
}
.price-card.featured a { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.price-card a:hover { background: var(--charcoal); color: var(--white); }

/* Timeline */
.timeline {
  display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.tl-item {
  flex: 0 0 220px; scroll-snap-align: start;
  padding: 1.75rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.tl-item:hover { border-color: var(--gold); transform: translateY(-6px); }
.tl-item span { font-family: var(--display); font-size: 2rem; color: var(--gold); }
.tl-item h4 { margin: 0.5rem 0 0.25rem; font-size: 1rem; }
.tl-item p { font-size: 0.85rem; opacity: 0.6; }

/* About */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-main { border-radius: 6px; overflow: hidden; aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float-wrap {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 42%;
  aspect-ratio: 1;
}
.about-img-float {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 6px;
}
.about-visual { position: relative; }
.about-badge {
  position: absolute; top: 1.5rem; left: -1rem;
  padding: 1rem 1.25rem; font-size: 1.25rem; color: var(--gold);
  display: flex; flex-direction: column; gap: 0.35rem;
}
.about-badge-sub {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.about-copy p { color: var(--charcoal-soft); margin-bottom: 1rem; line-height: 1.75; }
.about-founder { padding: 1.25rem; margin-top: 1.5rem; }
.about-founder strong { display: block; color: var(--terracotta); }
.about-founder span { font-size: 0.85rem; color: var(--charcoal-soft); }

/* Contact */
.contact-aurora {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(165,54,35,0.25), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(212,168,83,0.12), transparent);
  animation: auroraShift 10s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem; position: relative; z-index: 1; }
.contact-info { padding: 2rem; border-radius: 6px; }
.contact-info h3 { font-size: 2rem; margin-bottom: 0.35rem; }
.muted { opacity: 0.65; font-size: 0.9rem; margin-bottom: 1rem; }
.ci { padding: 0.6rem 0; }
.ci label { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.ci a:hover { color: var(--gold); }
.contact-form { padding: 2rem; position: relative; }
.contact-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form-note {
  font-size: 0.85rem;
  color: var(--sage);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.contact-form-note--error { color: #e8a0a0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: block; margin-bottom: 1rem; }
.contact-form label span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-soft); display: block; margin-bottom: 0.35rem; }
/* Light form card on dark contact section — labels must stay readable */
.section-dark .contact-form.glass-ultra {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
}
.section-dark .contact-form label span {
  color: var(--charcoal);
  font-weight: 700;
}
.section-dark .contact-form-note {
  color: var(--charcoal-soft);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(45,45,45,0.12);
  font-family: inherit; border-radius: 3px; background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(165,54,35,0.12);
}

/* Footer */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 3rem 0 1.5rem; position: relative; z-index: 1; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem; }
.light-logo { color: var(--white); }
.footer-tag { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-top: 0.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a:hover { color: var(--gold); }
.footer .gold-line { margin: 0 4vw 1.5rem; width: auto; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; padding-top: 1rem; }

/* Anim helpers */
.anim-fade-up { opacity: 0; transform: translateY(40px); }
.anim-fade-up.revealed { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* —— Pattern-breaking motion —— */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  z-index: 10001; pointer-events: none;
}

.float-letters {
  position: fixed; inset: 0; pointer-events: none; z-index: 2; overflow: hidden;
}
.fl {
  position: absolute; font-family: var(--display);
  font-size: clamp(8rem, 20vw, 16rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(165,54,35,0.12);
  opacity: 0.35; will-change: transform;
}
.fl-c { top: 12%; left: -2%; }
.fl-a { top: 38%; right: 5%; font-size: clamp(6rem, 14vw, 11rem); }
.fl-d { bottom: 18%; left: 8%; }
.fl-e { bottom: 8%; right: -3%; }

/* Diagonal slash break */
.slash-break {
  position: relative; padding: clamp(5rem, 14vw, 9rem) 0;
  background: var(--charcoal); overflow: hidden; z-index: 1;
}
.slash-band {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--terracotta) 0%, var(--terracotta-dark) 45%, transparent 45.1%);
  transform: skewY(-4deg) scale(1.2);
  transform-origin: left center;
  opacity: 0.95;
}
.slash-content { position: relative; z-index: 2; color: var(--white); max-width: 900px; }
.slash-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.slash-title {
  font-size: clamp(2.2rem, 7vw, 4.5rem); line-height: 0.95;
  margin-bottom: 1.5rem;
}
.slash-line-wrap {
  height: 3px; background: rgba(255,255,255,0.15); overflow: hidden; max-width: 400px;
}
.slash-line-fill {
  height: 100%; width: 0; background: var(--gold);
  transition: width 0.1s linear;
}

/* Mega scrolling type */
.mega-type {
  padding: 2rem 0; overflow: hidden;
  background: var(--cream); border-block: 1px solid rgba(45,45,45,0.08);
  z-index: 1; position: relative;
}
.mega-type-inner {
  display: flex; width: max-content; white-space: nowrap;
  will-change: transform;
}
.mega-chunk {
  font-size: clamp(3rem, 10vw, 6rem); color: rgba(45,45,45,0.08);
  padding-right: 2rem; letter-spacing: 0.08em;
}

/* Pinned horizontal scroll */
.pin-scroller { position: relative; z-index: 1; }
.pin-sticky {
  height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(197,213,208,0.35) 100%);
  padding: 0 4vw;
  gap: 2rem;
}
.pin-intro {
  flex: 0 0 min(200px, 22vw);
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 0.9;
  color: var(--charcoal); align-self: center;
}
.pin-intro span { color: var(--terracotta); display: block; }
.pin-track {
  display: flex; gap: 1.5rem; flex: 1;
  will-change: transform;
}
.pin-slide {
  flex: 0 0 min(340px, 78vw);
  padding: 1.75rem; display: flex; flex-direction: column;
  min-height: 420px; position: relative; overflow: hidden;
}
.pin-slide-accent {
  background: linear-gradient(145deg, rgba(45,45,45,0.92), rgba(165,54,35,0.85));
  color: var(--white); border-color: rgba(212,168,83,0.35);
}
.pin-slide-accent p { color: rgba(255,255,255,0.75); }
.pin-slide-accent .btn-primary { margin-top: auto; }
.pin-num {
  font-family: var(--display); font-size: 2.5rem; color: var(--terracotta);
  line-height: 1; margin-bottom: 0.5rem;
}
.pin-num.gold { color: var(--gold); }
.pin-slide h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.pin-slide p { font-size: 0.9rem; color: var(--charcoal-soft); line-height: 1.6; flex: 1; }
.pin-visual {
  margin-top: 1rem; border-radius: 4px; overflow: hidden;
  aspect-ratio: 16/10; transform: rotate(-2deg);
}
.pin-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Clip reveal strip */
.clip-break {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; padding: 0 4vw 4rem;
  background: var(--charcoal); margin-top: -1px;
  position: relative; z-index: 1;
}
.clip-panel {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 4px;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path, transform;
}
.clip-panel-offset { margin-top: 3rem; }
.clip-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.15); transition: transform 0.8s var(--ease);
}
.clip-panel.revealed img { transform: scale(1); }

/* Spin statement — orbital viewfinder */
.spin-statement {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, #3a3a3a 0%, var(--charcoal) 55%);
  overflow: hidden;
  z-index: 1;
}
.spin-orbit {
  position: absolute;
  width: min(92vmin, 720px);
  height: min(92vmin, 720px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.spin-ambient {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(165, 54, 35, 0.35), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(212, 168, 83, 0.2), transparent 50%);
  filter: blur(40px);
  animation: spinAmbientPulse 6s ease-in-out infinite alternate;
}
@keyframes spinAmbientPulse {
  0% { opacity: 0.55; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}
.spin-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  will-change: transform;
}
.spin-orbit-svg--outer {
  animation: spinOrbitCW 48s linear infinite;
}
.spin-orbit-text {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  fill: none;
}
.spin-orbit-text--outer {
  stroke: rgba(212, 168, 83, 0.55);
  stroke-width: 0.35px;
  fill: rgba(212, 168, 83, 0.72);
}
.spin-orbit-inner-group {
  transform-origin: 260px 260px;
  animation: spinOrbitCCW 36s linear infinite;
}
.spin-orbit-text--inner {
  font-size: 8.5px;
  letter-spacing: 0.28em;
  fill: rgba(197, 213, 208, 0.45);
}
@keyframes spinOrbitCW {
  to { transform: rotate(360deg); }
}
@keyframes spinOrbitCCW {
  to { transform: rotate(-360deg); }
}
.spin-ring-layer {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.spin-ring--mid {
  width: 72%;
  height: 72%;
  border: 1px dashed rgba(212, 168, 83, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 60px rgba(212, 168, 83, 0.08);
  animation: spinOrbitCCW 32s linear infinite;
}
.spin-ring--inner {
  width: 52%;
  height: 52%;
  border: 1px solid rgba(165, 54, 35, 0.35);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  animation: spinOrbitCW 22s linear infinite;
}
.spin-ring--inner::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dotted rgba(197, 213, 208, 0.25);
}
.spin-orbit-nodes {
  position: absolute;
  inset: 0;
  animation: spinOrbitCW 28s linear infinite;
  will-change: transform;
}
.spin-node {
  --angle: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212, 168, 83, 0.7), 0 0 4px var(--white);
  transform: rotate(var(--angle)) translateY(min(-42vmin, -310px)) rotate(calc(-1 * var(--angle)));
}
.spin-node:nth-child(1) { --angle: 0deg; }
.spin-node:nth-child(2) { --angle: 60deg; }
.spin-node:nth-child(3) { --angle: 120deg; }
.spin-node:nth-child(4) { --angle: 180deg; }
.spin-node:nth-child(5) { --angle: 240deg; }
.spin-node:nth-child(6) { --angle: 300deg; }
.spin-node--gold {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  background: var(--terracotta);
  box-shadow: 0 0 22px rgba(165, 54, 35, 0.85);
}
.spin-node::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: -1.4rem;
  transform: translateX(-50%);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s;
}
.spin-orbit:hover .spin-node::after,
.spin-statement:hover .spin-node::after { opacity: 1; }
.spin-vf {
  position: absolute;
  inset: 22%;
  animation: spinOrbitCCW 40s linear infinite;
  will-change: transform;
}
.spin-vf-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  opacity: 0.7;
}
.spin-vf-corner.vf-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.spin-vf-corner.vf-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.spin-vf-corner.vf-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.spin-vf-corner.vf-br { bottom: 0; right: 0; border-left: none; border-top: none; }
.spin-core-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18%;
  height: 18%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.25), transparent 70%);
  animation: spinCorePulse 3s ease-in-out infinite;
}
@keyframes spinCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.spin-center {
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--white);
}
.spin-head { font-size: clamp(2.5rem, 7vw, 4rem); line-height: 0.95; margin: 0.75rem 0; }
.spin-head span { color: var(--gold); }
.spin-sub { max-width: 480px; margin: 0 auto; color: rgba(255, 255, 255, 0.65); font-size: 1rem; }

@media (max-width: 900px) {
  .spin-orbit { width: 110vmin; height: 110vmin; }
  .spin-node { transform: rotate(var(--angle)) translateY(-46vmin) rotate(calc(-1 * var(--angle))); }
  .spin-node::after { display: none; }
}

/* Service skew on scroll */
[data-skew] { will-change: transform; }

/* Tablet & phone — hamburger nav (Blog link needs room) */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta { display: none; }
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  .nav { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(45, 45, 45, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  z-index: 1001;
  padding-top: calc(5rem + env(safe-area-inset-top));
  padding-right: calc(2rem + env(safe-area-inset-right));
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}
.mobile-drawer a {
  min-height: 48px;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: rgba(212, 168, 83, 0.2);
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; max-width: 22rem; margin-left: auto; margin-right: auto; }
  .pin-sticky { flex-direction: column; height: auto; min-height: 100vh; padding: 4rem 4vw; }
  .pin-intro { flex: none; text-align: center; }
  .pin-track { flex-direction: column; width: 100%; }
  .pin-slide { flex: none; width: 100%; min-height: auto; }
  .clip-break {
    display: none;
    padding: 0;
    margin: 0;
  }
  .float-letters { display: none; }
  .slash-band { transform: skewY(-6deg) scale(1.4); }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .values-highlights { grid-template-columns: 1fr; }
  .highlight-item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    right: 12%;
    left: 12%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(165,54,35,0.18), transparent);
  }
  .about-split, .contact-split, .form-row { grid-template-columns: 1fr; }
  .about-img-float-wrap { right: 0; width: 50%; }
  .hero-content { padding: 3rem 0 4.5rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary,
  .hero-btns .btn-glass { width: 100%; justify-content: center; }
  .pricing-jump {
    top: 64px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    border-radius: 12px;
    max-width: 100%;
    scroll-snap-type: x proximity;
  }
  .pricing-jump-link { flex: 0 0 auto; scroll-snap-align: start; min-height: 44px; }
  .pkg-detail,
  .work-card-btn { min-height: 44px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer-links a { padding: 0.35rem 0.5rem; min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 480px) {
  .container { width: min(1200px, 94vw); }
  .hero-title { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .section-title { font-size: clamp(2rem, 10vw, 2.75rem); }
  .nav-inner { gap: 0.75rem; }
  .logo { font-size: 1.25rem; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select { font-size: 16px; }
}

/* Homepage FAQ — visible content matches FAQPage JSON-LD */
.home-faq-section .section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.home-faq {
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}

.home-faq-item {
  padding: 1.35rem 1.5rem;
}

.home-faq-item h3 {
  font-family: var(--display, 'Bebas Neue', sans-serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--terracotta, #a53623);
  margin: 0 0 0.65rem;
}

.home-faq-item p {
  margin: 0;
  line-height: 1.65;
  color: var(--text-muted, rgba(26, 20, 16, 0.78));
}

.home-faq-item a {
  color: var(--terracotta, #a53623);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 720px) {
  .home-faq {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .line-inner { transform: none !important; }
  .pin-scroller .pin-track { transform: none !important; }
  .clip-panel { clip-path: none !important; }
  .has-glass-spot::after,
  .portfolio-cat-shine { display: none !important; }
  .spin-orbit-svg--outer,
  .spin-orbit-inner-group,
  .spin-ring--mid,
  .spin-ring--inner,
  .spin-orbit-nodes,
  .spin-vf,
  .spin-ambient,
  .spin-core-pulse { animation: none !important; }
}
