:root {
  --ink: #11110f;
  --paper: #f4f2ea;
  --white: #fffef9;
  --muted: #6d6c65;
  --line: rgba(17, 17, 15, .18);
  --accent: #ffcd38;
  --accent-soft: #ffe792;
  --max: 1240px;
  --pad: clamp(22px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif; font-size: 17px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 16px; background: var(--accent); color: var(--ink); transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; height: 88px; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.22); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: 19px; letter-spacing: 0; }
.brand-mark { width: 29px; height: 29px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; }
.brand-mark span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 500; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .25s ease; }
.site-nav > a:hover::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 22px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.55); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 12px 8px; }
.menu-button span { display: block; height: 1px; background: currentColor; margin: 7px 0; transition: transform .25s ease; }

.hero { position: relative; min-height: 720px; height: 100svh; overflow: hidden; color: var(--white); background: #181816; }
.hero-backdrop { position: absolute; inset: -9%; filter: blur(9px) saturate(.65); transform: scale(1.07); opacity: .67; }
.site-shot { position: absolute; overflow: hidden; border: 10px solid rgba(255,255,255,.9); background: white; box-shadow: 0 24px 80px rgba(0,0,0,.45); animation: drift 16s ease-in-out infinite alternate; }
.site-shot img { width: 100%; height: 100%; object-fit: cover; }
.shot-one { width: 54%; height: 50%; left: -2%; top: 7%; transform: rotate(-5deg); }
.shot-two { width: 56%; height: 59%; right: -4%; top: 9%; transform: rotate(5deg); animation-delay: -6s; }
.shot-three { width: 46%; height: 40%; left: 29%; bottom: -7%; transform: rotate(1deg); animation-delay: -11s; }
@keyframes drift { from { translate: 0 -6px; } to { translate: 0 15px; } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,10,.91) 0%, rgba(11,11,10,.72) 42%, rgba(11,11,10,.22) 76%), linear-gradient(0deg, rgba(11,11,10,.62) 0%, transparent 44%); }
.hero-inner { position: relative; z-index: 2; height: 100%; max-width: var(--max); margin: 0 auto; padding: clamp(150px, 23vh, 220px) var(--pad) 110px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow { margin: 0 0 22px; color: var(--accent); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.hero h1 { max-width: 940px; margin: 0; font: 500 clamp(52px, 7.1vw, 104px)/.99 "Avenir Next", "Helvetica Neue", Arial, sans-serif; letter-spacing: 0; }
.hero h1 span { color: var(--accent); }
.hero-copy { max-width: 610px; margin: 30px 0 0; color: rgba(255,255,255,.83); font-size: clamp(17px, 1.55vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 14px 19px; border: 1px solid transparent; border-radius: 0; cursor: pointer; font-size: 15px; font-weight: 600; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--ink); }
.button-primary:hover { background: var(--accent-soft); }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 15px; font-weight: 600; }
.hero-note { position: absolute; z-index: 2; right: var(--pad); bottom: 28px; display: flex; gap: 28px; align-items: center; font-size: 13px; color: rgba(255,255,255,.7); }
.hero-reveal { opacity: 0; transform: translateY(22px); animation: heroIn .7s cubic-bezier(.2,.65,.2,1) forwards; }
.hero-reveal:nth-child(2) { animation-delay: .08s; }
.hero-reveal:nth-child(3) { animation-delay: .17s; }
.hero-reveal:nth-child(4) { animation-delay: .25s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.section { padding: clamp(90px, 11vw, 150px) var(--pad); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-kicker { display: flex; align-items: center; gap: 18px; margin-bottom: 70px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.section-kicker span { color: var(--ink); }
.display { margin: 0; font: 500 clamp(42px, 5.4vw, 76px)/1.07 "Avenir Next", "Helvetica Neue", Arial, sans-serif; letter-spacing: 0; }
.intro-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(50px, 8vw, 110px); align-items: end; }
.intro-copy p { margin: 0 0 20px; color: #43433e; }
.process-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 110px; padding: 0; border-top: 1px solid var(--line); }
.process-list li { padding: 28px 38px 0 0; border-right: 1px solid var(--line); }
.process-list li + li { padding-left: 38px; }
.process-list li:last-child { border-right: 0; }
.process-list span { font-size: 12px; color: var(--muted); }
.process-list h3 { margin: 38px 0 13px; font: 600 25px "Avenir Next", "Helvetica Neue", Arial, sans-serif; }
.process-list p { margin: 0; max-width: 300px; color: var(--muted); font-size: 15px; }

.benefits { background: var(--white); }
.benefits-intro { display: grid; grid-template-columns: 1.15fr .65fr; gap: clamp(50px, 8vw, 110px); align-items: end; }
.benefits-intro .display span { color: #8b8980; }
.benefits-copy p { margin: 0 0 20px; color: #4e4d47; }
.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 95px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-list article { min-height: 280px; padding: clamp(26px, 4vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-number { color: #8b8980; font-size: 12px; }
.benefit-list h3 { margin: 50px 0 13px; font: 600 24px "Avenir Next", "Helvetica Neue", Arial, sans-serif; }
.benefit-list p { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; }

.dark-band { max-width: none; background: var(--ink); color: var(--white); }
.dark-band > * { max-width: var(--max); }
.statement-label { margin-bottom: 65px; color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: .11em; }
.statement-text { margin-top: 0; margin-bottom: 0; font: 500 clamp(48px, 7vw, 98px)/1.08 "Avenir Next", "Helvetica Neue", Arial, sans-serif; letter-spacing: 0; }
.statement-text span { color: #77766e; }

.pricing-head { display: grid; grid-template-columns: 1.1fr .5fr; gap: 80px; align-items: end; }
.pricing-head > p { color: var(--muted); margin: 0 0 5px; }
.pricing-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 80px; border: 1px solid var(--line); background: var(--white); }
.price-plan { position: relative; padding: clamp(30px, 4vw, 54px); }
.price-plan + .price-plan { border-left: 1px solid var(--line); }
.price-plan.featured { background: var(--accent); }
.popular-label { position: absolute; top: 0; right: 0; padding: 9px 13px; background: var(--ink); color: var(--white); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.plan-top { min-height: 155px; display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.plan-name { margin: 0 0 10px; font: 600 28px "Avenir Next", "Helvetica Neue", Arial, sans-serif; }
.plan-fit { max-width: 250px; margin: 0; color: var(--muted); font-size: 14px; }
.featured .plan-fit { color: #555142; }
.price { flex: 0 0 auto; margin: 0; color: var(--muted); font-size: 13px; white-space: nowrap; }
.price span { color: var(--ink); font: 600 clamp(45px, 5vw, 68px)/1 "Avenir Next", "Helvetica Neue", Arial, sans-serif; }
.feature-list { list-style: none; margin: 28px 0 38px; padding: 0; }
.feature-list li { position: relative; padding: 11px 0 11px 29px; border-bottom: 1px solid var(--line); font-size: 15px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: #3b703e; font-weight: 700; }
.button-outline { width: 100%; border-color: var(--ink); }
.button-outline:hover, .button-dark { background: var(--ink); color: var(--white); }
.button-dark { width: 100%; }
.button-dark:hover { background: #34342f; }
.pricing-note { margin-top: 22px; color: var(--muted); font-size: 14px; text-align: center; }

.about { display: grid; grid-template-columns: minmax(280px, .76fr) 1fr; gap: clamp(55px, 10vw, 150px); align-items: center; max-width: calc(var(--max) + 2 * var(--pad)); margin: auto; }
.portrait-wrap { position: relative; overflow: hidden; background: #c7b7a3; aspect-ratio: .76; }
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.02); }
.portrait-caption { position: absolute; left: 20px; bottom: 20px; padding: 9px 12px; background: var(--accent); font-size: 12px; line-height: 1.3; text-transform: uppercase; letter-spacing: .06em; }
.about-copy { max-width: 600px; }
.about-copy .section-kicker { margin-bottom: 50px; }
.about-copy .lead { margin: 42px 0 18px; font-size: 21px; color: var(--ink); }
.about-copy > p:not(.lead) { color: var(--muted); }
.about-copy .text-link { margin-top: 18px; }

.faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(50px, 9vw, 130px); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; position: relative; padding: 24px 48px 24px 0; cursor: pointer; font: 600 18px "Avenir Next", "Helvetica Neue", Arial, sans-serif; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span, .accordion summary span::after { position: absolute; content: ""; width: 16px; height: 1px; right: 3px; top: 50%; background: currentColor; transition: transform .25s ease; }
.accordion summary span::after { right: 0; top: 0; transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 650px; margin: -4px 44px 25px 0; color: var(--muted); font-size: 15px; }

.contact { display: grid; grid-template-columns: minmax(0, 450px) minmax(0, 620px); justify-content: center; gap: clamp(50px, 9vw, 135px); max-width: none; margin: auto; background: var(--accent); }
.contact > * { max-width: none; margin: 0; }
.contact-heading .section-kicker { margin-bottom: 50px; }
.contact-heading > p:last-child { max-width: 450px; margin-top: 35px; color: #555142; }
.contact-form { display: flex; flex-direction: column; gap: 27px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label, .contact-form legend { color: #4e4b3f; font-size: 13px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea { width: 100%; display: block; border: 0; border-bottom: 1px solid rgba(17,17,15,.45); border-radius: 0; padding: 10px 0; color: var(--ink); background: transparent; outline: none; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); box-shadow: 0 1px 0 var(--ink); }
.contact-form fieldset { margin: 0; padding: 0; border: 0; }
.package-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.package-options label { cursor: pointer; }
.package-options input { position: absolute; opacity: 0; }
.package-options span { display: flex; gap: 8px; align-items: center; min-height: 44px; padding: 9px 13px; border: 1px solid rgba(17,17,15,.4); color: var(--ink); }
.package-options input:checked + span { background: var(--ink); color: var(--white); }
.package-options small { font-size: 11px; opacity: .72; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; line-height: 1.45; }
.consent input { width: 17px; height: 17px; accent-color: var(--ink); margin-top: 2px; }
.consent a { text-decoration: underline; }
.contact-form .button { align-self: flex-start; background: var(--ink); color: var(--white); min-width: 215px; }
.form-note { margin: -16px 0 0; color: #625e4d; font-size: 11px; }

.site-footer { padding: 80px var(--pad) 25px; color: var(--white); background: var(--ink); }
.footer-main, .footer-grid, .footer-bottom { max-width: var(--max); margin: 0 auto; }
.brand-footer { font-size: 24px; }
.footer-main > p { color: #939189; }
.footer-mail { display: inline-block; margin-top: 45px; font: 500 clamp(28px, 5vw, 62px) "Avenir Next", "Helvetica Neue", Arial, sans-serif; border-bottom: 1px solid #5f5e58; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-top: 100px; padding-top: 30px; border-top: 1px solid #353530; }
.footer-grid div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a, .footer-grid p { margin: 2px 0; color: #aaa89e; font-size: 14px; }
.footer-grid a:hover { color: var(--accent); }
.footer-label { color: var(--white) !important; margin-bottom: 14px !important; text-transform: uppercase; font-size: 11px !important; letter-spacing: .09em; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 70px; padding-top: 20px; border-top: 1px solid #353530; color: #77766e; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { background: var(--white); }
.legal-header { position: relative; color: var(--ink); border-color: var(--line); }
.legal-main { max-width: 820px; margin: 0 auto; padding: 150px var(--pad) 100px; }
.legal-main h1 { font: 500 clamp(44px, 6vw, 72px)/1.05 "Avenir Next", "Helvetica Neue", Arial, sans-serif; }
.legal-main h2 { margin-top: 50px; font: 600 24px "Avenir Next", "Helvetica Neue", Arial, sans-serif; }
.legal-main p, .legal-main li { color: #55554f; }
.legal-main .eyebrow { color: var(--muted); }
.legal-main a { text-decoration: underline; }
.legal-note { padding: 16px 18px; background: var(--paper); border-left: 3px solid var(--accent); }

@media (max-width: 920px) {
  .site-header { height: 74px; }
  .menu-button { display: block; color: inherit; cursor: pointer; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 74px 0 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 35px var(--pad); background: var(--ink); color: var(--white); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: .25s ease; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid #393934; font: 500 25px "Avenir Next", "Helvetica Neue", Arial, sans-serif; }
  .site-nav .nav-cta { margin-top: 20px; padding: 13px 16px; font-size: 16px; }
  .intro-grid, .benefits-intro, .pricing-head, .faq-layout, .contact { grid-template-columns: 1fr; }
  .intro-grid { align-items: start; }
  .intro-copy { max-width: 640px; }
  .pricing-head > p { max-width: 530px; }
  .about { gap: 55px; }
  .contact { gap: 75px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .hero { min-height: 680px; height: min(820px, 100svh); }
  .hero-backdrop { inset: -3%; }
  .shot-one { width: 90%; height: 42%; left: -20%; top: 9%; }
  .shot-two { width: 88%; height: 50%; right: -25%; top: 34%; }
  .shot-three { width: 80%; height: 34%; left: 2%; bottom: -7%; }
  .hero-shade { background: linear-gradient(90deg, rgba(11,11,10,.92), rgba(11,11,10,.58)), linear-gradient(0deg, rgba(11,11,10,.7), transparent 50%); }
  .hero-inner { padding-top: 110px; padding-bottom: 95px; justify-content: center; }
  .hero h1 { font-size: clamp(44px, 14vw, 66px); }
  .hero-copy { margin-top: 24px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 28px; }
  .hero-note { left: var(--pad); right: auto; bottom: 18px; }
  .section-kicker { margin-bottom: 45px; }
  .display { font-size: clamp(39px, 11vw, 54px); }
  .process-list { grid-template-columns: 1fr; margin-top: 70px; }
  .process-list li, .process-list li + li { padding: 25px 0 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list h3 { margin: 13px 0 8px; }
  .statement-text { font-size: 11.4vw; }
  .benefit-list { grid-template-columns: 1fr; margin-top: 65px; }
  .benefit-list article { min-height: 0; }
  .benefit-list h3 { margin-top: 28px; }
  .pricing-row { grid-template-columns: 1fr; margin-top: 55px; }
  .price-plan + .price-plan { border-left: 0; border-top: 1px solid var(--line); }
  .plan-top { min-height: 0; flex-direction: column; padding-bottom: 28px; }
  .about { grid-template-columns: 1fr; }
  .portrait-wrap { aspect-ratio: .9; }
  .portrait-wrap img { object-position: center 32%; }
  .about-copy { padding: 0 var(--pad) clamp(90px, 11vw, 150px); }
  .about { padding-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .package-options { flex-direction: column; }
  .package-options label, .package-options span { width: 100%; }
  .footer-mail { font-size: 7.1vw; }
  .footer-grid { grid-template-columns: 1fr; row-gap: 42px; }
  .footer-bottom { margin-top: 55px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-reveal, .reveal { opacity: 1; transform: none; }
}
