:root {
  --bg: #0c0b09;
  --bg-alt: #131210;
  --bg-raised: #1a1917;
  --text: #f5f0eb;
  --accent: #c9a96e;
  --accent-hover: #d4b87e;
  --accent-muted: rgba(201, 169, 110, 0.25);
  --accent-glow: rgba(201, 169, 110, 0.15);
  --muted: rgba(245, 240, 235, 0.55);
  --line: rgba(201, 169, 110, 0.12);
  --nav-h: 104px;
  --overlay-dark: rgba(12, 11, 9, 0.9);
  --overlay-mid: rgba(12, 11, 9, 0.3);
  --card-hover: rgba(201, 169, 110, 0.06);
  --shadow-panel: rgba(0, 0, 0, 0.6);
  --grain: 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)' opacity='0.04'/%3E%3C/svg%3E");
  --gradient-section: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(201, 169, 110, 0.04) 0%, transparent 70%),
                       radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
  --gradient-hero: radial-gradient(ellipse 55% 60% at 75% 35%, rgba(201, 169, 110, 0.07) 0%, transparent 70%),
                   radial-gradient(ellipse 30% 40% at 20% 70%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
}

[data-theme="light"] {
  --bg: #EAEAE8;
  --bg-alt: #e2e1de;
  --bg-raised: #d9d8d5;
  --text: #1a1a1a;
  --accent: #9a7b4f;
  --accent-muted: rgba(154, 123, 79, 0.2);
  --muted: rgba(26, 26, 26, 0.5);
  --line: rgba(154, 123, 79, 0.15);
  --overlay-dark: rgba(234, 234, 232, 0.9);
  --overlay-mid: rgba(234, 234, 232, 0.3);
  --card-hover: rgba(154, 123, 79, 0.06);
  --shadow-panel: rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--grain);
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ——— Ambient Section Gradients ——— */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 40% 30% at 90% 10%, rgba(201, 169, 110, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 5% 90%, rgba(201, 169, 110, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ——— Navbar ——— */
/* Barber Pole Stripe */
.barber-pole {
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(
    45deg,
    #c53a3a 0px,
    #c53a3a 10px,
    #f5f0eb 10px,
    #f5f0eb 20px,
    #4a90c5 20px,
    #4a90c5 30px,
    #f5f0eb 30px,
    #f5f0eb 40px
  );
  background-size: 56.57px 56.57px;
  animation: barber-scroll 8s linear infinite;
}

@keyframes barber-scroll {
  0% { background-position: 0 0; }
  100% { background-position: 56.57px 0; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 var(--accent-glow);
}

[data-theme="light"] .site-header {
  background: rgba(234, 234, 232, 0.92);
}

@media (max-width: 1024px) {
  .site-header {
    background: #0c0b09;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  [data-theme="light"] .site-header {
    background: #eaeae8;
  }
}

body.nav-open {
  overflow: hidden;
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  line-height: 0;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 24px var(--accent-glow));
}

.logo__img {
  display: block;
  height: clamp(56px, 7vw, 96px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo:hover {
  filter: drop-shadow(0 0 32px rgba(201, 169, 110, 0.35));
  opacity: 0.92;
}

[data-theme="light"] .logo {
  filter: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-panel {
  display: contents;
}

.nav-links-wrap {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.nav-links .arrow {
  font-size: 0.6rem;
  opacity: 0.5;
  transform: rotate(-45deg);
  display: inline-block;
}

.nav-cta {
  grid-column: 3;
  justify-self: end;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 0 10px var(--accent-glow);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 24px var(--accent-glow), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover, var(--accent));
  color: var(--bg);
  box-shadow: 0 0 36px var(--accent-glow), 0 12px 28px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 16px var(--accent-glow);
}

@media (max-width: 1024px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .logo {
    grid-column: 1;
  }

  .logo__img {
    height: 60px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
    z-index: 10002;
  }

  /* Hamburger → X transform when menu is open */
  body.nav-open .nav-toggle span {
    background: transparent;
  }
  body.nav-open .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }
  body.nav-open .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    transition: transform 0.35s ease, top 0.35s ease;
  }

  /* Full-screen overlay */
  .nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    align-items: stretch;
    justify-content: flex-start;
    background: #0c0b09;
    padding: calc(var(--nav-h) + 32px) clamp(24px, 6vw, 48px) 48px;
    gap: 32px;
    overflow-y: auto;
    z-index: 10001;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
  }

  [data-theme="light"] .nav-panel {
    background: #eaeae8;
  }

  body.nav-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links-wrap {
    grid-column: unset;
    justify-self: stretch;
    display: block;
    width: 100%;
    flex: 1;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  /* Subtle stagger reveal */
  .nav-links li {
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .nav-links li:first-child {
    border-top: 1px solid var(--line);
  }

  body.nav-open .nav-links li {
    opacity: 1;
    transform: translateY(0);
  }
  body.nav-open .nav-links li:nth-child(1) { transition-delay: 0.08s; }
  body.nav-open .nav-links li:nth-child(2) { transition-delay: 0.14s; }
  body.nav-open .nav-links li:nth-child(3) { transition-delay: 0.20s; }
  body.nav-open .nav-links li:nth-child(4) { transition-delay: 0.26s; }
  body.nav-open .nav-links li:nth-child(5) { transition-delay: 0.32s; }
  body.nav-open .nav-links li:nth-child(6) { transition-delay: 0.38s; }

  .nav-links a {
    padding: 22px 4px;
    justify-content: space-between;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    color: var(--text);
  }

  .nav-links .arrow {
    font-size: 0.7rem;
    opacity: 0.35;
  }

  .nav-cta {
    grid-column: unset;
    justify-self: stretch;
    width: 100%;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease 0.44s, transform 0.5s ease 0.44s;
  }

  body.nav-open .nav-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-cta .btn-outline {
    width: 100%;
    padding: 18px 24px;
  }
}

/* ——— Main grid ——— */
.main-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.95fr);
  min-height: calc(100vh - var(--nav-h));
}

@media (max-width: 900px) {
  .main-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .panel {
    min-height: auto;
  }
}

/* ── Hero Brand Panel ── */
.panel--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 40px 40px 48px;
  gap: 0;
}

.panel--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}


.hero-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hero-brand__img {
  width: clamp(260px, 32vw, 440px);
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  animation: hero-float 6s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.hero-brand__img:hover {
  transform: scale(1.03);
}

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

.hero-tagline {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 20px;
}

.hero-tagline__label {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-muted);
  padding: 5px 16px;
  margin-bottom: 10px;
}

.hero-tagline__title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin: 10px 0 14px;
  color: var(--text);
}

.hero-tagline__sub {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin: 0;
}

@media (max-width: 900px) {
  .panel--hero {
    padding: 24px 20px 28px;
    min-height: auto;
  }
  .hero-brand {
    padding: 20px 20px 10px;
  }
  .hero-brand__img {
    width: clamp(180px, 50vw, 260px);
  }
  .hero-tagline {
    padding-top: 12px;
  }
  .hero-tagline__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin: 8px 0 10px;
  }
  .hero-tagline__sub {
    font-size: 0.72rem;
  }
}

.panel--info {
  display: flex;
  flex-direction: column;
  padding: 48px 40px 44px;
  border-left: 1px solid var(--line);
  background: var(--bg-alt);
  background-image: var(--gradient-section);
  justify-content: center;
  position: relative;
}

@media (max-width: 900px) {
  .panel--info {
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: auto;
    padding: 32px 24px 36px;
  }
}

.panel--info .brand {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
  color: var(--accent);
}

.brand-dot {
  color: var(--text);
}

.brand-sub {
  font-family: "Archivo", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 6px 0 0;
}

.info-divider {
  width: 50px;
  height: 2px;
  background: var(--accent);
  margin: 24px 0;
}

.panel--info .intro {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 42ch;
  line-height: 1.7;
}

.panel--info .cta-row {
  padding-bottom: 28px;
}

.panel--info .cta-row .btn-outline,
.panel--info .cta-row .btn-primary {
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
}

.intro-price {
  margin: 4px 0 20px;
  padding: 12px 16px;
  border-left: 2px solid var(--accent);
  background: var(--accent-glow);
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.intro-price strong {
  color: var(--accent);
  font-weight: 700;
}

/* Stats Row */
.info-stats {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.info-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.info-stat__num {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}

.info-stat__label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  text-align: center;
}

/* Social Links */
.info-social {
  display: flex;
  gap: 16px;
  padding-top: 24px;
  margin-top: auto;
}

.info-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: all 0.3s ease;
}

.info-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-muted);
}

.contact-block {
  margin-top: 24px;
  padding-top: 24px;
  font-size: 0.875rem;
}

.contact-block p {
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-block a {
  transition: color 0.25s;
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-block a.underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-block .hours {
  margin-top: 16px;
}

.contact-block .hours strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block .hours p {
  margin: 0;
}

/* ——— Arc carousel: pinned scroll + circular card sweep ——— */
.arc-carousel {
  position: relative;
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px clamp(20px, 4vw, 48px) 36px;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--bg);
  background-image: var(--gradient-section);
}



.arc-carousel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  grid-template-rows: auto 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Desktop: title + copy share the left column, stage spans the right */
.arc-carousel__title {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0 0 16px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--accent);
}

.arc-carousel__title::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.arc-carousel__copy {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.arc-carousel__stage {
  grid-column: 2;
  grid-row: 1 / -1;
}

.arc-carousel__intro {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 48ch;
  line-height: 1.6;
}

.arc-carousel__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: 28px;
}

.arc-carousel__subhead {
  margin: 0 0 10px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.arc-carousel__muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.arc-carousel__footer {
  margin: 0;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 46ch;
}

/* ——— Arc carousel — scroll-pinned fan of cards ——— */
.arc-carousel__stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: min(72vh, 680px);
}

.arc-carousel__stack {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 2 / 3;
  margin: 0 auto;
}

.arc-carousel__card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  transform-origin: 100% 100%;
  will-change: transform;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
}

.arc-carousel__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: grayscale(60%) brightness(0.9);
}

.arc-carousel__pivot {
  position: absolute;
  bottom: 0;
  right: calc(50% - 230px);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 50;
  transform: translate(50%, 50%);
  pointer-events: none;
}

.arc-carousel__counter {
  display: none;
}

@media (max-width: 960px) {
  /* Let section grow past 100vh so text is reachable after pin */
  .arc-carousel {
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
  }

  .arc-carousel__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }

  /* Mobile order: title → cards → text */
  .arc-carousel__title  { order: 1; grid-column: 1; grid-row: auto; }
  .arc-carousel__stage  { order: 2; grid-column: 1; grid-row: auto; }
  .arc-carousel__copy   { order: 3; grid-column: 1; grid-row: auto; }

  .arc-carousel__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .arc-carousel__stage {
    min-height: 75vh;
  }

  .arc-carousel__stack {
    width: 90%;
  }

  .arc-carousel__card {
    width: 100%;
  }

  .arc-carousel__card img {
    object-position: center center;
  }

  .arc-carousel__copy {
    padding-top: 16px;
  }

  .arc-carousel__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .arc-carousel__muted {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .arc-carousel__footer {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* White pivot circle at the rotation origin */
  .arc-carousel__pivot {
    display: block;
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 50;
    transform: translate(50%, 50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .arc-carousel__card {
    will-change: auto;
  }
}

/* ——— Section after scroll experience ——— */
.section-next {
  min-height: 50vh;
  padding: 72px 24px 96px;
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
}

.section-next__inner {
  max-width: 640px;
  margin: 0 auto;
}

.section-next__title {
  margin: 0 0 16px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.02em;
}

.section-next__text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 50ch;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  background: var(--bg-alt);
  background-image: var(--gradient-section);
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.services-header {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
}

.services-header h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--accent);
}

.services-header h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.services-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  align-self: end;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(200px, 0.55fr) 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-row__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-row__num {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
  color: var(--accent-muted);
}

.service-row__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.service-row__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row__info h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.service-row__info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 54ch;
}

.service-row__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-row__images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: grayscale(60%) brightness(0.9);
  transition: filter 0.4s ease;
}

.service-row__images img:hover {
  filter: grayscale(20%) brightness(1);
}

@media (max-width: 768px) {
  .services-header { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 28px; }
}

/* =============================================
   BARBERSHOP SPACE — full-width bento grid
   ============================================= */
.space-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  padding: 72px clamp(20px, 4vw, 48px) 0;
}

.space-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  margin-bottom: 48px;
  align-items: end;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.space-header h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--accent);
}

.space-header h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.space-header__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.space-header__right {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  align-self: end;
}

/* Bento grid — 4 cols × 2 rows, full bleed */
.space-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.space-bento__img {
  overflow: hidden;
}

.space-bento__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
  filter: grayscale(50%) brightness(0.9);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.space-bento__img:hover img {
  filter: grayscale(10%) brightness(1);
}

.space-bento__img:hover img { transform: scale(1.04); }

.space-bento__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 40px);
  background: var(--bg-raised);
}

.space-bento__card strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--accent);
}

.space-bento__card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.space-bento__card .btn-outline {
  align-self: stretch;
  text-align: center;
}

@media (max-width: 900px) {
  .space-header { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; }
  .space-bento { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .space-bento { grid-template-columns: 1fr; }
  .space-bento__img img { aspect-ratio: 3 / 2; }
}

/* =============================================
   STYLE INSPIRATION
   ============================================= */
.styles-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  padding: 72px clamp(20px, 4vw, 48px) 80px;
}

.styles-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.styles-header {
  margin-bottom: 52px;
}

.styles-header h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--accent);
}

.styles-header h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.styles-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 56ch;
}

.styles-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* ——— Accordion (left column) ——— */
.styles-accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.styles-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-alt);
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.styles-item:hover {
  border-color: var(--accent-glow);
}

.styles-item.is-open {
  background: var(--bg-raised);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.styles-item__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: none;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  transition: color 0.25s ease, padding 0.25s ease;
}

.styles-item__head:hover {
  color: var(--accent);
}

.styles-item__index {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  min-width: 24px;
  transition: color 0.3s ease;
}

.styles-item.is-open .styles-item__index {
  color: var(--accent);
}

.styles-item__title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.styles-item.is-open .styles-item__title {
  color: var(--accent);
  font-weight: 700;
}

.styles-item__chev {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  flex-shrink: 0;
}

.styles-item__chev svg {
  width: 14px;
  height: 14px;
}

.styles-item.is-open .styles-item__chev {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: rotate(180deg);
}

.styles-item__body {
  padding: 0 22px 22px;
  animation: styles-slide-down 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.styles-item__body[hidden] { display: none; }

@keyframes styles-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.styles-item__mobile-img {
  display: none;
  margin: 4px 0 18px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0a0a0a;
  border: 1px solid var(--line);
  position: relative;
}

.styles-item__mobile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.25);
  transform-origin: center 25%;
  filter: grayscale(40%) brightness(0.95);
}

.styles-item__desc {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.styles-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-family: "Archivo", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, gap 0.25s ease;
}

.styles-item__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.styles-item__cta:hover {
  background: var(--accent);
  color: var(--bg);
  gap: 14px;
}

.styles-item__cta:hover svg {
  transform: translateX(2px);
}

/* ——— Preview (right column) ——— */
.styles-preview {
  width: 100%;
}

.styles-preview__sticky {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.styles-preview__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.styles-preview__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 11, 9, 0.85) 100%);
  pointer-events: none;
}

.styles-preview__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.35);
  transform-origin: center 25%;
  filter: grayscale(35%) brightness(0.96);
  transition: transform 0.8s ease, opacity 0.3s ease;
}

.styles-preview__img.is-loading img {
  opacity: 0.4;
}

.styles-preview__img:hover img {
  transform: scale(1.42);
}

.styles-preview__badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #F5F0EB;
}

.styles-preview__badge-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  background: rgba(12, 11, 9, 0.65);
  border: 1px solid var(--accent-glow);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.styles-preview__badge-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Light-theme tweaks for preview overlay (image stays dark) */
[data-theme="light"] .styles-preview__badge {
  color: #F5F0EB;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .styles-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Hide the big sticky image on mobile — inline mobile image inside each open item is used instead */
  .styles-preview { display: none; }
  .styles-item__mobile-img { display: block; }
  .styles-item__head { padding: 16px 18px; }
  .styles-item__body { padding: 0 18px 20px; }
}

@media (max-width: 480px) {
  .styles-item__title { font-size: 0.875rem; }
  .styles-item__desc { font-size: 0.875rem; line-height: 1.65; }
}

/* =============================================
   BECAUSE YOUR LOOK MATTERS  — marquee edition
   ============================================= */
.look-section {
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
  overflow: hidden;
  background: var(--bg-alt);
}

.look-header {
  padding: 0 clamp(20px, 4vw, 48px) 56px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
}

.look-header h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--accent);
}

.look-header h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.look-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  align-self: end;
}

/* marquee rows */
.look-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}

.look-marquee:last-child { margin-bottom: 0; }

.look-marquee__track {
  display: flex;
  width: max-content;
}

.look-marquee__reel {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.look-marquee__item {
  flex-shrink: 0;
  width: clamp(220px, 22vw, 340px);
  overflow: hidden;
}

.look-marquee__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(60%) brightness(0.85);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.look-marquee__item:hover img {
  filter: grayscale(20%);
  transform: scale(1.03);
}

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

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

.look-marquee__track--left  { animation: marquee-left  28s linear infinite; }
.look-marquee__track--right { animation: marquee-right 32s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .look-marquee__track--left,
  .look-marquee__track--right { animation: none; }
}

@media (max-width: 640px) {
  .look-header { grid-template-columns: 1fr; }
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  padding: 72px clamp(20px, 4vw, 48px) 80px;
}

.pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}

.pricing-inner h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--accent);
}

.pricing-inner h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.pricing-inner > .pricing-left p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 16px;
}

.pricing-note {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 8px !important;
}

.pricing-left .btn-outline {
  margin-top: 28px;
  display: inline-flex;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.pricing-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.pricing-card__name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.pricing-card__time {
  color: var(--muted);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.pricing-card__price {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .pricing-section { padding: 56px 20px 64px; }
  .pricing-card {
    padding: 18px 20px;
  }
  .pricing-card__name {
    font-size: 1rem;
  }
  .pricing-card__price {
    font-size: 1.25rem;
  }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  padding: 72px clamp(20px, 4vw, 48px) 80px;
  background: var(--bg-alt);
  background-image: var(--gradient-section);
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-inner h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--accent);
}

.testimonials-inner h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.testimonials-inner > p {
  margin: 0 0 52px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 56ch;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
  padding: 0 1px;
}

.testimonials-track {
  display: flex;
  gap: 10px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: calc(25% - 7.5px);
  min-width: calc(25% - 7.5px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--bg);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Archivo", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-muted);
  pointer-events: none;
}

.testimonial-card strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--accent);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-time {
  display: block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .testimonial-card {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .testimonials-section { padding: 56px 20px 64px; }
  .testimonial-card {
    width: 100%;
    min-width: 100%;
    aspect-ratio: auto;
    padding: 28px 22px;
  }
  .testimonial-card::before { font-size: 2.4rem; top: 14px; right: 18px; }
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  padding: 72px clamp(20px, 4vw, 48px) 80px;
}

.areas-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.areas-inner h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--accent);
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.areas-inner > p {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 56ch;
}

.areas-grid {
  background: var(--bg-raised);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.area-tag {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.area-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.area-tag:nth-child(4n) { border-right: none; }
.area-tag:nth-last-child(-n+4) { border-bottom: none; }

.area-tag:hover {
  background: var(--card-hover);
  color: var(--accent);
}

.areas-footer {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 24px;
}

.areas-footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-tag:nth-child(4n) { border-right: 1px solid var(--line); }
  .area-tag:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .area-tag:nth-child(2n) { border-right: none; }
  .area-tag:nth-last-child(-n+2) { border-bottom: none; }
}

/* =============================================
   BOOK & CONTACT
   ============================================= */
.book-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  background: var(--bg-alt);
}

.book-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  min-height: 560px;
}

.book-image {
  position: relative;
  overflow: hidden;
}

.book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.book-image__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px 28px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

/* The image stays dark in both themes, so in light mode use a dark
   gradient + light text so the caption reads well over the photo. */
[data-theme="light"] .book-image__caption {
  color: rgba(245, 240, 235, 0.85);
  font-size: 0.9375rem;
  background: linear-gradient(to top, rgba(12, 11, 9, 0.95) 0%, rgba(12, 11, 9, 0.7) 55%, transparent 100%);
}

.book-details {
  padding: 56px clamp(20px, 3vw, 48px);
  border-right: 1px solid var(--line);
}

.book-details h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: var(--accent);
}

.book-details > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.book-details__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
}

.book-details__item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.book-details__item a { font-weight: 500; }
.book-details__item a.underline { text-decoration: underline; text-underline-offset: 3px; }

.book-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.book-nav a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

.book-nav a:hover { color: var(--text); }

.book-contact {
  padding: 56px clamp(20px, 3vw, 48px);
}

.book-contact h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: var(--accent);
}

.book-contact > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form .btn-outline { margin-top: 8px; }

.contact-form__success {
  margin-top: 16px;
  color: var(--accent);
  font-size: 0.9rem;
}

.contact-form__error {
  margin-top: 10px;
  color: #e07070;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .book-inner { grid-template-columns: 0 1fr 1fr; }
  .book-image { display: none; }
}

@media (max-width: 640px) {
  .book-section { display: none; }
  .book-inner { grid-template-columns: 1fr; }
  .book-details { border-right: none; border-bottom: 1px solid var(--line); }
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  padding: 80px clamp(20px, 4vw, 48px) 96px;
  background: var(--bg-alt);
}

.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}

.faq-header h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.faq-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item dt { margin: 0; }

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item__trigger:hover { color: var(--muted); }

.faq-item__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  opacity: 1;
}

.faq-item__answer {
  margin: 0;
  padding: 0 0 24px;
}

.faq-item__answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 58ch;
}

@media (max-width: 768px) {
  .faq-inner { grid-template-columns: 1fr; }
}

/* =============================================
   MEMBERSHIP
   ============================================= */
.membership-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--nav-h);
  padding: 80px clamp(20px, 4vw, 48px) 100px;
  background: var(--bg-alt);
  background-image: var(--gradient-hero);
}

.membership-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.membership-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.membership-eyebrow {
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.membership-header h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.membership-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.membership-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--line);
}

.plan-card {
  position: relative;
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  background: var(--bg-raised);
}

.plan-card:last-child { border-right: none; }

.plan-card--featured {
  background: var(--bg);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.06);
}

.plan-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  white-space: nowrap;
}

.plan-card__top {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.plan-card__name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.plan-card__tagline {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-card__amount {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.plan-card__period {
  color: var(--muted);
  font-size: 0.875rem;
}

.plan-card__features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
}

.plan-card__features li span {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--accent);
}

.plan-card__features--muted {
  color: var(--muted) !important;
  opacity: 0.5;
}

.plan-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  margin-top: auto;
}

.plan-card__cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.plan-card__cta--dark {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.plan-card__cta--dark:hover {
  background: transparent;
  color: var(--accent);
}

.membership-footer {
  text-align: center;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .membership-plans { grid-template-columns: 1fr; border: none; gap: 12px; }
  .plan-card { border-right: none; border: 1px solid var(--line); }
  .plan-card--featured { border: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .plan-card { padding: 32px 24px 28px; }
  .plan-card__top { margin-bottom: 24px; padding-bottom: 22px; }
}

/* =============================================
   SITE FOOTER
   ============================================= */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px clamp(20px, 4vw, 48px);
  background: var(--bg);
  background-image: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
  box-shadow: 0 -1px 0 var(--accent-muted);
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.site-footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.site-footer__social,
.site-footer__utility {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__social a,
.site-footer__utility a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.site-footer__social a:hover,
.site-footer__utility a:hover { color: var(--text); }

.site-footer__copy-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.theme-toggle:hover {
  color: var(--text);
}

.theme-toggle__icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.theme-toggle:hover .theme-toggle__icon {
  border-color: var(--text);
}

.theme-toggle__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.2s;
}

.theme-toggle__sun,
.theme-toggle__moon { display: none; }

[data-theme="dark"] .theme-toggle__sun { display: block; }
[data-theme="dark"] .theme-toggle__moon { display: none; }
[data-theme="light"] .theme-toggle__sun { display: none; }
[data-theme="light"] .theme-toggle__moon { display: block; }

@media (max-width: 760px) {
  .site-footer {
    padding: 56px 20px 40px;
  }
  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }
  .site-footer__copy-row {
    order: 3;
    justify-content: center;
  }
  .site-footer__social {
    order: 1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .site-footer__utility {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .site-footer__social a,
  .site-footer__utility a {
    text-decoration: none;
    letter-spacing: 0.04em;
  }
}