:root {
  --parchment-ivory: #F4EBDD;
  --soft-cream: #FFF8EC;
  --warm-beige: #D8C6A8;
  --dark-ink-brown: #2E241C;
  --deep-moss: #394438;
  --moss-green: #4D5B46;
  --antique-gold: #C5A46D;
  --aged-gold: #B68B47;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
  --font-script: "Parisienne", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body.sv-body {
  margin: 0;
  background: var(--parchment-ivory);
  color: var(--dark-ink-brown);
  font-family: var(--font-sans);
  line-height: 1.65;
}
body.sv-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
input,
select,
textarea,
button {
  max-width: 100%;
}

.sv-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.sv-container--gallery-preview {
  width: min(1274px, calc(100% - 64px));
}
.sv-narrow { width: min(820px, calc(100% - 40px)); }
.sv-center { display: flex; justify-content: center; margin-top: 38px; }

.sv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
}
.admin-bar .sv-header {
  top: 32px;
}
.sv-header--solid,
body:not(.home) .sv-header {
  background: rgba(57, 68, 56, .98);
  box-shadow: 0 10px 28px rgba(46, 36, 28, .18);
}
.sv-header--subpage {
  background: rgba(57, 68, 56, .98);
  box-shadow: 0 10px 28px rgba(46, 36, 28, .18);
}
.sv-header--subpage.sv-header--solid {
  background: rgba(57, 68, 56, .98);
  box-shadow: 0 10px 28px rgba(46, 36, 28, .18);
}
.sv-header--subpage .sv-header__nav,
.sv-header--subpage .sv-header__nav a,
.sv-header--subpage .sv-language,
.sv-header--subpage .sv-language a,
.sv-header--subpage.sv-header--solid .sv-header__nav,
.sv-header--subpage.sv-header--solid .sv-header__nav a,
.sv-header--subpage.sv-header--solid .sv-language,
.sv-header--subpage.sv-header--solid .sv-language a {
  color: var(--parchment-ivory);
}
.sv-header--subpage .sv-header__nav a:hover,
.sv-header--subpage .sv-header__nav a.is-active,
.sv-header--subpage .sv-language a:hover,
.sv-header--subpage .sv-language a.is-active,
.sv-header--subpage.sv-header--solid .sv-header__nav a:hover,
.sv-header--subpage.sv-header--solid .sv-header__nav a.is-active,
.sv-header--subpage.sv-header--solid .sv-language a:hover,
.sv-header--subpage.sv-header--solid .sv-language a.is-active {
  color: var(--antique-gold);
}
.sv-header--subpage .sv-menu-toggle span,
.sv-header--subpage.sv-header--solid .sv-menu-toggle span {
  background: var(--parchment-ivory);
}
.sv-header__inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.sv-header__brand img { width: 190px; height: auto; }
.sv-header__brand {
  flex: 0 0 auto;
}
.sv-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--parchment-ivory);
  font-size: 15px;
  letter-spacing: .12em;
}
.sv-header__nav a { transition: color .2s ease; }
.sv-header__nav a:hover,
.sv-header__nav a.is-active {
  color: var(--antique-gold);
}
.sv-header__divider {
  width: 1px;
  height: 20px;
  background: rgba(197, 164, 109, .35);
  margin-left: 8px;
}
.sv-language,
.sv-mobile-language {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(244, 235, 221, .72);
  font-style: normal;
}
.sv-language a,
.sv-mobile-language a {
  color: rgba(244, 235, 221, .72);
  font-style: normal;
  font-weight: 700;
  transition: color .2s ease;
}
.sv-language a:hover,
.sv-language a.is-active,
.sv-mobile-language a:hover,
.sv-mobile-language a.is-active {
  color: var(--antique-gold);
}
.sv-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 145, 77, .45);
  background: rgba(248, 243, 233, .8);
}
.sv-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark-ink-brown);
}
.sv-mobile-menu {
  position: fixed;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 40px;
  background: var(--dark-ink-brown);
  color: var(--parchment-ivory);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 120;
}
.admin-bar .sv-mobile-menu {
  top: 32px;
}
.sv-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sv-mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 24px;
  border: 0;
  background: transparent;
  color: var(--parchment-ivory);
  font-size: 36px;
}
.sv-mobile-menu__logo img { width: 150px; margin: 0 auto 20px; }
.sv-mobile-menu nav {
  display: grid;
  gap: 18px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 34px;
}
.sv-mobile-language {
  justify-content: center;
  font-size: 13px;
  letter-spacing: .14em;
}
.sv-mobile-menu p { max-width: 320px; margin: 0 auto; text-align: center; color: var(--warm-beige); }

.sv-page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--parchment-ivory);
  padding-top: 80px;
}
.sv-page-hero--home { min-height: 100vh; }
.sv-page-hero--home,
.sv-page-hero--menu,
.sv-page-hero--booking {
  padding-top: 0;
}
.sv-page-hero--light { color: var(--dark-ink-brown); }
.sv-page-hero__media,
.sv-page-hero__media img,
.sv-page-hero__media picture,
.sv-page-hero__overlay,
.sv-hero-pattern,
.sv-hero-noise {
  position: absolute;
  inset: 0;
}
.sv-page-hero__media picture {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}
.sv-page-hero__media img,
.sv-page-hero__media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-page-hero__media > img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}
.sv-page-hero__media > img.is-active,
.sv-page-hero__media > picture.is-active {
  opacity: 1;
  transform: scale(1.16);
}
.sv-page-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(46,36,28,.72), rgba(46,36,28,.24) 44%, rgba(46,36,28,.58)),
    rgba(57,68,56,.24);
}
.sv-page-hero--light .sv-page-hero__overlay {
  background: rgba(248, 243, 233, .72);
}
.sv-page-hero--home .sv-page-hero__overlay {
  background:
    linear-gradient(180deg, rgba(57,68,56,.55), rgba(46,36,28,.12) 46%, rgba(57,68,56,.75)),
    rgba(46,36,28,.35);
}
.sv-hero-pattern {
  z-index: 2;
  pointer-events: none;
  opacity: .15;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C5A46D'%3E%3Cpath d='M50 20 Q45 25 50 30 Q55 25 50 20 M50 30 L45 40 Q50 45 55 40 Z' opacity='0.6'/%3E%3Cpath d='M30 50 Q25 45 20 50 Q25 55 30 50 M30 50 L40 45 Q45 50 40 55 Z' opacity='0.5'/%3E%3Cpath d='M70 50 Q75 45 80 50 Q75 55 70 50 M70 50 L60 45 Q55 50 60 55 Z' opacity='0.5'/%3E%3Cpath d='M50 70 Q45 75 50 80 Q55 75 50 70 M50 70 L45 60 Q50 55 55 60 Z' opacity='0.6'/%3E%3Ccircle cx='50' cy='50' r='8' fill='none' stroke='%23C5A46D' stroke-width='1' opacity='0.4'/%3E%3Cpath d='M50 42 L52 48 L50 54 L48 48 Z' opacity='0.5'/%3E%3Cpath d='M42 50 L48 52 L54 50 L48 48 Z' opacity='0.5'/%3E%3Cpath d='M35 35 Q33 37 35 39 Q37 37 35 35' opacity='0.3'/%3E%3Cpath d='M65 35 Q63 37 65 39 Q67 37 65 35' opacity='0.3'/%3E%3Cpath d='M35 65 Q33 67 35 69 Q37 67 35 65' opacity='0.3'/%3E%3Cpath d='M65 65 Q63 67 65 69 Q67 67 65 65' opacity='0.3'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center top;
  background-size: 100px 100px;
}
.sv-hero-noise {
  z-index: 2;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}
.sv-page-hero--light .sv-hero-pattern {
  opacity: .18;
}
.sv-hero-ornament {
  position: absolute;
  inset: 88px 44px 44px;
  border: 1px solid rgba(184, 145, 77, .65);
  pointer-events: none;
}
.sv-page-hero__content {
  position: relative;
  z-index: 3;
  width: min(860px, calc(100% - 40px));
  text-align: center;
  padding-top: 54px;
  overflow-wrap: anywhere;
}
.sv-label {
  margin: 0 0 16px;
  color: var(--antique-gold);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.04;
}
h1 { font-size: clamp(44px, 5.1vw, 72px); }
h2 { font-size: clamp(38px, 4vw, 58px); }
h3 { font-size: clamp(26px, 3vw, 38px); }
.sv-page-hero--home h1 {
  white-space: nowrap;
  text-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.sv-page-hero__content > p:not(.sv-label) {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 18px;
}

.sv-section { padding: 50px 0; }
.sv-section--tight { padding: 56px 0 100px; }
.sv-section--parchment {
  background-color: var(--parchment-ivory);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C5A46D' stroke-width='1' opacity='0.09'%3E%3Cpath d='M60 18 C48 34 48 46 60 60 C72 46 72 34 60 18Z'/%3E%3Cpath d='M60 102 C48 86 48 74 60 60 C72 74 72 86 60 102Z'/%3E%3Cpath d='M18 60 C34 48 46 48 60 60 C46 72 34 72 18 60Z'/%3E%3Cpath d='M102 60 C86 48 74 48 60 60 C74 72 86 72 102 60Z'/%3E%3Ccircle cx='60' cy='60' r='10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.sv-section--cream {
  background-color: var(--soft-cream);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='%23C5A46D' stroke-width='1' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.sv-section--dark {
  background-color: var(--dark-ink-brown);
  color: var(--parchment-ivory);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C5A46D' stroke-width='1' opacity='0.08'%3E%3Cpath d='M60 18 C48 34 48 46 60 60 C72 46 72 34 60 18Z'/%3E%3Cpath d='M60 102 C48 86 48 74 60 60 C72 74 72 86 60 102Z'/%3E%3Cpath d='M18 60 C34 48 46 48 60 60 C46 72 34 72 18 60Z'/%3E%3Cpath d='M102 60 C86 48 74 48 60 60 C74 72 86 72 102 60Z'/%3E%3Ccircle cx='60' cy='60' r='10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.sv-section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}
.sv-section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sv-section-heading--center .sv-section-divider {
  margin-left: auto;
  margin-right: auto;
}
.sv-section-heading p:not(.sv-label) { color: inherit; opacity: .78; }
.sv-section--dark .sv-section-heading h2 {
  font-size: clamp(40px, 3.4vw, 54px);
}
.sv-section--dark .sv-section-heading p:not(.sv-label) {
  max-width: 820px;
  margin: 26px auto 0;
  color: var(--warm-beige);
  font-size: 19px;
  line-height: 1.75;
  opacity: 1;
  font-weight: 400;
}
.sv-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  margin: 26px 0;
  color: var(--antique-gold);
}
.sv-section-divider span { flex: 1; height: 1px; background: currentColor; }
.sv-section-divider i {
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.sv-btn-primary,
.sv-btn-secondary,
.sv-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid var(--antique-gold);
  background: var(--antique-gold);
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  text-align: center;
  max-width: 100%;
}
.sv-btn-secondary {
  background: transparent;
  color: var(--dark-ink-brown);
}
.sv-section--dark .sv-btn-secondary { color: var(--parchment-ivory); }
.sv-btn-primary:hover,
.sv-btn-secondary:hover,
.sv-form-submit:hover {
  transform: translateY(-2px);
  background: var(--dark-ink-brown);
  color: var(--parchment-ivory);
}

.sv-home-about__layout,
.sv-two-col,
.sv-location-grid,
.sv-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.sv-two-col--reverse > :first-child { order: 2; }
.sv-home-about__media,
.sv-gold-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(184, 145, 77, .55);
  padding: 14px;
}
.sv-home-about__media {
  padding: 0;
}
.sv-home-about__media img,
.sv-gold-frame img,
.sv-location-grid > img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  display: block;
}
.sv-gold-frame img { aspect-ratio: 0.88 / 1; }
.sv-location-grid > img { aspect-ratio: 16 / 11; border: 1px solid rgba(184, 145, 77, .45); }
.sv-location-section {
  padding: 118px 0 110px;
}
.sv-location-section .sv-location-grid {
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  column-gap: clamp(48px, 5vw, 86px);
  row-gap: 34px;
  align-items: stretch;
}
.sv-location-copy {
  grid-column: 1;
  grid-row: 1;
}
.sv-location-copy h2 {
  color: var(--dark-ink-brown);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.12;
}
.sv-location-details {
  margin: 34px 0 38px;
  padding-left: 24px;
  border-left: 2px solid rgba(184, 145, 77, .5);
}
.sv-location-detail + .sv-location-detail {
  margin-top: 24px;
}
.sv-location-detail h3 {
  margin: 0 0 9px;
  color: var(--antique-gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.sv-location-detail p {
  margin: 0;
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.65;
}
.sv-location-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(46, 35, 30, .74);
  font-size: 15px;
  line-height: 1.45;
}
.sv-location-detail li {
  position: relative;
  padding-left: 18px;
}
.sv-location-detail li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .62em;
  width: 7px;
  height: 7px;
  background: var(--antique-gold);
  transform: rotate(45deg);
}
.sv-location-button {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  min-width: 350px;
  color: var(--dark-ink-brown);
  margin-top: 0;
}
.sv-location-map {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  padding: 0;
  border: 1px solid rgba(184, 145, 77, .5);
  background: #0f0f0f;
  box-shadow: 0 28px 70px rgba(46, 35, 30, .18);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sv-location-map__image {
  position: relative;
  flex: 1;
  min-height: clamp(340px, 33vw, 480px);
  overflow: hidden;
  border: 1px solid rgba(184, 145, 77, .65);
  background: #0f0f0f;
}
.sv-location-map__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s ease;
}
.sv-location-map:hover .sv-location-map__image img {
  transform: scale(1.04);
}
.sv-location-map__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.1), transparent 45%, rgba(0,0,0,.05));
  mix-blend-mode: multiply;
}
.sv-location-map__inner {
  position: absolute;
  inset: 10px;
  border: 0;
  pointer-events: none;
  z-index: 2;
}
.sv-location-map__corner {
  position: absolute;
  z-index: 3;
  width: 32px;
  height: 32px;
  pointer-events: none;
}
.sv-location-map__corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid var(--antique-gold);
  border-left: 2px solid var(--antique-gold);
}
.sv-location-map__corner--tr {
  top: 0;
  right: 0;
  border-top: 2px solid var(--antique-gold);
  border-right: 2px solid var(--antique-gold);
}
.sv-location-map__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--antique-gold);
  border-left: 2px solid var(--antique-gold);
}
.sv-location-map__corner--br {
  right: 0;
  bottom: 0;
  border-right: 2px solid var(--antique-gold);
  border-bottom: 2px solid var(--antique-gold);
}
.sv-home-about__content h2 { font-size: clamp(44px, 4vw, 58px); }
.sv-home-about__copy {
  color: var(--moss-green);
  font-size: 20px;
  line-height: 1.78;
}
.sv-dropcap {
  float: left;
  margin: 8px 8px 0 0;
  font-family: var(--font-serif);
  font-size: 58px;
  line-height: .75;
  color: var(--aged-gold);
}
blockquote {
  margin: 28px 0;
  padding-left: 22px;
  border-left: 2px solid var(--antique-gold);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.25;
}

.sv-experience-grid,
.sv-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.sv-card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sv-experience-card,
.sv-feature-card,
.sv-contact-card,
.sv-note-card {
  background: rgba(248, 243, 233, .96);
  color: var(--dark-ink-brown);
  border: 1px solid rgba(184, 145, 77, .45);
  padding: 22px;
}
.sv-experience-card {
  background: transparent;
  color: var(--parchment-ivory);
  border: 0;
  padding: 0;
}
.sv-feature-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 164, 109, .35);
}
.sv-experience-carousel {
  position: relative;
  margin-bottom: 24px;
}
.sv-experience-carousel__track {
  position: relative;
  height: 350px;
  overflow: hidden;
  border: 1px solid rgba(197, 164, 109, .5);
  background: var(--dark-ink-brown);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}
.sv-experience-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .4s ease, transform .7s ease;
}
.sv-experience-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.sv-experience-carousel:hover .sv-experience-carousel__slide.is-active {
  transform: scale(1.05);
}
.sv-experience-carousel__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(46, 36, 28, .48));
}
.sv-experience-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197, 164, 109, .45);
  border-radius: 50%;
  background: rgba(46, 36, 28, .86);
  color: var(--parchment-ivory);
  font-size: 30px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .3s ease, background .3s ease, color .3s ease;
  cursor: pointer;
}
.sv-experience-carousel__nav--prev { left: 16px; }
.sv-experience-carousel__nav--next { right: 16px; }
.sv-experience-card:hover .sv-experience-carousel__nav,
.sv-experience-carousel:hover .sv-experience-carousel__nav,
.sv-experience-carousel:focus-within .sv-experience-carousel__nav {
  opacity: 1;
}
.sv-experience-carousel__nav:hover {
  background: var(--antique-gold);
  color: var(--dark-ink-brown);
}
.sv-experience-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(46, 36, 28, .6);
  transform: translateX(-50%);
}
.sv-experience-carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(197, 164, 109, .45);
  padding: 0;
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.sv-experience-carousel__dot.is-active {
  width: 24px;
  background: var(--antique-gold);
}
.sv-experience-card > span {
  display: none;
}
.sv-experience-card h3 {
  font-size: 25px;
  color: var(--parchment-ivory);
}
.sv-experience-card p {
  color: var(--warm-beige);
  font-size: 16px;
  line-height: 1.65;
}

.sv-quote-section {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
}
.sv-quote-section p {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  line-height: 1.16;
}

.sv-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 42px;
}
.sv-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.sv-tab-button,
.sv-filter-button {
  border: 1px solid rgba(184, 145, 77, .45);
  background: transparent;
  color: var(--dark-ink-brown);
  padding: 12px 18px;
  cursor: pointer;
}
.sv-tab-button.is-active,
.sv-filter-button.is-active {
  background: var(--deep-moss);
  color: var(--parchment-ivory);
}
.sv-tab-panel { display: none; max-width: 880px; margin: 0 auto; }
.sv-tab-panel.is-active { display: grid; gap: 22px; }
.sv-menu-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(47, 34, 24, .14);
}
.sv-menu-item__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-serif);
  font-size: 28px;
}
.sv-menu-item__desc { margin: 8px 0 0; color: var(--moss-green); }
.sv-menu-item__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.sv-menu-item__badges span {
  border: 1px solid rgba(184, 145, 77, .45);
  color: var(--aged-gold);
  padding: 4px 9px;
  font-size: 12px;
}
.sv-tasting-card {
  border: 1px solid rgba(184, 145, 77, .45);
  margin-bottom: 14px;
}
.sv-tasting-card__header {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr 32px;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.sv-tasting-card__number { color: var(--antique-gold); font-family: var(--font-serif); font-size: 28px; }
.sv-tasting-card__title { font-family: var(--font-serif); font-size: 28px; }
.sv-tasting-card__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.sv-tasting-card__content p { margin: 0; padding: 0 20px 22px 108px; color: var(--warm-beige); }

.sv-page-hero--menu {
  --sv-menu-hero-inset-x: 44px;
  --sv-menu-hero-inset-top: 34px;
  --sv-menu-hero-inset-bottom: 64px;
  --sv-menu-hero-circle-size: 96px;
  --sv-menu-hero-circle-inner: 78px;
  --sv-menu-hero-card-width: 896px;
  min-height: clamp(440px, calc(100vh - 120px), 600px);
  margin-top: 80px;
  place-items: start center;
  padding: 0 var(--sv-menu-hero-inset-x) var(--sv-menu-hero-inset-bottom);
}
.sv-page-hero--menu .sv-page-hero__overlay {
  background: transparent;
}
.sv-page-hero--menu .sv-hero-pattern,
.sv-page-hero--menu .sv-hero-noise {
  opacity: 0;
}
.sv-page-hero--menu .sv-hero-ornament {
  inset: var(--sv-menu-hero-inset-top) var(--sv-menu-hero-inset-x) var(--sv-menu-hero-inset-bottom);
  border-width: 2px;
  border-color: var(--antique-gold);
}
.sv-page-hero--menu .sv-page-hero__content {
  position: relative;
  z-index: 5;
  margin-top: clamp(122px, 17vh, 144px);
  width: min(var(--sv-menu-hero-card-width), 100%);
  padding: clamp(34px, 4vh, 48px) 24px;
  border-radius: 8px;
  background: rgba(46, 36, 28, .5);
  backdrop-filter: blur(10px);
}
.sv-page-hero--menu .sv-page-hero__content::before {
  content: none;
}
.sv-page-hero--menu .sv-page-hero__content::after {
  content: none;
}
.sv-page-hero--menu h1 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: var(--parchment-ivory);
  font-size: clamp(44px, 4vw, 56px);
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.sv-page-hero--menu::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: calc(var(--sv-menu-hero-inset-top) + 18px);
  left: 50%;
  width: var(--sv-menu-hero-circle-size);
  height: var(--sv-menu-hero-circle-size);
  border: 2px solid var(--antique-gold);
  border-radius: 50%;
  background: rgba(46, 36, 28, .6);
  backdrop-filter: blur(4px);
  transform: translateX(-50%);
  pointer-events: none;
}
.sv-page-hero--menu::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: calc(var(--sv-menu-hero-inset-top) + 27px);
  left: 50%;
  width: var(--sv-menu-hero-circle-inner);
  height: var(--sv-menu-hero-circle-inner);
  border: 1px solid var(--antique-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.sv-container--menu {
  width: min(1152px, calc(100% - 64px));
}
.sv-menu-intro {
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
  background: var(--parchment-ivory);
  text-align: center;
}
.sv-menu-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: var(--sv-menu-intro-image);
  background-size: cover;
  background-position: center;
}
.sv-menu-intro p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.8;
}
.sv-menu-experience-section,
.sv-menu-pairing-section {
  padding: 80px 32px;
  background: var(--soft-cream);
}
.sv-menu-experience-section h2,
.sv-menu-pairing-section h2 {
  margin: 0 0 64px;
  color: var(--dark-ink-brown);
  font-size: 40px;
  text-align: center;
}
.sv-menu-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
.sv-menu-experience-card {
  overflow: hidden;
  border: 2px solid var(--antique-gold);
  border-radius: 8px;
  background: var(--parchment-ivory);
  transition: box-shadow .3s ease;
}
.sv-menu-experience-card:hover {
  box-shadow: 0 18px 36px rgba(46, 36, 28, .16);
}
.sv-menu-experience-card__media {
  position: relative;
  height: 256px;
  overflow: hidden;
}
.sv-menu-experience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sv-menu-experience-card:hover .sv-menu-experience-card__media img {
  transform: scale(1.05);
}
.sv-menu-experience-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--parchment-ivory), transparent 56%);
  opacity: .6;
}
.sv-menu-experience-card__media span {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--antique-gold);
  border-radius: 50%;
  background: rgba(244, 235, 221, .82);
  color: var(--antique-gold);
  font-size: 12px;
  letter-spacing: .18em;
}
.sv-menu-experience-card__body {
  padding: 32px;
}
.sv-menu-experience-card__body h3 {
  color: var(--dark-ink-brown);
  font-size: 32px;
}
.sv-menu-experience-card__body p {
  margin: 16px 0 28px;
  color: var(--moss-green);
  line-height: 1.8;
}
.sv-menu-experience-card__body a {
  display: inline-flex;
  border: 1px solid var(--antique-gold);
  padding: 12px 32px;
  color: var(--antique-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.sv-menu-experience-card__body a:hover,
.sv-menu-experience-card__body a.is-filled {
  background: var(--antique-gold);
  color: var(--parchment-ivory);
}
.sv-menu-list-section {
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
  background: var(--parchment-ivory);
}
.sv-menu-side-image {
  position: absolute;
  z-index: 0;
  width: 128px;
  height: 192px;
  opacity: .1;
  pointer-events: none;
}
.sv-menu-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-menu-side-image--left {
  top: 25%;
  left: 0;
}
.sv-menu-side-image--left img {
  border-radius: 0 8px 8px 0;
}
.sv-menu-side-image--right {
  right: 0;
  bottom: 25%;
}
.sv-menu-side-image--right img {
  border-radius: 8px 0 0 8px;
}
.sv-menu-list-section > .sv-container {
  position: relative;
  z-index: 1;
}
.sv-menu-list-section .sv-section-heading {
  margin-bottom: 48px;
}
.sv-menu-list-section .sv-section-heading h2 {
  color: var(--dark-ink-brown);
  font-size: 40px;
}
.sv-menu-list-section .sv-section-heading p {
  margin: 14px 0 0;
  color: var(--moss-green);
}
.sv-menu-tabs .sv-tabs__nav {
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(197, 164, 109, .2);
  overflow: visible;
}
.sv-menu-tabs .sv-tabs__nav-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
}
.sv-menu-tabs .sv-tab-button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--moss-green);
  padding: 12px 14px;
  white-space: nowrap;
  letter-spacing: .1em;
}
.sv-menu-tabs .sv-tab-button.is-active {
  border-bottom-color: var(--antique-gold);
  background: transparent;
  color: var(--antique-gold);
}
.sv-menu-tabs .sv-tab-panel.is-active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: none;
}
.sv-menu-tabs .sv-tab-panel.is-animating-in {
  animation: sv-menu-tab-rise .5s ease both;
}
@keyframes sv-menu-tab-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sv-menu-tabs .sv-menu-item {
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(197, 164, 109, .1);
}
.sv-menu-tabs .sv-menu-item__header {
  display: block;
  font-size: 0;
}
.sv-menu-tabs .sv-menu-item__name {
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}
.sv-menu-tabs .sv-menu-item__desc {
  margin: 8px 0 12px;
  color: var(--moss-green);
  font-size: 14px;
  line-height: 1.8;
}
.sv-menu-tabs .sv-menu-item__badges,
.sv-menu-legend div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sv-menu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(182, 139, 71, .3);
  border-radius: 50%;
  background: var(--soft-cream);
  line-height: 0;
  vertical-align: top;
}
.sv-menu-badge svg {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--aged-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sv-menu-badge--chef-s-choice svg { stroke: var(--antique-gold); }
.sv-menu-badge--vegetarian svg { stroke: #16a34a; }
.sv-menu-badge--spicy svg { stroke: #dc2626; }
.sv-menu-legend {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(197, 164, 109, .2);
}
.sv-menu-legend > p {
  margin: 0 0 16px;
  color: var(--moss-green);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sv-menu-legend div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.sv-menu-legend div > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--moss-green);
  font-size: 14px;
}
.sv-menu-visual-divider {
  position: relative;
  height: 256px;
  overflow: hidden;
  background: var(--deep-moss);
}
.sv-menu-visual-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-menu-visual-divider::after {
  content: none;
}
.sv-menu-visual-divider > span {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
}
.sv-menu-visual-divider i {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(197, 164, 109, .95);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}
.sv-menu-visual-divider i::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid rgba(197, 164, 109, .95);
  border-radius: 50%;
}
.sv-menu-tasting-section {
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
  background: var(--parchment-ivory);
  color: var(--dark-ink-brown);
}
.sv-menu-tasting-section .sv-section-heading {
  margin-bottom: 64px;
}
.sv-menu-tasting-section h2 {
  color: var(--dark-ink-brown);
  font-size: 40px;
}
.sv-menu-tasting-section .sv-section-heading p {
  color: var(--moss-green);
  line-height: 1.8;
}
.sv-menu-timeline {
  display: grid;
  gap: 32px;
}
.sv-menu-timeline-item {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.sv-menu-timeline-item > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--antique-gold);
  border-radius: 50%;
  color: var(--antique-gold);
  letter-spacing: .1em;
}
.sv-menu-timeline-item h3 {
  margin-top: 4px;
  color: var(--dark-ink-brown);
  font-size: 26px;
}
.sv-menu-timeline-item p {
  margin: 8px 0 0;
  color: var(--moss-green);
  line-height: 1.8;
}
.sv-menu-timeline-item:hover h3,
.sv-menu-timeline-item:focus-visible h3 {
  color: var(--aged-gold);
}
.sv-menu-timeline-item:focus-visible {
  outline: 2px solid var(--antique-gold);
  outline-offset: 8px;
}
.sv-menu-tasting-section .sv-center {
  margin-top: 48px;
}
.sv-menu-pairing-section {
  position: relative;
  overflow: hidden;
}
.sv-menu-pairing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: var(--sv-menu-pairing-image);
  background-size: cover;
  background-position: center;
}
.sv-menu-pairing-section > .sv-container {
  position: relative;
  z-index: 1;
}
.sv-menu-pairing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.sv-menu-pairing-grid article {
  padding: 32px;
  border: 1px solid rgba(197, 164, 109, .2);
  border-radius: 8px;
  background: var(--parchment-ivory);
  text-align: center;
}
.sv-menu-pairing-grid span {
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--antique-gold);
}
.sv-menu-pairing-grid svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sv-menu-pairing-grid h3 {
  color: var(--dark-ink-brown);
  font-size: 22px;
  margin-bottom: 12px;
}
.sv-menu-pairing-grid p {
  margin: 0;
  color: var(--moss-green);
  font-size: 14px;
  line-height: 1.8;
}

.sv-gallery-filter-section {
  padding: 48px 0 12px;
  background: var(--soft-cream);
}
.sv-gallery-filter-section .sv-container,
.sv-gallery-grid-section .sv-container {
  width: min(1280px, calc(100% - 40px));
}
.sv-gallery-filter-section .sv-filter-button {
  min-width: 114px;
  border-color: rgba(197, 164, 109, .3);
  border-radius: 999px;
  background: var(--parchment-ivory);
  color: var(--moss-green);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.sv-gallery-filter-section .sv-filter-button.is-active {
  border-color: var(--antique-gold);
  background: var(--antique-gold);
  color: var(--parchment-ivory);
}
.sv-gallery-filter-section .sv-filter-button:hover {
  border-color: var(--antique-gold);
}
.sv-gallery-grid-section {
  padding: 8px 0 80px;
  background: var(--soft-cream);
}
.sv-masonry {
  display: block;
  column-count: 3;
  column-gap: 24px;
}
.sv-masonry--preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 238px;
  gap: 24px;
}
.sv-gallery-card {
  position: relative;
  display: block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 24px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  background: var(--dark-ink-brown);
  text-align: left;
  transition: box-shadow .3s ease;
}
.sv-gallery-card.is-hidden { display: none; }
.sv-masonry--preview .sv-gallery-card--1,
.sv-masonry--preview .sv-gallery-card--5,
.sv-masonry--preview .sv-gallery-card--6 { grid-column: span 2; }
.sv-masonry--preview .sv-gallery-card--1 { grid-row: span 2; }
.sv-masonry--preview .sv-gallery-card--2 { grid-row: span 2; }
.sv-gallery-card img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.sv-masonry:not(.sv-masonry--preview) .sv-gallery-card img {
  display: block;
}
.sv-masonry--preview .sv-gallery-card img {
  height: 100%;
}
.sv-gallery-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}
.sv-gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.03) contrast(1.02) brightness(.72);
}
.sv-gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--parchment-ivory);
  z-index: 30;
  background:
    linear-gradient(to top, rgba(46, 36, 28, .8), rgba(46, 36, 28, .2) 58%, transparent),
    linear-gradient(to top, rgba(197, 164, 109, .05), transparent 52%);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.sv-gallery-card:hover .sv-gallery-card__overlay {
  opacity: 1;
  visibility: visible;
}
.sv-gallery-card__overlay small {
  display: block;
  color: var(--antique-gold);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.sv-gallery-card__overlay strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}
.sv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 84px;
  background: rgba(57, 68, 56, .96);
  backdrop-filter: blur(4px);
}
.sv-lightbox.is-open { display: flex; }
.sv-lightbox__dialog {
  width: min(1024px, calc(100vw - 240px));
  overflow: hidden;
  border: 2px solid var(--antique-gold);
  border-radius: 8px;
  background: var(--parchment-ivory);
  color: var(--dark-ink-brown);
}
.sv-lightbox__image {
  width: 100%;
  max-height: calc(100vh - 260px);
  display: block;
  object-fit: contain;
  background: var(--dark-ink-brown);
}
.sv-lightbox__pdf {
  display: none;
  width: 100%;
  height: min(74vh, 820px);
  border: 0;
  background: var(--parchment-ivory);
}
.sv-lightbox.is-pdf .sv-lightbox__image {
  display: none;
}
.sv-lightbox.is-pdf .sv-lightbox__pdf {
  display: block;
}
.sv-lightbox__caption {
  margin: 0;
  padding: 22px 26px 28px;
  background: var(--parchment-ivory);
  text-align: left;
}
.sv-lightbox__caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--antique-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.sv-lightbox__caption p {
  margin: 0;
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.35;
}
.sv-lightbox--course .sv-lightbox__dialog {
  width: auto;
  max-width: calc(100vw - 168px);
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.sv-lightbox--course .sv-lightbox__image {
  width: auto;
  max-width: calc(100vw - 168px);
  max-height: calc(100vh - 220px);
  margin: 0 auto;
  transform: scale(var(--sv-course-zoom, 1));
  transform-origin: center center;
  transition: transform .08s ease-out;
  cursor: zoom-in;
}
.sv-lightbox--course.is-zoomed .sv-lightbox__image {
  cursor: zoom-out;
}
.sv-lightbox--course.is-pdf .sv-lightbox__dialog {
  width: min(1024px, calc(100vw - 168px));
}
.sv-lightbox--course .sv-lightbox__caption {
  padding: 14px 18px 16px;
}
.sv-lightbox--course .sv-lightbox__caption span {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: .14em;
}
.sv-lightbox--course .sv-lightbox__caption p {
  font-size: 16px;
  line-height: 1.25;
}
.sv-lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--parchment-ivory);
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}
.sv-lightbox button:hover {
  color: var(--antique-gold);
}
.sv-lightbox__close {
  top: 20px;
  right: 28px;
  font-size: 42px !important;
}
.sv-lightbox__prev {
  left: 28px;
}
.sv-lightbox__next {
  right: 28px;
}

.sv-story-stack { display: grid; gap: 80px; }
.sv-story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.sv-story-row--reverse > :first-child { order: 2; }
.sv-story-row img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 2px solid rgba(197, 164, 109, .3);
  border-radius: 8px;
}
.sv-people-quote {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 80px 0;
  background-color: var(--parchment-ivory);
  background-image: none;
}
.sv-people-quote .sv-section-divider {
  margin: 0;
}
.sv-people-quote p {
  max-width: 920px;
  color: var(--dark-ink-brown);
  font-size: clamp(30px, 3vw, 40px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
}
.sv-people-chef__layout {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 48px;
}
.sv-people-chef__copy > p:not(.sv-label):not(.sv-people-role),
.sv-story-row p:not(.sv-label),
.sv-people-hospitality__copy > p {
  color: var(--moss-green);
  font-size: 18px;
  line-height: 1.9;
}
.sv-people-role {
  margin: 12px 0 28px;
  color: var(--antique-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.sv-people-hospitality__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 64px;
  align-items: center;
}
.sv-principles {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}
.sv-principle {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.sv-principle__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--antique-gold);
  border-radius: 50%;
  background: var(--parchment-ivory);
  color: var(--antique-gold);
}
.sv-principle__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sv-principle h3 {
  margin-bottom: 7px;
  font-size: 26px;
}
.sv-principle p {
  margin: 0;
  color: var(--moss-green);
  line-height: 1.78;
}
.sv-people-hospitality__images {
  display: grid;
  gap: 24px;
}
.sv-people-hospitality__images img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  border: 2px solid var(--antique-gold);
  border-radius: 8px;
}

.sv-page-hero--people {
  min-height: 72vh;
  margin-top: 0;
}
.sv-page-hero--people .sv-page-hero__overlay {
  background: linear-gradient(135deg, rgba(57,68,56,.75), rgba(46,36,28,.65) 48%, rgba(57,68,56,.75));
}
.sv-page-hero--people .sv-hero-pattern,
.sv-page-hero--people .sv-hero-noise {
  display: none;
}
.sv-page-hero--people .sv-hero-ornament {
  inset: 112px 64px 64px;
  border: 2px solid var(--antique-gold);
}
.sv-page-hero--people .sv-page-hero__content {
  max-width: 880px;
  padding-top: 80px;
}
.sv-page-hero--people h1 {
  color: var(--parchment-ivory);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.sv-page-hero--people .sv-page-hero__content > p:not(.sv-label) {
  max-width: 680px;
  color: var(--soft-cream);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}
.sv-people-chef,
.sv-people-hospitality {
  background-color: var(--soft-cream);
  background-image: none;
}
.sv-people-chef .sv-gold-frame {
  padding: 0;
  border: 2px solid var(--antique-gold);
  border-radius: 8px;
  background: var(--soft-cream);
}
.sv-people-chef .sv-gold-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(197, 164, 109, .3);
}
.sv-people-chef .sv-gold-frame img {
  height: 600px;
  aspect-ratio: auto;
  border-radius: 6px;
  object-fit: cover;
}
.sv-people-chef__copy h2,
.sv-people-hospitality__copy h2 {
  font-size: clamp(38px, 3.3vw, 48px);
}
.sv-people-chef__copy blockquote {
  margin-top: 28px;
  padding: 16px 0 16px 24px;
  color: var(--dark-ink-brown);
  font-size: 22px;
  font-style: italic;
  line-height: 1.8;
}
.sv-people-teams {
  overflow: hidden;
  padding-top: 18px;
}
.sv-people-teams .sv-section-heading {
  max-width: 920px;
  margin-bottom: 54px;
}
.sv-people-teams .sv-label {
  margin-bottom: 18px;
  color: var(--antique-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1.2;
}
.sv-people-teams .sv-section-heading h2 {
  font-size: clamp(44px, 4.2vw, 62px);
}
.sv-people-teams .sv-section-heading p:not(.sv-label) {
  max-width: 620px;
  margin-top: 28px;
  color: var(--warm-beige);
  font-size: 18px;
  font-weight: 600;
}
.sv-people-team-showcase {
  width: min(1280px, 100%);
  margin: 0 auto;
}
.sv-people-team-carousel {
  margin-bottom: 0;
}
.sv-people-team-carousel .sv-experience-carousel__track {
  height: clamp(420px, 39vw, 560px);
}
.sv-people-team-carousel .sv-experience-carousel__nav {
  opacity: 1;
}
.sv-people-team-carousel .sv-experience-carousel__nav--prev {
  left: 18px;
}
.sv-people-team-carousel .sv-experience-carousel__nav--next {
  right: 18px;
}
.sv-people-team-carousel .sv-experience-carousel__dots {
  bottom: 18px;
}
.sv-people-team-captions {
  position: relative;
  min-height: 118px;
  margin: 26px auto 0;
  text-align: center;
}
.sv-people-team-caption {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
.sv-people-team-caption.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sv-people-team-caption h3 {
  margin: 0 0 12px;
  color: var(--parchment-ivory);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.15;
}
.sv-people-team-caption p {
  margin: 0;
  color: var(--warm-beige);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}
.sv-people-team-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.sv-people-hospitality__layout {
  width: min(1114px, calc(100% - 64px));
  grid-template-columns: minmax(0, 596px) minmax(0, 496px);
  gap: 22px;
  justify-content: center;
}
.sv-people-hospitality .sv-label {
  margin-bottom: 16px;
  color: var(--antique-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  line-height: 1.2;
}
.sv-people-hospitality__copy h2 {
  max-width: none;
  margin-bottom: 22px;
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
  white-space: nowrap;
}
.sv-people-hospitality__copy > p {
  max-width: 596px;
  margin: 0 0 28px;
  color: var(--moss-green);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
}
.sv-people-hospitality .sv-principles {
  gap: 24px;
  margin-top: 0;
}
.sv-people-hospitality .sv-principle {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
}
.sv-people-hospitality .sv-principle__icon {
  width: 48px;
  height: 48px;
}
.sv-people-hospitality .sv-principle__icon svg {
  width: 22px;
  height: 22px;
}
.sv-people-hospitality .sv-principle h3 {
  margin: 0 0 6px;
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}
.sv-people-hospitality .sv-principle p {
  margin: 0;
  color: var(--moss-green);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.sv-people-hospitality .sv-people-hospitality__images {
  gap: 24px;
}
.sv-people-hospitality .sv-people-hospitality__images img {
  width: 100%;
  height: 258px;
  border: 2px solid var(--antique-gold);
  border-radius: 8px;
}
.sv-cta-section--people {
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
  background: var(--deep-moss);
}
.sv-cta-section--people::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(197, 164, 109, .3);
  pointer-events: none;
}
.sv-cta-section--people .sv-cta-section__border {
  position: relative;
  z-index: 1;
  width: min(768px, 100%);
  padding: 0 24px;
  border: 0;
}
.sv-cta-section--people h2 {
  color: var(--parchment-ivory);
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.15;
}
.sv-cta-section--people p:not(.sv-label) {
  margin: 22px auto 30px;
  color: var(--warm-beige);
  line-height: 1.8;
}
.sv-cta-section--people .sv-btn-primary {
  min-width: 200px;
  padding: 14px 40px;
  background: var(--antique-gold);
  color: var(--parchment-ivory);
}
.sv-cta-section--people .sv-btn-primary:hover {
  background: var(--aged-gold);
  color: var(--parchment-ivory);
}

.sv-news-featured__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 68px;
  align-items: center;
}
.sv-news-featured__media {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(184, 145, 77, .5);
}
.sv-news-featured__media::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 28px;
  border: 1px solid rgba(197, 164, 109, .36);
  pointer-events: none;
}
.sv-news-featured__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}
.sv-news-featured__content {
  position: relative;
  z-index: 2;
}
.sv-news-featured__content > p:not(.sv-label) {
  margin: 0 0 30px;
  color: var(--moss-green);
  font-size: 19px;
  line-height: 1.75;
}
.sv-news-date {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--aged-gold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}
.sv-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.sv-news-card {
  border: 1px solid rgba(197, 164, 109, .42);
  background: rgba(244, 235, 221, .06);
  overflow: hidden;
}
.sv-news-card a {
  display: grid;
  height: 100%;
  color: inherit;
}
.sv-news-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.sv-news-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}
.sv-news-card__body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}
.sv-news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--antique-gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.sv-news-card__meta em {
  color: var(--warm-beige);
  font-style: normal;
  text-align: right;
}
.sv-news-card h3 {
  color: var(--parchment-ivory);
  font-size: 30px;
}
.sv-news-card p {
  margin: 0;
  color: var(--warm-beige);
  line-height: 1.7;
}
.sv-news-private {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}
.sv-news-private__intro > p:not(.sv-label) {
  margin: 0 0 30px;
  color: var(--moss-green);
  font-size: 19px;
}
.sv-news-private__points {
  display: grid;
  gap: 18px;
}
.sv-news-private__points article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px 24px;
  padding: 24px;
  border: 1px solid rgba(184, 145, 77, .42);
  background: rgba(255, 248, 236, .58);
}
.sv-news-private__points span {
  grid-row: span 2;
  color: var(--antique-gold);
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
}
.sv-news-private__points h3 {
  font-size: 28px;
}
.sv-news-private__points p {
  margin: 0;
  color: var(--moss-green);
}

.sv-booking-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  align-items: start;
}
.sv-booking-form-panel {
  background: rgba(248, 243, 233, .96);
  border: 1px solid rgba(184, 145, 77, .45);
  padding: 34px;
}
.sv-booking-form-panel h2 { margin-bottom: 26px; }
.sv-booking-form-note,
.sv-booking-location-note {
  margin-top: 18px;
  color: var(--moss-green);
  font-size: 14px;
}
.sv-booking-sidebar { display: grid; gap: 18px; }
.sv-contact-card h3 { margin-bottom: 12px; }
.sv-note-card {
  background: var(--deep-moss);
  color: var(--parchment-ivory);
}
.form-reservation-2 .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-reservation-2 label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--moss-green);
}
.form-reservation-2 input,
.form-reservation-2 select,
.form-reservation-2 textarea {
  width: 100%;
  border: 1px solid rgba(184, 145, 77, .38);
  background: rgba(255,255,255,.55);
  padding: 13px 14px;
  color: var(--dark-ink-brown);
}
.mb-3 { margin-bottom: 18px; }
.mb-4 { margin-bottom: 24px; }
.text-center { text-align: center; }
.sv-map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(184, 145, 77, .45);
  background: rgba(255,255,255,.25);
}
.sv-map-placeholder span {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
}
.sv-map-placeholder small { display: block; color: var(--moss-green); }

.sv-page-hero--booking {
  min-height: 0;
  height: 560px;
  margin-top: 80px;
  color: var(--dark-ink-brown);
}
.sv-page-hero--booking .sv-page-hero__media img {
  object-position: center center;
}
.sv-page-hero--booking .sv-page-hero__overlay {
  background: linear-gradient(135deg, rgba(57, 68, 56, .5), rgba(46, 36, 28, .4) 50%, rgba(57, 68, 56, .5));
}
.sv-booking-hero-frame {
  display: none;
  position: absolute;
  inset: 64px 64px 64px;
  z-index: 2;
  border: 2px solid var(--antique-gold);
  pointer-events: none;
}
.sv-booking-hero-card {
  position: relative;
  z-index: 3;
  width: min(874px, calc(100% - 40px));
  padding: 38px 40px 36px;
  border-radius: 8px;
  background: rgba(244, 235, 221, .9);
  text-align: center;
  backdrop-filter: blur(10px);
  transform: translateY(-12px);
}
.sv-booking-hero-card .sv-label {
  margin-bottom: 16px;
}
.sv-booking-hero-card h1 {
  color: var(--dark-ink-brown);
  font-size: clamp(40px, 3.6vw, 48px);
  line-height: 1.08;
}
.sv-booking-hero-card > p:not(.sv-label) {
  max-width: 820px;
  margin: 20px auto 0;
  color: var(--moss-green);
  font-size: 17px;
  line-height: 1.8;
}
.sv-page-hero--success {
  min-height: 640px;
  height: calc(100vh - 80px);
  margin-top: 80px;
  padding-top: 0;
}
.sv-page-hero--success .sv-page-hero__media img {
  object-position: center center;
}
.sv-page-hero--success .sv-page-hero__overlay {
  background:
    linear-gradient(180deg, rgba(16, 14, 12, .36), rgba(16, 14, 12, .5)),
    linear-gradient(90deg, rgba(16, 14, 12, .54), rgba(16, 14, 12, .16) 50%, rgba(16, 14, 12, .52));
}
.sv-success-hero__content {
  position: relative;
  z-index: 3;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--parchment-ivory);
  text-align: center;
  transform: translateY(-28px);
}
.sv-success-hero__content .sv-label {
  margin-bottom: 18px;
  color: var(--antique-gold);
}
.sv-success-hero__content h1 {
  color: var(--parchment-ivory);
  font-size: clamp(46px, 5vw, 76px);
  line-height: .96;
}
.sv-success-hero__content > p:not(.sv-label) {
  max-width: 920px;
  margin: 22px auto 0;
  color: rgba(255, 252, 244, .92);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.7;
}
.sv-success-hero__button {
  margin-top: 32px;
  border-color: rgba(197, 164, 109, .82);
  color: var(--parchment-ivory);
  background: rgba(16, 14, 12, .24);
}
.sv-success-hero__button:hover {
  background: var(--antique-gold);
  color: var(--dark-ink-brown);
}
.sv-booking-section {
  padding: 72px 0 42px;
  background: var(--soft-cream);
}
.sv-booking-section > .sv-container {
  width: min(1280px, calc(100% - 64px));
}
.sv-booking-location-section > .sv-container {
  width: min(1152px, calc(100% - 64px));
}
.sv-booking-grid {
  grid-template-columns: minmax(0, 2fr) minmax(320px, .95fr);
  gap: 48px;
  align-items: start;
}
.sv-booking-card,
.sv-booking-sidebar-card,
.sv-booking-location-card {
  border: 2px solid rgba(197, 164, 109, .4);
  border-radius: 8px;
  background: var(--parchment-ivory);
}
.sv-booking-form-panel {
  padding: 40px 48px 34px;
}
.sv-booking-form-panel h2 {
  margin-bottom: 24px;
  color: var(--dark-ink-brown);
  font-size: 32px;
}
.sv-booking-sidebar {
  display: grid;
  gap: 24px;
}
.sv-booking-sidebar-card {
  padding: 26px;
}
.sv-booking-sidebar-card h3,
.sv-booking-location-card h3 {
  margin-bottom: 24px;
  color: var(--dark-ink-brown);
  font-size: 22px;
  line-height: 1.15;
}
.sv-booking-contact-list {
  display: grid;
  gap: 16px;
}
.sv-booking-contact-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  color: var(--moss-green);
  font-size: 14px;
  line-height: 1.45;
  min-width: 0;
}
.sv-booking-contact-row__icon,
.sv-booking-location-row > svg {
  color: var(--antique-gold);
}
.sv-booking-contact-row svg,
.sv-booking-location-row svg,
.sv-map-placeholder svg,
.sv-booking-hours__closed svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sv-booking-contact-row strong {
  display: block;
  margin-bottom: 2px;
  color: var(--antique-gold);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sv-booking-contact-row p {
  margin: 0;
  overflow-wrap: anywhere;
}
.sv-booking-hours {
  display: grid;
  gap: 12px;
  color: var(--moss-green);
  font-size: 14px;
}
.sv-booking-hours p {
  margin: 0;
}
.sv-booking-hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-left: 18px;
  min-width: 0;
}
.sv-booking-hours div strong {
  color: var(--dark-ink-brown);
  font-weight: 500;
  text-align: right;
}
.sv-booking-hours__closed {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(197, 164, 109, .2);
  color: var(--antique-gold);
}
.sv-booking-hours__closed svg {
  width: 16px;
  height: 16px;
}
.sv-booking-note-card {
  padding: 22px 24px;
  border-left: 2px solid var(--antique-gold);
  border-radius: 0 8px 8px 0;
  background: var(--soft-cream);
  color: var(--moss-green);
  font-size: 14px;
  line-height: 1.8;
}
.form-reservation-2 .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}
.form-reservation-2 p {
  margin: 0;
}
.form-reservation-2 .is-full {
  grid-column: 1 / -1;
}
.form-reservation-2 label {
  display: block;
  margin-bottom: 7px;
  color: var(--dark-ink-brown);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.form-reservation-2 label::first-letter {
  text-transform: uppercase;
}
.form-reservation-2 .sv-required {
  color: var(--antique-gold);
}
.form-reservation-2 input,
.form-reservation-2 select,
.form-reservation-2 textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(197, 164, 109, .35);
  border-radius: 6px;
  background: var(--soft-cream);
  padding: 11px 16px;
  color: var(--dark-ink-brown);
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-reservation-2 textarea {
  min-height: 122px;
  resize: vertical;
}
.form-reservation-2 input:focus,
.form-reservation-2 select:focus,
.form-reservation-2 textarea:focus {
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 3px rgba(197, 164, 109, .14);
}
.form-reservation-2 input#bookingdate,
.form-reservation-2 input#bookingdate + .flatpickr-input {
  background-image: linear-gradient(45deg, transparent 50%, var(--moss-green) 50%), linear-gradient(135deg, var(--moss-green) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.form-reservation-2 .mb-3 {
  margin-bottom: 0;
}
.form-reservation-2 .mb-4 {
  margin: 18px 0;
}
.sv-booking-submit-wrap {
  padding-top: 18px;
  border-top: 1px solid rgba(197, 164, 109, .2);
}
.sv-booking-submit-wrap p {
  margin: 0;
  line-height: 0;
}
.sv-booking-form-panel .wpcf7,
.sv-booking-form-panel .wpcf7 form {
  margin-bottom: 0;
}
.sv-booking-form-panel .wpcf7 form {
  position: relative;
}
.sv-booking-form-panel .wpcf7 form.init .wpcf7-response-output {
  display: none;
  margin: 0;
  padding: 0;
}
.sv-booking-form-panel .wpcf7-response-output:empty {
  display: none;
  margin: 0;
  padding: 0;
}
.sv-booking-form-panel .wpcf7 form.sent .wpcf7-response-output,
.sv-booking-form-panel .wpcf7 form.invalid .wpcf7-response-output,
.sv-booking-form-panel .wpcf7 form.failed .wpcf7-response-output,
.sv-booking-form-panel .wpcf7 form.unaccepted .wpcf7-response-output,
.sv-booking-form-panel .wpcf7 form.spam .wpcf7-response-output {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 16px);
  margin: 26px auto 0;
  padding: 13px 18px;
  border: 1px solid rgba(76, 95, 65, .26);
  border-radius: 8px;
  background: rgba(76, 95, 65, .08);
  box-shadow: 0 10px 26px rgba(46, 36, 28, .08);
  color: var(--moss-green);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}
.sv-booking-form-panel .wpcf7 form.sent .wpcf7-response-output::before,
.sv-booking-form-panel .wpcf7 form.invalid .wpcf7-response-output::before,
.sv-booking-form-panel .wpcf7 form.failed .wpcf7-response-output::before,
.sv-booking-form-panel .wpcf7 form.unaccepted .wpcf7-response-output::before,
.sv-booking-form-panel .wpcf7 form.spam .wpcf7-response-output::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--moss-green);
  box-shadow: inset 0 0 0 5px rgba(255, 248, 235, .92);
}
.sv-booking-form-panel .wpcf7 form.invalid .wpcf7-response-output,
.sv-booking-form-panel .wpcf7 form.failed .wpcf7-response-output,
.sv-booking-form-panel .wpcf7 form.unaccepted .wpcf7-response-output,
.sv-booking-form-panel .wpcf7 form.spam .wpcf7-response-output {
  border-color: rgba(162, 77, 54, .28);
  background: rgba(162, 77, 54, .08);
  color: #8F3D2C;
}
.sv-booking-form-panel .wpcf7 form.invalid .wpcf7-response-output::before,
.sv-booking-form-panel .wpcf7 form.failed .wpcf7-response-output::before,
.sv-booking-form-panel .wpcf7 form.unaccepted .wpcf7-response-output::before,
.sv-booking-form-panel .wpcf7 form.spam .wpcf7-response-output::before {
  background: #A24D36;
}
.form-reservation-2 .sv-form-submit {
  display: block;
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  background: var(--antique-gold);
  color: var(--dark-ink-brown);
}
.form-reservation-2 .sv-form-submit:hover {
  background: var(--aged-gold);
  color: var(--parchment-ivory);
}
.form-reservation-2 .wpcf7-spinner {
  position: absolute;
  right: 22px;
  bottom: 15px;
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
}
.form-reservation-2 .wpcf7-spinner::before {
  inset: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid rgba(42, 29, 20, .24);
  border-top-color: var(--dark-ink-brown);
  border-radius: 50%;
  background: transparent;
  transform-origin: center;
}
.form-reservation-2 form.submitting .wpcf7-spinner,
.sv-booking-form-panel .wpcf7 form.submitting .wpcf7-spinner {
  opacity: 1;
}
.sv-booking-form-panel .wpcf7 form.submitting .sv-form-submit {
  padding-right: 54px;
  opacity: .86;
  pointer-events: none;
}
.sv-booking-form-note {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--moss-green);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}
.flatpickr-calendar {
  width: 336px;
  border: 1px solid rgba(197, 164, 109, .42);
  border-radius: 8px;
  background: var(--parchment-ivory);
  box-shadow: 0 20px 48px rgba(46, 36, 28, .2);
  color: var(--dark-ink-brown);
  font-family: var(--font-sans);
}
.flatpickr-calendar::before,
.flatpickr-calendar::after {
  border-bottom-color: var(--parchment-ivory);
}
.flatpickr-months {
  align-items: center;
  padding: 14px 14px 8px;
}
.flatpickr-months .flatpickr-month {
  height: 34px;
  color: var(--dark-ink-brown);
}
.flatpickr-current-month {
  height: 34px;
  padding: 5px 0 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: var(--dark-ink-brown);
  font-family: inherit;
  font-weight: 600;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  top: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(197, 164, 109, .35);
  border-radius: 50%;
  color: var(--moss-green);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  border-color: var(--antique-gold);
  background: rgba(197, 164, 109, .16);
  color: var(--dark-ink-brown);
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 13px;
  height: 13px;
}
.flatpickr-weekdays {
  padding: 0 14px;
  background: transparent;
}
span.flatpickr-weekday {
  color: var(--moss-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.flatpickr-days {
  width: 336px;
  padding: 4px 14px 16px;
}
.dayContainer {
  width: 308px;
  min-width: 308px;
  max-width: 308px;
  gap: 3px 0;
}
.flatpickr-day {
  display: grid;
  place-items: center;
  max-width: 44px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--dark-ink-brown);
  font-size: 14px;
  line-height: 1;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  border-color: rgba(197, 164, 109, .48);
  background: rgba(197, 164, 109, .14);
}
.flatpickr-day.today {
  border-color: var(--antique-gold);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  border-color: var(--antique-gold);
  background: var(--antique-gold);
  color: var(--dark-ink-brown);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(68, 74, 55, .38);
}
.flatpickr-day.sv-flatpickr-full {
  height: 42px;
  padding-top: 4px;
  color: rgba(68, 74, 55, .46);
  cursor: not-allowed;
  align-content: center;
  gap: 1px;
}
.flatpickr-day.sv-flatpickr-full:hover {
  border-color: transparent;
  background: transparent;
}
.sv-flatpickr-full-label {
  display: block;
  margin-top: 0;
  color: #A24D36;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
  transform: translate(1px, 1px);
}
.sv-booking-location-section {
  padding: 34px 0 72px;
  background: var(--soft-cream);
}
.sv-booking-location-section .sv-section-heading {
  margin: 0 auto 34px;
}
.sv-booking-location-section .sv-section-heading h2 {
  color: var(--dark-ink-brown);
  font-size: 36px;
  line-height: 1.2;
}
.sv-booking-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
.sv-map-placeholder {
  overflow: hidden;
  min-height: 400px;
  border: 2px solid var(--antique-gold);
  border-radius: 8px;
  background: var(--warm-beige);
  color: var(--dark-ink-brown);
}
.sv-map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
.sv-map-placeholder > div {
  display: grid;
  justify-items: center;
  gap: 12px;
}
.sv-map-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--antique-gold);
}
.sv-map-placeholder span {
  display: block;
  font-size: 18px;
}
.sv-map-placeholder small {
  display: block;
  color: var(--moss-green);
  font-size: 14px;
}
.sv-booking-location-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.sv-booking-location-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 22px;
  color: var(--moss-green);
  font-size: 14px;
  line-height: 1.55;
  min-width: 0;
}
.sv-booking-location-row p {
  margin: 0 0 4px;
  color: var(--dark-ink-brown);
  font-size: 16px;
  overflow-wrap: anywhere;
}
.sv-booking-location-card .sv-btn-secondary {
  width: 100%;
}
.sv-cta-section--booking {
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
  background: var(--dark-ink-brown);
}
.sv-cta-section--booking::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(197, 164, 109, .3);
  pointer-events: none;
}
.sv-cta-section--booking .sv-cta-section__border {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0 24px;
  border: 0;
}
.sv-cta-section--booking h2 {
  color: var(--parchment-ivory);
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.16;
}
.sv-cta-section--booking p:not(.sv-label) {
  max-width: 660px;
  margin: 26px auto 34px;
  color: var(--warm-beige);
  line-height: 1.8;
  font-weight: 500;
}
.sv-cta-section--booking .sv-btn-primary {
  min-width: 220px;
  background: var(--antique-gold);
  color: var(--parchment-ivory);
}
.sv-cta-section--booking .sv-btn-primary:hover {
  background: var(--aged-gold);
}

.sv-cta-section {
  padding: 90px 20px;
  background: var(--dark-ink-brown);
  color: var(--parchment-ivory);
  text-align: center;
}
.sv-cta-section__border {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 56px 32px;
  border: 1px solid rgba(184, 145, 77, .65);
}
.sv-cta-section p:not(.sv-label) {
  max-width: 620px;
  margin: 18px auto 30px;
  color: var(--warm-beige);
}
.sv-cta-section--gallery {
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
}
.sv-cta-section--gallery .sv-cta-section__border {
  width: min(768px, 100%);
  margin: 0 auto;
  padding: 0 24px;
  border: 0;
}
.sv-cta-section--gallery::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(197, 164, 109, .3);
  pointer-events: none;
}
.sv-cta-section--gallery h2 {
  color: var(--parchment-ivory);
  font-size: 40px;
  line-height: 1.15;
}
.sv-cta-section--gallery p:not(.sv-label) {
  margin: 22px auto 30px;
  color: var(--warm-beige);
  line-height: 1.8;
}
.sv-cta-section--gallery .sv-btn-primary {
  padding: 14px 40px;
  min-width: 226px;
  background: var(--antique-gold);
  color: var(--parchment-ivory);
  letter-spacing: .1em;
}
.sv-cta-section--gallery .sv-btn-primary:hover {
  background: var(--aged-gold);
  color: var(--parchment-ivory);
}
.sv-footer {
  position: relative;
  overflow: hidden;
  background: var(--deep-moss);
  color: var(--parchment-ivory);
}
.sv-footer__top-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--antique-gold), transparent);
}
.sv-footer__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}
.sv-footer__mobile {
  display: none;
}
.sv-footer__desktop {
  display: block;
}
.sv-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.sv-footer__brand p,
.sv-footer__rows,
.sv-footer__links {
  color: var(--warm-beige);
  font-size: 14px;
  line-height: 1.65;
}
.sv-footer__brand p {
  margin: 0;
}
.sv-footer__brand--center {
  text-align: center;
}
.sv-footer__logo {
  width: auto;
  height: 48px;
  margin: 0 0 24px;
  object-fit: contain;
}
.sv-footer__brand--center .sv-footer__logo {
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 12px;
}
.sv-footer h3 {
  margin: 0 0 24px;
  color: var(--antique-gold);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .05em;
}
.sv-footer__rows {
  display: grid;
  gap: 14px;
}
.sv-footer__rows p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}
.sv-footer__group--center .sv-footer__rows p {
  justify-content: center;
  align-items: center;
}
.sv-footer__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: none;
  stroke: var(--antique-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sv-footer__links {
  display: grid;
  gap: 12px;
}
.sv-footer a {
  color: inherit;
  transition: color .2s ease;
}
.sv-footer a:hover {
  color: var(--antique-gold);
}
.sv-footer__divider {
  height: 1px;
  margin-bottom: 30px;
  background: linear-gradient(to right, transparent, rgba(197, 164, 109, .3), transparent);
}
.sv-footer__small-divider {
  width: 64px;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(to right, transparent, rgba(197, 164, 109, .4), transparent);
}
.sv-footer__small-divider--short {
  width: 48px;
  margin-bottom: 0;
}
.sv-footer__bottom {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: var(--warm-beige);
  text-align: center;
  font-size: 14px;
}
.sv-footer__bottom p {
  margin: 0;
}
.sv-footer__bottom .sv-section-divider {
  width: 128px;
  margin: 0;
  opacity: .55;
}
.sv-footer__corner {
  position: absolute;
  bottom: 16px;
  width: 32px;
  height: 32px;
  pointer-events: none;
}
.sv-footer__corner--left {
  left: 16px;
  border-bottom: 1px solid rgba(197, 164, 109, .2);
  border-left: 1px solid rgba(197, 164, 109, .2);
}
.sv-footer__corner--right {
  right: 16px;
  border-right: 1px solid rgba(197, 164, 109, .2);
  border-bottom: 1px solid rgba(197, 164, 109, .2);
}
.sv-footer__closed {
  display: block !important;
  color: var(--antique-gold);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sv-footer__mobile-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  color: var(--warm-beige);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sv-mobile-booking,
.sv-back-to-top {
  position: fixed;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.sv-mobile-booking {
  display: none;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--antique-gold);
  color: #fff;
  text-align: center;
  padding: 14px;
}
.sv-back-to-top {
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--antique-gold);
  background: var(--parchment-ivory);
  color: var(--dark-ink-brown);
}
.sv-mobile-booking.is-visible,
.sv-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .sv-header__nav { display: none; }
  .sv-menu-toggle { display: block; }
  .sv-header__inner {
    min-height: 72px;
  }
  .sv-home-about__layout,
  .sv-two-col,
  .sv-location-grid,
  .sv-booking-grid,
  .sv-story-row,
  .sv-people-chef__layout,
  .sv-people-hospitality__layout,
  .sv-news-featured__grid,
  .sv-news-private {
    grid-template-columns: 1fr;
  }
  .sv-two-col--reverse > :first-child,
  .sv-story-row--reverse > :first-child { order: initial; }
  .sv-experience-grid,
  .sv-card-grid,
  .sv-news-grid {
    grid-template-columns: 1fr;
  }
  .sv-masonry { column-count: 2; }
  .sv-masonry--preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-masonry--preview .sv-gallery-card { margin-bottom: 0; }
  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu):not(.sv-page-hero--booking):not(.sv-page-hero--success) {
    min-height: 68vh;
    margin-top: 72px;
    padding-top: 0;
  }
  .sv-location-section .sv-location-grid {
    gap: 42px;
  }
  .sv-location-copy,
  .sv-location-map,
  .sv-location-button {
    grid-column: auto;
    grid-row: auto;
  }
  .sv-location-copy {
    text-align: center;
    order: 1;
  }
  .sv-location-copy .sv-section-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .sv-location-details {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .sv-location-map {
    order: 2;
  }
  .sv-location-button {
    order: 3;
    justify-self: center;
  }
  .sv-lightbox {
    padding: 58px 52px;
  }
  .sv-lightbox__dialog {
    width: min(860px, calc(100vw - 120px));
  }
  .sv-page-hero--menu {
    --sv-menu-hero-inset-x: 32px;
    --sv-menu-hero-inset-top: 36px;
    --sv-menu-hero-inset-bottom: 42px;
    margin-top: 72px;
  }
  .sv-page-hero--menu .sv-page-hero__content {
    margin-top: 116px;
  }
  .sv-menu-experience-grid,
  .sv-menu-tabs .sv-tab-panel.is-active,
  .sv-menu-pairing-grid {
    grid-template-columns: 1fr;
  }
  .sv-menu-side-image {
    display: none;
  }
  .sv-menu-legend div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sv-filter-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sv-filter-row::-webkit-scrollbar {
    display: none;
  }
  .sv-menu-tabs .sv-tabs__nav {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    scrollbar-width: auto;
  }
  .sv-menu-tabs .sv-tabs__nav-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .sv-filter-button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .sv-container,
  .sv-narrow { width: min(calc(100% - 28px), 1180px); }
  .sv-header__inner { min-height: 66px; }
  .sv-header__inner {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }
  .sv-header__brand img { width: 116px; }
  .sv-menu-toggle {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
  }
  .admin-bar .sv-menu-toggle {
    top: auto;
  }
  .sv-menu-toggle span {
    width: 28px;
    height: 2px;
    margin: 5px auto;
    background: var(--parchment-ivory);
    border-radius: 999px;
  }
  .sv-mobile-menu {
    padding: 84px 22px 34px;
    overflow-y: auto;
  }
  .sv-mobile-menu nav {
    font-size: clamp(28px, 9vw, 36px);
  }
  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu):not(.sv-page-hero--booking):not(.sv-page-hero--success) {
    min-height: 64vh;
    margin-top: 66px;
  }
  .sv-page-hero { min-height: 66vh; }
  .sv-page-hero--home { min-height: 100vh; }
  .sv-page-hero--menu {
    --sv-menu-hero-inset-x: 16px;
    --sv-menu-hero-inset-top: 28px;
    --sv-menu-hero-inset-bottom: 28px;
    --sv-menu-hero-circle-size: 68px;
    --sv-menu-hero-circle-inner: 54px;
    min-height: 70vh;
    margin-top: 66px;
  }
  .sv-page-hero--menu .sv-page-hero__content {
    margin-top: 88px;
    width: min(calc(100% - 28px), 900px);
    padding: 36px 18px;
  }
  .sv-page-hero--menu h1 {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(31px, 8.4vw, 34px);
    line-height: 1.08;
  }
  .sv-page-hero--menu .sv-page-hero__content > p:not(.sv-label) {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }
  .sv-page-hero--menu::before {
    width: 68px;
    height: 68px;
  }
  .sv-page-hero--menu::after {
    width: 48px;
    height: 48px;
  }
  .sv-hero-ornament { inset: 78px 18px 24px; }
  h1 { font-size: 42px; }
  .sv-page-hero--home h1 { white-space: normal; }
  .sv-page-hero__content {
    width: min(calc(100% - 32px), 860px);
    padding: 96px 16px 72px;
  }
  .sv-page-hero__content h1,
  .sv-page-hero--menu h1,
  .sv-page-hero--people h1,
  .sv-page-hero--booking h1 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
  }
  .sv-page-hero__content > p:not(.sv-label) {
    font-size: 16px;
    line-height: 1.7;
  }
  .sv-page-hero--home .sv-page-hero__content h1 {
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.16;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
  }
  .sv-home-about {
    padding: 64px 0;
  }
  .sv-home-about__layout {
    gap: 30px;
    text-align: center;
  }
  .sv-home-about__content {
    display: contents;
  }
  .sv-home-about__content .sv-label {
    order: 1;
    margin-bottom: 12px;
    letter-spacing: .3em;
  }
  .sv-home-about__content h2 {
    order: 2;
    max-width: 330px;
    margin: 0 auto;
    font-size: clamp(31px, 8.4vw, 34px);
    line-height: 1.25;
  }
  .sv-home-about__content .sv-section-divider {
    order: 3;
    width: 144px;
    margin: 0 auto 10px;
  }
  .sv-home-about__media {
    order: 4;
  }
  .sv-home-about__media img {
    aspect-ratio: 1 / 1.18;
  }
  .sv-home-about__copy {
    order: 5;
    margin: 0;
    text-align: left;
  }
  .sv-home-about__content .sv-btn-secondary {
    order: 6;
    justify-self: center;
    margin-top: 6px;
  }
  .sv-page-hero--menu .sv-page-hero__content,
  .sv-booking-hero-card {
    max-width: calc(100vw - 32px);
  }
  .sv-page-hero--menu {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sv-page-hero--menu .sv-page-hero__content {
    width: 100%;
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 16px;
  }
  .sv-page-hero--menu .sv-page-hero__content h1 {
    max-width: 280px;
    font-size: clamp(28px, 7.8vw, 32px);
  }
  .sv-page-hero--menu .sv-page-hero__content > p:not(.sv-label) {
    max-width: 280px;
  }
  h2 { font-size: 38px; }
  .sv-section { padding: 50px 0; }
  .sv-container--menu {
    width: min(calc(100% - 28px), 1152px);
  }
  .sv-menu-intro,
  .sv-menu-experience-section,
  .sv-menu-list-section,
  .sv-menu-tasting-section,
  .sv-menu-pairing-section {
    padding: 64px 0;
  }
  .sv-menu-intro p {
    font-size: 24px;
    line-height: 1.65;
  }
  .sv-menu-experience-section h2,
  .sv-menu-pairing-section h2,
  .sv-menu-list-section .sv-section-heading h2,
  .sv-menu-tasting-section h2 {
    font-size: 34px;
  }
  .sv-menu-experience-section h2,
  .sv-menu-pairing-section h2 {
    margin-bottom: 36px;
  }
  .sv-menu-experience-card__media {
    height: 220px;
  }
  .sv-menu-experience-card__body {
    padding: 24px;
  }
  .sv-menu-experience-card__body h3 {
    font-size: 28px;
  }
  .sv-menu-tabs .sv-tabs__nav {
    justify-content: center;
    margin-bottom: 32px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0 8px;
  }
  .sv-menu-tabs .sv-tab-button {
    padding: 10px 16px;
  }
  .sv-menu-legend div {
    grid-template-columns: 1fr;
  }
  .sv-menu-visual-divider {
    height: 220px;
  }
  .sv-menu-timeline-item {
    gap: 16px;
  }
  .sv-menu-timeline-item > span {
    width: 54px;
    height: 54px;
  }
  .sv-menu-timeline-item h3 {
    font-size: 23px;
  }
  .sv-menu-pairing-grid article {
    padding: 26px 22px;
  }
  .sv-footer__inner {
    padding-top: 40px;
    padding-bottom: 64px;
  }
  .sv-footer__desktop {
    display: none;
  }
  .sv-footer__mobile {
    display: block;
  }
  .sv-footer__brand--center p {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    color: var(--warm-beige);
    font-size: 14px;
  }
  .sv-footer__mobile-stack {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
  }
  .sv-footer__group--center {
    text-align: center;
  }
  .sv-footer__group--center h3 {
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: .15em;
    text-transform: uppercase;
  }
  .sv-footer__group--center .sv-footer__rows {
    gap: 8px;
    font-size: 12px;
    line-height: 1.45;
  }
  .sv-footer__group--center .sv-footer__icon {
    width: 16px;
    height: 16px;
    margin-top: 0;
  }
  .sv-footer__divider {
    margin-top: 22px;
    margin-bottom: 16px;
  }
  .sv-footer__bottom {
    gap: 10px;
    font-size: 12px;
  }
  .sv-footer__bottom .sv-section-divider {
    width: 96px;
  }
  .sv-location-section {
    padding: 78px 0;
  }
  .sv-location-copy {
    text-align: left;
  }
  .sv-location-copy .sv-section-divider {
    margin-left: 0;
    margin-right: 0;
  }
  .sv-location-copy h2 {
    font-size: 40px;
  }
  .sv-location-details {
    margin-top: 28px;
    padding-left: 18px;
  }
  .sv-location-detail p {
    font-size: 17px;
  }
  .sv-location-button {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    letter-spacing: .08em;
  }
  .sv-location-map {
    margin-left: -14px;
    margin-right: -14px;
    border-left: 0;
    border-right: 0;
  }
  .sv-location-map__corner {
    display: none;
  }
  .sv-location-map__image {
    height: 320px;
  }
  .sv-home-about__layout,
  .sv-two-col,
  .sv-location-grid,
  .sv-booking-grid,
  .sv-people-chef__layout,
  .sv-people-hospitality__layout,
  .sv-news-featured__grid,
  .sv-news-private { gap: 34px; }
  .sv-principle {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }
  .sv-principle__icon {
    width: 46px;
    height: 46px;
  }
  .sv-principle h3 {
    font-size: 23px;
  }
  .sv-news-featured__media::before { display: none; }
  .sv-news-card__body { padding: 20px; }
  .sv-news-private__points article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sv-news-private__points span { grid-row: auto; font-size: 34px; }
  .sv-masonry {
    column-count: 1;
  }
  .sv-gallery-filter-section .sv-container,
  .sv-gallery-grid-section .sv-container {
    width: 100%;
  }
  .sv-filter-row {
    padding: 0 14px 8px;
  }
  .sv-gallery-card__overlay {
    opacity: 1;
    transform: none;
  }
  .sv-masonry--preview {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .sv-masonry--preview .sv-gallery-card--1,
  .sv-masonry--preview .sv-gallery-card--6 { grid-column: span 1; grid-row: span 1; }
  .form-reservation-2 .row { grid-template-columns: 1fr; gap: 0; }
  .sv-tasting-card__header { grid-template-columns: 54px 1fr 24px; padding: 16px; }
  .sv-tasting-card__content p { padding: 0 16px 18px 70px; }
  .sv-mobile-booking { display: block; }
  .sv-lightbox {
    padding: 56px 14px 28px;
  }
  .sv-lightbox__dialog {
    width: 100%;
  }
  .sv-lightbox--course .sv-lightbox__dialog {
    width: auto;
    max-width: calc(100vw - 28px);
  }
  .sv-lightbox__image {
    max-height: calc(100vh - 210px);
  }
  .sv-lightbox--course .sv-lightbox__image {
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 188px);
  }
  .sv-lightbox--course.is-pdf .sv-lightbox__dialog {
    width: 100%;
    max-width: calc(100vw - 28px);
  }
  .sv-lightbox__pdf {
    height: calc(100vh - 180px);
  }
  .sv-lightbox__caption {
    padding: 16px 18px 20px;
  }
  .sv-lightbox__caption p {
    font-size: 18px;
  }
  .sv-lightbox__close {
    top: 14px;
    right: 16px;
  }
  .sv-lightbox__prev {
    left: 8px;
  }
  .sv-lightbox__next {
    right: 8px;
  }
  .sv-lightbox__prev,
  .sv-lightbox__next {
    font-size: 42px;
  }
}

@media (max-width: 782px) {
  .admin-bar .sv-header {
    top: 46px;
  }
  .admin-bar .sv-mobile-menu {
    top: 46px;
  }
}
.sv-chef-layout {
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
}
.sv-chef-mobile-heading {
  display: none;
}
.sv-chef-media {
  position: relative;
  padding-bottom: 24px;
}
.sv-chef-section .sv-gold-frame {
  border: 0;
  padding: 0;
  overflow: hidden;
}
.sv-chef-section .sv-gold-frame img {
  height: 540px;
  aspect-ratio: auto;
  object-fit: cover;
  border: 1px solid rgba(197, 164, 109, .5);
  transition: transform .7s ease, filter .7s ease;
}
.sv-chef-section .sv-gold-frame:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}
.sv-chef-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 48px);
  padding: 12px 28px;
  background: var(--soft-cream);
  border: 1px solid var(--antique-gold);
  color: var(--dark-ink-brown);
  font-size: 11px;
  letter-spacing: .24em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}
.sv-chef-copy { padding-left: 34px; }
.sv-chef-story {
  max-width: 720px;
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.75;
}
.sv-chef-story p { margin: 0 0 24px; }
.sv-chef-signature {
  margin: 42px 0 34px;
  padding-left: 24px;
  border-left: 2px solid var(--antique-gold);
}
.sv-chef-signature span {
  display: block;
  color: var(--antique-gold);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.sv-chef-signature strong {
  display: block;
  font-family: var(--font-script);
  color: var(--dark-ink-brown);
  font-size: 62px;
  font-weight: 400;
  line-height: 1;
}
.sv-link-arrow {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--antique-gold);
  border-bottom: 1px solid rgba(197, 164, 109, .5);
  padding-bottom: 6px;
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
}

body.page-template-page-people .sv-section--parchment {
  background-image: none;
}

@media (max-width: 980px) {
  .sv-page-hero--people .sv-hero-ornament {
    inset: 92px 28px 32px;
  }
  .sv-people-hospitality__copy h2 {
    white-space: normal;
  }
  .sv-people-chef .sv-gold-frame::before {
    display: none;
  }
  .sv-people-chef .sv-gold-frame img {
    height: 520px;
  }
  .sv-story-row img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .sv-page-hero--people {
    min-height: 66vh;
  }
  .sv-page-hero--people .sv-page-hero__content {
    padding-top: 64px;
  }
  .sv-page-hero--people h1 {
    font-size: clamp(40px, 12vw, 54px);
  }
  .sv-page-hero--people .sv-page-hero__content > p:not(.sv-label) {
    font-size: 16px;
  }
  .sv-people-quote {
    padding: 64px 20px;
  }
  .sv-people-quote p {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.65;
  }
  .sv-people-chef .sv-gold-frame img {
    height: 440px;
  }
  .sv-story-stack {
    gap: 64px;
  }
  .sv-story-row img,
  .sv-people-hospitality__images img {
    height: 300px;
  }
  .sv-people-hospitality__copy h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .sv-people-hospitality__copy > p {
    font-size: 16px;
    line-height: 1.8;
  }
  .sv-people-hospitality .sv-principle h3 {
    font-size: 20px;
  }
  .sv-cta-section--people {
    padding: 68px 20px;
  }
  .sv-cta-section--people::before {
    inset: 24px;
  }
}

@media (max-width: 980px) {
  .sv-page-hero--booking {
    height: 560px;
    margin-top: 80px;
  }
  .sv-page-hero--success {
    min-height: 560px;
    height: auto;
    padding: 120px 0 96px;
  }
  .sv-booking-hero-frame {
    inset: 48px 28px 68px;
  }
  .sv-booking-grid,
  .sv-booking-location-grid {
    grid-template-columns: 1fr;
  }
  .sv-booking-section {
    padding: 64px 0 36px;
  }
  .sv-booking-location-section {
    padding: 30px 0 64px;
  }
}

@media (max-width: 640px) {
  .sv-page-hero--booking {
    height: 560px;
    margin-top: 66px;
  }
  .sv-page-hero--success {
    min-height: 520px;
    margin-top: 66px;
    padding: 96px 0 82px;
  }
  .sv-success-hero__content {
    transform: translateY(-12px);
  }
  .sv-success-hero__content h1 {
    font-size: 42px;
    line-height: 1.02;
  }
  .sv-success-hero__content > p:not(.sv-label) {
    font-size: 16px;
  }
  .sv-success-hero__button {
    margin-top: 24px;
  }
  .sv-booking-hero-frame {
    inset: 28px 18px 30px;
  }
  .sv-booking-hero-card {
    width: min(calc(100% - 42px), 860px);
    padding: 34px 20px;
  }
  .sv-booking-hero-card h1 {
    font-size: 36px;
  }
  .sv-booking-hero-card > p:not(.sv-label) {
    font-size: 16px;
  }
  .sv-booking-section,
  .sv-booking-location-section {
    padding-left: 0;
    padding-right: 0;
  }
  .sv-booking-form-panel,
  .sv-booking-sidebar-card,
  .sv-booking-location-card {
    padding: 22px 18px;
  }
  .sv-booking-form-panel h2 {
    font-size: 28px;
    line-height: 1.15;
  }
  .sv-booking-contact-row,
  .sv-booking-location-row {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
  }
  .sv-booking-hours div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding-left: 0;
  }
  .sv-booking-hours div strong {
    text-align: left;
  }
  .form-reservation-2 .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-reservation-2 .mb-3 {
    margin-bottom: 18px;
  }
  .sv-booking-location-section .sv-section-heading h2 {
    font-size: 34px;
  }
  .sv-map-placeholder {
    min-height: 320px;
  }
  .sv-map-placeholder iframe {
    min-height: 320px;
  }
  .sv-cta-section--booking {
    padding: 72px 20px;
  }
  .sv-cta-section--booking::before {
    inset: 24px;
  }
}

@media (max-width: 640px) {
  .sv-page-hero__content,
  .sv-booking-hero-card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .sv-page-hero__content h1,
  .sv-booking-hero-card h1 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.1;
  }

  .sv-page-hero__content > p:not(.sv-label),
  .sv-booking-hero-card > p:not(.sv-label) {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 16px;
    line-height: 1.65;
  }

  .sv-page-hero--menu {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sv-page-hero--menu .sv-page-hero__content {
    width: min(342px, calc(100vw - 32px));
    max-width: min(342px, calc(100vw - 32px));
    padding: 32px 16px;
  }

  .sv-page-hero--menu .sv-page-hero__content h1 {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 7.8vw, 32px);
  }

  .sv-page-hero--menu .sv-page-hero__content > p:not(.sv-label) {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .sv-page-hero--people .sv-page-hero__content h1 {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(29px, 7.7vw, 34px);
  }

  .sv-booking-hero-card h1 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 7.4vw, 32px);
  }

  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu) .sv-page-hero__content h1 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .sv-menu-intro p,
  .sv-quote-section p,
  .sv-people-quote p {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    white-space: normal;
    overflow-wrap: break-word;
    font-size: clamp(22px, 6vw, 26px);
    line-height: 1.5;
  }

  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu) .sv-page-hero__content h1,
  .sv-booking-hero-card h1 {
    width: auto !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    font-size: 30px !important;
    line-height: 1.12 !important;
  }

  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu) .sv-page-hero__content > p:not(.sv-label),
  .sv-booking-hero-card > p:not(.sv-label) {
    width: auto !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .sv-menu-intro p,
  .sv-quote-section p,
  .sv-people-quote p {
    display: block !important;
    width: 300px !important;
    max-width: calc(100vw - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    font-size: 21px !important;
    line-height: 1.55 !important;
  }
}

/* Responsive QA hardening for public pages. Keep this block at the end so it
   wins over legacy page-specific overrides without changing desktop layouts. */
@media (max-width: 980px) {
  .sv-site-main,
  .sv-section,
  .sv-page-hero,
  .sv-footer {
    max-width: 100%;
    overflow-x: clip;
  }

  .sv-container,
  .sv-narrow,
  .sv-container--menu,
  .sv-container--gallery-preview,
  .sv-booking-section > .sv-container,
  .sv-booking-location-section > .sv-container {
    width: min(calc(100% - 32px), 1180px);
    max-width: calc(100vw - 32px);
  }

  .sv-section-heading,
  .sv-page-hero__content,
  .sv-booking-hero-card,
  .sv-cta-section__border,
  .sv-menu-experience-card,
  .sv-menu-timeline-item,
  .sv-menu-pairing-grid article,
  .sv-news-card,
  .sv-booking-card,
  .sv-booking-sidebar-card,
  .sv-booking-location-card {
    min-width: 0;
  }

  .sv-section-heading h2,
  .sv-section-heading p,
  .sv-page-hero__content h1,
  .sv-page-hero__content > p:not(.sv-label),
  .sv-booking-hero-card h1,
  .sv-booking-hero-card > p:not(.sv-label),
  .sv-cta-section h2,
  .sv-cta-section p:not(.sv-label),
  .sv-footer p,
  .sv-footer a,
  .sv-footer span,
  .sv-footer strong {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .sv-home-about__layout,
  .sv-two-col,
  .sv-location-grid,
  .sv-booking-grid,
  .sv-booking-location-grid,
  .sv-story-row,
  .sv-people-chef__layout,
  .sv-people-hospitality__layout,
  .sv-news-featured__grid,
  .sv-news-private {
    grid-template-columns: minmax(0, 1fr);
  }

  .sv-home-about__media img,
  .sv-gold-frame img,
  .sv-story-row img,
  .sv-news-featured__media img,
  .sv-location-map__image,
  .sv-map-placeholder {
    max-width: 100%;
  }

  .sv-chef-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .sv-chef-copy {
    padding-left: 0;
  }

  .sv-chef-story {
    max-width: 680px;
    font-size: clamp(19px, 2.5vw, 22px);
    line-height: 1.7;
  }

  .sv-chef-section .sv-gold-frame img {
    width: 100%;
    height: clamp(420px, 58vw, 540px);
  }

  .sv-chef-badge {
    max-width: calc(100% - 32px);
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .sv-site-main {
    padding-bottom: 0;
  }

  .sv-container,
  .sv-narrow,
  .sv-container--menu,
  .sv-container--gallery-preview,
  .sv-booking-section > .sv-container,
  .sv-booking-location-section > .sv-container {
    width: min(calc(100% - 28px), 1180px);
    max-width: calc(100vw - 28px);
  }

  .sv-section { padding: 50px 0; }

  .sv-section-heading {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .sv-section-heading h2,
  .sv-cta-section h2 {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.12;
  }

  .sv-section-heading p:not(.sv-label),
  .sv-cta-section p:not(.sv-label) {
    font-size: 16px;
    line-height: 1.65;
  }

  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu):not(.sv-page-hero--booking):not(.sv-page-hero--success) {
    min-height: 62vh;
    margin-top: 66px;
  }

  .sv-page-hero__content,
  .sv-booking-hero-card {
    width: min(328px, calc(100vw - 32px));
    max-width: min(328px, calc(100vw - 32px));
  }

  .sv-page-hero__content h1,
  .sv-booking-hero-card h1 {
    max-width: 300px !important;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(29px, 7.8vw, 34px) !important;
    line-height: 1.12 !important;
  }

  .sv-page-hero__content > p:not(.sv-label),
  .sv-booking-hero-card > p:not(.sv-label) {
    max-width: 300px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .sv-page-hero--home {
    min-height: 100vh;
  }

  .sv-page-hero--home .sv-page-hero__content h1 {
    font-size: clamp(30px, 8.4vw, 36px) !important;
  }

  .sv-home-about__layout,
  .sv-experience-grid,
  .sv-chef-layout,
  .sv-location-grid,
  .sv-menu-experience-grid,
  .sv-menu-pairing-grid,
  .sv-news-featured__grid,
  .sv-news-private,
  .sv-booking-grid,
  .sv-booking-location-grid,
  .sv-people-chef__layout,
  .sv-people-hospitality__layout {
    gap: 28px;
  }

  .sv-home-about__content h2,
  .sv-location-copy h2,
  .sv-menu-experience-section h2,
  .sv-menu-pairing-section h2,
  .sv-menu-list-section .sv-section-heading h2,
  .sv-menu-tasting-section h2,
  .sv-news-featured__content h2,
  .sv-news-private__intro h2,
  .sv-people-chef__copy h2,
  .sv-people-hospitality__copy h2,
  .sv-booking-form-panel h2,
  .sv-booking-location-section .sv-section-heading h2 {
    max-width: 310px;
    font-size: clamp(29px, 7.8vw, 35px);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .sv-home-about__copy,
  .sv-location-detail p,
  .sv-location-detail li,
  .sv-menu-intro p,
  .sv-menu-experience-card__body p,
  .sv-menu-tabs .sv-menu-item__desc,
  .sv-menu-tasting-section .sv-section-heading p,
  .sv-menu-timeline-item p,
  .sv-menu-pairing-grid p,
  .sv-news-featured__content > p:not(.sv-label),
  .sv-news-card p,
  .sv-news-private__intro > p:not(.sv-label),
  .sv-news-private__points p,
  .sv-people-chef__copy > p:not(.sv-label):not(.sv-people-role),
  .sv-people-hospitality__copy > p,
  .sv-principle p,
  .sv-booking-form-note,
  .sv-booking-location-note,
  .sv-booking-contact-row p,
  .sv-booking-location-row p,
  .sv-booking-location-row span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .sv-chef-section {
    padding-top: 58px;
  }

  .sv-chef-section .sv-container {
    align-items: start;
  }

  .sv-chef-mobile-heading {
    display: block;
    order: 1;
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }

  .sv-chef-mobile-heading .sv-label {
    margin-bottom: 16px;
    letter-spacing: .3em;
  }

  .sv-chef-mobile-heading .sv-section-divider {
    margin: 0 auto 4px;
  }

  .sv-chef-media {
    order: 2;
    width: 100%;
    padding-bottom: 0;
  }

  .sv-chef-copy {
    order: 3;
  }

  .sv-chef-copy > .sv-label,
  .sv-chef-copy > .sv-section-divider {
    display: none;
  }

  .sv-chef-section .sv-gold-frame {
    width: 100%;
  }

  .sv-chef-section .sv-gold-frame img {
    height: auto;
    aspect-ratio: 3 / 4;
    object-position: center top;
  }

  .sv-chef-badge {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    padding: 10px 14px;
    letter-spacing: .16em;
  }

  .sv-chef-story {
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(20px, 5.5vw, 22px);
    line-height: 1.68;
  }

  .sv-chef-story p {
    margin-bottom: 20px;
  }

  .sv-chef-signature {
    max-width: 318px;
    margin: 28px auto 24px;
  }

  .sv-chef-signature strong {
    font-size: 46px;
  }

  .sv-link-arrow {
    display: inline-flex;
    max-width: 100%;
    white-space: normal;
  }

  .sv-experience-card {
    min-height: auto;
  }

  .sv-experience-carousel,
  .sv-experience-carousel__track {
    height: 280px;
  }

  .sv-gallery-filter-section {
    overflow: hidden;
  }

  .sv-filter-row,
  .sv-menu-tabs .sv-tabs__nav {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .sv-filter-button,
  .sv-menu-tabs .sv-tab-button {
    min-width: 112px;
  }

  .sv-masonry {
    width: 100%;
  }

  .sv-gallery-preview-section .sv-container--gallery-preview,
  .sv-gallery-grid-section .sv-container {
    width: min(calc(100% - 32px), 448px);
    max-width: calc(100vw - 32px);
  }

  .sv-gallery-preview-section .sv-section-heading {
    max-width: 340px;
    margin-bottom: 34px;
  }

  .sv-masonry--preview {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 24px;
    max-width: 448px;
    margin-left: auto;
    margin-right: auto;
  }

  .sv-masonry--preview .sv-gallery-card {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 280px;
  }

  .sv-masonry--preview .sv-gallery-card,
  .sv-masonry:not(.sv-masonry--preview) .sv-gallery-card {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .26);
  }

  .sv-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .sv-masonry:not(.sv-masonry--preview) .sv-gallery-card img {
    aspect-ratio: 1.16 / 1;
  }

  .sv-masonry--preview .sv-gallery-card img {
    aspect-ratio: auto;
  }

  .sv-gallery-card__overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 18px;
  }

  .sv-gallery-card__overlay small {
    font-size: 8px;
    letter-spacing: .25em;
    margin-bottom: 4px;
  }

  .sv-gallery-card__overlay strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .sv-story-row,
  .sv-news-private__points article,
  .sv-menu-timeline-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .sv-story-row img,
  .sv-people-chef .sv-gold-frame img,
  .sv-news-featured__media img {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .sv-people-hospitality__images {
    grid-template-columns: minmax(0, 1fr);
  }

  .sv-people-hospitality__images img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .sv-booking-hero-card {
    padding: 30px 18px;
  }

  .sv-booking-form-panel,
  .sv-booking-sidebar-card,
  .sv-booking-location-card {
    padding: 22px 16px;
  }

  .sv-booking-location-card .sv-btn-secondary,
  .sv-form-submit,
  .sv-btn-primary,
  .sv-btn-secondary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
    justify-content: center;
    white-space: normal;
  }

  .sv-map-placeholder,
  .sv-map-placeholder iframe {
    min-height: 300px;
  }

  .sv-mobile-booking {
    position: static;
    display: block;
    width: auto;
    margin: 0 18px 28px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .sv-mobile-booking:not(.is-visible) {
    opacity: 1;
    pointer-events: auto;
  }

  .sv-back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .sv-menu-intro .sv-container,
  .sv-menu-intro .sv-narrow {
    width: 100%;
    max-width: 100%;
  }

  .sv-menu-intro p {
    width: min(276px, calc(100vw - 56px)) !important;
    max-width: min(276px, calc(100vw - 56px)) !important;
    font-size: 20px !important;
    line-height: 1.58 !important;
  }

  .sv-page-hero--booking {
    display: block;
  }

  .sv-booking-hero-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(320px, calc(100vw - 36px)) !important;
    max-width: min(320px, calc(100vw - 36px)) !important;
    transform: translate(-50%, -50%);
  }

  .sv-booking-hero-card h1,
  .sv-booking-hero-card > p:not(.sv-label) {
    max-width: 274px !important;
  }

  .sv-section--parchment > .sv-section-heading,
  .sv-news-private__intro,
  .sv-news-featured__content {
    width: min(308px, calc(100vw - 48px));
    max-width: min(308px, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
  }

  .sv-section--parchment > .sv-section-heading h2,
  .sv-news-private__intro h2,
  .sv-news-featured__content h2 {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 7.4vw, 33px);
    line-height: 1.15;
  }

  .sv-section--parchment > .sv-section-heading p:not(.sv-label),
  .sv-news-private__intro > p:not(.sv-label),
  .sv-news-featured__content > p:not(.sv-label) {
    width: 100%;
    max-width: 100%;
  }

  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu):not(.sv-page-hero--people):not(.sv-page-hero--booking):not(.sv-page-hero--success) .sv-page-hero__content,
  .sv-section--parchment > .sv-section-heading {
    width: min(284px, calc(100vw - 64px));
    max-width: min(284px, calc(100vw - 64px));
  }

  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu):not(.sv-page-hero--people):not(.sv-page-hero--booking):not(.sv-page-hero--success) .sv-page-hero__content h1,
  .sv-section--parchment > .sv-section-heading h2 {
    max-width: 100% !important;
    font-size: clamp(27px, 7.1vw, 31px) !important;
  }

  .sv-page-hero:not(.sv-page-hero--home):not(.sv-page-hero--menu):not(.sv-page-hero--people):not(.sv-page-hero--booking):not(.sv-page-hero--success) .sv-page-hero__content > p:not(.sv-label) {
    max-width: 260px !important;
    font-size: 15px;
    line-height: 1.6;
  }

  .sv-section--parchment > .sv-section-heading h2 {
    max-width: 252px !important;
    font-size: 27px !important;
  }

  .sv-chef-copy > .sv-label {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .sv-chef-copy > .sv-section-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .sv-mobile-booking {
    background: var(--soft-cream);
    border: 1px solid var(--antique-gold);
    color: var(--dark-ink-brown);
    font-weight: 700;
    letter-spacing: .02em;
  }

  .sv-location-section {
    padding: 64px 0 56px;
    text-align: center;
  }

  .sv-location-section .sv-container,
  .sv-location-section .sv-location-grid {
    width: 100%;
    max-width: 100%;
  }

  .sv-location-section .sv-location-grid {
    grid-template-columns: 1fr;
  }

  .sv-location-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sv-location-copy {
    order: 1;
    width: min(328px, calc(100vw - 48px));
    max-width: min(328px, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .sv-location-copy > .sv-label {
    margin-bottom: 18px;
    text-align: center;
  }

  .sv-location-copy h2 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(33px, 8.8vw, 40px);
    line-height: 1.12;
    text-align: center;
  }

  .sv-location-copy .sv-section-divider {
    margin: 28px auto 30px;
  }

  .sv-location-details {
    max-width: 318px;
    margin: 0 auto 38px;
    padding-left: 24px;
    border-left: 2px solid rgba(197, 164, 109, .42);
    text-align: left;
  }

  .sv-location-detail + .sv-location-detail {
    margin-top: 26px;
  }

  .sv-location-detail h3 {
    margin-bottom: 8px;
    color: var(--antique-gold);
    font-size: 12px;
    letter-spacing: .08em;
  }

  .sv-location-detail p {
    color: var(--dark-ink-brown);
    font-size: 18px;
    line-height: 1.45;
  }

  .sv-location-detail ul {
    gap: 8px;
    color: rgba(46, 36, 28, .72);
    font-size: 14px;
    line-height: 1.35;
  }

  .sv-location-detail li {
    padding-left: 16px;
  }

  .sv-location-detail li::before {
    top: .52em;
    width: 7px;
    height: 7px;
  }

  .sv-location-button {
    display: inline-flex;
    order: 3;
    width: min(342px, calc(100vw - 48px)) !important;
    min-width: 0;
    justify-self: center;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 10px;
    letter-spacing: .15em;
    white-space: nowrap;
  }

  .sv-location-map {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border: 0;
    box-shadow: none;
  }

  .sv-location-map__image {
    height: 260px;
    border: 0;
  }

  .sv-location-map__image img {
    object-position: center;
  }

  .sv-mobile-booking {
    position: fixed;
    left: 34px;
    right: 34px;
    bottom: 12px;
    z-index: 95;
    display: block;
    width: auto;
    margin: 0;
    padding: 17px 18px;
    background: rgba(57, 68, 56, .92);
    border: 1px solid var(--antique-gold);
    color: var(--parchment-ivory);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3em;
    line-height: 1.2;
    text-transform: uppercase;
    transform: none;
    backdrop-filter: blur(4px);
  }

  .sv-mobile-booking:not(.is-visible) {
    opacity: 0;
    pointer-events: none;
  }

  .sv-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    gap: 0;
    height: 100dvh;
    padding: 40px 24px 32px;
    background-color: var(--deep-moss);
    background-image:
      linear-gradient(45deg, rgba(197, 164, 109, .045) 25%, transparent 25%, transparent 75%, rgba(197, 164, 109, .045) 75%),
      linear-gradient(45deg, rgba(197, 164, 109, .045) 25%, transparent 25%, transparent 75%, rgba(197, 164, 109, .045) 75%);
    background-position: 0 0, 30px 30px;
    background-size: 60px 60px;
    color: var(--parchment-ivory);
  }

  .sv-mobile-menu__close {
    top: 22px;
    right: 26px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--parchment-ivory);
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
  }

  .sv-mobile-menu__logo {
    display: block;
    flex: 0 0 auto;
    padding-top: 2px;
    text-align: center;
  }

  .sv-mobile-menu__logo img {
    width: 154px;
    margin: 0 auto;
  }

  .sv-mobile-menu__logo::after {
    content: "";
    display: block;
    width: 96px;
    height: 1px;
    margin: 12px auto 0;
    background: linear-gradient(to right, transparent, rgba(197, 164, 109, .36), transparent);
  }

  .sv-mobile-menu nav {
    flex: 1 1 auto;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 19px;
    padding: 12px 0 16px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: .28em;
    text-transform: uppercase;
  }

  .sv-mobile-menu nav a {
    display: block;
    padding: 0;
    color: var(--parchment-ivory);
    white-space: normal;
  }

  .sv-mobile-menu nav a.is-active {
    color: var(--antique-gold);
  }

  .sv-mobile-menu nav a::after {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    margin: 12px auto 0;
    background: linear-gradient(to right, transparent, rgba(197, 164, 109, .22), transparent);
  }

  .sv-mobile-menu nav a:last-child::after {
    display: none;
  }

  .sv-mobile-language {
    flex: 0 0 auto;
    justify-content: center;
    gap: 14px;
    color: rgba(244, 235, 221, .62);
    font-size: 16px;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .sv-mobile-language a {
    color: rgba(244, 235, 221, .62);
  }

  .sv-mobile-language a.is-active {
    color: var(--antique-gold);
  }

  .sv-mobile-language span {
    color: rgba(197, 164, 109, .32);
  }

  .sv-mobile-language::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 128px;
    height: 8px;
    margin-top: 58px;
    transform: translateX(-50%);
    background:
      radial-gradient(circle at center, rgba(197, 164, 109, .7) 0 3px, transparent 3px),
      linear-gradient(to right, transparent, rgba(197, 164, 109, .35), transparent);
    background-repeat: no-repeat;
    background-position: center, center;
    background-size: 8px 8px, 128px 1px;
  }

  .sv-mobile-menu p {
    flex: 0 0 auto;
    max-width: 280px;
    margin: 34px auto 0;
    color: var(--warm-beige);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    line-height: 1.7;
    text-align: center;
    text-transform: uppercase;
  }
}

@media (max-width: 900px) {
  .sv-people-teams {
    padding-top: 48px;
  }

  .sv-people-teams .sv-section-heading {
    margin-bottom: 36px;
  }

  .sv-people-team-carousel .sv-experience-carousel__track {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .sv-people-teams {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 70px;
  }

  .sv-people-teams .sv-section-heading h2 {
    font-size: 40px;
  }

  .sv-people-teams .sv-section-heading p:not(.sv-label) {
    font-size: 16px;
  }

  .sv-people-team-carousel .sv-experience-carousel__track {
    height: 280px;
  }

  .sv-people-team-carousel {
    height: auto;
  }

  .sv-people-team-carousel .sv-experience-carousel__nav {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .sv-people-team-captions {
    min-height: 0;
  }

  .sv-people-team-caption {
    display: none;
    position: static;
    max-width: none;
    transform: none;
    transition: opacity .2s ease;
  }

  .sv-people-team-caption.is-active {
    display: block;
    transform: none;
  }

  .sv-people-team-caption h3 {
    font-size: 26px;
  }

  .sv-people-team-caption p {
    font-size: 15px;
  }

  .sv-people-team-action {
    margin-top: 22px;
  }
}

/* ==========================================================================
   Reservation Policies & Regulations Section
   ========================================================================== */
.sv-booking-policies-section {
  position: relative;
  padding: 96px 32px;
  background: var(--parchment-ivory);
  overflow: hidden;
}
.sv-booking-policies-section .sv-texture-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
}
.sv-booking-policies-section .sv-corner-border {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(197, 164, 109, 0.4);
  border-style: solid;
  border-width: 0;
}
.sv-booking-policies-section .sv-corner-border--top-left {
  top: 48px;
  left: 48px;
  border-left-width: 1px;
  border-top-width: 1px;
}
.sv-booking-policies-section .sv-corner-border--top-right {
  top: 48px;
  right: 48px;
  border-right-width: 1px;
  border-top-width: 1px;
}
.sv-booking-policies-section .sv-corner-border--bottom-left {
  bottom: 48px;
  left: 48px;
  border-left-width: 1px;
  border-bottom-width: 1px;
}
.sv-booking-policies-section .sv-corner-border--bottom-right {
  bottom: 48px;
  right: 48px;
  border-right-width: 1px;
  border-bottom-width: 1px;
}
.sv-booking-policies-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.sv-booking-policies-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px auto;
}
.sv-booking-policies-header .sv-label {
  color: var(--antique-gold);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sv-booking-policies-header h2 {
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .sv-booking-policies-header h2 {
    font-size: 48px;
  }
}
.sv-booking-policies-header p {
  color: var(--moss-green);
  font-size: 16px;
  line-height: 1.6;
}
.sv-booking-policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .sv-booking-policies-grid {
    grid-template-columns: repeat(10, 1fr);
  }
  .sv-booking-policy-card--rules {
    grid-column: span 7;
  }
  .sv-booking-policy-card--corkage_decor {
    grid-column: span 3;
  }
  .sv-booking-policy-card--cancellation {
    grid-column: span 10;
  }
}
.sv-booking-policy-card {
  background: rgba(255, 248, 236, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(197, 164, 109, 0.3);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sv-booking-policy-card:hover {
  border-color: var(--antique-gold);
  background: var(--soft-cream);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}
.sv-booking-policy-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197, 164, 109, 0.2);
}
.sv-booking-policy-card-icon {
  padding: 12px;
  background: var(--parchment-ivory);
  border: 1px solid rgba(197, 164, 109, 0.35);
  border-radius: 50%;
  color: var(--antique-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.sv-booking-policy-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sv-booking-policy-card:hover .sv-booking-policy-card-icon {
  background: var(--moss-green);
  color: var(--parchment-ivory);
  border-color: var(--moss-green);
}
.sv-booking-policy-card-header h3 {
  color: var(--dark-ink-brown);
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.sv-booking-policy-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sv-booking-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--moss-green);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sv-booking-policy-item:last-child {
  margin-bottom: 0;
}
.sv-booking-policy-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--antique-gold);
  margin-top: 8px;
  flex-shrink: 0;
}
