/* =========================================================================
   One Story One Song - editorial design system
   Deep green + warm cream, literary serif, real photography.
   ========================================================================= */

:root {
  --green:      #234034;   /* primary dark band */
  --green-deep: #1A2F26;
  --green-line: #33564733;
  --cream:      #F3ECDD;   /* warm section */
  --cream-soft: #F8F2E7;
  --page:       #FBF7EE;
  --ink:        #24211B;
  --ink-soft:   #55504733;
  --ink-body:   #4C473E;
  --paper:      #FFFFFF;
  --clay:       #BB5A2B;   /* warm terracotta accent + primary button */
  --clay-deep:  #9E4A22;
  --line:       #24211B1F;
  --line-cream: #24211B14;

  --serif: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1160px;
  --wrap-narrow: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 .4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
em, .ital { font-style: italic; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(60px, 8vw, 108px) 0; }
.section--green { background: var(--green); color: var(--cream); }
.section--green h1, .section--green h2, .section--green h3 { color: var(--cream); }
.section--cream { background: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 20px;
}
.section--green .eyebrow { color: #D8B48A; }
.lede { font-size: 1.22rem; line-height: 1.55; color: var(--ink-body); max-width: 46ch; }
.section--green .lede { color: #E8E0CF; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---- Buttons: rectangular, uppercase, letterspaced --------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 18px 36px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  line-height: 1;
}
.btn--primary { background: var(--clay); color: #fff; }
.btn--primary:hover { background: var(--clay-deep); transform: translateY(-1px); }
.btn--cream { background: var(--cream); color: var(--green); }
.btn--cream:hover { background: #fff; }
.btn--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); }
.btn--outline-cream { background: transparent; border-color: #ffffff66; color: var(--cream); }
.btn--outline-cream:hover { border-color: var(--cream); }
.btn--lg { padding: 20px 42px; font-size: .84rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.textlink { font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1.5px solid currentColor; padding-bottom: 3px; }
.note { font-size: .92rem; color: var(--ink-body); margin-top: 16px; }
.section--green .note { color: #C9C0AE; }

/* ---- Header ------------------------------------------------------------ */
.site-header { background: var(--page); border-bottom: 1px solid var(--line-cream); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { font-family: var(--sans); font-size: .92rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--ink); }
.brand .amp { font-family: var(--serif); font-style: italic; letter-spacing: 0; text-transform: none; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-body); font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 12px 22px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.4rem; cursor: pointer; color: var(--ink); letter-spacing: 0; }

/* ---- Hero (split: green copy + photo) ---------------------------------- */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(440px, calc(100vh - 210px), 700px); background: var(--green); }
.hero-copy { color: var(--cream); display: flex; align-items: center; padding: clamp(28px,3.6vw,54px) clamp(30px,5vw,72px); }
.hero-inner { max-width: 560px; margin-left: auto; }
.hero-copy .eyebrow { color: #E5B685; margin-bottom: 16px; }
.hero-copy h1 { color: var(--cream); max-width: 14ch; margin-bottom: .26em; font-size: clamp(2.4rem, 4.4vw, 3.8rem); }
.hero-copy .lede { max-width: 44ch; margin-bottom: 26px; color: #E8E0CF; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center; }
.hero-media { position: relative; overflow: hidden; background: var(--green-deep); min-height: 0; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-trust { margin-top: 22px; display: flex; align-items: center; gap: 12px; font-size: .95rem; color: #E8E0CF; flex-wrap: wrap; }
.hero-trust .stars { color: #E8A55A; letter-spacing: 2px; font-size: 1rem; }
.hero-trust b { color: #fff; font-weight: 600; }

/* ---- Value strip ------------------------------------------------------- */
.valuestrip { background: var(--cream); border-bottom: 1px solid var(--line-cream); }
.valuestrip .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 30px; padding: 26px; }
.value-item { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-body); font-weight: 600; }
.value-sep { color: var(--clay); }

/* ---- Big statement ----------------------------------------------------- */
.statement { text-align: center; }
.statement h2 { font-size: clamp(2.2rem, 5.4vw, 4rem); max-width: 18ch; margin: 0 auto; line-height: 1.05; }
.statement .accent { color: var(--clay); font-style: italic; }
.section--green .statement .accent { color: #E5B685; }

/* ---- How it works ------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; border-top: 1px solid var(--line); }
.step { padding: 40px 30px 8px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step .idx { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--clay); line-height: 1; margin-bottom: 20px; }
.step h3 { margin-bottom: 12px; }
.step p { color: var(--ink-body); font-size: 1rem; }
.step--mark h3 { color: var(--clay); }

/* ---- Featured song player ---------------------------------------------- */
.player-card { max-width: 620px; margin: 40px auto 0; background: #ffffff10; border: 1px solid #ffffff26; border-radius: 6px; padding: 30px 30px 26px; }
.player-card .track-name { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-bottom: 4px; }
.player-card .track-sub { font-size: .92rem; color: #C9C0AE; margin-bottom: 20px; }
.player-card audio { width: 100%; }
.player-card .track-tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #D8B48A; margin-bottom: 16px; }

/* ---- Split (feature + photo) ------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.split--photo-left .split-media { order: -1; }
.split-media { overflow: hidden; border-radius: 4px; }
.split-media img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; }
.photo-band { width: 100%; height: clamp(300px, 44vh, 520px); overflow: hidden; background: var(--green-deep); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 24px; }
.feature-list li { border-top: 1px solid var(--line); padding-top: 20px; }
.feature-list h3 { font-size: 1.3rem; margin-bottom: 6px; }
.feature-list p { margin: 0; color: var(--ink-body); font-size: 1rem; }

/* ---- Pricing ----------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 840px; margin: 56px auto 0; }
.plan { background: var(--paper); border: 1px solid var(--line); padding: 40px 36px; display: flex; flex-direction: column; }
.plan--featured { background: var(--green); color: var(--cream); border-color: var(--green); }
.plan .kicker { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-body); font-weight: 600; margin-bottom: 18px; }
.plan--featured .kicker { color: #D8B48A; }
.plan .price { font-family: var(--serif); font-size: 3.4rem; line-height: 1; margin-bottom: 4px; }
.plan .price sup { font-size: 1.2rem; vertical-align: super; }
.plan .price-sub { font-size: .95rem; color: var(--ink-body); margin-bottom: 26px; }
.plan--featured .price-sub { color: #C9C0AE; }
.plan ul { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px; }
.plan li { display: flex; gap: 12px; font-size: 1rem; color: var(--ink-body); line-height: 1.4; }
.plan--featured li { color: #E8E0CF; }
.plan li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 8px; background: var(--clay); border-radius: 50%; }
.plan--featured li::before { background: #D8B48A; }
.plan .btn { margin-top: auto; }
.pay-note { text-align: center; margin-top: 30px; color: var(--ink-body); font-size: .9rem; letter-spacing: .04em; }

/* ---- Testimonials ------------------------------------------------------ */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 56px; background: var(--line); border: 1px solid var(--line); }
.quote { background: var(--cream); padding: 40px 38px; }
.section--green .quotes { background: #ffffff1f; border-color: #ffffff1f; }
.section--green .quote { background: var(--green); }
.quote .qh { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 14px; line-height: 1.15; }
.section--green .quote .qh { color: var(--cream); }
.quote p { font-size: 1.06rem; color: var(--ink-body); line-height: 1.55; }
.section--green .quote p { color: #E8E0CF; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote .who .ini { width: 40px; height: 40px; border-radius: 50%; background: var(--clay); color: #fff; display: grid; place-items: center; font-size: .9rem; font-weight: 600; flex: none; }
.quote .who .av { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.quote .who span { font-size: .9rem; color: var(--ink-body); }
.section--green .quote .who span { color: #C9C0AE; }

/* ---- FAQ --------------------------------------------------------------- */
.faq { max-width: var(--wrap-narrow); margin: 44px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 24px 44px 24px 0; font-family: var(--serif); font-size: 1.4rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 22px; font-size: 1.6rem; color: var(--clay); transition: transform .2s; font-family: var(--sans); font-weight: 300; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-body); padding: 0 44px 24px 0; margin: 0; font-size: 1.02rem; }

/* ---- Final CTA --------------------------------------------------------- */
.finalcta { text-align: center; }
.finalcta h2 { max-width: 16ch; margin: 0 auto .5em; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--green-deep); color: #B9B3A4; padding: 66px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: var(--cream); display: inline-block; margin-bottom: 14px; }
.footer-about p { font-size: .98rem; max-width: 32ch; color: #A7A192; }
.site-footer h4 { color: var(--cream); font-family: var(--sans); font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; margin: 0 0 18px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer a { color: #B9B3A4; font-size: .96rem; }
.site-footer a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid #ffffff1a; margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: #837D70; letter-spacing: .04em; }

/* =========================================================================
   Order / questionnaire
   ========================================================================= */
.order-head { background: var(--green); color: var(--cream); padding: clamp(52px,7vw,88px) 0 clamp(44px,6vw,64px); text-align: center; }
.order-head h1 { color: var(--cream); max-width: 16ch; margin: 0 auto .3em; }
.order-head .lede { margin: 0 auto; color: #E8E0CF; }
.order-head .eyebrow { color: #D8B48A; }

.form-wrap { max-width: var(--wrap-narrow); margin: 0 auto; }
.fieldset { border: 0; border-top: 2px solid var(--ink); padding: 0; margin: 0 0 52px; }
.fs-head { display: flex; align-items: baseline; gap: 16px; padding-top: 22px; margin-bottom: 6px; }
.fs-head .idx { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--clay); line-height: 1; }
.fs-head h2 { font-size: 1.9rem; margin: 0; }
.fs-sub { color: var(--ink-body); margin: 0 0 28px; font-size: 1rem; }

.field { margin-bottom: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
label { display: block; font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 9px; color: var(--ink); }
label .opt { font-weight: 400; letter-spacing: 0; text-transform: none; color: #8A8477; font-size: .82rem; }
.req { color: var(--clay); }
input[type=text], input[type=email], input[type=date], select, textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 3px;
  background: var(--paper); transition: border-color .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); }
textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.hint { font-size: .88rem; color: #8A8477; margin-top: 7px; }

.plan-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan-choice label { border: 1.5px solid var(--line); border-radius: 3px; padding: 20px; cursor: pointer; margin: 0; text-transform: none; letter-spacing: 0; }
.plan-choice input { position: absolute; opacity: 0; }
.plan-choice label:has(input:checked) { border-color: var(--green); background: var(--cream-soft); }
.plan-choice .pc-name { font-family: var(--serif); font-size: 1.3rem; display: block; }
.plan-choice .pc-desc { color: var(--ink-body); font-size: .92rem; margin-top: 4px; }

.form-submit { text-align: center; padding-top: 8px; }
.form-reassure { color: #8A8477; font-size: .92rem; margin-top: 16px; letter-spacing: .02em; }

.alert { background: #fbeae2; border: 1px solid #e2b199; color: #8a3d1c; padding: 16px 20px; border-radius: 3px; margin-bottom: 30px; }

/* Thank you */
.ty { text-align: center; max-width: 660px; margin: 0 auto; }
.ty .kicker { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--clay); margin-bottom: 14px; }
.ty-steps { text-align: left; border-top: 2px solid var(--ink); margin-top: 40px; }
.ty-steps li { padding: 22px 0; border-bottom: 1px solid var(--line); color: var(--ink-body); list-style: none; display: flex; gap: 18px; }
.ty-steps .idx { font-family: var(--serif); font-style: italic; color: var(--clay); font-size: 1.3rem; flex: none; }
.ty-steps ol, .ty-steps ul { margin: 0; padding: 0; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; height: clamp(280px, 42vh, 420px); }
  .hero-inner { margin-left: 0; max-width: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); padding: 30px 0 26px; }
  .split { grid-template-columns: 1fr; }
  .split--photo-left .split-media { order: 0; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: flex-start; background: var(--page); padding: 22px 26px; gap: 20px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .plan-choice, .valuestrip .wrap { grid-template-columns: 1fr; }
  .value-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
