:root {
  --bg: #f7f8f4;
  --ink: #111311;
  --muted: #62685f;
  --line: rgba(17, 19, 17, 0.16);
  --paper: #ffffff;
  --green: #1f3429;
  --green-strong: #13241c;
  --wine: #7a1f34;
  --clay: #c86f3e;
  --gold: #b88a3b;
  --shadow: 0 22px 70px rgba(17, 19, 17, 0.16);
  --radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
}

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

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 15ch;
  font-size: 5.35rem;
}

h2 {
  max-width: 16ch;
  font-size: 3.65rem;
}

h3 {
  font-size: 2.15rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.container {
  width: calc(100vw - 2rem);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(17, 19, 17, 0.12);
  background: #fff;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 4.25rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark,
.brand-logo {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(17, 19, 17, 0.16);
  background: #fff;
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-logo {
  width: 5.2rem;
  height: 3.1rem;
  border: 0;
  background: #fff;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: grid;
  grid-auto-flow: column;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

.site-nav a,
.mobile-menu a {
  color: #252925;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--wine);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
}

.language-switcher span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.language-switcher select {
  min-height: 2.55rem;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.nav-booking-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-booking-link,
.button-primary {
  background: var(--ink);
  color: #fff;
}

.site-nav .nav-booking-link,
.site-nav .nav-booking-link:visited,
.site-nav .nav-booking-link:hover,
.site-nav .nav-booking-link:focus,
.site-nav .nav-booking-link:focus-visible,
.site-nav .nav-booking-link:active {
  color: #fff;
}

.nav-booking-link:hover,
.button-primary:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.button-ghost {
  background: transparent;
  color: inherit;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-block {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.18rem auto;
  background: var(--ink);
}

.mobile-menu {
  width: calc(100vw - 2rem);
  margin: 0 auto 0.75rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
}

.hero-section {
  min-height: 72svh;
  display: grid;
  align-items: start;
  padding: 6.5rem 0 3.25rem;
  background:
    linear-gradient(90deg, rgba(11, 14, 12, 0.82), rgba(11, 14, 12, 0.54) 48%, rgba(11, 14, 12, 0.12)),
    url("https://static.wixstatic.com/media/8fb061_432b7dbb8f914b1daf22326fdf493166~mv2.webp/v1/fill/w_1960,h_1482,q_90,enc_avif,quality_auto/8fb061_432b7dbb8f914b1daf22326fdf493166~mv2.webp") center / cover;
  color: #fff;
}

.hero-inner {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  width: min(34rem, 100%);
  max-width: 34rem;
  justify-self: start;
  margin-left: 0;
  padding-left: 0.85rem;
  justify-items: start;
  text-align: left;
}

.hero-text {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.65rem;
}

.hero-actions .button-ghost {
  display: none;
}

.hero-section .button {
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-section .button-primary {
  background: #fff;
  color: var(--ink);
}

.home-flash-shell {
  padding: 0 0 1.5rem;
}

.home-flash {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(160, 122, 65, 0.24);
  background: linear-gradient(135deg, rgba(227, 197, 144, 0.14), rgba(255, 248, 236, 0.88));
  box-shadow: var(--shadow);
}

.home-flash strong {
  color: var(--green-strong);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-flash p {
  max-width: 56rem;
  color: rgba(31, 36, 32, 0.82);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  width: fit-content;
  padding: 0;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #fff;
}

.intro-section,
.experience-section,
.gallery-section,
.contact-section {
  padding: 5rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 2.6rem;
  align-items: center;
  justify-items: center;
}

.intro-media {
  position: relative;
  min-height: 26rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
}

.intro-media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-copy {
  display: grid;
  gap: 1rem;
  width: min(58rem, 100%);
  justify-items: center;
  text-align: center;
}

.hero-section h1 {
  max-width: 9ch;
}

.intro-section .section-copy h2 {
  max-width: 26ch;
  font-size: clamp(3.2rem, 4.8vw, 4.4rem);
}

.split-copy h2,
.gallery-section .section-head h2 {
  max-width: 20ch;
}

.section-copy p {
  max-width: 72ch;
  color: #545b53;
  font-size: 1.02rem;
  line-height: 1.78;
}

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

.experience-panel {
  min-height: 34rem;
  display: grid;
  grid-template-rows: 14rem 1fr;
  padding: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.experience-panel img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.experience-copy {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.15rem 1.25rem 1.35rem;
}

.experience-copy h3 {
  color: var(--ink);
}

.panel-kicker {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-lead {
  color: #2c312c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
}

.panel-detail {
  color: #2c312c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
  margin-top: auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  min-height: 78svh;
  background: var(--green);
  color: #fff;
}

.split-image {
  min-height: 32rem;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.1rem;
  padding: 4rem 3rem;
}

.split-copy p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.split-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  font-weight: 500;
}

.split-detail {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
}

.split-points {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  max-width: 34rem;
}

.split-points p {
  max-width: none;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.split-copy .eyebrow {
  color: #fff;
}

.split-copy h2 {
  max-width: 17ch;
  font-size: 2.85rem;
  line-height: 1.02;
}

.split-copy .button-primary {
  border-color: #fff;
  background: #fff;
  color: var(--green-strong);
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(720px, 78vw);
  grid-template-columns: none;
  gap: 1rem;
  width: calc(100vw - 2rem);
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.6rem;
}

.gallery-item {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  scroll-snap-align: start;
}

.gallery-item-wide {
  min-height: 42rem;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 8, 0.04), rgba(8, 10, 8, 0.68));
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img,
.gallery-item:hover video,
.gallery-item:focus-visible video {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 4px;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding: 1.2rem;
  color: #fff;
  text-align: left;
}

.gallery-overlay strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.gallery-overlay span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 8, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--green-strong);
}

.gallery-lightbox-dialog img,
.gallery-lightbox-dialog video {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.gallery-lightbox-dialog video[hidden] {
  display: none;
}

.gallery-lightbox-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem;
  color: #fff;
}

.gallery-lightbox-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
}

.gallery-lightbox-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.contact-grid,
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.contact-grid h2 {
  max-width: 24ch;
  margin-top: 0.65rem;
  font-size: 2.25rem;
  line-height: 1.05;
}

.contact-section {
  padding: 2rem 0;
  background: var(--paper);
}

.contact-grid {
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
}

.contact-list a {
  font-weight: 800;
}

.site-footer {
  padding: 0 0 1.25rem;
  background: #fff;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.footer-inner strong {
  font-weight: 800;
}

.footer-inner p {
  text-align: right;
}

.booking-page {
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.97), rgba(247, 248, 244, 0.88)),
    url("https://static.wixstatic.com/media/8fb061_45aa9b105c8048bc969077b206f82abf~mv2.webp/v1/fill/w_1960,h_1482,q_90,enc_avif,quality_auto/8fb061_45aa9b105c8048bc969077b206f82abf~mv2.webp") center / cover fixed;
}

.booking-section {
  min-height: calc(100svh - 4.6rem);
  display: grid;
  align-items: center;
  padding: 3rem 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(320px, 680px);
  justify-content: center;
  gap: 0;
  align-items: start;
}

.booking-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  background: var(--green-strong);
  box-shadow: var(--shadow);
  color: #fff;
}

.booking-card .eyebrow {
  color: #fff;
}

.booking-card-head {
  display: grid;
  gap: 0.75rem;
}

.booking-card-head h2 {
  font-size: 3rem;
}

.booking-card p,
.booking-card-head p {
  color: rgba(255, 255, 255, 0.74);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.field select option {
  color: var(--ink);
}

.field textarea {
  min-height: 6.75rem;
  resize: vertical;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-notice {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.booking-notice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.booking-feedback {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: #ffd28b;
  font-size: 0.92rem;
  font-weight: 800;
}

.helper-shell .site-header {
  position: relative;
}

.helper-main,
.helper-section {
  padding: 2.2rem 0;
}

.helper-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.helper-copy {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.helper-last-request {
  margin-top: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #f0f3ec;
}

.helper-last-request strong {
  color: var(--green);
}

.helper-last-request p,
.helper-last-request ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.helper-last-request ul {
  padding-left: 1.1rem;
}

.helper-notify-status {
  margin-top: 0;
}

.helper-admin-box {
  display: grid;
  gap: 0.75rem;
}

.helper-admin-note {
  font-size: 0.88rem;
}

.helper-checkbox span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 700;
}

.helper-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3rem;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .intro-grid,
  .split-section,
  .booking-layout,
  .helper-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .split-section {
    min-height: auto;
  }

  .split-copy {
    padding: 3rem 1rem;
  }

  .gallery-grid {
    grid-auto-columns: minmax(72vw, 1fr);
  }

  .gallery-item,
  .gallery-item-wide {
    min-height: 34rem;
  }

  .contact-list {
    justify-items: start;
  }

  .footer-inner p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container,
  .mobile-menu,
  .gallery-grid {
    width: calc(100vw - 0.75rem);
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy span {
    font-size: 0.72rem;
  }

  .hero-section {
    min-height: 64svh;
    padding: 4.5rem 0 2.5rem;
  }

  .intro-section,
  .experience-section,
  .gallery-section,
  .contact-section {
    padding: 3rem 0;
  }

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

  .experience-panel {
    min-height: 0;
  }

  .split-image {
    min-height: 24rem;
  }

  .gallery-item,
  .gallery-item-wide {
    min-height: 28rem;
  }

  .booking-section {
    padding: 1.5rem 0;
  }

  .booking-layout {
    gap: 1rem;
  }

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

  .booking-card,
  .helper-copy {
    padding: 1rem;
  }

  .helper-actions {
    grid-template-columns: 1fr;
  }
}
