:root {
    --espresso: #140e08;
    --roast: #241a12;
    --roast-2: #2e2115;
    --copper: #b3824f;
    --caramel: #d9a865;
    --crema: #f3e8d7;
    --crema-dim: #c9b596;
    --crema-faint: #937f61;
    --line: rgba(217, 168, 101, 0.16);
    --serif: "Fraunces", Georgia, serif;
    --sans: "Poppins", ui-sans-serif, system-ui, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--espresso);
    color: var(--crema);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }
  ::selection { background: var(--copper); color: var(--espresso); }

  /* warm grain */
  body::after {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none; z-index: 90;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

  .eyebrow {
    font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--copper); font-weight: 500;
  }

  /* ── nav ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 80;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 28px;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
  }
  nav.scrolled { background: rgba(20, 14, 8, 0.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
  .nav-brand { display: flex; align-items: center; gap: 12px; }
  .nav-brand img.mark { width: 44px; height: 44px; border-radius: 10px; }
  .nav-brand img.word { height: 38px; width: auto; opacity: 0.95; }
  .nav-cta {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
    border: 1px solid var(--copper); color: var(--caramel);
    padding: 10px 22px; border-radius: 999px;
    transition: background 0.25s, color 0.25s;
  }
  .nav-cta:hover { background: var(--copper); color: var(--espresso); }

  /* ── hero ── */
  .hero {
    min-height: 100svh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; position: relative;
    padding: 120px 24px 80px;
    background:
      radial-gradient(1100px 520px at 50% -8%, rgba(179, 130, 79, 0.16), transparent 65%),
      radial-gradient(700px 500px at 85% 110%, rgba(179, 130, 79, 0.07), transparent 60%),
      var(--espresso);
  }
  .hero .mark { width: 108px; height: 108px; border-radius: 26px; box-shadow: 0 24px 70px -18px rgba(179,130,79,0.55); }
  .hero h1 {
    font-family: var(--serif);
    font-weight: 380;
    font-size: clamp(2.15rem, 5.4vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    max-width: 17ch;
    margin-top: 44px;
  }
  .hero h1 em {
    font-style: italic; font-weight: 420;
    color: var(--caramel);
  }
  .hero .sub {
    margin-top: 26px; max-width: 46ch;
    color: #ede1cd; font-size: 1.02rem;
  }
  .hero .ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .btn-fill {
    background: var(--copper); color: var(--espresso);
    font-weight: 500; font-size: 0.92rem; letter-spacing: 0.02em;
    padding: 16px 34px; border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
    box-shadow: 0 14px 40px -14px rgba(179,130,79,0.7);
  }
  .btn-fill:hover { transform: translateY(-2px); background: var(--caramel); }
  .btn-ghost {
    border: 1px solid var(--line); color: var(--crema-dim);
    font-weight: 400; font-size: 0.92rem;
    padding: 16px 34px; border-radius: 999px;
    transition: border-color 0.25s, color 0.25s;
  }
  .btn-ghost:hover { border-color: var(--copper); color: var(--caramel); }
  .hero .mantra {
    margin-top: 52px; font-size: 0.75rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--crema-faint);
  }

  /* steam */
  .steam { position: absolute; top: 12%; left: 50%; transform: translateX(-50%); width: 220px; height: 200px; pointer-events: none; opacity: 0.5; }
  .steam path { fill: none; stroke: var(--caramel); stroke-width: 2; stroke-linecap: round; opacity: 0; }
  @keyframes rise {
    0% { opacity: 0; transform: translateY(24px); }
    25% { opacity: 0.35; }
    100% { opacity: 0; transform: translateY(-46px); }
  }
  .steam path { animation: rise 5.5s ease-out infinite; }
  .steam path:nth-child(2) { animation-delay: 1.8s; }
  .steam path:nth-child(3) { animation-delay: 3.4s; }

  /* load-in */
  .hero .mark, .hero h1, .hero .sub, .hero .ctas, .hero .mantra {
    opacity: 0; transform: translateY(22px);
    animation: enter 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .hero h1 { animation-delay: 0.15s; }
  .hero .sub { animation-delay: 0.3s; }
  .hero .ctas { animation-delay: 0.45s; }
  .hero .mantra { animation-delay: 0.65s; }
  @keyframes enter { to { opacity: 1; transform: none; } }

  /* ── ticker ── */
  .ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 18px 0; background: var(--roast); }
  .ticker-track { display: flex; gap: 56px; width: max-content; animation: slide 36s linear infinite; }
  .ticker span { white-space: nowrap; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--crema-dim); }
  .ticker b { color: var(--caramel); font-weight: 500; }
  @keyframes slide { to { transform: translateX(-50%); } }

  /* ── sections ── */
  section { padding: 110px 0; }
  .sec-head { max-width: 640px; }
  .sec-head h2 {
    font-family: var(--serif); font-weight: 380;
    font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.14; letter-spacing: -0.01em;
    margin-top: 16px;
  }
  .sec-head h2 em { font-style: italic; color: var(--caramel); }
  .sec-head p { margin-top: 18px; color: var(--crema-dim); }

  /* reveal on scroll */
  .rv { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
  .rv.in { opacity: 1; transform: none; }

  /* ── acts (how it works) ── */
  .acts { display: grid; gap: 18px; margin-top: 64px; }
  .act {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    background: var(--roast); border: 1px solid var(--line); border-radius: 26px; overflow: hidden;
  }
  .act:nth-child(even) .act-img { order: 2; }
  .act-img { position: relative; height: 340px; }
  .act-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
  .act-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20,14,8,0.25), transparent 55%); }
  .act-txt { padding: 48px 52px; }
  .act-txt .stage { font-family: var(--serif); font-style: italic; color: var(--copper); font-size: 1rem; }
  .act-txt h3 { font-family: var(--serif); font-weight: 420; font-size: 1.7rem; margin-top: 10px; line-height: 1.2; }
  .act-txt p { margin-top: 14px; color: var(--crema-dim); font-size: 0.95rem; }

  /* presence pills over photo, the signature */
  .pill {
    position: absolute; display: flex; align-items: center; gap: 9px;
    background: rgba(20, 14, 8, 0.78); backdrop-filter: blur(8px);
    border: 1px solid rgba(217, 168, 101, 0.35);
    padding: 8px 14px 8px 8px; border-radius: 999px;
    font-size: 0.72rem; color: var(--crema);
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.6);
    animation: float 5s ease-in-out infinite;
  }
  .pill small { display: block; color: var(--caramel); font-size: 0.62rem; }
  .pill .dot { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 0.66rem; color: #fff; }
  .pill:nth-child(3) { animation-delay: 1.6s; }
  .pill:nth-child(4) { animation-delay: 3s; }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

  /* ── attributes ── */
  .attrs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; }
  .attr {
    background: var(--roast); border: 1px solid var(--line); border-radius: 20px;
    padding: 30px 26px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .attr:hover { transform: translateY(-4px); border-color: rgba(217,168,101,0.4); }
  .attr .ico { font-size: 1.5rem; }
  .attr h4 { font-weight: 500; font-size: 0.95rem; margin-top: 14px; }
  .attr p { color: var(--crema-faint); font-size: 0.8rem; margin-top: 6px; }
  .free-note { margin-top: 26px; font-size: 0.8rem; color: var(--copper); letter-spacing: 0.06em; }

  /* ── moments (no more missed opportunities) ── */
  .moments-band { background: var(--roast); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .moments { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
  .moment {
    background: var(--espresso); border: 1px solid var(--line); border-radius: 22px;
    padding: 34px 32px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .moment:hover { transform: translateY(-4px); border-color: rgba(217,168,101,0.4); }
  .moment .kind {
    font-family: var(--sans); font-style: normal; margin-top: 0;
    font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--copper); font-weight: 500; line-height: 1.5;
  }
  .moment p {
    font-family: var(--serif); font-style: italic; font-weight: 380;
    font-size: 1.25rem; line-height: 1.4; margin-top: 14px; color: var(--crema);
  }

  /* ── FAQ (animated accordion, one open at a time) ── */
  .faq-list { max-width: 780px; margin: 56px auto 0; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer; text-align: left;
    display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
    padding: 26px 4px; color: var(--crema);
    font-family: var(--serif); font-weight: 420; font-size: 1.15rem; line-height: 1.35;
    transition: color 0.3s ease;
  }
  .faq-q::after {
    content: "+"; flex-shrink: 0;
    font-family: var(--sans); font-weight: 300; font-size: 1.5rem; color: var(--copper);
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), color 0.3s;
  }
  .faq-q:hover { color: var(--caramel); }
  .faq-item.open .faq-q { color: var(--caramel); }
  .faq-item.open .faq-q::after { transform: rotate(135deg); color: var(--caramel); }
  .faq-panel {
    overflow: hidden; max-height: 0; opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, transform 0.4s ease;
  }
  .faq-item.open .faq-panel { opacity: 1; transform: none; }
  .faq-a { padding: 2px 4px 30px; color: var(--crema-dim); font-size: 0.92rem; max-width: 62ch; }
  .faq-a p + p { margin-top: 12px; }

  /* ── pricing ── */
  .plans { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 18px; margin-top: 60px; align-items: stretch; }
  .plan { background: var(--roast); border: 1px solid var(--line); border-radius: 24px; padding: 38px 32px; display: flex; flex-direction: column; }
  .plan.feature { border-color: var(--copper); background: linear-gradient(170deg, var(--roast-2), var(--roast)); position: relative; }
  .plan .tag {
    position: absolute; top: -13px; left: 28px;
    background: var(--copper); color: var(--espresso);
    font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 999px;
  }
  .plan h3 { font-family: var(--serif); font-weight: 420; font-size: 1.35rem; }
  .plan .price { margin-top: 14px; font-family: var(--serif); font-size: 2.4rem; font-weight: 380; color: var(--caramel); }
  .plan .price span { font-family: var(--sans); font-size: 0.8rem; color: var(--crema-faint); font-weight: 300; }
  .plan ul { list-style: none; margin-top: 24px; flex: 1; }
  .plan li { font-size: 0.86rem; color: var(--crema-dim); padding: 7px 0; display: flex; gap: 10px; }
  .plan li::before { content: "º6"; color: var(--copper); font-size: 0.6rem; padding-top: 5px; }
  .plan a { margin-top: 28px; text-align: center; }

  /* ── founder ── */
  .founder { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
  .founder img { border-radius: 24px; height: 400px; width: 100%; object-fit: cover; filter: saturate(0.9); }
  .founder blockquote {
    font-family: var(--serif); font-weight: 380; font-style: italic;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.4;
  }
  .founder cite { display: block; margin-top: 26px; font-family: var(--sans); font-style: normal; font-size: 0.82rem; color: var(--crema-faint); }
  .founder cite b { color: var(--caramel); font-weight: 500; }

  /* ── final CTA ── */
  .final { text-align: center; position: relative; padding: 150px 24px; overflow: hidden; }
  .final::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(800px 400px at 50% 100%, rgba(179,130,79,0.16), transparent 70%);
  }
  .final h2 { font-family: var(--serif); font-weight: 380; font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.12; position: relative; }
  .final h2 em { font-style: italic; color: var(--caramel); }
  .final p { margin-top: 20px; color: var(--crema-dim); position: relative; }
  .final .ctas { margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

  /* ── footer ── */
  footer { border-top: 1px solid var(--line); padding: 70px 0 36px; background: var(--roast); }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; }
  .footer-grid h4 { font-family: var(--serif); font-weight: 420; font-size: 1.1rem; margin-bottom: 20px; }
  .f-brand img.word { height: 34px; width: auto; }
  .f-brand p { margin-top: 18px; color: var(--crema-dim); font-size: 0.85rem; max-width: 34ch; }
  .social-btns { display: flex; gap: 10px; }
  .social-btns a {
    width: 42px; height: 42px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    background: var(--roast-2); border: 1px solid var(--line); color: var(--caramel);
    transition: background 0.25s, transform 0.2s, border-color 0.25s;
  }
  .social-btns a:hover { background: var(--copper); color: var(--espresso); transform: translateY(-2px); border-color: var(--copper); }
  .f-links { display: grid; gap: 12px; font-size: 0.86rem; color: var(--crema-dim); }
  .f-links a { transition: color 0.25s; width: fit-content; }
  .f-links a:hover { color: var(--caramel); }
  .news-form { display: flex; border-bottom: 2px solid rgba(217,168,101,0.35); padding-bottom: 8px; }
  .news-form input {
    flex: 1; background: none; border: none; outline: none;
    color: var(--crema); font-family: var(--sans); font-weight: 300; font-size: 0.9rem;
    caret-color: var(--caramel);
  }
  .news-form input::placeholder { color: var(--crema-faint); }
  .news-form button {
    background: none; border: none; cursor: pointer;
    color: var(--caramel); font-family: var(--sans); font-weight: 500;
    font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
    transition: color 0.25s;
  }
  .news-form button:hover { color: var(--crema); }
  .news-note { margin-top: 12px; font-size: 0.7rem; color: var(--crema-faint); min-height: 1.2em; }
  .news-note.ok { color: var(--caramel); }
  .footer-bottom {
    margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
    font-size: 0.72rem; color: var(--crema-faint);
  }
  .footer-bottom .legal { display: flex; gap: 22px; }
  .footer-bottom .legal a:hover { color: var(--caramel); }

  @media (max-width: 880px) {
    section { padding: 80px 0; }
    .moments { grid-template-columns: 1fr; }
    .moment { padding: 28px 26px; }
    .moment p { font-size: 1.1rem; }
    .act { grid-template-columns: 1fr; }
    .act:nth-child(even) .act-img { order: 0; }
    .act-img { height: 260px; }
    .act-txt { padding: 32px 28px 40px; }
    .attrs { grid-template-columns: repeat(2, 1fr); }
    .plans { grid-template-columns: 1fr; }
    .founder { grid-template-columns: 1fr; gap: 36px; }
    .founder img { height: 320px; }
    .nav-brand img.word { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .rv { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
  }


/* ── photographic hero ── */
.hero-photo { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  animation: kenburns 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.6%, -1.2%); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 8, 0.46) 0%, rgba(20, 14, 8, 0.26) 45%, rgba(20, 14, 8, 0.52) 80%, var(--espresso) 100%);
}
.hero-photo > *:not(.hero-bg) { position: relative; z-index: 1; }
.hero-photo h1 { text-shadow: 0 3px 34px rgba(0, 0, 0, 0.65); }
.hero-photo .sub { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7); }

/* side-by-side photo feature */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 70px; }
.feature-split .photo { position: relative; }
.feature-split .photo img { border-radius: 26px; width: 100%; height: 440px; object-fit: cover; filter: saturate(0.92); }
.feature-split .photo::after {
  content: ""; position: absolute; inset: 0; border-radius: 26px;
  background: linear-gradient(150deg, rgba(20,14,8,0.22), transparent 55%);
}
.feature-split h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; }
.feature-split h3 em { font-style: italic; color: var(--caramel); }
.feature-split .points { margin-top: 26px; display: grid; gap: 18px; }
.feature-split .points p { color: var(--crema-dim); font-size: 0.93rem; padding-left: 20px; position: relative; }
.feature-split .points p::before { content: "º6"; position: absolute; left: 0; top: 2px; color: var(--copper); font-size: 0.65rem; }
@media (max-width: 880px) {
  .feature-split { grid-template-columns: 1fr; gap: 34px; }
  .feature-split .photo img { height: 300px; }
}


/* ── unified nav links ── */
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.nav-cta) {
  font-size: 0.82rem; color: var(--crema-dim); letter-spacing: 0.04em;
  transition: color 0.25s;
}
.nav-links a:not(.nav-cta):hover { color: var(--caramel); }
.nav-links a.current { color: var(--caramel); }
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── numbered process steps (a real sequence) ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.step { background: var(--roast); border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px; }
.step .num { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--copper); }
.step h4 { font-weight: 500; font-size: 0.98rem; margin-top: 12px; }
.step p { color: var(--crema-faint); font-size: 0.82rem; margin-top: 8px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* copper callout */
.callout {
  margin-top: 40px; border: 1px solid var(--copper); border-radius: 22px;
  background: linear-gradient(170deg, var(--roast-2), var(--roast));
  padding: 30px 34px; display: flex; gap: 20px; align-items: baseline; flex-wrap: wrap;
}
.callout .eyebrow { flex-shrink: 0; }
.callout p { color: var(--crema-dim); font-size: 0.92rem; max-width: 60ch; }
.callout b { color: var(--caramel); font-weight: 500; }


@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
