/* Locally hosted Latin subsets; licenses are in assets/fonts. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
}

/* === PRIMITIVE TOKENS === */
:root {
  --color-ivory-50: #fbf9f5;
  --color-ivory-100: #f5f1eb;
  --color-ivory-200: #e7e0d7;
  --color-ink-900: #111718;
  --color-ink-800: #182022;
  --color-olive-800: #36422f;
  --color-olive-700: #465440;
  --color-olive-600: #56624d;
  --color-amber-800: #783616;
  --color-amber-700: #a84b20;
  --color-amber-500: #ca9664;
  --color-white: #ffffff;
  --color-black: #0c1112;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 0.8125rem;
  --font-size-sm: 0.9375rem;
  --font-size-base: 1.0625rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: clamp(1.75rem, 2.4vw, 2.25rem);
  --font-size-2xl: clamp(2rem, 3.3vw, 3rem);
  --font-size-hero: clamp(3rem, 5.9vw, 5.25rem);

  --radius-sm: 0.2rem;
  --radius-md: 0.2rem;
  --radius-lg: 0.55rem;
  --shadow-card: 0 0.5rem 2rem rgb(25 20 13 / 0.045);
  --border-soft: 1px solid rgb(17 23 24 / 0.12);
  --duration-fast: 160ms;
}

/* === SEMANTIC TOKENS === */
:root {
  --color-background: var(--color-ivory-50);
  --color-foreground: var(--color-ink-900);
  --color-surface: var(--color-white);
  --color-surface-soft: var(--color-ivory-100);
  --color-primary: var(--color-amber-700);
  --color-primary-hover: var(--color-amber-800);
  --color-secondary: var(--color-olive-700);
  --color-secondary-hover: var(--color-olive-800);
  --color-on-dark: var(--color-ivory-50);
  --color-muted: #696965;
  --page-gutter: clamp(2.5rem, 4.65vw, 5rem);
  --content-width: 80rem;
}

/* === COMPONENT TOKENS === */
:root {
  --button-bg: var(--color-primary);
  --button-bg-hover: var(--color-primary-hover);
  --button-fg: var(--color-white);
  --button-radius: var(--radius-md);
  --button-height: 3rem;
  --card-bg: var(--color-surface);
  --card-border: var(--border-soft);
  --card-radius: var(--radius-md);
  --card-shadow: var(--shadow-card);
  --header-height: 5.25rem;
}

/* === RESET AND GLOBALS === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 32px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.footer-brand__name {
  font-family: var(--font-serif);
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--color-amber-500);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--color-white);
  color: var(--color-black);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: var(--button-height);
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-fg);
  text-decoration: none;
  transition: filter var(--duration-fast), transform var(--duration-fast);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  line-height: 1.25;
  text-align: center;
}

.button:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

/* WooCommerce adds body.woocommerce on shop/product/cart pages; re-assert the theme button over its stylesheet. */
.woocommerce a.button,
.woocommerce .button,
.woocommerce-page a.button,
.woocommerce-page .button {
  display: inline-flex;
  min-height: var(--button-height);
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border: 0;
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-fg);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  font-size: 1rem;
}

.woocommerce a.button:hover,
.woocommerce .button:hover,
.woocommerce-page a.button:hover,
.woocommerce-page .button:hover {
  background: var(--button-bg);
  color: var(--button-fg);
  filter: brightness(0.92);
}

/* The button--header/--reserve modifiers set their own min-height at the same (0,1,0)
 * specificity as .button, so the Woo re-assertion above would otherwise win. That
 * re-assertion's "a.button" alternative is (0,2,1) because both CTAs are <a> tags, so
 * match it with an "a.button--header"/"a.button--reserve" alternative here too — a bare
 * (0,2,0) selector isn't specific enough to beat it. */
.woocommerce a.button--header,
.woocommerce .button--header,
.woocommerce-page a.button--header,
.woocommerce-page .button--header {
  min-height: var(--button-height);
  font-weight: 600;
}

.woocommerce a.button--reserve,
.woocommerce .button--reserve,
.woocommerce-page a.button--reserve,
.woocommerce-page .button--reserve {
  min-height: var(--button-height);
  font-weight: 600;
}

/* === HEADER === */
.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  background: var(--color-ivory-50);
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
}

.site-header__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) auto minmax(9rem, 1fr);
  align-items: center;
}

.brand {
  width: 9.75rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  font-size: 1rem;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover,
.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.button--header {
  width: auto;
  justify-self: end;
  min-height: var(--button-height);
  font-size: 1rem;
}

.nav-toggle {
  display: none;
}

/* === HERO === */
.hero {
  min-height: 0;
  display: block;
  grid-template-columns: 48% 52%;
  background: var(--color-ink-900);
  color: var(--color-on-dark);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero__copy {
  padding: 3rem 2.5rem 2.5rem max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 68%;
}

.eyebrow,
.event-card__eyebrow {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.hero h1 {
  max-width: 11em;
  margin-bottom: 1.4rem;
  font-size: var(--font-size-hero);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  font-weight: 700;
}

.hero__intro {
  max-width: 43ch;
  margin-bottom: 1.5rem;
  font-size: 1.1875rem;
  line-height: 1.65;
}

.button--hero {
  width: auto;
  min-height: 3.25rem;
  margin-bottom: 0;
  min-width: 11rem;
  gap: 1.5rem;
}

.gift-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 400;
  text-underline-offset: 0.18rem;
  text-decoration-thickness: 1px;
}

.hero__image {
  min-width: 0;
  background-position: center 60%;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* === BOOKING + STEPS === */
.booking {
  display: flow-root;
  position: relative;
  height: auto;
  background: #eee5d7;
  padding: 2.5rem 0;
}

.booking__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(21rem, 0.95fr) 1.25fr;
  gap: 2.5rem;
  align-items: center;
}

.event-card {
  position: relative;
  z-index: 3;
  align-self: start;
  min-height: 0;
  margin-top: 0;
  padding: 1.5rem;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: 0 10px 30px rgb(38 24 8 / 0.08);
  border-top: 5px solid var(--color-primary);
}

.event-card__eyebrow {
  margin-bottom: 1.35rem;
  color: var(--color-primary);
}

.event-card__heading {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  min-height: 0;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: var(--border-soft);
  font-family: var(--font-sans);
  line-height: 1;
  text-transform: uppercase;
}

.event-date strong {
  margin: 0.25rem 0;
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1;
}

.event-date span {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
}

.event-title {
  padding-left: 1.25rem;
}

.event-title h2 {
  margin-bottom: 0.5rem;
  font-size: 1.625rem;
  line-height: 1.2;
}

.event-title > p {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.event-title .event-time {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.event-title .event-time span {
  color: var(--color-olive-600);
  font-size: 1.1rem;
}

.event-card__meta {
  height: auto;
  margin-top: 1.25rem;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: var(--border-soft);
  font-size: 0.9375rem;
  min-height: 4.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.event-card__meta strong {
  font-weight: 600;
}

.button--reserve {
  width: 100%;
  min-height: var(--button-height);
}

.secure {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.steps {
  padding-top: 0;
}

.steps h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 2.7vw, 2.25rem);
  line-height: 1.15;
}

.steps__list {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps__list li {
  min-width: 0;
  min-height: 0;
  padding: 0 1.25rem;
  border-left: var(--border-soft);
}

.steps__list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.steps__list li:last-child {
  padding-right: 0;
}

.step-number {
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-olive-800);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  border: 0;
  font-weight: 600;
}

.steps h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: var(--font-sans);
  font-weight: 600;
}

.steps p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* === ROOMS === */
.rooms {
  height: auto;
  background: var(--color-ink-900);
  border-top: 1px solid rgb(0 0 0 / 0.03);
  padding: 3rem 0;
  color: var(--color-ivory-50);
}

.rooms__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding-top: 0;
}

.rooms h2 {
  margin-bottom: 0;
  text-align: left;
  font-size: var(--font-size-2xl);
  line-height: 1.1;
  text-wrap: balance;
  max-width: 16em;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.room-card {
  overflow: hidden;
  border: 1px solid #3b4440;
  border-radius: 0.25rem;
  background: #202a29;
  display: flex;
  flex-direction: column;
}

.room-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.room-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  line-height: 1.15;
}

.room-card__meta {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9375rem;
  flex-wrap: wrap;
  color: #d5b88f;
}

.room-card__meta strong {
  font-weight: 400;
}

.coming-soon {
  color: var(--color-muted);
  white-space: nowrap;
}

.room-card p {
  min-height: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e1d9;
}

.room-card a {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #4a534e;
  color: #f1c591;
}

.room-card a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

/* === BOTTLE GUIDE === */
.bottle-guide {
  position: relative;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #3d4b35;
  color: var(--color-white);
  min-height: 23rem;
}

.bottle-guide__copy {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.5rem 2.5rem max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
}

.bottle-guide h2 {
  margin-bottom: 1rem;
  font-size: var(--font-size-2xl);
  white-space: normal;
  line-height: 1.15;
  max-width: 12em;
}

.short-rule {
  display: block;
  width: 2rem;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--color-amber-500);
}

.bottle-guide__copy > p {
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.bottle-types {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  list-style: none;
  max-width: 20rem;
}

.bottle-types li {
  width: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.9375rem;
}

.bottle-types strong {
  font-weight: 400;
}

.bottle-icon {
  position: relative;
  width: 2rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
}

.bottle-icon--barrel::before {
  content: "";
  width: 1.55rem;
  height: 2rem;
  border: 1.5px solid currentColor;
  border-radius: 46%;
  box-shadow: inset 0.34rem 0 0 transparent, inset -0.34rem 0 0 transparent;
}

.bottle-icon--barrel::after {
  content: "";
  position: absolute;
  width: 1.65rem;
  height: 0.55rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.bottle-icon--bottle::before {
  content: "";
  width: 1.2rem;
  height: 1.7rem;
  align-self: flex-end;
  border: 1.5px solid currentColor;
  border-radius: 45% 45% 25% 25%;
}

.bottle-icon--bottle::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  width: 0.45rem;
  height: 1rem;
  border: 1.5px solid currentColor;
  border-bottom: 0;
}

.notes-panel {
  position: relative;
  z-index: 3;
  min-width: 0;
  margin-left: 0;
  background-position: center;
  background-size: cover;
  clip-path: none;
}

.notes-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-left: 1px solid rgb(255 255 255 / 0.85);
  clip-path: polygon(18% 0, 18.2% 0, 0.2% 100%, 0 100%);
  display: none;
}

.notes-download {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  color: var(--color-black);
  font-size: 0.9375rem;
  font-weight: 600;
  text-underline-offset: 0.18rem;
  background: var(--color-ivory-50);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

/* === NEWSLETTER === */
.newsletter {
  height: auto;
  color: var(--color-white);
  background: #a84b20;
  padding: 2.5rem 0;
}

.newsletter__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

.newsletter h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  line-height: 1.15;
}

.newsletter-form__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

.newsletter-form input,
.newsletter-form button {
  min-height: var(--button-height);
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
}

.newsletter-form input {
  padding: 0 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  min-width: 0;
  border: var(--border-soft);
}

.newsletter-form button {
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: var(--color-olive-700);
  color: var(--color-white);
  font-size: 1rem;
  min-height: var(--button-height);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
}

.newsletter-form__note,
.newsletter-form__success {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.newsletter-form__success:not(:empty) + * {
  display: none;
}

/* === FOOTER === */
.site-footer {
  min-height: 9.1rem;
  background: var(--color-ink-900);
  color: var(--color-white);
}

.site-footer__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand__name {
  width: 9.25rem;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.35rem;
  text-decoration: none;
}

.footer-brand__logo {
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand p,
.footer-nav {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.footer-brand p {
  margin-bottom: 0.4rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.footer-nav strong {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d6ac83;
}

.footer-nav a {
  text-decoration: none;
  padding-block: 0.3rem;
}

.fallback-content {
  min-height: 70vh;
  padding: var(--space-16) var(--page-gutter);
}

@media (max-width: 768px) {
  :root {
    --header-height: 4rem;
    --page-gutter: 1.25rem;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .desktop-only {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 8.25rem;
  }

  .nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.32rem;
    border: 0;
    background: transparent;
  }

  .nav-toggle__line {
    display: block;
    height: 1px;
    background: var(--color-ink-900);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem var(--page-gutter) 1.4rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    background: var(--color-ivory-50);
    border-bottom: var(--border-soft);
    box-shadow: var(--shadow-card);
    font-size: 1rem;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .button--header {
    display: none;
  }

  .woocommerce .button--header,
  .woocommerce-page .button--header {
    display: none !important;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero__copy {
    min-height: 0;
    padding: 3rem var(--page-gutter) 2.5rem;
  }

  .hero__intro {
    max-width: 20rem;
  }

  .hero__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .booking {
    height: auto;
    padding: 3rem 0;
  }

  .booking__inner {
    display: block;
  }

  .steps {
    padding-top: 3.5rem;
  }

  .steps__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps__list li,
  .steps__list li:first-child,
  .steps__list li:last-child {
    min-height: 0;
    padding: 0 0 1.5rem 3.8rem;
    border: 0;
    border-bottom: var(--border-soft);
  }

  .step-number {
    position: absolute;
    margin-left: -3.8rem;
  }

  .rooms {
    height: auto;
    padding: 2.5rem 0 3rem;
  }

  .rooms__inner {
    width: calc(100% - (2 * var(--page-gutter)));
    padding: 0;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .bottle-guide {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .bottle-guide__copy {
    min-height: 23rem;
    padding: 3rem var(--page-gutter);
  }

  .notes-panel {
    min-height: 72vw;
    margin: 0;
    clip-path: none;
  }

  .notes-download {
    left: var(--page-gutter);
    bottom: 1.2rem;
  }

  .newsletter__inner {
    width: calc(100% - (2 * var(--page-gutter)));
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

  .newsletter-form__controls {
    grid-template-columns: 1fr;
  }

  .newsletter-form input,

  .newsletter-form button {
    margin-top: 0.55rem;
    min-height: var(--button-height);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
  }

  .site-footer__inner {
    width: calc(100% - (2 * var(--page-gutter)));
    padding: 2.5rem 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand__name {
    width: 8.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* === HOME: NO UPCOMING SESSION === */
.booking--no-session {
  height: auto;
  padding-block: var(--space-10);
}

.booking--no-session .booking__inner {
  grid-template-columns: 1fr;
}

.newsletter-form__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* === PAGE HEADER === */
.page-header {
  position: relative;
  min-height: 20rem;
  display: flex;
  align-items: flex-end;
  background: var(--color-ink-900) center / cover no-repeat;
  color: var(--color-on-dark);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(17 23 24 / 0.15), rgb(17 23 24 / 0.78));
}

.page-header__inner {
  position: relative;
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding-block: 4rem 3rem;
}

.page-header h1 {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-hero);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 18em;
  text-wrap: balance;
}

.page-header p {
  max-width: 34rem;
  margin: 0;
  font-size: var(--font-size-lg);
}

/* === SESSION LIST === */
.session-list__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding-block: 3.5rem 5rem;
}

.room-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.room-filter a {
  padding: 0.6rem 1.25rem;
  border: var(--border-soft);
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  background: var(--color-surface);
}

.room-filter a[aria-current="true"] {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-on-dark);
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 23rem), 1fr));
  gap: 1.5rem;
}

.session-card {
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.75rem;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-top: 4px solid var(--color-primary);
}

.session-card .event-date {
  border-right: var(--border-soft);
  padding-right: var(--space-3);
}

.session-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.625rem;
  line-height: 1.15;
}

.session-card h2 a {
  text-decoration: none;
}

.session-card h2 a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.session-card__room {
  margin-bottom: var(--space-1);
  color: var(--color-muted);
  font-size: var(--font-size-sm);
}

.session-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 1.25rem;
  padding-top: 1.25rem;
  border-top: var(--border-soft);
  font-size: var(--font-size-sm);
  gap: 0.75rem;
  flex-wrap: wrap;
}

.session-card .button--reserve {
  width: 100%;
}

.session-list__empty {
  padding: var(--space-12) var(--space-6);
  text-align: center;
  border: var(--border-soft);
  border-radius: var(--card-radius);
  background: var(--color-surface-soft);
}

@media (max-width: 768px) {
  .page-header {
    min-height: 12rem;
  }

}

/* === SESSION DETAIL === */
.session-detail__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding-block: 4rem 5rem;
  display: grid;
  grid-template-columns: minmax(20rem, 24rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.session-detail__card {
  position: sticky;
  top: calc(var(--header-height) + var(--space-4));
  padding: 2rem;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-top: 4px solid var(--color-primary);
}

.session-detail__card .event-date {
  margin-bottom: 1.5rem;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.65rem;
  border-right: 0;
}

.session-detail__card .event-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
}

.session-detail__duration {
  color: var(--color-muted);
  font-size: var(--font-size-sm);
}

.session-detail__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: var(--space-4);
  padding-block: var(--space-3);
  border-block: var(--border-soft);
  flex-wrap: wrap;
  gap: 1rem;
}

.session-detail__meta strong {
  font-size: 1.375rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.session-detail form.cart {
  display: flex;
  gap: 0.75rem;
  margin-bottom: var(--space-3);
  align-items: end;
}

.session-detail form.cart .quantity input {
  width: 4.5rem;
  min-height: var(--button-height);
  padding-inline: var(--space-2);
  border: var(--border-soft);
  border-radius: var(--button-radius);
  text-align: center;
}

.session-detail form.cart .single_add_to_cart_button {
  flex: 1;
  min-height: var(--button-height);
  border: 0;
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-fg);
  cursor: pointer;
}

.session-detail__card .stock {
  display: none;
}

.session-detail__past {
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--color-surface-soft);
}

.session-detail__copy h2 {
  margin-top: 2.5rem;
  font-size: var(--font-size-2xl);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.session-detail__copy h2:first-child {
  margin-top: 0;
}

.session-detail__copy p {
  max-width: 58ch;
  line-height: 1.65;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .session-detail__inner {
    grid-template-columns: 1fr;
  }

  .session-detail__card {
    position: static;
  }
}

/* === WOO PAGES (cart, checkout, thank you) === */
.woocommerce-page main.editorial-page,
.woo-page {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: 60rem;
  margin: 0 auto;
  padding-block: var(--space-10) var(--space-12);
}

.woo-page__title {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-2xl);
}

.woocommerce table.shop_table {
  border: var(--border-soft);
  border-radius: var(--card-radius);
  border-collapse: separate;
  font-size: var(--font-size-base);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgb(17 23 24 / 0.08);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button.alt,
.woocommerce #place_order {
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-fg);
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce #place_order:hover {
  background: var(--button-bg-hover);
  color: var(--button-fg);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
#pwgc-redeem-gift-card-number {
  min-height: var(--button-height);
  padding: 0.5rem 0.85rem;
  border: var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  margin-bottom: var(--space-6);
}

.woocommerce-checkout #payment {
  border-radius: var(--card-radius);
  background: var(--color-surface-soft);
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--color-surface);
}

/* === GIFT === */
.gift-page__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding-block: 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 26rem);
  gap: var(--space-10);
  align-items: start;
}

.gift-page__copy p,
.gift-page__copy li {
  max-width: 38rem;
  line-height: 1.65;
}

.gift-page__copy h2 {
  margin-top: var(--space-6);
  font-size: var(--font-size-xl);
}

.gift-steps {
  padding-left: 1.25rem;
}

.gift-steps li + li {
  margin-top: var(--space-2);
}

.gift-purchase {
  padding: var(--space-6);
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}

.gift-purchase h2 {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-xl);
}

.gift-purchase table.variations,
.gift-purchase .pwgc-field-container {
  margin-bottom: var(--space-3);
}

.gift-purchase table.variations th {
  display: none;
}

.gift-purchase select,
.gift-purchase .pwgc-input-text,
.gift-purchase textarea {
  width: 100%;
  min-height: var(--button-height);
  padding: 0.5rem 0.85rem;
  border: var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.gift-purchase .pwgc-label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.gift-purchase .pwgc-subtitle {
  color: var(--color-muted);
  font-size: var(--font-size-xs);
}

.gift-purchase .single_add_to_cart_button {
  width: 100%;
  min-height: var(--button-height);
  margin-top: var(--space-3);
  border: 0;
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-fg);
  cursor: pointer;
}

.gift-purchase .reset_variations {
  display: none !important;
}

@media (max-width: 768px) {
  .gift-page__inner {
    grid-template-columns: 1fr;
  }
}

.site-notices {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  margin: var(--space-6) auto 0;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-top-color: var(--color-secondary);
}

.byob-order-sessions {
  margin-block: var(--space-8);
  padding: var(--space-6);
  border: var(--border-soft);
  border-radius: var(--card-radius);
  background: var(--color-surface-soft);
}

.byob-order-sessions h2 {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-xl);
}

.byob-order-session + .byob-order-session {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: var(--border-soft);
}

.byob-order-session__name {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
}

.byob-order-session__link {
  word-break: break-all;
  color: var(--color-muted);
  font-size: var(--font-size-sm);
}

.byob-cancel-note {
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .woocommerce table.shop_table_responsive tr td {
    display: flex;
    justify-content: space-between;
  }

  .woocommerce-cart .coupon {
    display: grid;
    gap: var(--space-2);
  }
}

/* === ABOUT === */
.about-page__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: var(--content-width);
  margin: 0 auto;
  padding-block: 4rem 5rem;
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) 1fr;
  gap: var(--space-10);
  align-items: start;
}

.about-page__portrait {
  margin: 0;
}

.about-page__portrait img {
  width: 100%;
  height: auto;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.about-page__portrait figcaption {
  margin-top: var(--space-2);
  color: var(--color-muted);
  font-size: var(--font-size-sm);
}

.about-page__copy p {
  max-width: 38rem;
  font-size: var(--font-size-lg);
  line-height: 1.65;
}

.about-page__copy h2 {
  margin-top: var(--space-6);
  font-size: var(--font-size-xl);
}

.about-page__copy .button {
  margin-top: var(--space-4);
  padding-inline: var(--space-6);
}

/* === EDITORIAL === */
.editorial-page__inner {
  width: calc(100% - (2 * var(--page-gutter)));
  max-width: 42rem;
  margin: 0 auto;
  padding-block: 4rem 5rem;
  line-height: 1.7;
}

.editorial-page__inner h2 {
  margin-top: var(--space-8);
  font-size: var(--font-size-xl);
}

.editorial-page__inner details {
  padding: var(--space-4) 0;
  border-bottom: var(--border-soft);
}

.editorial-page__inner summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
}

.editorial-page__inner details p {
  margin-top: var(--space-3);
}

.legal-notice {
  padding: var(--space-3) var(--space-4);
  border-left: 4px solid var(--color-amber-500);
  background: var(--color-surface-soft);
}

.wpcf7 label {
  display: block;
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  display: block;
  width: 100%;
  margin-top: var(--space-1);
  padding: 0.6rem 0.85rem;
  border: var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-weight: 400;
}

.wpcf7 input[type="submit"] {
  min-height: var(--button-height);
  padding-inline: var(--space-6);
  border: 0;
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-fg);
  font-weight: 600;
  cursor: pointer;
}

.wpcf7 .wpcf7-response-output {
  margin: var(--space-4) 0 0;
  padding: var(--space-3) var(--space-4);
  border: var(--border-soft);
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .about-page__inner {
    grid-template-columns: 1fr;
  }
}

/* === SHARED TYPOGRAPHY AND DETAILS === */
h1, h2, h3 {
  text-wrap: balance;
}
.hero .eyebrow {
  color: #d6ac83;
}
.hero__line {
  display: block;
}
.price-unit {
  font: 400 0.875rem / 1.5 var(--font-sans);
  color: var(--color-muted);
}
.room-card__price {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.event-time {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.event-card__heading > *, .session-card__body {
  min-width: 0;
}
.footer-brand p {
  font-size: 1rem;
  line-height: 1.65;
  color: #c9cbc5;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  text-underline-offset: 0.25rem;
}
.session-detail form.cart {
  flex-wrap: wrap;
}
.seat-label {
  flex-basis: 100%;
  font-size: 0.875rem;
  line-height: 1.2;
}
.session-detail form.cart .quantity {
  flex: 0 0 4.5rem;
  margin: 0;
}
.session-detail form.cart .single_add_to_cart_button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
.gift-purchase .single_add_to_cart_button {
  font-size: 1rem;
  font-weight: 600;
}
.editorial-page__inner summary {
  font-family: var(--font-sans);
  font-size: 1.125rem;
}
.booking--no-session {
  padding-block: 4rem;
}
.booking--no-session .steps {
  padding-top: 0;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
  }
  .brand {
    width: 8rem;
  }
  .primary-nav {
    justify-content: center;
    gap: 1.25rem;
  }
  .button--header {
    padding-inline: 1rem;
  }
  .hero__copy {
    padding-right: 2rem;
  }
  .booking__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .event-card {
    width: 100%;
  }
  .room-grid {
    gap: 1rem;
  }
  .room-card__body {
    padding: 1.25rem;
  }
  .room-card h3 {
    font-size: 1.625rem;
  }
  .newsletter__inner {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-hero: clamp(2.5rem, 7.5vw, 2.75rem);
  }
  .hero__copy {
    padding: 3rem var(--page-gutter);
  }
  .hero h1 {
    max-width: 11em;
  }
  .hero__intro {
    max-width: 34ch;
  }
  .rooms {
    padding-block: 3.5rem;
  }
  .room-card__body {
    padding: 1.5rem;
  }
  .newsletter {
    padding-block: 3rem;
  }
  .newsletter__inner {
    padding: 0;
    gap: 1.5rem;
  }
  .newsletter-form {
    min-width: 0;
  }
  .site-footer__inner {
    padding-block: 3rem;
  }
  .session-detail__inner, .gift-page__inner, .about-page__inner, .editorial-page__inner {
    padding-block: 3rem;
  }
  .session-detail__card {
    padding: 1.5rem;
  }
  .notes-download {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    width: fit-content;
  }
}

@media (max-width: 420px) {
  .session-card,
  .event-card__heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .session-card .event-date,
  .event-card .event-date {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.65rem;
    border-right: 0;
    padding-right: 0;
  }

  .session-card .event-date strong,
  .event-card .event-date strong {
    font-size: 2.5rem;
  }

  .event-card {
    padding-inline: 1rem;
  }

  .event-title {
    padding-left: 0;
  }

}

/* === BOLD HOSPITALITY DIRECTION === */
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(10 17 17 / 0.98) 0%, rgb(10 17 17 / 0.9) 35%, rgb(10 17 17 / 0.5) 64%, rgb(10 17 17 / 0.08) 100%);
}
.hero__accent {
  color: #e9b675;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__details {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  border-top: 1px solid #6c6d5f;
  padding: 1rem 0 0;
  margin: 1.75rem 0 0;
  font-size: 0.875rem;
  color: #ded7c8;
}
.hero__details li::before {
  content: "";
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #e9b675;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.rooms__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.75rem;
}
.rooms__heading .eyebrow {
  color: #d5b88f;
  margin-bottom: 0.65rem;
}
.rooms__browse {
  flex-shrink: 0;
  font-size: 1rem;
  text-underline-offset: 0.35rem;
  color: #f1c591;
}
.room-card .price-unit {
  color: #c6ccc1;
}
.room-card__price {
  font-size: 1.5rem;
}
.room-card__body > a {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.room-card__body > a span {
  font-size: 1.25rem;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .hero__copy {
    width: 78%;
  }
  .booking__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .rooms__heading {
    align-items: start;
  }
}
@media (max-width: 768px) {
  :root {
    --font-size-hero: clamp(2.25rem, 8vw, 3.75rem);
  }
  .hero {
    display: block;
  }
  .hero__copy {
    width: 100%;
    padding: 2.5rem var(--page-gutter) 2rem;
  }
  .hero__image {
    min-height: 0;
    aspect-ratio: auto;
    background-position: 65% center;
  }
  .hero__image::after {
    background: linear-gradient(90deg, rgb(10 17 17 / 0.94), rgb(10 17 17 / 0.7));
  }
  .hero h1 {
    max-width: 12em;
  }
  .hero__actions {
    gap: 1.1rem;
  }
  .hero__details {
    gap: 0.4rem 1rem;
    margin-top: 1.25rem;
  }
  .booking {
    padding: 2rem 0;
  }
  .steps {
    padding-top: 2rem;
  }
  .rooms {
    padding-block: 2.5rem;
  }
  .rooms__heading {
    display: block;
  }
  .rooms__browse {
    display: inline-block;
    margin-top: 1rem;
  }
  .room-card img {
    aspect-ratio: 3 / 2;
  }
  .bottle-guide__copy {
    min-height: 0;
    padding-block: 2.5rem;
  }
  .newsletter {
    padding-block: 2.5rem;
  }
  .site-footer__inner {
    padding-block: 2.5rem;
  }
}

/* Preserve the original composition's layered, tactile details. */
.hero__copy {
  padding-bottom: 4.5rem;
}
.booking {
  padding-top: 0;
}
.booking__inner {
  align-items: start;
}
.event-card {
  margin-top: -2.5rem;
  box-shadow: 0 12px 32px rgb(38 24 8 / 0.16);
}
.steps {
  padding-top: 2rem;
}
.bottle-guide {
  grid-template-columns: 48% 52%;
}
.notes-panel {
  margin-left: -12%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.notes-download {
  left: 22%;
}
.newsletter__inner {
  grid-template-columns: 5rem minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}
.newsletter__candle {
  display: block;
  width: 5rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.2rem;
  mix-blend-mode: luminosity;
}
@media (min-width: 769px) and (max-width: 1100px) {
  .booking__inner > .steps {
    padding-top: 0;
  }
  .newsletter__inner {
    grid-template-columns: 4rem minmax(12rem, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
  }
  .newsletter__candle {
    width: 4rem;
  }
}
@media (max-width: 768px) {
  .hero__copy {
    padding-bottom: 4rem;
  }
  .booking {
    padding-top: 0;
  }
  .event-card {
    margin-top: -2rem;
  }
  .notes-panel {
    margin-left: 0;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    margin-top: -1.5rem;
  }
  .notes-download {
    left: 1.25rem;
  }
  .newsletter__inner {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1rem;
  }
  .newsletter__candle {
    width: 4rem;
    height: 6rem;
  }
  .newsletter-form {
    grid-column: 1 / -1;
  }
}

/* Give the glass its own image area instead of cropping it behind the headline. */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero__copy {
  width: auto;
  padding-top: 3rem;
  background: var(--color-ink-900);
}
.hero h1 {
  font-size: clamp(3rem, 4.8vw, 4.5rem);
}
.hero__image {
  position: relative;
  inset: auto;
  z-index: 0;
  background-position: 43% center;
}
.hero__image::after {
  background: linear-gradient(90deg, var(--color-ink-900), transparent 14%);
}
@media (max-width: 768px) {
  .hero {
    display: flex;
    padding-bottom: 2rem;
  }
  .hero__copy {
    width: 100%;
    padding: 2.5rem var(--page-gutter) 2rem;
  }
  .hero h1 {
    font-size: var(--font-size-hero);
  }
  .hero__image {
    width: 100%;
    aspect-ratio: 8 / 5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .hero__image::after {
    display: none;
  }
}
