:root {
  --paper: #f7f3eb;
  --paper-deep: #eee8dd;
  --aria-teal: #063d4c;
  --indigo: #28344a;
  --bronze: #b4863f;
  --bronze-action: #a96312;
  --body: #626b73;
  --rule: #d9d1c4;
  --white: #fffdf8;
  --serif: "Noto Serif SC", "Songti SC", STSong, Georgia, serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --page-pad: 24px;
  --header-height: 68px;
  --shadow: 0 24px 70px rgba(40, 52, 74, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #dedbd5;
}

body {
  margin: 0;
  color: var(--indigo);
  background: #dedbd5;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--bronze-action);
  outline-offset: 3px;
}

.app-shell {
  position: relative;
  width: min(100%, 480px);
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: max(10px, env(safe-area-inset-top)) 18px 10px;
  border-bottom: 1px solid rgba(40, 52, 74, 0.13);
  background: rgba(247, 243, 235, 0.94);
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-hidden {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
}

.wordmark-button,
.header-actions button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.wordmark-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aria-teal);
  font-family: "Bodoni MT", Didot, "Times New Roman", serif;
  letter-spacing: 0.18em;
  line-height: 1.05;
}

.wordmark-button span {
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}

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

.header-actions button {
  min-width: 45px;
  padding-inline: 7px;
  color: var(--body);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.header-actions button + button {
  position: relative;
}

.header-actions button + button::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: -1px;
  width: 1px;
  background: var(--rule);
  content: "";
}

.view {
  min-height: 100svh;
  background: var(--paper);
}

.view[hidden] {
  display: none;
}

.view.is-entering {
  animation: view-in 260ms ease-out both;
}

@keyframes view-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-pad {
  padding: 34px var(--page-pad) calc(58px + env(safe-area-inset-bottom));
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--bronze-action);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.page-kicker::before {
  width: 27px;
  height: 1px;
  margin-right: 10px;
  background: var(--bronze);
  content: "";
}

.display-title {
  margin: 24px 0 20px;
  font-family: var(--serif);
  font-size: clamp(35px, 9.5vw, 45px);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0.015em;
}

.page-lead {
  margin: 0;
  color: #4d5864;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.9;
}

.page-lead.compact {
  max-width: 390px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
}

.section-art {
  display: block;
  width: 128px;
  height: 2px;
  margin: 28px 0 30px;
}

.cover-view {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  grid-template-rows: 1fr auto;
  isolation: isolate;
}

.cover-field {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.cover-content {
  position: relative;
  display: flex;
  min-height: 690px;
  flex-direction: column;
  padding: max(72px, calc(env(safe-area-inset-top) + 54px)) 35px 34px;
}

.cover-brand {
  width: min(82vw, 340px);
  color: var(--aria-teal);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cover-brand h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 20vw, 92px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
}

.cover-brand p {
  margin: 15px 0 0 5px;
  font-size: clamp(16px, 4.4vw, 19px);
  font-weight: 600;
  letter-spacing: 0.42em;
}

.cover-edition {
  display: flex;
  margin-top: 22svh;
  flex-direction: column;
  align-items: flex-start;
}

.cover-edition span {
  color: var(--bronze-action);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
}

.cover-edition strong {
  margin-top: -7px;
  font-family: var(--serif);
  font-size: clamp(88px, 27vw, 128px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.cover-theme {
  display: flex;
  margin-top: auto;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(40, 52, 74, 0.35);
  padding-top: 15px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.21em;
}

.cover-theme span:last-child {
  color: var(--body);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.cover-entry {
  position: relative;
  display: grid;
  min-height: 118px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 34px calc(22px + env(safe-area-inset-bottom));
  border: 0;
  border-top: 1px solid var(--bronze);
  color: var(--white);
  background: var(--indigo);
  text-align: left;
  cursor: pointer;
}

.cover-entry span {
  grid-column: 1;
  color: #d9c095;
  font-size: 9px;
  letter-spacing: 0.21em;
}

.cover-entry strong {
  grid-column: 1;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.cover-entry i {
  grid-row: 1 / 3;
  grid-column: 2;
  font-family: var(--serif);
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
}

.editorial-sections {
  border-top: 1px solid var(--rule);
}

.editorial-sections article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 27px 0 25px;
  border-bottom: 1px solid var(--rule);
}

.section-number {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 20px;
}

.editorial-sections h2 {
  margin: -2px 0 9px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.editorial-sections p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.86;
}

.founder-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 34px 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.founder-line span {
  color: var(--bronze-action);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.founder-line strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.chapter-cta {
  display: grid;
  width: 100%;
  min-height: 112px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 21px 22px;
  border: 0;
  border-left: 3px solid var(--bronze);
  color: var(--white);
  background: var(--indigo);
  text-align: left;
  cursor: pointer;
}

.chapter-cta span {
  display: flex;
  flex-direction: column;
}

.chapter-cta small {
  margin-bottom: 5px;
  color: #d8c095;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.chapter-cta strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.chapter-cta i {
  font-family: var(--serif);
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
}

.page-foot-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.page-foot-nav button {
  min-height: 44px;
  padding: 0 3px;
  border: 0;
  color: var(--body);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.directory-page .display-title {
  margin-bottom: 12px;
  font-size: clamp(42px, 12vw, 57px);
}

.directory-art {
  margin-top: 22px;
}

.directory-section {
  margin-top: 40px;
}

.directory-section > h2 {
  display: flex;
  align-items: center;
  margin: 0 0 15px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.directory-section > h2 span {
  margin-right: 9px;
  color: var(--bronze-action);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
}

.directory-card,
.producer-directory-card {
  display: grid;
  width: 100%;
  min-height: 118px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.45);
  text-align: left;
  cursor: pointer;
}

.directory-card > span,
.producer-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.directory-card small,
.producer-directory-card small {
  color: var(--bronze-action);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.directory-card strong,
.producer-directory-card strong {
  margin: 5px 0 3px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.directory-card em,
.producer-directory-card em {
  color: var(--body);
  font-size: 12px;
  font-style: normal;
}

.directory-card i,
.producer-card-arrow {
  font-family: var(--serif);
  font-size: 26px;
  font-style: normal;
}

.region-path {
  display: flex;
  align-items: center;
  margin: 0 0 13px;
  color: var(--body);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.region-path i {
  width: 28px;
  height: 1px;
  margin: 0 9px;
  background: var(--bronze);
}

.producer-directory-card {
  min-height: 160px;
  border: 0;
  border-left: 3px solid var(--bronze);
  color: var(--white);
  background: var(--indigo);
}

.producer-directory-card small,
.producer-directory-card em {
  color: #d8c095;
}

.producer-directory-card strong {
  font-size: 29px;
}

.producer-directory-card.is-open {
  border-left-color: #d8c095;
}

.producer-directory-card .producer-card-arrow {
  transition: transform 180ms ease;
}

.producer-quick-access {
  margin-top: 0;
  padding: 0 18px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: rgba(255, 253, 248, 0.38);
}

.producer-quick-access-head {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  color: var(--bronze-action);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.producer-quick-access-head span {
  color: var(--body);
  font-size: 7px;
}

.quick-access {
  border-bottom: 1px solid var(--rule);
}

.quick-access > button {
  display: grid;
  width: 100%;
  min-height: 88px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 0;
  border: 0;
  border-top: 1px solid var(--rule);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.quick-access > button > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.quick-access button small {
  color: var(--bronze-action);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.quick-access button strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.quick-access button em {
  display: none;
  color: var(--body);
  font-size: 10px;
  font-style: normal;
}

.quick-access button .range-inline-counts {
  display: block;
  margin-top: 8px;
  color: var(--body);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.025em;
  line-height: 1.55;
}

.range-inline-counts b {
  color: var(--bronze-action);
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 500;
}

.quick-access button i {
  padding-left: 14px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: normal;
}

.directory-note {
  margin: 26px 0 0;
  color: var(--body);
  font-size: 11px;
}

.producer-page {
  padding-top: 28px;
}

.profile-visual-grid {
  margin-top: 24px;
}

.story-visual-grid {
  display: grid;
  margin-top: 24px;
  grid-template-columns: minmax(0, 2.55fr) minmax(88px, 1fr);
  gap: 8px;
}

.image-crop {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.image-crop img {
  position: absolute;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.profile-portrait {
  aspect-ratio: 791 / 560;
}

.profile-portrait img {
  top: -19.3%;
  left: -12.7%;
  width: 156.8%;
}

.falkenstein-profile-portrait img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.falkenstein-profile-page .producer-title {
  font-size: clamp(37px, 10.2vw, 48px);
}

.amorotti-profile-portrait {
  aspect-ratio: 16 / 9;
}

.amorotti-profile-portrait img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.amorotti-profile-page .producer-title {
  font-size: clamp(43px, 12vw, 57px);
}

.producer-title {
  margin: 31px 0 2px;
  font-family: var(--serif);
  font-size: clamp(43px, 12.5vw, 59px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.producer-subtitle {
  margin: 0;
  color: var(--body);
  font-family: var(--serif);
  font-size: 15px;
}

.profile-positioning {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  gap: 5px;
}

.profile-positioning strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.profile-positioning span {
  color: var(--body);
  font-size: 13px;
}

.amorotti-profile-page .glass-style {
  margin-top: 21px;
}

.glass-style {
  display: flex;
  margin: 23px 0 29px;
  flex-direction: column;
  padding: 17px 0 18px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.glass-style small {
  margin-bottom: 5px;
  color: var(--bronze-action);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.glass-style strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.profile-intro {
  color: var(--body);
  font-size: 15px;
  line-height: 1.92;
}

.profile-intro p {
  margin: 0 0 19px;
}

.judgement-section,
.at-glance,
.timeline-section,
.critics-section {
  margin-top: 42px;
}

.judgement-section > h2,
.at-glance > h2,
.timeline-section > h2,
.critics-section > h2 {
  margin: 0 0 14px;
  color: var(--bronze-action);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.judgement-section > h2 span,
.at-glance > h2 span,
.timeline-section > h2 span,
.critics-section > h2 span {
  color: var(--body);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.judgement-section article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}

.judgement-section article > span {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 24px;
}

.judgement-section h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.judgement-section p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.75;
}

.at-glance {
  padding: 21px 18px 18px;
  background: var(--paper-deep);
}

.at-glance > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.at-glance > div > span {
  display: flex;
  min-height: 80px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px;
  border-top: 1px solid rgba(40, 52, 74, 0.16);
}

.at-glance > div > span:nth-child(odd) {
  border-right: 1px solid rgba(40, 52, 74, 0.16);
}

.at-glance small {
  margin-bottom: 4px;
  color: var(--body);
  font-size: 9px;
}

.at-glance strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
}

.at-glance-five > div > span:last-child {
  grid-column: 1 / -1;
  border-right: 0;
}

.producer-page .chapter-cta {
  margin-top: 36px;
}

.story-visual-grid {
  grid-template-columns: minmax(0, 1.88fr) minmax(112px, 1fr);
}

.story-bottles {
  aspect-ratio: 791 / 310;
}

.story-bottles img {
  top: -44.8%;
  left: -11.8%;
  width: 178.1%;
}

.story-packaging {
  aspect-ratio: 420 / 248;
}

.story-packaging img {
  top: -59%;
  left: -231%;
  width: 354.8%;
}

.falkenstein-story-visuals .story-bottles img,
.falkenstein-story-visuals .story-packaging img,
.amorotti-story-visuals .story-bottles img,
.amorotti-story-visuals .story-packaging img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.falkenstein-story-visuals .story-bottles img {
  object-position: center 54%;
}

.falkenstein-story-visuals .story-packaging img {
  object-position: center;
}

.amorotti-story-visuals .story-bottles img {
  object-position: center 55%;
}

.amorotti-story-visuals .story-packaging img {
  object-position: center 24%;
}

.story-title {
  margin: 29px 0 4px;
  font-family: var(--serif);
  font-size: clamp(29px, 8.2vw, 39px);
  font-weight: 500;
  line-height: 1.45;
}

.story-deck {
  margin: 0 0 29px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--rule);
  color: var(--body);
  font-family: var(--serif);
  font-size: 13px;
}

.story-copy article {
  padding: 0 0 29px;
}

.story-copy article + article {
  padding-top: 29px;
  border-top: 1px solid var(--rule);
}

.story-copy small {
  color: var(--bronze-action);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.story-copy h2 {
  margin: 3px 0 9px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.story-copy p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.92;
}

.timeline-section {
  padding: 23px 20px 18px;
  background: var(--paper-deep);
}

.timeline-list {
  position: relative;
  margin-top: 18px;
  padding-left: 22px;
}

.timeline-list::before {
  position: absolute;
  top: 11px;
  bottom: 15px;
  left: 4px;
  width: 1px;
  background: var(--indigo);
  content: "";
  opacity: 0.45;
}

.timeline-list article {
  position: relative;
  display: grid;
  grid-template-columns: 69px 1fr;
  gap: 10px;
  padding: 0 0 22px;
}

.timeline-list article::before {
  position: absolute;
  top: 7px;
  left: -22px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper-deep);
  border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo);
  content: "";
}

.timeline-list time {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.timeline-list p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.7;
}

.critics-section article {
  padding: 19px 0 20px;
  border-top: 1px solid var(--rule);
}

.critics-section h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.critics-section article small {
  color: var(--bronze-action);
  font-size: 9px;
}

.critics-section article p {
  margin: 7px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.8;
}

.source-note {
  margin: 9px 0 0;
  color: #8b8d8e;
  font-size: 10px;
}

.range-hero {
  display: grid;
  margin: 17px 0 37px;
  grid-template-columns: 1fr;
}

.range-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(51px, 14.6vw, 69px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.05em;
}

.range-hero > div:first-child > span {
  display: block;
  margin: 1px 0 17px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.22em;
}

.range-hero > div:first-child > strong {
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.range-hero > div:first-child > em {
  display: block;
  color: var(--body);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.range-hero-counts {
  display: grid;
  margin-top: 24px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}

.range-hero-counts span {
  display: flex;
  min-height: 55px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--rule);
  color: var(--body);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.range-hero-counts span:nth-child(odd) {
  border-right: 1px solid var(--rule);
}

.range-hero-counts span:nth-child(even) {
  padding-left: 18px;
}

.range-hero-counts b {
  color: var(--indigo);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.wine-group {
  margin-bottom: 38px;
}

.wine-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 11px;
  color: var(--bronze-action);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wine-group-title::after {
  height: 1px;
  flex: 1;
  background: var(--bronze);
  content: "";
  opacity: 0.65;
}

.wine-card {
  display: grid;
  width: 100%;
  min-height: 112px;
  grid-template-columns: 13px 1fr;
  gap: 10px;
  padding: 17px 15px 14px;
  border: 1px solid rgba(180, 134, 63, 0.26);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.42);
  overflow: hidden;
}

.wine-card + .wine-card {
  margin-top: 9px;
}

.wine-marker {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: var(--indigo);
  transform: rotate(45deg);
}

.wine-card-main {
  min-width: 0;
}

.wine-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.52;
}

.wine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  margin-top: 7px;
  color: var(--body);
  font-size: 11px;
}

.wine-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
}

.wine-actions small {
  color: #8b8d8e;
  font-size: 9px;
}

.wine-actions.no-map {
  justify-content: flex-end;
}

.origin-map-toggle {
  min-height: 44px;
  padding: 0 10px 0 0;
  border: 0;
  color: var(--bronze-action);
  background: transparent;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.tech-button {
  min-height: 44px;
  padding: 0 3px 0 15px;
  border: 0;
  color: var(--bronze-action);
  background: transparent;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.origin-map-panel {
  grid-column: 1 / -1;
  margin: 4px -15px -14px;
  padding: 18px 15px 16px;
  border-top: 1px solid var(--rule);
  background: rgba(238, 232, 221, 0.38);
}

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

.origin-map-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 13px;
}

.origin-map-heading small {
  display: block;
  color: var(--bronze-action);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.origin-map-heading h3 {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.origin-map-heading > span {
  padding-bottom: 3px;
  color: var(--body);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.origin-map-shell {
  padding: 4px;
  border: 1px solid rgba(180, 134, 63, 0.28);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 9px 26px rgba(40, 52, 74, 0.09), inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.origin-map-frame {
  border: 1px solid rgba(40, 52, 74, 0.18);
  background: #f2eee6;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.36);
}

.origin-map-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.origin-hierarchy-scale {
  padding: 14px 3px 13px;
  border-bottom: 1px solid var(--rule);
}

.origin-scale-bar {
  display: grid;
  height: 8px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(40, 52, 74, 0.18);
  box-shadow: 0 2px 8px rgba(40, 52, 74, 0.05);
  overflow: hidden;
}

.origin-scale-bar span + span {
  border-left: 1px solid rgba(255, 253, 248, 0.58);
}

.origin-scale-bar .regional { background: #e7e1d7; }
.origin-scale-bar .village { background: #d0d6df; }
.origin-scale-bar .premier { background: #929cad; }
.origin-scale-bar .grand { background: #2a354a; }

.origin-scale-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 7px;
}

.origin-scale-labels > span {
  min-width: 0;
}

.origin-scale-labels > span:not(:first-child) {
  padding-left: 7px;
  border-left: 1px solid rgba(40, 52, 74, 0.1);
}

.origin-scale-labels strong {
  display: block;
  font-family: var(--serif);
  font-size: 8.5px;
  font-weight: 500;
  line-height: 1.2;
}

.origin-scale-labels small {
  display: block;
  margin-top: 3px;
  color: #92969a;
  font-size: 5.8px;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.origin-context-strip {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  margin-top: 12px;
}

.origin-selected-key {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.origin-selected-mark {
  width: 34px;
  height: 11px;
  flex: 0 0 auto;
  border: 2px solid #83500f;
  background-color: rgba(212, 170, 90, 0.82);
  background-image: repeating-linear-gradient(135deg, transparent 0 6px, #78480d 6px 7.5px);
  box-shadow: 0 0 0 2px rgba(255, 250, 240, 0.96), 0 2px 7px rgba(111, 71, 21, 0.18);
}

.origin-selected-key strong {
  display: block;
  color: #875310;
  font-family: var(--serif);
  font-size: 9px;
  font-weight: 600;
}

.origin-selected-key small {
  display: block;
  margin-top: 2px;
  color: #92969a;
  font-size: 6px;
  letter-spacing: 0.09em;
}

.origin-site-facts {
  display: grid;
  grid-template-columns: 1.28fr 0.78fr 0.86fr;
  min-width: 0;
  margin: 0;
}

.origin-site-facts > div {
  min-width: 0;
  padding: 1px 6px 0 8px;
  border-left: 1px solid var(--rule);
}

.origin-site-facts dt,
.origin-site-facts dd {
  margin: 0;
}

.origin-site-facts dt {
  color: #92969a;
  font-size: 6.2px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: nowrap;
}

.origin-site-facts dt small {
  display: block;
  margin-top: 2px;
  font-size: 5.2px;
  letter-spacing: 0.09em;
}

.origin-site-facts dd {
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 8.2px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.origin-place-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 13px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.origin-place-facts > div {
  min-height: 62px;
  padding: 10px 7px 9px;
}

.origin-place-facts > div + div {
  padding-left: 13px;
  border-left: 1px solid var(--rule);
}

.origin-place-facts small {
  display: block;
  color: #929292;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.origin-place-facts strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.origin-map-note {
  margin: 10px 2px 0;
  color: #878b8e;
  font-size: 8px;
  line-height: 1.55;
}

.falkenstein-place-teaser {
  display: grid;
  gap: 11px;
  margin: 27px 0 33px;
  padding: 18px 0 16px;
  border-top: 1px solid var(--bronze);
  border-bottom: 1px solid var(--rule);
}

.falkenstein-place-teaser h2,
.falkenstein-valley-note h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
}

.falkenstein-place-teaser h2 {
  font-size: 22px;
  line-height: 1.42;
}

.falkenstein-place-teaser p,
.falkenstein-valley-note p {
  margin: 7px 0 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.8;
}

.falkenstein-place-teaser button,
.falkenstein-valley-note button,
.falkenstein-site-link {
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--bronze-action);
  background: transparent;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.falkenstein-place-teaser button,
.falkenstein-valley-note button {
  width: fit-content;
}

.falkenstein-place-teaser button:active,
.falkenstein-valley-note button:active,
.falkenstein-site-link:active,
.falkenstein-map-disclosure:active,
.falkenstein-map-tabs button:active {
  transform: translateY(1px);
}

.story-copy .falkenstein-valley-note {
  margin: 1px 0 29px;
  padding: 17px 17px 12px;
  border-left: 3px solid var(--bronze);
  background: rgba(238, 232, 221, 0.58);
}

.falkenstein-valley-note h3 {
  font-size: 18px;
  line-height: 1.45;
}

.falkenstein-map-module {
  scroll-margin-top: calc(var(--header-height) + 12px);
  margin: -10px 0 38px;
  border: 1px solid var(--rule);
  border-top-color: var(--bronze);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.62), rgba(238, 232, 221, 0.46));
}

.falkenstein-map-disclosure {
  display: flex;
  width: 100%;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 13px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.falkenstein-map-disclosure > span {
  flex: 1;
  min-width: 0;
}

.falkenstein-map-disclosure small,
.falkenstein-map-disclosure strong,
.falkenstein-map-disclosure em {
  display: block;
}

.falkenstein-map-disclosure small {
  color: var(--bronze-action);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.falkenstein-map-disclosure strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.42;
}

.falkenstein-map-disclosure em {
  margin-top: 3px;
  color: #8b8d8e;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.06em;
}

.falkenstein-map-disclosure > i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  color: var(--bronze-action);
  font-family: var(--serif);
  font-size: 19px;
  font-style: normal;
  line-height: 40px;
  text-align: center;
}

.falkenstein-map-content[hidden],
.falkenstein-map-panel[hidden] {
  display: none;
}

.falkenstein-map-content {
  padding-bottom: 4px;
  border-top: 1px solid var(--rule);
}

.falkenstein-map-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--rule);
}

.falkenstein-map-tabs button {
  position: relative;
  min-height: 48px;
  padding: 0 4px;
  border: 0;
  color: #7c8084;
  background: transparent;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.falkenstein-map-tabs button + button {
  border-left: 1px solid var(--rule);
}

.falkenstein-map-tabs button[aria-selected="true"] {
  color: var(--bronze-action);
}

.falkenstein-map-tabs button[aria-selected="true"]::after {
  position: absolute;
  right: 8px;
  bottom: -1px;
  left: 8px;
  height: 2px;
  background: var(--bronze);
  content: "";
}

.falkenstein-map-panel {
  padding: 18px 10px 19px;
}

.falkenstein-map-panel figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(180, 134, 63, 0.3);
  background: var(--paper-deep);
}

.falkenstein-map-panel figure img {
  display: block;
  width: 100%;
  height: auto;
}

.falkenstein-vineyard-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 10px;
  border: 1px solid var(--rule);
  background: var(--rule);
}

.falkenstein-vineyard-picker button {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 0;
  color: var(--body);
  background: rgba(248, 245, 237, 0.96);
  text-align: left;
  cursor: pointer;
}

.falkenstein-vineyard-picker button:last-child {
  grid-column: 1 / -1;
}

.falkenstein-vineyard-picker button[aria-pressed="true"] {
  color: var(--indigo);
  background: rgba(231, 204, 151, 0.42);
  box-shadow: inset 0 -2px 0 var(--bronze);
}

.falkenstein-vineyard-picker b {
  flex: 0 0 auto;
  color: var(--bronze-action);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.falkenstein-vineyard-picker span,
.falkenstein-vineyard-picker strong,
.falkenstein-vineyard-picker small {
  display: block;
  min-width: 0;
}

.falkenstein-vineyard-picker strong {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.falkenstein-vineyard-picker small {
  margin-top: 3px;
  color: #858789;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.falkenstein-vineyard-detail {
  margin-top: 10px;
  padding: 14px 13px 12px;
  border-top: 1px solid var(--bronze);
  border-bottom: 1px solid var(--rule);
  background: rgba(238, 232, 221, 0.58);
}

.falkenstein-vineyard-detail header small,
.falkenstein-vineyard-detail header strong {
  display: block;
}

.falkenstein-vineyard-detail header small {
  color: var(--bronze-action);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.falkenstein-vineyard-detail header strong {
  margin-top: 4px;
  color: var(--indigo);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}

.falkenstein-vineyard-detail dl {
  margin: 12px 0 0;
}

.falkenstein-vineyard-detail dl div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(207, 198, 181, 0.92);
}

.falkenstein-vineyard-detail dt,
.falkenstein-vineyard-detail dd {
  margin: 0;
}

.falkenstein-vineyard-detail dt {
  color: #87898a;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.falkenstein-vineyard-detail dd {
  color: var(--body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.falkenstein-vineyard-detail > p {
  margin: 9px 0 0;
  color: var(--body);
  font-size: 10px;
  line-height: 1.72;
}

.falkenstein-vineyard-scope {
  display: block;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(207, 198, 181, 0.92);
  color: #888a8a;
  font-size: 8px;
  line-height: 1.6;
}

.falkenstein-map-facts {
  border-top: 1px solid rgba(180, 134, 63, 0.3);
  background: rgba(238, 232, 221, 0.72);
}

.falkenstein-map-facts dl {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.55fr;
  margin: 0;
}

.falkenstein-map-facts div {
  min-width: 0;
  padding: 10px 8px 11px;
}

.falkenstein-map-facts div + div {
  border-left: 1px solid var(--rule);
}

.falkenstein-map-facts dt,
.falkenstein-map-facts dd {
  margin: 0;
}

.falkenstein-map-facts dt {
  color: var(--bronze-action);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.falkenstein-map-facts dd {
  margin-top: 5px;
  color: var(--body);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.5;
}

.falkenstein-map-copy {
  padding-top: 17px;
}

.falkenstein-map-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.42;
}

.falkenstein-map-copy > p {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 12px;
  line-height: 1.8;
}

.falkenstein-map-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 14px;
}

.falkenstein-map-legend span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  color: var(--body);
  font-size: 8px;
  line-height: 1.25;
}

.falkenstein-map-legend i {
  width: 18px;
  height: 10px;
  flex: 0 0 auto;
  border: 1px solid #7d7b75;
  background: #dedad0;
}

.falkenstein-map-legend .is-notable {
  border-color: #394665;
  background: #8e97a8;
}

.falkenstein-map-legend .is-falkenstein {
  border: 2px solid var(--aria-teal);
  background: #e7cc97;
}

.falkenstein-site-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  margin: 17px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.falkenstein-site-index li {
  min-width: 0;
  color: var(--body);
  font-family: var(--serif);
  font-size: 10px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.falkenstein-site-index b {
  display: inline-block;
  width: 22px;
  color: var(--bronze-action);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
}

.falkenstein-map-copy .falkenstein-map-source {
  margin-top: 15px;
  padding-top: 11px;
  border-top: 1px solid var(--rule);
  color: #878b8e;
  font-size: 9px;
  line-height: 1.65;
}

.falkenstein-map-copy .falkenstein-map-micro-sites {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 10px;
  line-height: 1.72;
}

.falkenstein-map-micro-sites strong {
  display: block;
  margin-bottom: 4px;
  color: var(--indigo);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
}

.falkenstein-map-valley {
  margin-top: 15px;
  padding: 14px 15px;
  border-left: 3px solid var(--bronze);
  background: rgba(238, 232, 221, 0.68);
}

.falkenstein-map-valley strong {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}

.falkenstein-map-valley p {
  margin: 6px 0 0;
  color: var(--body);
  font-size: 11px;
  line-height: 1.75;
}

.falkenstein-core-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.falkenstein-core-metrics span {
  min-width: 0;
  padding: 11px 7px 10px;
  color: var(--body);
  font-size: 8px;
  line-height: 1.45;
}

.falkenstein-core-metrics span + span {
  border-left: 1px solid var(--rule);
}

.falkenstein-core-metrics b {
  display: block;
  color: var(--aria-teal);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.falkenstein-site-link {
  padding-right: 10px;
  font-size: 9px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.falkenstein-range-page .wine-card h3 {
  overflow-wrap: anywhere;
}

.amorotti-range-page .wine-group {
  margin-bottom: 15px;
}

.amorotti-range-page .wine-group-title {
  margin-bottom: 6px;
  font-size: 14px;
}

.amorotti-range-page .wine-card {
  min-height: 0;
  padding: 11px 13px 7px;
}

.amorotti-range-page .wine-card h3 {
  font-size: 15px;
  line-height: 1.38;
}

.amorotti-range-page .wine-meta {
  margin-top: 3px;
}

.amorotti-range-page .wine-actions {
  margin-top: 1px;
}

.amorotti-terroir {
  margin: 25px 0 21px;
  padding: 16px 15px 14px;
  border-top: 1px solid var(--bronze);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.7), rgba(232, 226, 216, 0.34));
}

.amorotti-terroir-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.amorotti-terroir-heading small {
  color: var(--bronze-action);
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.amorotti-terroir-heading h2 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.amorotti-terroir-heading > span {
  padding-bottom: 2px;
  color: #8b8d8e;
  font-size: 7px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.amorotti-terroir-body {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.amorotti-terroir-map {
  margin: 0;
}

.amorotti-terroir-map img {
  display: block;
  width: 108px;
  height: 100px;
  margin: 0 auto;
  object-fit: contain;
}

.amorotti-terroir-map figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 6px;
  color: var(--bronze-action);
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.amorotti-terroir-map figcaption i {
  width: 6px;
  height: 6px;
  border: 1px solid #76501e;
  background: #b7862f;
  transform: rotate(45deg);
}

.amorotti-terroir-copy > p {
  margin: 0;
  color: var(--body);
  font-size: 10px;
  line-height: 1.72;
}

.amorotti-terroir-copy dl {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr 1.6fr;
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}

.amorotti-terroir-copy dl > div {
  min-width: 0;
  padding-right: 7px;
}

.amorotti-terroir-copy dl > div + div {
  padding-left: 7px;
  border-left: 1px solid var(--rule);
}

.amorotti-terroir-copy dt,
.amorotti-terroir-copy dd {
  margin: 0;
}

.amorotti-terroir-copy dt {
  color: #929292;
  font-size: 6px;
  letter-spacing: 0.08em;
}

.amorotti-terroir-copy dd {
  margin-top: 3px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 8px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.amorotti-range-page .range-disclaimer {
  margin-top: 0;
}

.range-disclaimer {
  margin: 8px 0 30px;
  padding: 15px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--body);
  font-size: 11px;
  line-height: 1.7;
}

.inquiry-cta {
  margin-top: 0;
}

.modal-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.modal-layer[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(19, 25, 37, 0.52);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.bottom-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: min(82svh, 640px);
  overflow-y: auto;
  padding: 31px 25px calc(25px + env(safe-area-inset-bottom));
  border-radius: 12px 12px 0 0;
  color: var(--indigo);
  background: var(--paper);
  box-shadow: 0 -20px 55px rgba(18, 24, 37, 0.2);
  animation: sheet-in 230ms ease-out both;
}

@keyframes sheet-in {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  font-weight: 300;
  cursor: pointer;
}

.modal-kicker {
  padding-right: 40px;
  color: var(--bronze-action);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.bottom-sheet h2 {
  margin: 13px 40px 14px 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.4;
}

#modal-body {
  color: var(--body);
  font-size: 14px;
  line-height: 1.8;
}

#modal-body p {
  margin: 0 0 12px;
}

#modal-body .modal-wine {
  padding: 13px 15px;
  border-left: 2px solid var(--bronze);
  color: var(--indigo);
  background: var(--paper-deep);
  font-family: var(--serif);
  font-size: 15px;
}

.modal-contact {
  margin-top: 7px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.modal-contact-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--rule);
}

.modal-contact-row:last-child {
  border-bottom: 0;
}

.modal-contact-row span {
  color: var(--bronze-action);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.modal-contact-row strong,
.modal-contact-row a {
  color: var(--indigo);
  font-size: 14px;
  font-weight: 500;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.modal-primary {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  border: 0;
  color: var(--white);
  background: var(--indigo);
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

noscript {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px;
  color: white;
  background: #7b2733;
  text-align: center;
}

@media (min-width: 481px) {
  body {
    padding: 28px 0;
  }

  .app-shell {
    min-height: calc(100svh - 56px);
    border: 1px solid rgba(40, 52, 74, 0.1);
  }

  .cover-view {
    min-height: calc(100svh - 58px);
  }

  .modal-layer {
    padding-bottom: 28px;
  }

  .bottom-sheet {
    border-radius: 12px;
  }
}

@media (max-width: 350px) {
  :root { --page-pad: 19px; }
  .header-actions button { min-width: 41px; padding-inline: 4px; }
  .cover-content { padding-inline: 26px; }
  .cover-entry { padding-inline: 26px; }
  .glass-style strong { font-size: 18px; letter-spacing: 0.04em; }
  .timeline-list article { grid-template-columns: 58px 1fr; }
}

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