:root {
  --paper: #f4f0e7;
  --paper-deep: #e9e1d4;
  --surface: #fffdf9;
  --surface-soft: #faf7f1;
  --ink: #27211e;
  --ink-soft: #6d645d;
  --ink-faint: #91877e;
  --wine: #7a3040;
  --wine-deep: #55212d;
  --wine-soft: #a85e69;
  --terracotta: #c96f45;
  --sage: #65705d;
  --sage-soft: #dce0d5;
  --clay-soft: #d9b7a4;
  --line: #d9d0c4;
  --line-strong: #c9bdaf;
  --cream: #fff8ed;
  --serif: "Newsreader", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-small: 0 10px 28px rgba(54, 42, 33, 0.08);
  --shadow: 0 24px 64px rgba(54, 42, 33, 0.13);
  --radius-small: 10px;
  --radius: 18px;
  --radius-large: 28px;
  --max-width: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button {
  border: 0;
}

button,
select {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--cream);
  background: var(--wine);
}

:focus-visible {
  outline: 3px solid rgba(201, 111, 69, 0.55);
  outline-offset: 4px;
}

.shell {
  width: min(var(--max-width), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--wine-deep);
  border-radius: 6px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f2c2b5;
}

.meta-label {
  color: var(--ink-faint);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 6.15vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 0.93;
}

h2 {
  font-size: clamp(3rem, 4.35vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  font-size: 1.9rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease),
    box-shadow 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.76rem;
}

.button-solid {
  color: var(--cream);
  background: var(--wine);
  border-color: var(--wine);
}

.button-solid:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  box-shadow: 0 10px 24px rgba(122, 48, 64, 0.22);
}

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

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

.button-light {
  color: var(--wine-deep);
  background: var(--cream);
  border-color: var(--cream);
}

.button-light:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(35, 18, 23, 0.16);
}

.button-text {
  min-height: auto;
  padding: 6px 0;
  color: var(--wine);
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(122, 48, 64, 0.3);
}

.button-text:hover {
  border-color: var(--wine);
  transform: none;
}

/* Announcement and header */
.announcement {
  color: var(--cream);
  background: var(--wine-deep);
}

.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.announcement-inner a {
  border-bottom: 1px solid rgba(255, 248, 237, 0.45);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(244, 240, 231, 0.94);
  border-bottom: 1px solid rgba(201, 189, 175, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 34px rgba(55, 43, 34, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-monogram {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--wine);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-name small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: none;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.menu-button span {
  position: absolute;
  right: 11px;
  left: 11px;
  height: 1px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease;
}

.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 26px; }
.menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  color: var(--ink);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-small);
}

.mobile-nav-inner {
  display: grid;
  gap: 0;
  padding-block: 14px 24px;
}

.mobile-nav-inner > a:not(.button) {
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.mobile-nav-inner .button {
  margin-top: 18px;
}

/* Hero */
.hero {
  padding: 64px 0 0;
  overflow: hidden;
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(460px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.hero-copy {
  padding-block: 42px 74px;
}

.hero-intro {
  max-width: 610px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 35px;
}

.next-date {
  max-width: 630px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  padding: 22px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.next-date-calendar {
  width: 62px;
  height: 68px;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--cream);
  background: var(--wine);
  border-radius: 7px;
}

.next-date-calendar span {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 0.9;
}

.next-date-calendar small {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.next-date-copy {
  min-width: 0;
}

.next-date-copy strong {
  display: block;
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.1;
}

.next-date-copy p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.round-link {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--wine);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.round-link:hover {
  color: var(--cream);
  background: var(--wine);
  border-color: var(--wine);
  transform: translateX(3px);
}

.round-link svg {
  width: 19px;
}

.round-link path,
.response-note path,
.dialog-nav path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-figure {
  position: relative;
  align-self: stretch;
  min-height: 720px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-image-wrap {
  min-height: 640px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 49%;
  transition: transform 900ms var(--ease);
}

.hero-figure:hover .hero-image-wrap img {
  transform: scale(1.018);
}

.hero-figure figcaption {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.hero-figure figcaption span {
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-figure figcaption p {
  max-width: 330px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1.25;
  text-align: right;
}

.hero-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.hero-credentials > div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.hero-credentials > div:first-child {
  padding-left: 0;
}

.hero-credentials > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-credentials strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-credentials span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

/* Shared section heading */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading > p {
  padding-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* Experience calendar */
.experiences-section {
  margin-top: 100px;
  background: var(--surface);
}

.experience-toolbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--line-strong);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.filter-button:hover {
  color: var(--wine);
  border-color: var(--line);
}

.filter-button.is-active {
  color: var(--cream);
  background: var(--wine);
  border-color: var(--wine);
}

.experience-toolbar > p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #64805e;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(100, 128, 94, 0.12);
}

.experience-list {
  border-top: 1px solid var(--line-strong);
}

.experience-row {
  display: grid;
  grid-template-columns: 142px minmax(210px, 270px) minmax(0, 1fr) 184px;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 200ms ease, transform 200ms ease;
}

.experience-row.is-filtered-out {
  display: none;
}

.event-date {
  display: flex;
  align-items: center;
  gap: 14px;
}

.event-date > span {
  min-width: 52px;
  font-family: var(--serif);
  font-size: 3.65rem;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.event-date > div {
  display: grid;
  gap: 3px;
}

.event-date strong {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-date small {
  color: var(--ink-faint);
  font-size: 0.65rem;
}

.event-image {
  height: 178px;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: var(--radius-small);
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.experience-row:hover .event-image img {
  transform: scale(1.035);
}

.experience-row:nth-child(2) .event-image img {
  object-position: 50% 52%;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 12px;
}

.event-tags span {
  color: var(--wine);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-copy h3 {
  font-size: 2.08rem;
}

.event-copy > p {
  max-width: 610px;
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 18px;
  list-style: none;
}

.event-details li {
  position: relative;
  padding-left: 13px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 600;
}

.event-details li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
  content: "";
}

.event-booking {
  display: grid;
  justify-items: start;
}

.availability {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 5px;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.availability-open {
  color: #496244;
  background: #e6eee2;
}

.availability-waitlist {
  color: #7c5c2c;
  background: #f1e7d3;
}

.event-booking > strong {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}

.event-booking > small {
  margin-top: 6px;
  color: var(--ink-faint);
  font-size: 0.63rem;
}

.event-booking .button {
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  padding-inline: 12px;
  font-size: 0.71rem;
}

.empty-state {
  padding: 50px 0;
  color: var(--ink-soft);
  text-align: center;
}

/* Approach */
.approach-section {
  background: var(--paper-deep);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
}

.approach-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.approach-intro h2 {
  max-width: 590px;
}

.approach-intro > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 28px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.approach-intro .button {
  margin-top: 30px;
}

.approach-list {
  border-top: 1px solid var(--line-strong);
}

.approach-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-strong);
}

.approach-item > span {
  padding-top: 5px;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.approach-item h3 {
  font-size: 2.05rem;
}

.approach-item p {
  max-width: 560px;
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* Private events */
.private-section {
  color: var(--cream);
  background: var(--wine-deep);
}

.private-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: clamp(54px, 8vw, 120px);
}

.private-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #3f1821;
  border: 1px solid rgba(255, 248, 237, 0.18);
}

.private-figure img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: 50% 46%;
}

.private-figure figcaption {
  padding: 17px 20px;
  color: rgba(255, 248, 237, 0.72);
  border-top: 1px solid rgba(255, 248, 237, 0.16);
  font-size: 0.71rem;
}

.private-copy {
  align-self: center;
  padding-block: 20px;
}

.private-copy h2 {
  max-width: 670px;
}

.private-lede {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 248, 237, 0.76);
  font-size: 0.98rem;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(255, 248, 237, 0.2);
  border-left: 1px solid rgba(255, 248, 237, 0.2);
}

.service-grid > div {
  min-height: 166px;
  display: grid;
  align-content: start;
  padding: 21px 24px;
  border-right: 1px solid rgba(255, 248, 237, 0.2);
  border-bottom: 1px solid rgba(255, 248, 237, 0.2);
}

.service-grid span {
  color: #e6a48d;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.service-grid strong {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 500;
}

.service-grid p {
  margin-top: 8px;
  color: rgba(255, 248, 237, 0.67);
  font-size: 0.74rem;
  line-height: 1.6;
}

.private-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 70px;
  margin-top: 34px;
}

.private-meta > div {
  display: grid;
  gap: 3px;
}

.private-meta strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.private-meta span {
  color: rgba(255, 248, 237, 0.6);
  font-size: 0.65rem;
}

.private-copy > .button {
  margin-top: 34px;
}

/* Gallery */
.gallery-section {
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 138px;
  gap: 16px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--paper-deep);
  border-radius: var(--radius-small);
}

.gallery-tile:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 5; }
.gallery-tile:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 3; }
.gallery-tile:nth-child(3) { grid-column: 8 / 13; grid-row: 3 / 6; }
.gallery-tile:nth-child(4) { grid-column: 1 / 5; grid-row: 5 / 7; }
.gallery-tile:nth-child(5) { grid-column: 5 / 8; grid-row: 5 / 7; }

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 300ms ease;
}

.gallery-tile:nth-child(3) img,
.gallery-tile:nth-child(5) img {
  object-position: 50% 52%;
}

.gallery-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 21, 23, 0.56), transparent 45%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-tile > span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 15px;
  padding: 7px 10px;
  color: var(--cream);
  background: rgba(55, 32, 35, 0.78);
  border-radius: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.gallery-tile:hover img {
  transform: scale(1.035);
  filter: saturate(0.95);
}

.gallery-tile:hover::after,
.gallery-tile:hover > span,
.gallery-tile:focus-visible::after,
.gallery-tile:focus-visible > span {
  opacity: 1;
}

.gallery-tile:hover > span,
.gallery-tile:focus-visible > span {
  transform: translateY(0);
}

/* Process */
.process-section {
  background: var(--paper-deep);
}

.process-header {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: start;
  gap: 50px;
  margin-bottom: 55px;
}

.process-header .eyebrow {
  padding-top: 8px;
}

.process-header h2 {
  max-width: 780px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.process-card {
  min-height: 292px;
  padding: 34px 38px 36px 0;
  border-right: 1px solid var(--line-strong);
}

.process-card + .process-card {
  padding-left: 38px;
}

.process-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-card > span {
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-card h3 {
  margin-top: 54px;
  font-size: 2rem;
}

.process-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.7;
}

/* FAQ */
.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  max-width: 460px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 420px;
  margin-top: 24px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  font-family: var(--serif);
  font-size: 1.52rem;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 17px;
  height: 1px;
  background: var(--wine);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 48px 27px 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.8;
}

/* Request form */
.request-section {
  color: var(--ink);
  background: var(--clay-soft);
}

.request-section .eyebrow-light {
  color: var(--wine-deep);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(480px, 1fr);
  align-items: start;
  gap: clamp(60px, 8vw, 118px);
}

.request-summary {
  padding-top: 24px;
}

.request-summary h2 {
  max-width: 590px;
}

.request-summary > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 27px;
  color: rgba(39, 33, 30, 0.72);
  line-height: 1.8;
}

.selected-card {
  margin-top: 40px;
  padding: 28px;
  color: var(--cream);
  background: var(--wine-deep);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(70, 35, 40, 0.17);
}

.selected-card .meta-label {
  color: rgba(255, 248, 237, 0.58);
}

.selected-card h3 {
  margin-top: 13px;
  font-size: 2.25rem;
}

.selected-card dl {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 248, 237, 0.17);
}

.selected-card dl > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.17);
  font-size: 0.72rem;
}

.selected-card dt {
  color: rgba(255, 248, 237, 0.56);
}

.selected-card dd {
  color: rgba(255, 248, 237, 0.94);
  font-weight: 600;
}

.response-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
}

.response-note svg {
  width: 28px;
  color: var(--wine-deep);
}

.response-note p {
  display: grid;
  gap: 2px;
}

.response-note strong {
  font-size: 0.76rem;
}

.response-note span {
  color: rgba(39, 33, 30, 0.65);
  font-size: 0.68rem;
}

.request-form {
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
  border: 1px solid rgba(85, 33, 45, 0.12);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 19px;
}

.form-row-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  font-size: 0.69rem;
  font-weight: 700;
}

.field > span small {
  margin-left: 5px;
  color: var(--ink-faint);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: 0;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field select {
  appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field textarea {
  min-height: 132px;
  padding: 13px 14px;
  line-height: 1.55;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a59c93;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(122, 48, 64, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a63232;
}

.check-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.55;
}

.check-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--wine);
}

.check-field input[aria-invalid="true"] {
  outline: 2px solid #a63232;
  outline-offset: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  color: var(--cream);
  background: var(--wine);
  border-color: var(--wine);
}

.form-submit:hover {
  color: var(--cream);
  background: var(--wine-deep);
  border-color: var(--wine-deep);
}

.form-caption {
  margin-top: 13px;
  color: var(--ink-faint);
  font-size: 0.62rem;
  line-height: 1.55;
  text-align: center;
}

.form-status {
  min-height: 0;
  margin-top: 0;
  padding: 0;
  border-radius: 7px;
  font-size: 0.74rem;
  line-height: 1.5;
  transition: margin 180ms ease, padding 180ms ease;
}

.form-status.is-error,
.form-status.is-success {
  margin-top: 15px;
  padding: 12px 14px;
}

.form-status.is-error {
  color: #7f2929;
  background: #f6e1df;
}

.form-status.is-success {
  color: #385234;
  background: #e4eee0;
}

/* Footer */
.site-footer {
  padding: 78px 0 28px;
  color: var(--cream);
  background: var(--wine-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.9fr 1.05fr;
  gap: 55px;
  padding-bottom: 60px;
}

.brand-footer .brand-monogram {
  color: var(--cream);
  border-color: rgba(255, 248, 237, 0.35);
}

.brand-footer .brand-name small {
  color: rgba(255, 248, 237, 0.55);
}

.footer-brand > p {
  max-width: 290px;
  margin-top: 22px;
  color: rgba(255, 248, 237, 0.62);
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 11px;
}

.footer-column > span {
  margin-bottom: 10px;
  color: #e9aa96;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column > a {
  color: rgba(255, 248, 237, 0.75);
  font-size: 0.74rem;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.footer-column > a:hover,
.footer-credit a:hover {
  color: var(--cream);
  border-color: rgba(255, 248, 237, 0.45);
}

.footer-credit p {
  max-width: 320px;
  color: rgba(255, 248, 237, 0.62);
  font-size: 0.72rem;
  line-height: 1.7;
}

.footer-credit a {
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 248, 237, 0.3);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 248, 237, 0.16);
  color: rgba(255, 248, 237, 0.5);
  font-size: 0.64rem;
}

.footer-bottom button {
  padding: 0;
  color: inherit;
  background: transparent;
  border-bottom: 1px solid rgba(255, 248, 237, 0.25);
}

.photo-credits {
  padding-top: 17px;
  color: rgba(255, 248, 237, 0.45);
  font-size: 0.61rem;
  line-height: 1.6;
}

/* Gallery dialog */
.gallery-dialog {
  width: min(1120px, calc(100% - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  padding: 0;
  color: var(--cream);
  background: #241d1b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
  overflow: visible;
}

.gallery-dialog::backdrop {
  background: rgba(28, 22, 20, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-dialog figure {
  min-height: 300px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.gallery-dialog figure img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  background: #171210;
  border-radius: 14px 14px 0 0;
}

.gallery-dialog figcaption {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 17px 62px;
  color: rgba(255, 248, 237, 0.74);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.dialog-close,
.dialog-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(38, 29, 27, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.dialog-close {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.dialog-nav {
  top: 50%;
  width: 44px;
  height: 58px;
  border-radius: 8px;
  transform: translateY(-50%);
}

.dialog-nav svg {
  width: 22px;
}

.dialog-prev { left: 16px; }
.dialog-next { right: 16px; }

/* Reveal motion */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 700ms var(--ease);
}

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

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.75fr);
    gap: 50px;
  }

  h1 {
    font-size: clamp(3.8rem, 6.6vw, 5.45rem);
  }

  .experience-row {
    grid-template-columns: 118px 220px minmax(0, 1fr);
    align-items: start;
  }

  .event-booking {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: auto auto minmax(120px, 1fr) auto;
    align-items: center;
    justify-items: start;
    gap: 10px 14px;
    margin-top: -6px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .event-booking > strong,
  .event-booking > small,
  .event-booking .button {
    margin-top: 0;
  }

  .event-booking .button {
    width: auto;
    justify-self: end;
  }

  .private-grid {
    grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1fr);
    gap: 60px;
  }

  .private-figure img {
    min-height: 620px;
  }
}

@media (max-width: 960px) {
  .shell {
    width: min(var(--max-width), calc(100% - 44px));
  }

  .section {
    padding-block: 96px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 45px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero-figure {
    min-height: 0;
  }

  .hero-image-wrap {
    min-height: 0;
    height: min(70vw, 640px);
  }

  .hero-image-wrap img {
    object-position: 50% 54%;
  }

  .hero-credentials {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }

  .hero-credentials > div:nth-child(2) {
    border-right: 0;
  }

  .hero-credentials > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-credentials > div:first-child,
  .hero-credentials > div:nth-child(3) {
    padding-left: 0;
  }

  .experiences-section {
    margin-top: 78px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 50px;
  }

  .section-heading > p {
    max-width: 640px;
  }

  .experience-toolbar {
    align-items: flex-start;
  }

  .experience-row {
    grid-template-columns: 104px minmax(190px, 230px) minmax(0, 1fr);
    gap: 24px;
  }

  .event-date {
    display: grid;
    align-content: start;
    gap: 10px;
  }

  .event-date > span {
    font-size: 3.2rem;
  }

  .event-image {
    height: 170px;
  }

  .event-details {
    display: grid;
    gap: 5px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .approach-intro {
    position: static;
  }

  .private-grid {
    grid-template-columns: 1fr;
  }

  .private-figure {
    grid-template-rows: auto auto;
  }

  .private-figure img {
    height: min(78vw, 650px);
    min-height: 0;
    object-position: 50% 37%;
  }

  .gallery-grid {
    grid-auto-rows: 115px;
  }

  .process-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-grid,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .request-summary {
    padding-top: 0;
  }

  .selected-card {
    max-width: 600px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 60px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 80px;
  }

  .announcement-inner {
    justify-content: space-between;
    gap: 10px;
    font-size: 0.65rem;
  }

  .announcement-inner p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-actions > .button {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.75rem, 11.5vw, 3.7rem);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button-solid {
    width: 100%;
  }

  .next-date {
    grid-template-columns: auto minmax(0, 1fr);
    margin-top: 40px;
  }

  .next-date .round-link {
    display: none;
  }

  .hero-image-wrap {
    height: min(110vw, 600px);
  }

  .hero-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-figure figcaption p {
    text-align: left;
  }

  .hero-credentials > div {
    min-height: 102px;
    padding: 18px 18px;
  }

  .hero-credentials > div:nth-child(2),
  .hero-credentials > div:nth-child(4) {
    padding-right: 0;
  }

  .experience-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding-block: 17px;
  }

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

  .filter-button {
    padding-inline: 8px;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0 34px;
  }

  .event-date {
    display: flex;
    align-items: center;
  }

  .event-image {
    height: 58vw;
    min-height: 220px;
    max-height: 390px;
  }

  .event-copy h3 {
    font-size: 2.15rem;
  }

  .event-details {
    display: flex;
  }

  .event-booking {
    grid-column: auto;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    margin-top: 4px;
  }

  .event-booking > strong {
    justify-self: end;
  }

  .event-booking > small {
    grid-column: 1 / 3;
  }

  .event-booking .button {
    grid-column: 1 / 3;
    width: 100%;
    margin-top: 10px;
  }

  .approach-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .approach-item h3 {
    font-size: 1.75rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid > div {
    min-height: 145px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .gallery-tile:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-tile:nth-child(1),
  .gallery-tile:nth-child(3),
  .gallery-tile:nth-child(5) {
    grid-column: 1 / 3;
  }

  .gallery-tile:nth-child(1) {
    height: 330px;
  }

  .gallery-tile:nth-child(3) {
    height: 390px;
  }

  .gallery-tile:nth-child(5) {
    height: 300px;
  }

  .gallery-tile > span,
  .gallery-tile::after {
    opacity: 1;
  }

  .gallery-tile > span {
    transform: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card + .process-card,
  .process-card:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .process-card h3 {
    margin-top: 28px;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .request-form {
    padding: 26px 22px;
    border-radius: var(--radius);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-dialog {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
  }

  .gallery-dialog figure img {
    max-height: calc(100vh - 130px);
  }

  .gallery-dialog figcaption {
    min-height: 58px;
    padding: 14px 56px 14px 16px;
    font-size: 0.92rem;
  }

  .dialog-nav {
    top: auto;
    bottom: 9px;
    width: 38px;
    height: 40px;
    transform: none;
  }

  .dialog-prev { right: 56px; left: auto; }
  .dialog-next { right: 10px; }
}

@media (max-width: 480px) {
  .shell {
    width: min(var(--max-width), calc(100% - 34px));
  }

  .section {
    padding-block: 78px;
  }

  .announcement-inner a span {
    display: none;
  }

  .brand-monogram {
    width: 35px;
    height: 35px;
  }

  .brand-name strong {
    font-size: 1.12rem;
  }

  .hero {
    padding-top: 34px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 3.85rem);
  }

  .hero-credentials strong {
    font-size: 1.25rem;
  }

  .hero-credentials span {
    font-size: 0.65rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-tile:nth-child(n) {
    grid-column: auto;
    height: 300px;
  }

  .gallery-tile:nth-child(3) {
    height: 380px;
  }

  .selected-card {
    padding: 23px 20px;
  }

  .selected-card dl > div {
    grid-template-columns: 70px minmax(0, 1fr);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Business-first presentation: content remains immediately visible rather than relying on scroll effects. */
.reveal,
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
