@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,500;6..96,600;6..96,700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Bodoni Moda', serif;
  --font-body: 'Manrope', sans-serif;
  --warm: #f7f5f1;
  --paper: #fffefa;
  --mist: #e9eae8;
  --beige: #d8c4aa;
  --beige-soft: #efe5d8;
  --wine: #731f32;
  --wine-dark: #48131f;
  --wine-soft: #ead5da;
  --red: #b65145;
  --red-dark: #8f382f;
  --ink: #242120;
  --graphite: #696564;
  --olive: #d8c4aa;
  --olive-soft: #efe5d8;
  --coral: #b65145;
  --coral-dark: #8f382f;
  --coral-soft: #ead5da;
  --emerald: #731f32;
  --emerald-dark: #48131f;
  --line: rgba(72, 19, 31, .18);
  --line-neutral: rgba(36, 33, 32, .14);
  --shadow: 0 34px 80px rgba(63, 43, 45, .14);
  --shadow-soft: 0 14px 36px rgba(63, 43, 45, .08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.shell {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 120;
  padding: 11px 17px;
  border-radius: 2px;
  background: var(--wine-dark);
  color: var(--paper);
}

.skip-link:focus {
  top: 13px;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line-neutral);
  background: rgba(247, 245, 241, .96);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  height: 88px;
  align-items: center;
  gap: 30px;
}

.brand {
  color: var(--wine-dark);
  font-size: clamp(1.3rem, 2.2vw, 1.92rem);
  font-style: italic;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 11px 14px;
  color: var(--graphite);
  font-size: .79rem;
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 1px;
  background: var(--wine);
  content: '';
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current=page] {
  color: var(--wine);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current=page]::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
}

.menu-button {
  display: grid;
  width: 46px;
  height: 46px;
  margin-left: auto;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--wine);
  transition: .3s ease;
}

.menu-button[aria-expanded=true] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 88px 0 0;
  z-index: 85;
  overflow: auto;
  padding: 30px 24px;
  background: var(--warm);
}

.mobile-nav a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-neutral);
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 27px;
  color: var(--graphite);
  font-size: .76rem;
  letter-spacing: .035em;
}

.breadcrumb span[aria-hidden=true] {
  color: var(--red);
}

.breadcrumb a:hover {
  color: var(--wine);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  padding: 12px 23px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--wine);
  color: var(--paper);
  box-shadow: 0 14px 28px rgba(115, 31, 50, .19);
}

.button-primary:hover {
  background: var(--wine-dark);
  box-shadow: 0 18px 38px rgba(72, 19, 31, .24);
}

.button-secondary {
  border-color: var(--wine);
  background: transparent;
  color: var(--wine);
}

.button-secondary:hover {
  background: var(--wine);
  color: var(--paper);
}

.button-soft {
  background: var(--beige-soft);
  color: var(--wine-dark);
}

.button-soft:hover {
  background: var(--beige);
}

.button-outline {
  border-color: var(--wine);
  background: transparent;
  color: var(--wine);
}

.button-outline:hover {
  background: var(--wine);
  color: var(--paper);
}

.button-outline-light {
  border-color: rgba(255, 254, 250, .58);
  background: transparent;
  color: var(--paper);
}

.button-outline-light:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--wine-dark);
}

.ripple {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  pointer-events: none;
  transform: scale(0);
  animation: ripple .55s linear;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  color: var(--wine);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 46px;
  height: 1px;
  background: currentColor;
  content: '';
}

.display {
  max-width: 1110px;
  margin-bottom: 27px;
  font-size: clamp(3rem, 7.6vw, 7.7rem);
}

.section-title {
  max-width: 980px;
  margin-bottom: 23px;
  font-size: clamp(2.45rem, 5vw, 5rem);
}

.section-lead {
  max-width: 760px;
  color: var(--graphite);
  font-size: 1.04rem;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-tight {
  padding: 46px 0;
}

.surface {
  background: var(--paper);
}

.surface-olive {
  background: var(--beige-soft);
}

.surface-coral {
  background: var(--wine-soft);
}

.surface-dark {
  background:
    linear-gradient(90deg, transparent 0 70%, rgba(255, 254, 250, .035) 70%),
    var(--wine-dark);
  color: var(--paper);
}

.surface-dark .section-lead,
.surface-dark p,
.surface-dark .check-list span {
  color: rgba(255, 254, 250, .74);
}

.surface-dark .eyebrow {
  color: var(--beige);
}

.rounded-section {
  width: min(1480px, calc(100% - 20px));
  margin-inline: auto;
  overflow: hidden;
  border-radius: 8px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 800px;
  padding: 76px 0 110px;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 8%;
  left: 0;
  width: 1px;
  height: 72%;
  background: var(--wine);
  content: '';
  opacity: .4;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 130px;
  background: var(--mist);
  content: '';
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 58px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy::after {
  display: block;
  width: 150px;
  height: 1px;
  margin-top: 40px;
  background: var(--wine);
  content: '';
}

.hero-copy .display {
  max-width: 850px;
  font-size: clamp(3.15rem, 6vw, 6.45rem);
}

.hero-copy p {
  max-width: 670px;
  color: var(--graphite);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 33px 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  margin-top: 36px;
  border-block: 1px solid var(--line-neutral);
}

.metric {
  padding: 20px 17px;
  border-right: 1px solid var(--line-neutral);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--wine);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--graphite);
  font-size: .71rem;
  letter-spacing: .04em;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.hero-art::before {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 62%;
  height: 63%;
  border: 1px solid var(--wine);
  content: '';
}

.hero-art::after {
  position: absolute;
  bottom: -32px;
  left: -28px;
  width: 57%;
  height: 42%;
  background: var(--beige);
  content: '';
}

.hero-orbit {
  position: absolute;
  inset: -3% 3% 2% -2%;
  border: 1px solid rgba(115, 31, 50, .28);
  animation: frameBreathe 7s ease-in-out infinite;
}

.hero-image {
  position: absolute;
  inset: 3% 0 3% 3%;
  z-index: 2;
  height: 94%;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
  object-fit: cover;
  transition: transform .8s ease;
}

.hero-art:hover .hero-image {
  transform: scale(1.018);
}

.float-card {
  position: absolute;
  z-index: 4;
  max-width: 215px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, .96);
  box-shadow: var(--shadow-soft);
  color: var(--wine-dark);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-style: italic;
  animation: float 5.5s ease-in-out infinite;
}

.float-card.one {
  top: 15%;
  left: -4%;
  border-left: 4px solid var(--wine);
}

.float-card.two {
  right: -3%;
  bottom: 12%;
  border-left: 4px solid var(--red);
  animation-delay: -2s;
}

.organic-dot {
  position: absolute;
  z-index: 3;
  animation: float 8s ease-in-out infinite;
}

.organic-dot.coral {
  top: -4%;
  right: 4%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--red);
}

.organic-dot.olive {
  bottom: -3%;
  left: 7%;
  width: 54px;
  height: 54px;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: var(--paper);
  animation-delay: -3s;
}

.trust-strip {
  display: grid;
  gap: 18px;
  align-items: center;
}

.trust-label {
  color: var(--wine-dark);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-style: italic;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-block: 1px solid var(--line-neutral);
}

.trust-item {
  display: grid;
  min-height: 72px;
  padding: 13px;
  place-items: center;
  border-right: 1px solid var(--line-neutral);
  color: var(--graphite);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.trust-item:last-child {
  border-right: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line-neutral);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease;
}

.card::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 2px;
  background: var(--wine);
  content: '';
  transform: scaleX(.4);
  transform-origin: left;
  transition: transform .4s ease;
}

.card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-number {
  display: block;
  margin-bottom: 23px;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.card p {
  margin-bottom: 0;
  color: var(--graphite);
}

.split {
  display: grid;
  gap: 50px;
  align-items: center;
}

.media-frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.media-frame::before {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 254, 250, .45);
  content: '';
  pointer-events: none;
}

.media-frame img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.media-frame:hover img {
  transform: scale(1.055);
}

.media-badge {
  position: absolute;
  right: 19px;
  bottom: 19px;
  z-index: 3;
  max-width: 245px;
  padding: 19px;
  background: rgba(72, 19, 31, .94);
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: .96rem;
  font-style: italic;
}

.check-list {
  display: grid;
  gap: 19px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 46px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  content: '✓';
  font-size: .75rem;
  font-weight: 800;
}

.check-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.check-list span {
  color: var(--graphite);
}

.plate-layout {
  display: grid;
  gap: 42px;
  align-items: center;
}

.plate {
  position: relative;
  width: min(440px, 90vw);
  aspect-ratio: 1;
  margin: auto;
  overflow: hidden;
  border: 14px solid var(--paper);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
}

.plate-segment {
  position: absolute;
  border: 0;
  color: var(--ink);
  font-weight: 700;
  transition: filter .3s ease, transform .3s ease;
}

.plate-segment:hover,
.plate-segment[aria-pressed=true] {
  z-index: 2;
  filter: saturate(1.15);
  transform: scale(1.035);
}

.plate-veg {
  inset: 0 50% 50% 0;
  border-radius: 100% 0 0;
  background: #d6d8c4;
}

.plate-protein {
  inset: 0 0 50% 50%;
  border-radius: 0 100% 0 0;
  background: #ddaca4;
}

.plate-grain {
  inset: 50% 50% 0 0;
  border-radius: 0 0 0 100%;
  background: #e2cdaa;
}

.plate-fat {
  inset: 50% 0 0 50%;
  border-radius: 0 0 100%;
  background: #c3ccd0;
}

.plate-center {
  position: absolute;
  inset: 36%;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 6px solid var(--paper);
  border-radius: 50%;
  background: var(--wine-dark);
  color: var(--paper);
  font-size: .67rem;
  font-weight: 700;
  text-align: center;
}

.plate-detail {
  min-height: 215px;
  padding: 33px;
  border-left: 4px solid var(--red);
  background: var(--wine-dark);
  box-shadow: var(--shadow-soft);
  color: var(--paper);
}

.plate-detail h3 {
  font-size: 2rem;
}

.plate-detail p {
  color: rgba(255, 254, 250, .76);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--wine);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.tag:hover {
  background: var(--wine);
  color: var(--paper);
  transform: translateY(-2px);
}

.season-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.tab-button {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--graphite);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: .25s ease;
}

.tab-button:hover,
.tab-button[aria-selected=true] {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--paper);
}

.season-panel[hidden] {
  display: none;
}

.article-card {
  padding: 0;
  border-radius: 3px;
  box-shadow: none;
}

.article-card::before {
  display: none;
}

.article-card .article-image {
  height: 310px;
  overflow: hidden;
  background: var(--mist);
}

.article-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.article-card:hover {
  box-shadow: var(--shadow);
}

.article-card:hover img {
  transform: scale(1.06);
}

.article-body {
  position: relative;
  padding: 29px;
}

.article-body::before {
  position: absolute;
  top: 0;
  left: 29px;
  width: 70px;
  height: 2px;
  background: var(--wine);
  content: '';
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 15px;
  color: var(--red-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 1.85rem;
}

.article-card a.stretched::after {
  position: absolute;
  inset: 0;
  content: '';
}

.masonry {
  display: grid;
  gap: 26px;
}

.masonry .article-card:first-child .article-body {
  padding: 34px;
}

.masonry .article-card:first-child h3 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.quote-card {
  border: 0;
  border-top: 1px solid var(--wine);
  border-bottom: 1px solid var(--line-neutral);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-card::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  color: var(--wine-soft);
  content: '”';
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: 1.37rem;
  font-style: italic;
  line-height: 1.48;
}

.quote-card cite {
  color: var(--graphite);
  font-size: .78rem;
  font-style: normal;
  letter-spacing: .04em;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-neutral);
}

.timeline-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 25px 0;
  align-items: start;
  border-bottom: 1px solid var(--line-neutral);
}

.timeline-marker {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-style: italic;
  line-height: 1;
}

.timeline-step h3 {
  margin-bottom: 8px;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--graphite);
}

.accordion {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.accordion-item {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.accordion-button {
  display: flex;
  width: 100%;
  padding: 23px 4px;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 600;
  text-align: left;
}

.accordion-button span:last-child {
  color: var(--wine);
  font-family: var(--font-body);
  font-size: 1.4rem;
  transition: transform .28s ease;
}

.accordion-button[aria-expanded=true] span:last-child {
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 4px 24px;
  color: var(--graphite);
}

.accordion-panel[hidden] {
  display: none;
}

.lead-magnet {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(255, 254, 250, .06) 74%),
    var(--wine);
  box-shadow: var(--shadow);
  color: var(--paper);
}

.lead-magnet::before {
  position: absolute;
  top: 28px;
  right: 36px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 254, 250, .24);
  border-radius: 50%;
  content: '';
}

.lead-magnet::after {
  position: absolute;
  right: 18%;
  bottom: 0;
  width: 1px;
  height: 75%;
  background: rgba(255, 254, 250, .22);
  content: '';
}

.lead-magnet > * {
  position: relative;
  z-index: 2;
}

.lead-magnet p {
  max-width: 690px;
  color: rgba(255, 254, 250, .76);
}

.newsletter-form,
.inline-form {
  display: grid;
  gap: 13px;
  margin-top: 27px;
}

.inline-form.card {
  background: var(--paper);
  color: var(--ink);
}

.field {
  position: relative;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 21px 17px 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: rgba(255, 254, 250, .96);
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field label {
  position: absolute;
  top: 15px;
  left: 17px;
  color: var(--graphite);
  font-size: .85rem;
  pointer-events: none;
  transition: .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--wine);
  box-shadow: inset 0 -2px 0 var(--wine);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 5px;
  color: var(--wine);
  font-size: .62rem;
}

.form-status {
  min-height: 24px;
  font-size: .81rem;
}

.page-hero {
  position: relative;
  padding: 90px 0 75px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-neutral);
}

.page-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background: var(--mist);
  content: '';
}

.page-hero::after {
  position: absolute;
  top: 36px;
  right: 17%;
  width: 1px;
  height: 72%;
  background: var(--wine);
  content: '';
}

.page-hero .shell {
  position: relative;
  z-index: 2;
}

.page-hero-grid {
  display: grid;
  gap: 36px;
  align-items: end;
}

.page-hero h1 {
  max-width: 1080px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7.4vw, 7rem);
}

.page-hero p {
  max-width: 780px;
  color: var(--graphite);
  font-size: 1.05rem;
}

.page-image {
  height: 410px;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.content-layout {
  display: grid;
  gap: 36px;
}

.prose {
  max-width: 870px;
}

.prose h2 {
  position: relative;
  margin: 57px 0 21px;
  padding-top: 19px;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
}

.prose h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 1px;
  background: var(--wine);
  content: '';
}

.prose h3 {
  margin: 34px 0 13px;
  font-size: 1.6rem;
}

.prose p,
.prose li {
  color: #575352;
}

.prose ul,
.prose ol {
  padding-left: 24px;
}

.prose .callout {
  margin: 35px 0;
  padding: 29px;
  border: 0;
  border-left: 3px solid var(--wine);
  border-radius: 0;
  background: var(--wine-soft);
}

.legal {
  max-width: 950px;
  counter-reset: clause;
}

.legal h2 {
  counter-increment: clause;
}

.legal h2::before {
  position: static;
  width: auto;
  height: auto;
  background: none;
  color: var(--red);
  content: counter(clause, decimal-leading-zero) ' ';
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.legal-meta span {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.sidebar {
  display: grid;
  gap: 20px;
  align-self: start;
}

.sidebar-box {
  padding: 27px;
  border: 1px solid var(--line-neutral);
  border-top: 3px solid var(--wine);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.sidebar-box h3 {
  font-size: 1.4rem;
}

.sidebar-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-box a {
  color: var(--graphite);
  transition: color .2s ease;
}

.sidebar-box a:hover {
  color: var(--wine);
}

.search-box {
  display: flex;
  gap: 8px;
}

.search-box input {
  min-width: 0;
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.resource-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.resource-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line-neutral);
  border-top: 3px solid var(--wine);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.contact-card strong {
  font-family: var(--font-heading);
  font-size: 1.28rem;
}

.contact-card a {
  color: var(--wine);
  font-weight: 700;
}

.contact-map {
  position: relative;
  display: grid;
  min-height: 400px;
  padding: 36px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line-neutral);
  background:
    linear-gradient(30deg, transparent 0 49.5%, rgba(115, 31, 50, .12) 49.5% 50%, transparent 50%),
    linear-gradient(-30deg, transparent 0 49.5%, rgba(182, 81, 69, .12) 49.5% 50%, transparent 50%),
    var(--beige-soft);
}

.contact-map::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(115, 31, 50, .18);
  content: '';
}

.contact-map::after {
  position: absolute;
  top: 10%;
  right: 9%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--wine-soft);
  content: '';
}

.location-pin {
  position: relative;
  z-index: 2;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--wine);
  box-shadow: var(--shadow);
  transform: rotate(-45deg);
}

.location-pin::after {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  content: '';
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  padding: 20px;
  place-items: center;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 27, 29, .72);
  backdrop-filter: blur(9px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(590px, 100%);
  padding: 42px;
  border-top: 4px solid var(--wine);
  background: var(--warm);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  font-size: 2.65rem;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--wine);
  font-size: 1.55rem;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 105;
  display: grid;
  gap: 18px;
  padding: 23px;
  border-top: 3px solid var(--red);
  background: var(--wine-dark);
  box-shadow: 0 24px 70px rgba(37, 27, 29, .3);
  color: var(--paper);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: rgba(255, 254, 250, .72);
  font-size: .81rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 9px 15px;
  font-size: .71rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: 390px;
  padding: 16px 21px;
  border-left: 3px solid var(--red);
  background: var(--wine-dark);
  box-shadow: var(--shadow);
  color: var(--paper);
}

.toast[hidden] {
  display: none;
}

.site-footer {
  position: relative;
  margin-top: 28px;
  padding: 84px 0 27px;
  overflow: hidden;
  background: var(--wine-dark);
  color: var(--paper);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: rgba(255, 254, 250, .11);
  content: '';
}

.site-footer::after {
  position: absolute;
  top: -145px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 254, 250, .1);
  border-radius: 50%;
  content: '';
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
}

.brand-light {
  color: var(--paper);
}

.footer-brand p {
  max-width: 580px;
  color: rgba(255, 254, 250, .72);
}

.footer-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 2px solid var(--red);
  background: rgba(255, 254, 250, .045);
  color: rgba(255, 254, 250, .62);
  font-size: .73rem;
  line-height: 1.65;
}

.site-footer h2 {
  margin-bottom: 19px;
  color: var(--beige);
  font-size: 1.3rem;
  font-style: italic;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 254, 250, .76);
  transition: color .2s ease;
}

.site-footer a:hover {
  color: var(--paper);
}

.contact-list li {
  color: rgba(255, 254, 250, .74);
  overflow-wrap: anywhere;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 52px;
  padding-top: 24px;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 254, 250, .14);
  color: rgba(255, 254, 250, .58);
  font-size: .73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.985);
  transition: opacity .84s ease, transform .84s cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes frameBreathe {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6px, -5px);
  }
}

@keyframes editorialReveal {
  from {
    opacity: .72;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(4);
  }
}

@supports (animation-timeline: view()) {
  .rounded-section {
    animation: editorialReveal linear both;
    animation-range: entry 0% cover 32%;
    animation-timeline: view();
  }
}

@media (min-width: 640px) {
  .shell {
    width: min(1240px, calc(100% - 58px));
  }

  .section {
    padding: 126px 0;
  }

  .trust-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .page-hero-grid {
    grid-template-columns: 1.25fr .75fr;
  }

  .masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry .article-card:first-child {
    grid-row: span 2;
  }

  .masonry .article-card:first-child .article-image {
    height: 480px;
  }
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-grid {
    grid-template-columns: .92fr 1.08fr;
  }

  .hero-art {
    min-height: 640px;
  }

  .split {
    grid-template-columns: repeat(2, 1fr);
    gap: 86px;
  }

  .split.reverse .media-frame {
    order: 2;
  }

  .plate-layout {
    grid-template-columns: 1fr 1fr;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 68px;
  }

  .sidebar {
    position: sticky;
    top: 114px;
  }

  .contact-layout {
    grid-template-columns: .85fr 1.15fr;
  }

  .trust-strip {
    grid-template-columns: 235px 1fr;
  }

  .masonry {
    grid-template-columns: 1.4fr .8fr .8fr;
  }

  .masonry .article-card:first-child {
    grid-row: span 2;
  }

  .masonry .article-card:first-child .article-image {
    height: 100%;
    min-height: 610px;
  }
}

@media (min-width: 1140px) {
  .header-shell {
    gap: 38px;
  }

  .desktop-nav a {
    padding-inline: 15px;
  }

  .hero-copy .display {
    font-size: 5.75rem;
  }

  .hero-art {
    margin-right: -32px;
  }
}

@media (max-width: 899px) {
  .plate-segment {
    font-size: .72rem;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 50px;
  }

  .hero-copy .display,
  .display {
    font-size: 3rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line-neutral);
  }

  .hero-art {
    min-height: 410px;
  }

  .float-card {
    font-size: .79rem;
  }

  .page-hero h1 {
    font-size: 3.15rem;
  }

  .page-image {
    height: 330px;
  }

  .card {
    padding: 25px;
  }

  .lead-magnet {
    padding: 36px 25px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .rounded-section {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .button,
  .reading-progress {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .card,
  .prose .callout {
    box-shadow: none;
  }
}
