@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --cream: #eee6db;
  --sage: #666b50;
  --peach: #d7bba3;
  --cacao: #482f1d;
  --leaf: #4f5b37;
  --moss: #5d6248;
  --clay: #a5795f;
  --ink: #211811;
  --paper: #f7f1e8;
  --white: #fffaf3;
  --line: rgba(72, 47, 29, 0.17);
  --shadow: 0 24px 80px rgba(33, 24, 17, 0.18);
  --serif: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Manrope", "DM Sans", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  align-items: center;
  background: rgba(238, 230, 219, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(72, 47, 29, 0.1);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto auto auto;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.language-switch {
  align-items: center;
  background: rgba(255, 250, 243, 0.62);
  border: 1px solid var(--line);
  display: inline-flex;
  padding: 4px;
}

.language-switch button {
  background: transparent;
  border: 0;
  color: rgba(33, 24, 17, 0.66);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 12px;
}

.language-switch button[aria-pressed="true"] {
  background: var(--cacao);
  color: var(--cream);
}

.language-switch button:focus-visible {
  outline: 2px solid var(--cacao);
  outline-offset: 2px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: var(--cacao);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.02rem;
  height: 38px;
  justify-content: center;
  letter-spacing: 0;
  width: 38px;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a,
.nav-cta,
.button,
.section-label,
.eyebrow,
.ticket-label,
.host-role {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-cta {
  background: var(--sage);
  color: var(--white);
  padding: 10px 16px;
}

.hero {
  min-height: 96vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-image {
  background-image: url("assets/photos/hero-teapot-ritual.webp");
  background-position: center 48%;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(238, 230, 219, 0.94) 0%, rgba(238, 230, 219, 0.74) 42%, rgba(72, 47, 29, 0.2) 100%),
    linear-gradient(180deg, rgba(33, 24, 17, 0.12) 0%, rgba(33, 24, 17, 0) 40%, rgba(33, 24, 17, 0.36) 100%);
}

.hero-content {
  min-height: 96vh;
  padding: 148px clamp(20px, 7vw, 96px) 54px;
  position: relative;
  width: min(1040px, 100%);
  z-index: 2;
}

.eyebrow,
.section-label,
.ticket-label,
.host-role {
  color: var(--sage);
  line-height: 1.3;
  margin: 0 0 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
blockquote,
.price {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  color: var(--cacao);
  font-size: clamp(5.2rem, 13vw, 12rem);
  line-height: 0.78;
  margin-bottom: 28px;
  max-width: 920px;
}

h2 {
  color: var(--cacao);
  font-size: clamp(3.1rem, 7.2vw, 7.4rem);
  line-height: 0.88;
  margin-bottom: 24px;
}

h3 {
  color: var(--cacao);
  font-size: clamp(1.9rem, 3.1vw, 3.1rem);
  line-height: 0.96;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(33, 24, 17, 0.87);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.58;
  max-width: 670px;
}

.hero-actions,
.ticket-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

.button-dark {
  background: var(--cacao);
  color: var(--cream);
}

.button-light {
  background: var(--cream);
  color: var(--cacao);
}

.hero-facts {
  background: rgba(238, 230, 219, 0.72);
  border: 1px solid rgba(72, 47, 29, 0.13);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 54px 0 0;
  max-width: 840px;
  padding: 20px;
}

.hero-facts dt {
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-facts dd {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
  margin: 6px 0 0;
}

.band {
  background: var(--cream);
}

section:not(.hero) {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.intro-grid,
.location,
.safety-section {
  display: grid;
  gap: clamp(30px, 6vw, 92px);
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.intro-copy,
.location-copy,
.safety-copy {
  border-left: 1px solid var(--line);
  color: rgba(33, 24, 17, 0.78);
  font-size: 1.08rem;
  padding-left: clamp(22px, 4vw, 48px);
}

.mosaic {
  background: var(--leaf);
  display: grid;
  gap: 1px;
  grid-template-columns: 1.12fr 0.72fr 0.72fr;
  padding: 0;
}

.mosaic figure {
  background: var(--cacao);
  margin: 0;
  min-height: 410px;
  overflow: hidden;
}

.mosaic-large {
  grid-row: span 2;
}

.mosaic img,
.gallery img,
.photo-break img,
.host-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mosaic-text {
  align-items: center;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 410px;
  padding: clamp(34px, 4vw, 56px);
  text-align: center;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 0.55;
  margin-bottom: 20px;
}

blockquote {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 0.92;
  margin: 0 0 22px;
}

.mosaic-text p:last-child {
  color: rgba(238, 230, 219, 0.78);
  margin-bottom: 0;
  max-width: 320px;
}

@media (min-width: 1081px) {
  /* Owner-approved follow-up: use the full right side of the desktop mosaic. */
  .mosaic-text {
    grid-column: 2 / -1;
  }

  .mosaic-text blockquote {
    max-width: 16ch;
  }

  .mosaic-text p:last-child {
    max-width: 460px;
  }
}

.pillars {
  background: var(--cacao);
  color: var(--cream);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
}

.pillars article {
  background: rgba(238, 230, 219, 0.04);
  min-height: 280px;
  padding: clamp(28px, 4vw, 54px);
}

.pillars span {
  color: var(--peach);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 48px;
}

.pillars h3 {
  color: var(--cream);
}

.pillars p {
  color: rgba(238, 230, 219, 0.78);
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 980px;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(18px, 5vw, 72px);
  grid-template-columns: 130px minmax(0, 1fr);
  padding: 28px 0;
}

.timeline time {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding-top: 11px;
}

.timeline h3 {
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
  margin-bottom: 10px;
}

.timeline p {
  color: rgba(33, 24, 17, 0.74);
  margin-bottom: 0;
  max-width: 820px;
}

.overnight-item {
  background: rgba(133, 127, 102, 0.12);
  padding-left: 18px;
  padding-right: 18px;
}

.photo-break {
  align-items: stretch;
  background: var(--leaf);
  color: var(--cream);
  display: grid;
  gap: 0;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 0;
}

.photo-break img {
  min-height: 620px;
}

.photo-break div {
  align-self: center;
  padding: clamp(46px, 6vw, 88px);
}

.photo-break h2,
.photo-break .section-label {
  color: var(--cream);
}

.photo-break p:last-child {
  color: rgba(238, 230, 219, 0.8);
  font-size: 1.1rem;
  max-width: 520px;
}

.safety-section {
  background: var(--moss);
  color: var(--cream);
}

.safety-section h2,
.safety-section .section-label {
  color: var(--cream);
}

.safety-copy {
  border-left-color: rgba(238, 230, 219, 0.28);
  color: rgba(238, 230, 219, 0.84);
}

.host-grid {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.host-card {
  background: var(--paper);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: minmax(430px, 58vh) auto;
}

.host-card > div {
  padding: clamp(28px, 4vw, 44px);
}

.host-role {
  color: var(--clay);
}

.host-card p {
  color: rgba(33, 24, 17, 0.76);
}

.tickets {
  background:
    linear-gradient(rgba(72, 47, 29, 0.84), rgba(72, 47, 29, 0.88)),
    url("assets/photos/ritual-cards-flowers.webp");
  background-position: center;
  background-size: cover;
  color: var(--cream);
}

.tickets h2,
.tickets h3,
.tickets .section-label,
.tickets .ticket-label {
  color: var(--cream);
}

.ticket-grid {
  align-items: stretch;
}

.ticket {
  background: rgba(238, 230, 219, 0.94);
  color: var(--ink);
  display: flex;
  flex: 1 1 260px;
  flex-direction: column;
  min-height: 410px;
  padding: clamp(28px, 4vw, 42px);
}

.ticket h3,
.ticket .ticket-label {
  color: var(--cacao);
}

.ticket.featured {
  background: var(--sage);
  color: var(--cream);
}

.ticket.featured h3,
.ticket.featured .ticket-label,
.ticket.featured .price,
.ticket.featured p {
  color: var(--cream);
}

.ticket p {
  color: rgba(33, 24, 17, 0.76);
}

.ticket .early-note {
  color: var(--cacao);
  font-weight: 700;
  margin-bottom: 18px;
}

.price {
  color: var(--cacao);
  font-size: clamp(3.3rem, 6vw, 5.9rem);
  line-height: 0.85;
  margin-bottom: 24px;
}

.ticket .button {
  margin-top: auto;
}

.deposit-note {
  color: rgba(238, 230, 219, 0.82);
  margin: 26px 0 0;
}

.booking-grid {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.booking-copy,
.booking-note {
  color: rgba(36, 26, 19, 0.76);
  font-size: 1.08rem;
  max-width: 620px;
}

.booking-note {
  border-left: 1px solid var(--line);
  margin-top: 34px;
  padding-left: 22px;
}

.booking-form {
  background: var(--paper);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
}

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

.booking-form label {
  color: rgba(36, 26, 19, 0.84);
  display: grid;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: 400 1rem/1.45 var(--sans);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.booking-form textarea {
  min-height: 128px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--cacao);
  outline: 2px solid rgba(133, 127, 102, 0.28);
  outline-offset: 2px;
}

.booking-form .checkbox {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 18px minmax(0, 1fr);
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.booking-form .checkbox input {
  height: 18px;
  margin: 3px 0 0;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.booking-form button {
  border: 0;
  cursor: pointer;
  margin-top: 8px;
}

.booking-form button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  color: rgba(36, 26, 19, 0.78);
  font-size: 0.95rem;
  margin: 0;
}

.text-link {
  border-bottom: 1px solid var(--cacao);
  color: var(--cacao);
  display: inline-block;
  font-weight: 700;
  margin-top: 8px;
}

.location-gallery {
  display: grid;
  gap: 1px;
  grid-template-columns: 0.72fr 1fr 0.72fr;
  min-height: min(58vw, 560px);
}

.location-gallery img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery {
  background: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.gallery img {
  min-height: 520px;
}

.final-cta {
  background: var(--cacao);
  color: var(--cream);
  text-align: center;
}

.final-cta h2 {
  color: var(--cream);
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.site-footer {
  background: var(--ink);
  color: rgba(238, 230, 219, 0.74);
  display: flex;
  font-size: 0.74rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding: 24px clamp(20px, 5vw, 72px);
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-privacy-button {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  margin-left: 14px;
  padding: 0;
  text-decoration: none;
  text-transform: inherit;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.meta-consent {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(247, 241, 232, 0.96);
  border: 1px solid rgba(72, 47, 29, 0.18);
  bottom: 12px;
  box-shadow: 0 10px 28px rgba(30, 21, 14, 0.16);
  color: #302319;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  left: 50%;
  max-width: 720px;
  padding: 10px 10px 10px 14px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  z-index: 100;
}

.meta-consent[hidden] {
  display: none;
}

.meta-consent p {
  font-size: 0.76rem;
  line-height: 1.4;
  margin: 0;
  max-width: 410px;
}

.meta-consent a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meta-consent-actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 4px;
}

.meta-consent-actions .button {
  border: 0;
  cursor: pointer;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  min-height: 34px;
  padding: 8px 12px;
  white-space: nowrap;
}

.meta-consent-actions .button-light {
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meta-consent-actions .button:focus-visible,
.meta-consent a:focus-visible,
.footer-privacy-button:focus-visible {
  outline: 2px solid var(--cacao);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

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

  .mosaic,
  .intro-grid,
  .location,
  .safety-section,
  .photo-break,
  .booking-grid,
  .host-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-large {
    grid-row: auto;
  }

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

}

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .language-switch {
    padding: 3px;
  }

  .language-switch button {
    padding: 6px 9px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    background-position: 54% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(238, 230, 219, 0.98) 0%, rgba(238, 230, 219, 0.88) 56%, rgba(72, 47, 29, 0.36) 100%);
  }

  .hero-content {
    min-height: 100svh;
    padding: 116px 18px 34px;
  }

  h1 {
    font-size: clamp(4.4rem, 22vw, 7.2rem);
  }

  h2 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .hero-facts,
  .pillars,
  .form-row,
  .gallery,
  .location-gallery {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    padding: 16px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline time {
    padding-top: 0;
  }

  .intro-copy,
  .location-copy,
  .booking-note,
  .safety-copy {
    border-left: 0;
    padding-left: 0;
  }

  .mosaic figure,
  .mosaic-text,
  .gallery img,
  .location-gallery img,
  .photo-break img {
    min-height: 360px;
  }

  .host-card {
    grid-template-rows: minmax(360px, 72vh) auto;
  }

  .site-footer {
    display: grid;
    gap: 8px;
  }

  .footer-privacy-button {
    display: block;
    margin: 8px 0 0;
  }

}

@media (max-width: 620px) {
  .meta-consent {
    align-items: stretch;
    bottom: 8px;
    display: grid;
    gap: 8px;
    padding: 11px 12px 10px;
    width: calc(100% - 16px);
  }

  .meta-consent p {
    max-width: none;
  }

  .meta-consent-actions {
    justify-content: flex-end;
  }
}
