:root {
  --paper: #f5f0e8;
  --paper-bright: #fffdf8;
  --ink: #17201d;
  --muted: #626863;
  --green: #314d40;
  --green-dark: #20372d;
  --orange: #f49a0a;
  --pink: #ead8dc;
  --line: rgba(23, 32, 29, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.order-header,
main,
footer {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.order-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo-link {
  display: block;
  line-height: 0;
}

.header-logo {
  width: clamp(210px, 23vw, 290px);
  height: auto;
  display: block;
}

.header-link {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.login-button {
  padding: 10px 17px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.login-button:hover {
  transform: translateY(-1px);
  background: var(--green-dark);
  box-shadow: 0 9px 18px rgba(32, 55, 45, 0.16);
}

.login-button:focus-visible {
  outline: 3px solid rgba(244, 154, 10, 0.48);
  outline-offset: 3px;
}

.order-hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-bright);
  box-shadow: 0 26px 70px rgba(42, 48, 43, 0.12);
}

.hero-copy {
  z-index: 1;
  padding: clamp(44px, 7vw, 104px) clamp(32px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 0 100%, rgba(244, 154, 10, 0.11), transparent 32%),
    var(--paper-bright);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 6.9vw, 7.2rem);
  line-height: 0.91;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.offer-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 34px;
}

.offer-row > div { display: grid; }

.offer-price {
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1;
}

.offer-price sup { font-size: 1.15rem; vertical-align: 0.9em; }
.offer-price small { font-size: 0.72rem; letter-spacing: 0.08em; }

.offer-label {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.primary-button,
.submit-button {
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.primary-button { padding: 15px 22px; }

.primary-button:hover,
.submit-button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 12px 22px rgba(32, 55, 45, 0.18);
}

.primary-button:focus-visible,
.submit-button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 154, 10, 0.48);
  outline-offset: 3px;
}

.offer-note {
  max-width: 570px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.hero-photo {
  position: relative;
  margin: 0;
  min-height: 620px;
  background: #ebe4df;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 45%;
}

.hero-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
}

.founder-strip {
  margin: 38px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-strip p {
  margin: 0;
  padding: 28px 34px;
  display: grid;
  gap: 6px;
}

.founder-strip p + p { border-left: 1px solid var(--line); }
.founder-strip strong { font-size: 0.91rem; }
.founder-strip span { color: var(--muted); font-size: 0.87rem; line-height: 1.45; }

.story-section,
.request-section {
  padding: clamp(86px, 12vw, 160px) 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
}

.section-heading h2 { max-width: 8ch; }

.story-copy {
  align-self: end;
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.4;
}

.story-copy p { margin: 0; }
.story-copy p + p { margin-top: 28px; color: var(--muted); }

.request-section {
  margin-bottom: 60px;
  padding-inline: clamp(24px, 6vw, 86px);
  border-radius: 28px;
  color: white;
  background: var(--green-dark);
}

.request-intro { align-self: start; }
.request-intro .eyebrow { color: #d9b7bf; }
.request-intro h2 { max-width: 8ch; }

.request-intro > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.price-card {
  max-width: 470px;
  margin-top: 40px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.price-card p { margin: 0; }
.price-card .price-card-label { color: #d9b7bf; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.price-card .price-card-price { margin: 8px 0 12px; color: white; font-size: 2.3rem; font-weight: 800; }
.price-card p:last-child { color: rgba(255, 255, 255, 0.66); font-size: 0.87rem; line-height: 1.55; }

.request-form {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 22px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
}

.form-heading {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.form-heading p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.form-heading span { color: var(--muted); font-size: 0.72rem; }

.field { display: grid; gap: 8px; margin-bottom: 19px; }
.field > span { font-size: 0.77rem; font-weight: 800; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea { resize: vertical; }

.consent-field {
  margin: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.consent-field input { width: auto; margin-top: 3px; }
.honeypot { position: absolute; left: -10000px; }

.submit-button {
  width: 100%;
  margin-top: 14px;
  padding: 15px 20px;
}

.submit-button:disabled { cursor: wait; opacity: 0.6; transform: none; }

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 800;
  text-align: center;
}

.form-status.is-error { color: #9b382d; }

.privacy-note {
  margin: 8px auto 0;
  max-width: 480px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

footer {
  padding: 28px 0 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-logo-link {
  width: fit-content;
  line-height: 0;
}

.footer-logo {
  width: clamp(210px, 23vw, 290px);
  height: auto;
  display: block;
}

footer p { margin: 0; }

@media (max-width: 900px) {
  .order-hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 560px; }
  .founder-strip { grid-template-columns: 1fr; }
  .founder-strip p + p { border-left: 0; border-top: 1px solid var(--line); }
  .story-section,
  .request-section { grid-template-columns: 1fr; }
  .section-heading h2,
  .request-intro h2 { max-width: 11ch; }
}

@media (max-width: 600px) {
  .order-header,
  main,
  footer { width: min(100% - 24px, 1240px); }
  .order-header { min-height: 66px; }
  .header-actions { gap: 13px; }
  .header-link { display: none; }
  .order-hero { border-radius: 19px; }
  .hero-copy { padding: 42px 23px 46px; }
  h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  .hero-photo { min-height: 470px; }
  .founder-strip p { padding: 22px 8px; }
  .story-section { padding: 90px 8px; }
  .request-section { padding: 62px 14px 14px; border-radius: 19px; }
  .request-form { margin-top: 12px; padding: 24px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { display: grid; gap: 7px; }
  footer { grid-template-columns: 1fr; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
