:root {
  --cream: #f5efdf;
  --paper: #eee6d4;
  --ink: #373d30;
  --rust: #b8482c;
  --grape: #603447;
  --line: #d2cbb9;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.03;
}
h1 {
  font-size: clamp(60px, 6.5vw, 102px);
}
h2 {
  font-size: clamp(44px, 4.5vw, 72px);
}
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}
em {
  font-weight: 400;
  color: var(--rust);
}
p + p {
  margin-top: 18px;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--cream);
  padding: 14px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 98px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  z-index: 10;
}
.brand {
  display: flex;
  flex-direction: column;
  width: 150px;
  align-items: flex-start;
}
.brand span {
  font-size: 10px;
  letter-spacing: 0.19em;
  font-weight: bold;
  padding-left: 29px;
  line-height: 1;
}
.brand img {
  mix-blend-mode: multiply;
  width: 150px;
}
nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
}
nav a:hover {
  color: var(--rust);
}
.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 40px;
  padding: 11px 22px;
  display: flex;
  gap: 28px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
}
.hero-copy {
  padding: 58px 8% 28px 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.7;
}
.hero .eyebrow {
  margin-bottom: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tiny-sun {
  font-size: 27px;
  color: var(--rust);
}
.hero-description {
  max-width: 350px;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.8;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  background: var(--rust);
  color: var(--cream);
  border-radius: 3px;
  padding: 17px 23px;
  font-size: 13px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #943923;
  transform: translateY(-2px);
}
.hero .button {
  margin-top: 29px;
}
.hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 9px;
  letter-spacing: 0.13em;
  margin-top: auto;
  padding-top: 34px;
}
.hero-foot a {
  font-size: 26px;
}
.hero-art {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background: #ba684b;
  color: var(--cream);
}
.landscape {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.art-top {
  position: absolute;
  top: 35px;
  left: 36px;
  right: 35px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.art-star {
  font-size: 60px;
  line-height: 1;
}
.round-seal {
  position: absolute;
  top: 42%;
  right: 6%;
  border: 1px solid #f4dfbd;
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  letter-spacing: 0.1em;
  transform: rotate(13deg);
  background: #9b46272b;
}
.round-seal span {
  font-size: 30px;
  line-height: 1.3;
}
.art-caption {
  position: absolute;
  bottom: 22px;
  right: 27px;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}
.ticker {
  background: var(--rust);
  color: var(--cream);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  padding: 22px 3%;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.ticker i {
  font-size: 23px;
  font-style: normal;
}
.section {
  padding: 105px 7%;
}
.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 9%;
  border-bottom: 1px solid var(--line);
}
.story .eyebrow {
  margin-bottom: 30px;
}
.story-copy {
  position: relative;
  padding-top: 25px;
}
.large-star {
  color: var(--rust);
  font-size: 64px;
  position: absolute;
  top: -56px;
  right: 0;
}
.lead {
  font-size: 21px;
  line-height: 1.6;
  font-family: var(--serif);
}
.story-copy > p:not(.lead) {
  font-size: 14px;
  line-height: 1.9;
}
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 29px;
  color: var(--rust);
  margin-top: 28px;
}
.signature span {
  display: block;
  font:
    9px Arial,
    sans-serif;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-top: 8px;
}
.craft {
  background: var(--paper);
}
.craft-heading {
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.craft-heading .eyebrow {
  margin-bottom: 25px;
}
.craft-heading p:last-child {
  max-width: 470px;
  margin: 23px auto 0;
  font-size: 14px;
}
.craft-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.craft-grid article {
  border-top: 1px solid #bbb49e;
  padding-top: 27px;
}
.craft-icon {
  font-size: 38px;
  color: var(--rust);
}
.craft-grid h3 {
  font-size: 28px;
  margin: 16px 0 12px;
}
.craft-grid p {
  font-size: 14px;
  line-height: 1.85;
}
.territory {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.territory-art {
  min-height: 630px;
  background: #414c3d;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  padding: 47px 12%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.territory-coordinate,
.territory-bottom {
  font-size: 9px;
  letter-spacing: 0.2em;
  z-index: 1;
}
.territory-word {
  font-family: var(--serif);
  font-size: clamp(62px, 6.5vw, 95px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  z-index: 1;
}
.territory-word em {
  color: #d7ad78;
}
.river-lines {
  position: absolute;
  width: 650px;
  height: 750px;
  left: 36%;
  top: -40px;
  border: 1px solid #cad2b02e;
  border-radius: 48%;
  transform: rotate(35deg);
  box-shadow:
    0 0 0 30px #cad2b014,
    0 0 0 60px #cad2b014,
    0 0 0 90px #cad2b014,
    0 0 0 120px #cad2b014,
    0 0 0 150px #cad2b014;
}
.territory-copy {
  padding: 75px 13%;
  align-self: center;
}
.territory-copy h2 {
  font-size: clamp(40px, 3.9vw, 60px);
  margin: 25px 0;
}
.territory-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
}
.text-note {
  display: block;
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 20px;
  font: italic 20px var(--serif);
  color: var(--rust);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  margin-bottom: 23px;
}
.section-heading > p {
  font-size: 14px;
  padding-bottom: 5px;
  line-height: 1.9;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-art {
  height: 340px;
  position: relative;
  overflow: hidden;
  background: #d9d7b5;
  color: #4c5c34;
}
.grape .product-art {
  background: #dfb9ab;
  color: #713b50;
}
.product-number {
  position: absolute;
  top: 20px;
  left: 24px;
  font: italic 25px var(--serif);
}
.product-origin {
  position: absolute;
  right: 23px;
  top: 24px;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-align: right;
}
.grape-label {
  position: absolute;
  bottom: 21px;
  left: 25px;
  font: italic 25px var(--serif);
}
.grapes {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: 210px;
  height: 210px;
}
.grapes:before {
  content: "";
  position: absolute;
  left: 98px;
  top: -45px;
  width: 8px;
  height: 68px;
  background: currentColor;
  transform: rotate(20deg);
}
.grapes:after {
  content: "";
  position: absolute;
  left: 114px;
  top: -28px;
  width: 80px;
  height: 40px;
  border-radius: 0 100% 0 100%;
  background: currentColor;
  transform: rotate(-25deg);
}
.grapes i {
  position: absolute;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: #89925f;
  box-shadow: inset -12px -9px 0 #00000012;
}
.grape .grapes i {
  background: #92586e;
}
.grapes i:nth-child(1) {
  left: 20px;
  top: 0;
}
.grapes i:nth-child(2) {
  left: 82px;
  top: 0;
}
.grapes i:nth-child(3) {
  left: 144px;
  top: 0;
}
.grapes i:nth-child(4) {
  left: 0;
  top: 52px;
}
.grapes i:nth-child(5) {
  left: 63px;
  top: 52px;
}
.grapes i:nth-child(6) {
  left: 126px;
  top: 52px;
}
.grapes i:nth-child(7) {
  left: 31px;
  top: 104px;
}
.grapes i:nth-child(8) {
  left: 94px;
  top: 104px;
}
.grapes i:nth-child(9) {
  left: 63px;
  top: 156px;
}
.product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
}
.product-info h3 {
  font-size: 47px;
  margin-top: 4px;
}
.product-link {
  border: 1px solid var(--ink);
  border-radius: 50%;
  height: 49px;
  width: 49px;
  display: grid;
  place-items: center;
  font-size: 25px;
  transition:
    background 0.2s,
    color 0.2s;
}
.product-link:hover {
  background: var(--ink);
  color: var(--cream);
}
.product-card > p {
  font-size: 14px;
  margin-top: 8px;
}
.botanical-note {
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
  margin-top: 47px;
  padding-top: 27px;
}
.botanical-note > span:first-child {
  font-size: 42px;
  color: var(--rust);
}
.botanical-note p {
  font-size: 13px;
  max-width: 640px;
}
.botanical-note > span:last-child {
  font-size: 9px;
  letter-spacing: 0.15em;
  margin-left: auto;
  white-space: nowrap;
}
.ritual {
  background: #e9e2d1;
}
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.ritual-grid article {
  border-top: 1px solid #bdb5a4;
  padding-top: 25px;
}
.ritual-grid article > span {
  font: italic 36px var(--serif);
  color: var(--rust);
}
.ritual-grid h3 {
  font-size: 28px;
  margin: 18px 0 12px;
}
.ritual-grid p {
  font-size: 13px;
  line-height: 1.9;
}
.ritual-picker {
  margin-top: 50px;
  padding: 30px;
  border: 1px solid #bbb49e;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}
.ritual-tabs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.ritual-tabs button {
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 25px;
  padding: 9px 16px;
  font-size: 12px;
  white-space: nowrap;
}
.ritual-tabs button.active {
  background: var(--ink);
  color: var(--cream);
}
#pairing-result {
  max-width: 430px;
  font: italic 23px/1.5 var(--serif);
}
.contact {
  background: var(--rust);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8%;
  align-items: start;
}
.contact h2 {
  font-size: clamp(58px, 6vw, 92px);
  margin: 28px 0;
}
.contact em {
  color: #f2c6a0;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 14px;
}
.contact .cream {
  background: var(--cream);
  color: var(--rust);
}
.cream:hover {
  background: #e5d7bb;
}
.contact-alternatives {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
  font-size: 11px;
}
.contact-alternatives a {
  text-decoration: underline;
  text-underline-offset: 4px;
  position: relative;
  z-index: 1;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.instagram-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.instagram-icon-dot {
  fill: currentColor;
  stroke: none;
}
.contact-sun {
  position: absolute;
  left: -42px;
  bottom: -115px;
  font-size: 350px;
  line-height: 1;
  color: #df80605c;
  pointer-events: none;
}
.contact-form {
  position: relative;
  z-index: 1;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 18px;
  text-align: left;
}
.field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.field label span {
  font-weight: 400;
  opacity: 0.7;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #f5efdf80;
  border-radius: 2px;
  background: #7e2f2428;
  color: var(--cream);
  padding: 13px 14px;
  font: inherit;
  outline: 0;
}
.field textarea {
  resize: vertical;
  min-height: 125px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--cream);
  box-shadow: 0 0 0 2px #f5efdf35;
}
.errorlist {
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
  font-size: 11px;
  color: #ffe3ac;
}
.form-errors {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #ffe3ac;
  font-size: 12px;
}
.form-errors .errorlist {
  margin: 0;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-success {
  min-height: 350px;
  border: 1px solid #f5efdf80;
  padding: 55px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.form-success > span {
  font-size: 55px;
}
.form-success h3 {
  font-size: 36px;
  margin: 18px 0 10px;
}
.contact-page {
  max-width: 760px;
}
.contact-page .eyebrow {
  margin-top: 50px;
}
.contact-page h1 {
  margin: 20px 0 40px;
}
.contact-page .contact-form {
  background: var(--rust);
  color: var(--cream);
  padding: 35px;
}
.events {
  background: var(--cream);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px 28px;
}
.event-card {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.event-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-image img {
  transform: scale(1.025);
}
.event-image time {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 66px;
  height: 72px;
  background: var(--cream);
  color: var(--rust);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.event-image time strong {
  font: 400 31px/1 var(--serif);
}
.event-image time span {
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 5px;
}
.event-content {
  padding-top: 24px;
}
.event-content h3 {
  font-size: 38px;
  margin: 8px 0;
}
.event-intro {
  font: italic 19px/1.5 var(--serif);
  color: var(--rust);
}
.event-content details {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.event-content summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  list-style: none;
}
.event-content summary::-webkit-details-marker {
  display: none;
}
.event-content details div {
  padding-top: 15px;
  font-size: 14px;
}
.footer {
  padding: 55px 6% 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 45px;
}
.footer-top > p {
  font: italic 26px/1.2 var(--serif);
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 9px;
}
.modal-open {
  overflow: hidden;
}
dialog {
  border: 0;
  background: var(--cream);
  color: var(--ink);
  width: min(620px, calc(100% - 32px));
  max-height: 85dvh;
  padding: 54px 40px 38px;
  margin: auto;
}
dialog::backdrop {
  background: #1e241dc2;
  backdrop-filter: blur(4px);
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: 0;
  font-size: 22px;
  padding: 8px;
}
.variety-detail h2 {
  font-size: 50px;
  margin: 20px 0;
}
.variety-detail h3 {
  font-size: 26px;
  margin: 23px 0 10px;
}
.detail-note {
  font-size: 12px;
  margin: 22px 0;
}
.standalone {
  max-width: 800px;
  padding: 55px 25px;
  margin: auto;
}
.standalone > .variety-detail {
  margin-top: 40px;
}
.htmx-request {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 1600px) {
  .hero {
    max-height: 860px;
  }
  .hero-copy {
    padding-left: max(10%, calc((100vw - 1440px) / 2));
  }
}
@media (max-width: 1000px) {
  .hero-copy {
    padding: 40px 7%;
  }
  .hero,
  .hero-art {
    min-height: 650px;
  }
  h1 {
    font-size: 64px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .section {
    padding: 75px 6%;
  }
  .territory-copy {
    padding: 50px 9%;
  }
  .botanical-note > span:last-child {
    display: none;
  }
  .craft-grid {
    gap: 25px;
  }
  .ritual-grid {
    gap: 20px;
  }
  .ritual-picker {
    gap: 25px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 20px;
  }
  .site-header {
    height: 80px;
    padding: 0 6%;
  }
  .brand,
  .brand img {
    width: 128px;
  }
  .menu-toggle {
    display: flex;
    gap: 13px;
    align-items: center;
    background: none;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 12px;
  }
  nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 25px 6%;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  nav.is-open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    padding: 38px 7% 25px;
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(55px, 12vw, 84px);
  }
  .hero-description {
    font-size: 15px;
    max-width: 410px;
  }
  .hero-foot {
    padding-top: 29px;
  }
  .hero-art {
    min-height: 470px;
  }
  .art-top {
    top: 24px;
    left: 25px;
  }
  .landscape {
    object-position: center;
  }
  .round-seal {
    right: 8%;
    top: 40%;
    width: 98px;
    height: 98px;
    font-size: 7px;
  }
  .ticker {
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 5%;
    font-size: 8px;
  }
  .ticker i {
    font-size: 15px;
  }
  .ticker span {
    flex-basis: 40%;
    text-align: center;
  }
  .ticker i:last-of-type {
    display: none;
  }
  .section {
    padding: 65px 7%;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .story-copy {
    padding-top: 0;
  }
  .large-star {
    display: none;
  }
  .lead {
    font-size: 20px;
  }
  .craft-heading {
    text-align: left;
  }
  .craft-heading p:last-child {
    margin-left: 0;
  }
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
  }
  .craft-grid article {
    position: relative;
    padding-left: 60px;
  }
  .craft-icon {
    position: absolute;
    left: 0;
    top: 21px;
  }
  .craft-grid h3 {
    margin-top: 0;
  }
  .territory {
    grid-template-columns: 1fr;
  }
  .territory-art {
    min-height: 470px;
    padding: 32px 8%;
  }
  .territory-word {
    font-size: 73px;
  }
  .territory-copy {
    padding: 58px 7%;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 25px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 39px;
  }
  .product-art {
    height: 330px;
  }
  .product-info h3 {
    font-size: 43px;
  }
  .botanical-note {
    gap: 16px;
    align-items: flex-start;
  }
  .botanical-note p {
    font-size: 12px;
  }
  .ritual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 35px;
  }
  .ritual-grid h3 {
    font-size: 25px;
  }
  .ritual-picker {
    display: block;
    padding: 24px 20px;
  }
  .ritual-picker #pairing-result {
    margin-top: 25px;
    font-size: 21px;
  }
  .contact h2 {
    max-width: 100%;
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 0.92;
    letter-spacing: -0.04em;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .event-content h3 {
    font-size: 34px;
  }
  .contact-sun {
    font-size: 220px;
    bottom: -85px;
    left: -70px;
  }
  .footer-top {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .footer-top > div {
    flex-basis: 100%;
    margin-top: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .footer-top > p {
    font-size: 23px;
  }
  dialog {
    padding: 55px 25px 30px;
  }
  .variety-detail h2 {
    font-size: 43px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* Fotografías originales proporcionadas por la marca. */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #170a0840, transparent 40%, #170a0845);
  pointer-events: none;
}
.art-top,
.art-caption,
.round-seal {
  z-index: 1;
}
.round-seal {
  top: auto;
  bottom: 70px;
  right: 7%;
  background: #542b2480;
  backdrop-filter: blur(5px);
}
.story-photo {
  margin: 35px 0 0;
}
.story-photo img {
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.story-photo figcaption {
  margin-top: 10px;
  font: italic 16px var(--serif);
  color: var(--rust);
}
.story-copy {
  align-self: center;
}
.ritual-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}
.ritual-photos img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.ritual-photos img:nth-child(2) {
  object-position: center 60%;
}
@media (max-width: 700px) {
  .hero-art {
    min-height: 560px;
  }
  .hero-photo {
    object-position: center 42%;
  }
  .ritual-photos {
    gap: 8px;
  }
  .ritual-photos img {
    height: 210px;
  }
  .story-copy {
    margin-top: 10px;
  }
}
