/* Recipe Please — marketing site */

:root {
    --ink: #2b2119;
    --ink-soft: #6f6154;
    --ink-faint: #b39c86;
    --cream: #fffdf9;
    --cream-deep: #fff7ee;
    --paper-line: #f0e4d6;
    --brand: #e8590c;
    --brand-deep: #d9480f;
    --brand-dark: #b13a08;
    --grad: linear-gradient(135deg, #fba75f, #d9480f);
    --radius: 22px;
    --shadow-lg: 0 30px 80px rgba(43, 33, 25, .18);
    --shadow-md: 0 14px 40px rgba(43, 33, 25, .12);
    --serif: "New York", ui-serif, Georgia, "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------------------------------------------------------------- type */

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(232, 89, 12, .1);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.display {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.01em;
    font-size: clamp(42px, 7vw, 84px);
}
.headline {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1.08;
    font-size: clamp(32px, 4.6vw, 56px);
}
.sub {
    font-size: clamp(17px, 1.6vw, 21px);
    color: var(--ink-soft);
    max-width: 640px;
}

/* ---------------------------------------------------------------- nav */

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 253, 249, .82);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease;
}
.nav.scrolled { border-color: var(--paper-line); }
.nav-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-weight: 800;
    font-size: 19px;
    text-decoration: none;
}
.logo img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { margin-left: auto; display: flex; gap: 26px; font-size: 14.5px; font-weight: 600; }
.nav-links a { text-decoration: none; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 15.5px;
    padding: 13px 24px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    box-shadow: 0 6px 20px rgba(217, 72, 15, .35);
}
.btn:hover { transform: translateY(-2px); background: var(--brand-deep); box-shadow: 0 10px 28px rgba(217, 72, 15, .42); }
.btn.small { padding: 9px 18px; font-size: 14px; box-shadow: none; }
.btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--paper-line);
    box-shadow: none;
}
.btn.ghost:hover { border-color: var(--ink-faint); background: var(--cream-deep); }
.btn.big { padding: 17px 34px; font-size: 17px; }
.price-tag { font-weight: 800; opacity: .95; }

/* ---------------------------------------------------------------- hero */

.hero {
    position: relative;
    padding: 150px 0 40px;
    background:
        radial-gradient(1100px 500px at 70% -10%, rgba(251, 167, 95, .25), transparent 70%),
        var(--cream);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/pattern.png") center/900px repeat;
    opacity: .5;
    pointer-events: none;
    mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
    -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
}
.hero-inner { position: relative; text-align: center; }
.hero .sub { margin: 22px auto 34px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13.5px; color: var(--ink-faint); font-weight: 600; }

.phones {
    position: relative;
    margin: 64px auto 0;
    height: clamp(420px, 52vw, 640px);
    max-width: 900px;
}
.phone {
    border-radius: clamp(34px, 4vw, 52px);
    border: clamp(8px, 1vw, 12px) solid #17130f;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #17130f;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phones .phone { position: absolute; top: 0; width: clamp(230px, 28vw, 330px); }
.phone-a { left: 50%; transform: translateX(-108%) rotate(-4deg); z-index: 1; }
.phone-b { left: 50%; transform: translateX(8%) rotate(3deg) translateY(26px); z-index: 2; }

.stat-strip {
    border-top: 1px solid var(--paper-line);
    border-bottom: 1px solid var(--paper-line);
    background: var(--cream-deep);
}
.stat-strip .wrap {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 18px;
    padding: 26px 24px;
    text-align: center;
}
.stat b { display: block; font-family: var(--serif); font-size: 30px; color: var(--brand-deep); }
.stat span { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------------------------------------------------------------- sections */

section { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* problem — dark */
.problem {
    background: #221a13;
    color: #f0e7dd;
    position: relative;
    overflow: hidden;
}
.problem::before {
    content: "";
    position: absolute; inset: 0;
    background: url("assets/tracing.png") center/1100px repeat;
    opacity: .05;
    pointer-events: none;
}
.problem .sub { color: #b3a494; }
.problem-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    position: relative;
}
.junk-wrap { position: relative; display: flex; justify-content: center; }
.junk-wrap .phone { width: clamp(240px, 26vw, 310px); transform: rotate(-2deg); }
.junk {
    position: absolute;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    white-space: nowrap;
    animation: bob 5s ease-in-out infinite;
}
.junk small { display: block; font-weight: 500; color: #888; font-size: 11px; }
.junk:nth-child(2) { top: 6%; left: 2%; animation-delay: -1s; }
.junk:nth-child(3) { top: 26%; right: 0; animation-delay: -2.4s; }
.junk:nth-child(4) { bottom: 30%; left: 0; animation-delay: -3.2s; }
.junk:nth-child(5) { bottom: 8%; right: 6%; animation-delay: -4.1s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.big-counter {
    font-family: var(--serif);
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 800;
    color: #ff8f4d;
    line-height: 1;
}
.counter-label { font-size: 15px; color: #b3a494; margin-top: 6px; }
.problem-points { margin-top: 34px; display: grid; gap: 14px; }
.problem-points li {
    list-style: none;
    padding-left: 30px;
    position: relative;
    color: #d9cdc0;
    font-size: 16.5px;
}
.problem-points li::before { content: "✕"; position: absolute; left: 0; color: #ff8f4d; font-weight: 800; }

/* the turn — before/after slider */
.turn { background: var(--cream); position: relative; }
.compare {
    position: relative;
    width: clamp(260px, 34vw, 340px);
    margin: 0 auto;
    border-radius: 48px;
    border: 11px solid #17130f;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}
.compare img { width: 100%; display: block; pointer-events: none; }
.compare .after {
    position: absolute; inset: 0;
    clip-path: inset(0 0 0 var(--split, 50%));
}
.compare .after img { height: 100%; object-fit: cover; }
.compare-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--split, 50%);
    width: 3px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15);
    cursor: ew-resize;
}
.compare-handle::after {
    content: "◂ ▸";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -1px;
    padding: 10px 12px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    white-space: nowrap;
}
.compare-tags {
    display: flex;
    justify-content: space-between;
    width: clamp(260px, 34vw, 340px);
    margin: 18px auto 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.compare-tags .t1 { color: var(--ink-faint); }
.compare-tags .t2 { color: var(--brand-deep); }

/* steps */
.steps { background: var(--cream-deep); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card {
    background: var(--cream);
    border: 1px solid var(--paper-line);
    border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: 0 6px 24px rgba(43,33,25,.05);
}
.step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.step-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 15.5px; }

/* bento features */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.tile {
    background: var(--cream-deep);
    border: 1px solid var(--paper-line);
    border-radius: var(--radius);
    padding: 34px;
    overflow: hidden;
    position: relative;
}
.tile h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.tile p { color: var(--ink-soft); font-size: 15.5px; max-width: 420px; }
.tile.span3 { grid-column: span 3; }
.tile.span2 { grid-column: span 2; }
.tile.span4 { grid-column: span 4; }
.tile.dark { background: #221a13; border-color: #362a20; color: #f0e7dd; }
.tile.dark p { color: #b3a494; }
.tile.orange { background: var(--grad); border: none; color: #fff; }
.tile.orange p { color: rgba(255,255,255,.9); }
.tile-shot { margin: 26px -8px -70px; border-radius: 26px 26px 0 0; overflow: hidden; box-shadow: 0 -8px 40px rgba(43,33,25,.18); }
.tile-shot img { width: 100%; }
.tile-shots-duo { display: flex; gap: 14px; margin: 26px -8px -80px; }
.tile-shots-duo > div { flex: 1; border-radius: 22px 22px 0 0; overflow: hidden; box-shadow: 0 -8px 34px rgba(43,33,25,.16); }
.tile-icon { font-size: 30px; margin-bottom: 14px; display: block; }

/* vignettes */
.kitchens { background: #221a13; color: #f0e7dd; position: relative; overflow: hidden; }
.kitchens::before {
    content: "";
    position: absolute; inset: 0;
    background: url("assets/tracing.png") center/1100px repeat;
    opacity: .05;
}
.kitchens .sub { color: #b3a494; }
.vignette-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.vignette {
    background: #2a2019;
    border: 1px solid #3d2f23;
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.vignette svg { width: 100%; height: 150px; margin-bottom: 20px; }
.vignette .when {
    font-size: 12px; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: #ff8f4d; margin-bottom: 10px;
}
.vignette h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; }
.vignette p { color: #cbbdae; font-size: 15px; flex: 1; }
.vignette blockquote {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #3d2f23;
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: #f0e7dd;
}
.vignette cite { display: block; margin-top: 8px; font-style: normal; font-size: 12.5px; color: #8f7f6f; }

/* pricing */
.pricing { background: var(--cream); }
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    align-items: stretch;
    max-width: 940px;
    margin: 0 auto;
}
.price-card {
    border-radius: 26px;
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
}
.price-card.them { background: var(--cream-deep); border: 1px solid var(--paper-line); color: var(--ink-soft); }
.price-card.them h3 { font-family: var(--serif); color: var(--ink); font-size: 22px; margin-bottom: 6px; }
.price-card.them .amount { font-family: var(--serif); font-size: 44px; color: var(--ink); font-weight: 800; }
.price-card.them .amount small { font-size: 16px; color: var(--ink-faint); font-weight: 600; }
.price-card.us {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 30px 70px rgba(217, 72, 15, .35);
    position: relative;
    overflow: hidden;
}
.price-card.us::before {
    content: "";
    position: absolute; inset: 0;
    background: url("assets/tracing.png") center/900px repeat;
    opacity: .18;
    pointer-events: none;
}
.price-card.us > * { position: relative; }
.price-card.us h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 6px; }
.launch-chip {
    display: inline-block;
    background: rgba(255,255,255,.2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 14px;
}
.price-card.us .amount { font-family: var(--serif); font-size: 74px; font-weight: 800; line-height: 1; }
.price-card.us .amount s { font-size: 26px; opacity: .65; font-weight: 600; margin-right: 10px; }
.price-card.us .once { font-size: 15px; font-weight: 700; opacity: .95; margin-top: 4px; }
.price-list { margin: 26px 0 30px; display: grid; gap: 11px; }
.price-list li { list-style: none; padding-left: 28px; position: relative; font-size: 15.5px; }
.price-card.us .price-list li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
.price-card.them .price-list li::before { content: "—"; position: absolute; left: 0; color: var(--ink-faint); }
.btn.invert { background: #fff; color: var(--brand-deep); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn.invert:hover { background: #fff7ee; }
.price-fine { margin-top: 14px; font-size: 12.5px; opacity: .85; }

/* faq */
.faq { background: var(--cream-deep); border-top: 1px solid var(--paper-line); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
    border-bottom: 1px solid var(--paper-line);
    padding: 6px 0;
}
.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    padding: 18px 34px 18px 0;
    list-style: none;
    position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute; right: 4px; top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--brand);
    transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 0 20px; color: var(--ink-soft); font-size: 15.5px; max-width: 660px; }

/* final cta */
.finale {
    background: var(--grad);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0;
}
.finale::before {
    content: "";
    position: absolute; inset: 0;
    background: url("assets/tracing.png") center/1000px repeat;
    opacity: .3;
    pointer-events: none;
}
.finale > .wrap { position: relative; }
.finale .display { color: #fff; }
.finale .sub { color: rgba(255,255,255,.92); margin: 20px auto 36px; }
.finale .hero-note { color: rgba(255,255,255,.75); }

/* footer */
footer { background: #221a13; color: #8f7f6f; padding: 54px 0; font-size: 14px; }
.foot { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.foot .logo { color: #f0e7dd; }
.foot-links { margin-left: auto; display: flex; gap: 22px; }
.foot-links a { text-decoration: none; }
.foot-links a:hover { color: #f0e7dd; }
.foot-note { width: 100%; margin-top: 18px; font-size: 12.5px; }

/* reveals */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* responsive */
@media (max-width: 900px) {
    section { padding: 80px 0; }
    .problem-grid { grid-template-columns: 1fr; gap: 50px; }
    .step-grid { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr; }
    .tile.span3, .tile.span2, .tile.span4 { grid-column: span 1; }
    .vignette-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-inner > .btn { margin-left: auto; }
    .phones { height: auto; display: flex; flex-direction: column; align-items: center; gap: 26px; }
    .phones .phone { position: static; transform: none; width: min(300px, 78vw); }
}
