:root {
  --plum: #392439;
  --plum-deep: #241724;
  --porcelain: #dce9e7;
  --pistachio: #b8c79d;
  --apricot: #f2a97e;
  --paper: #fffaf1;
  --ink: #30242d;
  --line: rgba(48, 36, 45, 0.2);
  --display: Georgia, "Times New Roman", serif;
  --body: "Segoe UI", Tahoma, sans-serif;
  --utility: "Lucida Console", Monaco, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
address { font-style: normal; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--paper);
  color: var(--plum);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--apricot); outline-offset: 4px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
}
.brand { display: flex; align-items: center; gap: 0.65rem; font-weight: 600; line-height: 1.05; }
.brand i { display: block; font-family: var(--display); font-weight: 400; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.55);
  border-radius: 50%;
  font-family: var(--display);
  font-style: italic;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.6vw, 2.5rem); font-size: 0.88rem; }
.site-nav a:not(.nav-call) { border-bottom: 1px solid transparent; }
.site-nav a:not(.nav-call):hover { border-color: currentColor; }
.nav-call { padding: 0.7rem 1.2rem; border: 1px solid rgba(255, 250, 241, 0.55); border-radius: 999px; }
.nav-call:hover { background: var(--paper); color: var(--plum); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  padding: 8rem clamp(1.25rem, 8vw, 8rem) 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.8fr);
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  color: var(--paper);
  background: var(--plum);
}
.hero::before {
  content: "";
  position: absolute;
  width: 65vw;
  height: 65vw;
  top: -45vw;
  left: -20vw;
  border: 1px solid rgba(255, 250, 241, 0.09);
  border-radius: 50%;
}
.hero-copy { position: relative; z-index: 2; max-width: 770px; }
.eyebrow {
  margin: 0 0 1.2rem;
  display: flex;
  gap: 1.2rem;
  color: currentColor;
  font-family: var(--utility);
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero .eyebrow span + span::before { content: "•"; margin-right: 1.2rem; color: var(--apricot); }
h1, h2, h3, p { text-wrap: balance; }
h1, h2, h3 { margin-top: 0; font-family: var(--display); font-weight: 400; line-height: 0.94; }
h1 { margin-bottom: 1.8rem; font-size: clamp(4rem, 8vw, 8.7rem); letter-spacing: -0.065em; }
h1 em, h2 em { color: var(--apricot); font-weight: 400; }
h1 em { position: relative; }
h1 em::after { content: ""; position: absolute; left: 4%; right: 0; bottom: 0.04em; height: 2px; background: var(--apricot); transform: rotate(-2deg); }
.hero-lead { max-width: 560px; margin: 0 0 2rem; color: rgba(255, 250, 241, 0.76); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.button {
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--apricot); color: var(--plum-deep); }
.button-primary:hover { background: var(--paper); }
.text-link { padding-bottom: 0.15rem; border-bottom: 1px solid currentColor; font-weight: 650; }

.hero-art { position: relative; z-index: 1; width: min(37vw, 560px); justify-self: end; transform: rotate(2.5deg); }
.hero-art::before { content: ""; position: absolute; inset: -8%; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; transform: rotate(-9deg); }
.hero-art img { width: 100%; filter: drop-shadow(0 30px 50px rgba(10, 5, 10, 0.25)); }
.art-note {
  position: absolute;
  padding: 0.75rem;
  color: var(--plum-deep);
  background: var(--porcelain);
  font-family: var(--utility);
  font-size: 0.65rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50%;
  transform: rotate(-8deg);
}
.note-one { width: 96px; height: 96px; display: grid; place-items: center; left: -8%; top: 13%; }
.note-two { right: -4%; bottom: 7%; width: 82px; height: 82px; display: grid; place-items: center; background: var(--pistachio); transform: rotate(8deg); }
.scroll-cue { position: absolute; left: clamp(1.25rem, 8vw, 8rem); bottom: 2.4rem; font-family: var(--utility); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-cue span { margin-left: 0.7rem; color: var(--apricot); }

.section-shell { width: min(1240px, calc(100% - 2.5rem)); margin-inline: auto; }
.offer { padding-block: clamp(6rem, 11vw, 10rem); }
.section-intro { display: grid; grid-template-columns: 0.55fr 1.4fr 0.8fr; gap: 2rem; align-items: start; margin-bottom: clamp(3rem, 7vw, 6rem); }
.section-intro .eyebrow, .reviews .eyebrow, .contact .eyebrow { color: #6d5f67; }
h2 { margin-bottom: 0; font-size: clamp(3rem, 5.6vw, 6rem); letter-spacing: -0.055em; }
.section-intro > p:last-child { max-width: 340px; margin: 0; font-size: 1.05rem; }
.offer-grid { display: grid; grid-template-columns: 1.55fr 0.72fr; gap: 1.25rem; align-items: stretch; }
.offer-card { border-radius: 2px; overflow: hidden; }
.offer-card-main { min-height: 560px; display: grid; grid-template-columns: 1.05fr 0.95fr; background: var(--porcelain); }
.offer-image { min-height: 430px; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.offer-card-main:hover img { transform: scale(1.025); }
.offer-copy { align-self: end; padding: clamp(2rem, 4vw, 4rem); }
.card-label { display: block; margin-bottom: 2rem; font-family: var(--utility); font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase; }
.offer-card h3 { margin-bottom: 1.4rem; font-size: clamp(2.3rem, 3.7vw, 4.2rem); letter-spacing: -0.045em; }
.offer-card p { margin: 0; max-width: 360px; }
.offer-card-side { min-height: 560px; padding: clamp(2rem, 4vw, 4rem); display: flex; flex-direction: column; background: var(--pistachio); }
.offer-card-side h3 { margin-top: auto; }
.circle-link { width: 58px; height: 58px; margin-top: 2rem; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 1.35rem; transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.circle-link:hover { color: var(--paper); background: var(--plum); transform: rotate(45deg); }

.reviews { padding-block: clamp(6rem, 10vw, 9rem); color: var(--paper); background: var(--plum-deep); overflow: hidden; }
.reviews-heading { margin-bottom: 4rem; }
.reviews h2 { max-width: 870px; }
.reviews h2 em { color: var(--pistachio); }
.review-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.review-card { min-height: 330px; margin: 0; padding: clamp(1.7rem, 3.2vw, 3rem); display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,250,241,0.19); }
.review-card.featured { color: var(--plum-deep); background: var(--apricot); border-color: var(--apricot); transform: translateY(-1.5rem) rotate(-1deg); }
.review-card blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.55rem, 2.2vw, 2.35rem); line-height: 1.2; letter-spacing: -0.025em; }
.review-card figcaption { margin-top: 2rem; font-weight: 650; }
.review-card figcaption span { display: block; opacity: 0.65; font-family: var(--utility); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }

.contact { padding-block: clamp(6rem, 11vw, 10rem); display: grid; grid-template-columns: 0.88fr 1.12fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.contact h2 { margin-bottom: 4rem; }
.contact-list { border-top: 1px solid var(--line); }
.contact-list > div { padding: 1.25rem 0; display: grid; grid-template-columns: 115px 1fr; border-bottom: 1px solid var(--line); }
.contact-list span { font-family: var(--utility); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-list p, .contact-list address { margin: 0; }
.contact-list > div > a { grid-column: 2; width: max-content; margin-top: 0.5rem; border-bottom: 1px solid currentColor; }
.contact-list .phone { margin-top: 0; font-family: var(--display); font-size: 1.7rem; line-height: 1; }
.social-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.social-row a { border-bottom: 1px solid currentColor; }
.form-panel { padding: clamp(2rem, 5vw, 5rem); color: var(--paper); background: var(--plum); box-shadow: 22px 22px 0 var(--porcelain); }
.form-kicker { margin: 0 0 0.7rem; color: var(--apricot); font-family: var(--utility); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.form-panel h3 { margin-bottom: 1rem; font-size: clamp(2.5rem, 4vw, 4.2rem); }
.form-panel > p:not(.form-kicker) { max-width: 460px; margin-bottom: 2.5rem; color: rgba(255,250,241,0.72); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; margin-bottom: 0.35rem; font-family: var(--utility); font-size: 0.67rem; letter-spacing: 0.09em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; padding: 0.8rem 0; color: var(--paper); background: transparent; border: 0; border-bottom: 1px solid rgba(255,250,241,0.42); border-radius: 0; outline: 0; }
.field textarea { min-height: 115px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--apricot); box-shadow: 0 1px 0 var(--apricot); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { min-height: 65px; margin-block: 0.5rem 1rem; }
.button-light { background: var(--paper); color: var(--plum); }
.button-light:hover { background: var(--apricot); }
.button[disabled] { cursor: wait; opacity: 0.65; transform: none; }
.form-status { min-height: 1.5rem; margin: 1rem 0 0; font-size: 0.9rem; }
.form-status.is-error { color: #ffc1b0; }
.form-status.is-success { color: #dbe9c5; }

.site-footer { padding: 2rem clamp(1.25rem, 4vw, 4rem); display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem; color: var(--paper); background: var(--plum-deep); }
.footer-brand { font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.5rem); line-height: 1; }
.footer-brand i { display: block; color: var(--apricot); }
.site-footer p { margin: 0; font-family: var(--utility); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer div { display: flex; justify-content: flex-end; gap: 1.2rem; font-size: 0.82rem; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { position: relative; z-index: 2; width: 50px; height: 44px; padding: 0; display: grid; place-items: center; color: var(--paper); background: transparent; border: 0; cursor: pointer; }
  .menu-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-lines, .menu-lines::before { width: 26px; height: 1px; display: block; background: currentColor; transition: transform 180ms ease; }
  .menu-lines::before { content: ""; transform: translateY(-7px); }
  .menu-toggle[aria-expanded="true"] .menu-lines { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines::before { transform: rotate(-90deg); }
  .site-nav { position: absolute; top: 0; left: 0; width: 100%; min-height: 100vh; padding: 7rem 2rem 3rem; display: none; flex-direction: column; align-items: flex-start; gap: 1rem; background: var(--plum-deep); font-family: var(--display); font-size: 2.4rem; }
  .site-nav.is-open { display: flex; }
  .nav-call { margin-top: 1rem; font-family: var(--body); font-size: 1rem; }
  .hero { min-height: 780px; height: auto; grid-template-columns: 1fr 0.75fr; padding-top: 9rem; }
  .section-intro { grid-template-columns: 1fr 1.7fr; }
  .section-intro > p:last-child { grid-column: 2; }
  .offer-card-main { grid-template-columns: 1fr; }
  .offer-image { min-height: 360px; }
  .review-track { width: max-content; grid-template-columns: repeat(3, minmax(290px, 42vw)); overflow: visible; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 72px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: 760px; padding: 7rem 1.25rem 5rem; display: block; }
  h1 { font-size: clamp(4rem, 19vw, 6.3rem); }
  .hero-lead { max-width: 93%; }
  .hero-art { width: min(67vw, 350px); margin: 3.5rem 4vw 0 auto; opacity: 0.82; }
  .note-one { left: -12%; }
  .scroll-cue { display: none; }
  .section-shell { width: min(100% - 2rem, 1240px); }
  .section-intro { display: block; }
  .section-intro .eyebrow { margin-bottom: 1.3rem; }
  .section-intro h2 { margin-bottom: 2rem; }
  h2 { font-size: clamp(3.1rem, 14vw, 4.6rem); }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card-main { min-height: 0; }
  .offer-image { min-height: 330px; }
  .offer-card-side { min-height: 470px; }
  .reviews { padding-bottom: 5rem; }
  .review-track { width: 100%; display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 2rem; }
  .review-card { flex: 0 0 88%; min-height: 330px; scroll-snap-align: center; }
  .review-card.featured { transform: none; }
  .contact-list > div { grid-template-columns: 90px 1fr; }
  .form-panel { margin-right: 0.75rem; box-shadow: 12px 12px 0 var(--porcelain); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer div { justify-content: flex-start; flex-wrap: wrap; }
}

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