/* ═══════════════════════════════════════════════════════════════════════════
   Benedict Neuner – Landing Page v2
   Design Direction: Editorial + Exaggerated Minimalism
   Fonts: Cormorant Garamond (display) + Jost (body)
   Palette: Warm charcoal + Cream + Burnt amber accent
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  /* Color */
  --c-charcoal:    #1A1614;
  --c-charcoal-80: #3D3633;
  --c-charcoal-60: #635A55;
  --c-cream:       #F5F0E8;
  --c-cream-dark:  #E8E0D4;
  --c-amber:       #C4723A;
  --c-amber-light: #D4945E;
  --c-amber-dark:  #A45E2C;
  --c-white:       #FFFCF8;
  --c-black:       #0E0C0B;

  /* Typography */
  --f-display: 'Cormorant Garamond', 'Georgia', serif;
  --f-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing (8px base) */
  --sp-1: 0.5rem;   /* 8 */
  --sp-2: 1rem;     /* 16 */
  --sp-3: 1.5rem;   /* 24 */
  --sp-4: 2rem;     /* 32 */
  --sp-5: 3rem;     /* 48 */
  --sp-6: 4rem;     /* 64 */
  --sp-7: 6rem;     /* 96 */
  --sp-8: 8rem;     /* 128 */
  --sp-9: 10rem;    /* 160 */

  /* Layout */
  --max-w: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-med:  400ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 100%; /* 16px */
}

body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.0625rem; /* 17px */
  line-height: 1.7;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

::selection {
  background: var(--c-amber);
  color: var(--c-white);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  min-height: 48px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-amber);
  color: var(--c-white);
  border-color: var(--c-amber);
}
.btn--primary:hover {
  background: var(--c-amber-dark);
  border-color: var(--c-amber-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 252, 248, 0.5);
}
.btn--ghost:hover {
  border-color: var(--c-white);
  background: rgba(255, 252, 248, 0.08);
}

.btn--lg {
  font-size: 1rem;
  padding: 1.1em 2.5em;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-2) var(--gutter);
  transition: background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.nav--scrolled {
  background: rgba(26, 22, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 252, 248, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: -0.01em;
}

.nav__logo-dot {
  color: var(--c-amber);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.75);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__links a:hover { color: var(--c-white); }

.nav__cta {
  background: var(--c-amber);
  color: var(--c-white) !important;
  padding: 0.6em 1.4em;
  transition: background var(--dur-fast) var(--ease-out);
}
.nav__cta:hover { background: var(--c-amber-dark) !important; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-8) var(--gutter) var(--sp-6);
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 65% center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to top, rgba(14, 12, 11, 0.85) 0%, rgba(14, 12, 11, 0.4) 50%, rgba(14, 12, 11, 0.2) 100%),
    linear-gradient(to right, rgba(14, 12, 11, 0.6) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__kicker {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber-light);
  margin-bottom: var(--sp-3);
}

.hero__headline {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-cream);
}

.hero__headline-dash {
  color: var(--c-amber);
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.8);
  max-width: 580px;
  margin-bottom: var(--sp-5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-amber-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ── INTRO STRIP ─────────────────────────────────────────────────────────── */
.intro-strip {
  padding: var(--sp-6) var(--gutter);
  background: var(--c-charcoal);
  text-align: center;
}

.intro-strip__text {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: 1.6;
  color: var(--c-cream);
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* ── FEATURES ────────────────────────────────────────────────────────────── */
.features {
  padding: var(--sp-8) 0;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto var(--sp-8);
  padding: 0 var(--gutter);
  align-items: center;
}

.feature--img-right .feature__media { order: 2; }
.feature--img-right .feature__body  { order: 1; }

.feature__media {
  position: relative;
  overflow: hidden;
}

.feature__img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: saturate(0.85);
  transition: transform var(--dur-med) var(--ease-out), filter var(--dur-med) var(--ease-out);
}
.feature:hover .feature__img {
  transform: scale(1.02);
  filter: saturate(1);
}

.feature__number {
  display: block;
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-cream-dark);
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-1);
}

.feature__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--c-charcoal);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-1);
}

.feature__subtitle {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--sp-3);
}

.feature__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-charcoal-60);
  max-width: 520px;
  margin-bottom: var(--sp-2);
}
.feature__text:last-child { margin-bottom: 0; }

/* ── PULL QUOTE ──────────────────────────────────────────────────────────── */
.pull-quote {
  max-width: var(--max-w);
  margin: var(--sp-4) auto var(--sp-8);
  padding: var(--sp-7) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--c-cream-dark);
  border-bottom: 1px solid var(--c-cream-dark);
}

.pull-quote p {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.4;
  color: var(--c-charcoal);
  max-width: 800px;
  margin: 0 auto var(--sp-3);
  letter-spacing: -0.01em;
}

.pull-quote footer {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--c-charcoal-60);
  letter-spacing: 0.02em;
}

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials {
  padding: var(--sp-8) var(--gutter);
  background: var(--c-charcoal);
}

.testimonials__heading {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--c-cream);
  text-align: center;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  max-width: var(--max-w);
  margin: 0 auto var(--sp-6);
}

.testimonial {
  padding: var(--sp-4);
  border: 1px solid rgba(245, 240, 232, 0.1);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.testimonial:hover {
  border-color: rgba(196, 114, 58, 0.4);
}

.testimonial blockquote p {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-cream);
  margin-bottom: var(--sp-3);
}

.testimonial figcaption {
  font-size: 0.875rem;
  line-height: 1.5;
}
.testimonial figcaption strong {
  color: var(--c-white);
  font-weight: 500;
}
.testimonial figcaption span {
  color: var(--c-charcoal-60);
  color: rgba(245, 240, 232, 0.5);
}

/* Logo strip */
.logo-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.logo-strip__label {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: var(--sp-3);
}

.logo-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 48px;
  border: 1px dashed rgba(245, 240, 232, 0.15);
  color: rgba(245, 240, 232, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.about {
  padding: var(--sp-8) var(--gutter);
  background: var(--c-cream);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}

.about__images {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: var(--sp-2);
  align-items: end;
}

.about__portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: contrast(1.05);
}

.about__secondary {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}

.about__kicker {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: var(--sp-2);
}

.about__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--c-charcoal);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.about__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--c-charcoal-60);
  max-width: 480px;
  margin-bottom: var(--sp-4);
}

.about__decorative {
  width: 120px;
  opacity: 0.15;
}

.about__art {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

/* ── CTA BAND ────────────────────────────────────────────────────────────── */
.cta-band {
  padding: var(--sp-8) var(--gutter);
  background: var(--c-amber);
  text-align: center;
}

.cta-band__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-band__headline {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.cta-band .btn--primary {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: var(--c-white);
}
.cta-band .btn--primary:hover {
  background: var(--c-black);
  border-color: var(--c-black);
}

.cta-band .btn--ghost {
  color: var(--c-white);
  border-color: rgba(255, 252, 248, 0.6);
}
.cta-band .btn--ghost:hover {
  border-color: var(--c-white);
  background: rgba(255, 252, 248, 0.12);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  padding: var(--sp-7) var(--gutter) var(--sp-4);
  background: var(--c-charcoal);
  color: rgba(245, 240, 232, 0.6);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.footer__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-cream);
  display: inline-block;
  margin-bottom: var(--sp-2);
}

.footer__closing {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 420px;
}

.footer h3 {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-amber-light);
  margin-bottom: var(--sp-2);
}

.footer ul li {
  margin-bottom: var(--sp-1);
}

.footer ul a {
  transition: color var(--dur-fast) var(--ease-out);
}
.footer ul a:hover {
  color: var(--c-cream);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  font-size: 0.8125rem;
}

.footer__legal {
  display: flex;
  gap: var(--sp-3);
}
.footer__legal a {
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__legal a:hover { color: var(--c-cream); }

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in feature blocks */
.feature.is-visible .feature__number   { transition-delay: 0ms; }
.feature.is-visible .feature__title    { transition-delay: 60ms; }
.feature.is-visible .feature__subtitle { transition-delay: 120ms; }
.feature.is-visible .feature__text     { transition-delay: 180ms; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE – Tablet (≤1024px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature {
    gap: var(--sp-4);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    max-width: 600px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-4);
    background: rgba(14, 12, 11, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
    z-index: 99;
  }
  .nav__links.is-open { transform: translateX(0); }

  .nav__links a {
    font-size: 1.125rem;
    color: var(--c-cream);
  }

  /* Hero */
  .hero {
    align-items: flex-end;
    padding: var(--sp-7) var(--gutter) var(--sp-5);
    min-height: 90vh;
    min-height: 90dvh;
  }

  .hero__headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__image {
    object-position: 60% center;
  }

  .hero__scroll-hint { display: none; }

  /* Features */
  .feature {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
  }

  .feature--img-right .feature__media { order: 0; }
  .feature--img-right .feature__body  { order: 0; }

  .feature__number { font-size: 3rem; }

  /* Pull quote */
  .pull-quote {
    padding: var(--sp-5) var(--gutter);
  }

  /* About */
  .about__layout {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .about__images {
    grid-template-columns: 1.5fr 1fr;
  }

  /* Footer */
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE – Small phone (≤375px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 375px) {
  body { font-size: 1rem; }

  .hero__headline { font-size: 1.875rem; }
  .hero__sub { font-size: 1rem; }

  .hero__actions {
    flex-direction: column;
  }

  .btn { width: 100%; text-align: center; }
  .btn--lg { font-size: 0.875rem; padding: 1em 1.5em; }

  .feature__title { font-size: 1.5rem; }
  .pull-quote p { font-size: 1.25rem; }
  .cta-band__headline { font-size: 1.5rem; }

  .cta-band__actions {
    flex-direction: column;
  }

  .logo-strip__logos {
    gap: var(--sp-2);
  }
  .logo-placeholder { width: 110px; height: 40px; font-size: 0.6875rem; }
}
