/* ═══════════════════════════════════════════════════════════
   BENEDICT NEUNER — Editorial Warmth Design System
   Direction: Editorial Magazine × Warm Luxury
   ═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  /* Warm dark palette */
  --bg-dark: #181412;
  --bg-dark-elevated: #221e1a;
  --bg-warm: #f2ece4;
  --bg-warm-deep: #e8dfd3;
  --bg-cream: #faf7f2;

  /* Accent colors */
  --accent: #c8553d;       /* terracotta — voice = warmth = fire */
  --accent-hover: #a8432e;
  --accent-gold: #d4a24e;  /* warm gold — stage lights */
  --accent-muted: #8b7355; /* muted bronze */

  /* Text colors */
  --text-dark: #1a1613;
  --text-dark-secondary: #5a4f44;
  --text-light: #e8e0d4;
  --text-light-secondary: #a89b8c;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Crimson Pro', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Layout */
  --max-width: 1320px;
  --gutter: clamp(1.5rem, 4vw, 4rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.6s;
  --duration-long: 1s;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

em {
  font-style: italic;
  color: var(--accent);
}

::selection {
  background: var(--accent);
  color: var(--bg-cream);
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-long) var(--ease-out),
              transform var(--duration-long) var(--ease-out);
}

.reveal.is-visible,
.reveal-debug .reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group .reveal:nth-child(2) {
  transition-delay: 0.15s;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              padding var(--duration) var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(24, 20, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text-light);
  transition: opacity 0.3s;
}

.nav__logo:hover {
  opacity: 0.7;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}

.nav__links a:hover {
  color: var(--text-light);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.5rem 1.25rem !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav__cta:hover {
  background: var(--accent) !important;
  color: var(--bg-cream) !important;
}

.nav__cta::after {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter);
  padding-bottom: clamp(4rem, 8vh, 8rem);
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 20s var(--ease-out) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(24, 20, 18, 0.3) 0%,
      rgba(24, 20, 18, 0.15) 30%,
      rgba(24, 20, 18, 0.5) 60%,
      rgba(24, 20, 18, 0.92) 100%
    ),
    linear-gradient(90deg,
      rgba(24, 20, 18, 0.6) 0%,
      transparent 60%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero__word {
  display: inline-block;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.hero__word--accent {
  color: var(--accent-gold);
  font-weight: 500;
  font-style: italic;
}

.hero__dash {
  display: inline-block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--accent);
  margin: 0 0.15em;
}

.hero__sub {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--text-light-secondary);
  margin-top: 0.25em;
}

.hero__description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 300;
  color: var(--text-light-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 5vh, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--accent);
  transform-origin: top;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-cream);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 85, 61, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light-secondary);
  border: 1px solid rgba(232, 224, 212, 0.2);
}

.btn--ghost:hover {
  color: var(--text-light);
  border-color: rgba(232, 224, 212, 0.5);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   INTRO BAND
   ═══════════════════════════════════════════════════════════ */
.intro {
  background: var(--bg-warm);
  padding: var(--space-xl) var(--gutter);
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-muted), transparent);
}

.intro__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark-secondary);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.features {
  padding: var(--space-2xl) 0;
  background: var(--bg-cream);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: var(--space-2xl);
}

.feature:last-child {
  margin-bottom: 0;
}

/* Alternate layout direction */
.feature--left .feature__media {
  order: 2;
}
.feature--left .feature__body {
  order: 1;
}

/* Media / Images */
.feature__media {
  position: relative;
}

.feature__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.feature--right .feature__img-wrap {
  clip-path: polygon(0 0, 100% 4%, 100% 96%, 0% 100%);
}

.feature--left .feature__img-wrap {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 96%);
}

.feature__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.feature:hover .feature__img-wrap img {
  transform: scale(1.04);
}

/* Body */
.feature__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--bg-warm-deep);
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.6s var(--ease-out);
}

.feature:hover .feature__num {
  color: rgba(200, 85, 61, 0.15);
}

.feature__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature__subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.feature__text {
  margin-bottom: 2rem;
}

.feature__text p {
  color: var(--text-dark-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.feature__text p:last-child {
  margin-bottom: 0;
}

.feature__link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, gap 0.3s var(--ease-spring);
}

.feature__link:hover {
  border-bottom-color: var(--accent);
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-dark);
  padding: var(--space-2xl) var(--gutter);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 1rem;
}

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto var(--space-xl);
}

.testimonial {
  background: var(--bg-dark-elevated);
  padding: 2.5rem;
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.testimonial:hover {
  border-color: rgba(200, 85, 61, 0.2);
  transform: translateY(-4px);
}

.testimonial__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text-light);
}

.testimonial__role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-light-secondary);
}

.testimonials__logos {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.testimonials__logos-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light-secondary);
  margin-bottom: 2rem;
}

.testimonials__logo-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.2);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(232, 224, 212, 0.08);
  transition: border-color 0.3s, color 0.3s;
}

.logo-placeholder:hover {
  border-color: rgba(232, 224, 212, 0.15);
  color: rgba(232, 224, 212, 0.35);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  background: var(--bg-warm);
  padding: var(--space-2xl) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: var(--space-lg) clamp(2rem, 6vw, 6rem);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Full-width warm background wrapper */
.about {
  max-width: 100%;
}

.about__deco {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 35%;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.about__deco img {
  width: 100%;
  mix-blend-mode: multiply;
}

.about__portrait {
  grid-row: 1 / 3;
  position: relative;
  z-index: 1;
  max-width: 500px;
  justify-self: end;
}

.about__portrait img {
  width: 100%;
  clip-path: polygon(0 0, 100% 3%, 100% 97%, 0% 100%);
  filter: contrast(1.05);
}

.about__body {
  z-index: 1;
  align-self: end;
  padding-left: clamp(0rem, 3vw, 3rem);
}

.about__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.about__role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-dark-secondary);
  margin-bottom: 2rem;
}

.about__text p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dark-secondary);
}

.about__second-img {
  z-index: 1;
  position: relative;
  padding-left: clamp(0rem, 3vw, 3rem);
}

.about__second-img img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 97%);
}

.about__caption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-muted);
  display: block;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: var(--space-2xl) var(--gutter);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
}

.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(24, 20, 18, 0.85) 0%,
      rgba(24, 20, 18, 0.75) 50%,
      rgba(24, 20, 18, 0.9) 100%
    );
}

.cta-band__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.cta-band__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light-secondary);
  margin-bottom: 2.5rem;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: var(--space-xl) var(--gutter) var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-light);
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact a,
.footer__contact span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  transition: color 0.3s;
}

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

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
  transition: color 0.3s;
}

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

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: var(--space-md);
  text-align: center;
}

.footer__bottom span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(232, 224, 212, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature {
    gap: 3rem;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__portrait {
    grid-row: auto;
    max-width: 350px;
    justify-self: center;
  }

  .about__body {
    padding-left: 0;
    align-self: auto;
  }

  .about__second-img {
    padding-left: 0;
    max-width: 500px;
    justify-self: center;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer__nav {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(24, 20, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__links.is-open a {
    font-size: 0.9rem;
  }

  .nav__toggle.is-open span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
  }

  .nav__toggle.is-open span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  .feature {
    grid-template-columns: 1fr;
    margin-bottom: var(--space-xl);
  }

  .feature--left .feature__media,
  .feature--left .feature__body {
    order: unset;
  }

  .feature__img-wrap {
    aspect-ratio: 16 / 10;
  }

  .feature--right .feature__img-wrap,
  .feature--left .feature__img-wrap {
    clip-path: none;
  }

  .feature__num {
    font-size: 3.5rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero {
    padding-bottom: 3rem;
    align-items: flex-end;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .cta-band {
    min-height: 50vh;
  }

  .cta-band__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 375px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  :root {
    --gutter: 1.25rem;
  }

  body {
    font-size: 1rem;
  }

  .hero__word {
    font-size: 2.4rem;
  }

  .hero__dash {
    font-size: 2.4rem;
  }

  .hero__sub {
    font-size: 1.3rem;
  }

  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.7rem;
    width: 100%;
  }

  .feature__title {
    font-size: 1.75rem;
  }

  .testimonial {
    padding: 1.75rem;
  }

  .about__title {
    font-size: 2rem;
  }
}

/* ─── Noise texture overlay (global atmosphere) ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
