
:root {
  /* Brand colors */
  --navy: #142f50;
  --navy-deep: #0c243e;
  --navy-soft: #32506f;
  --cream: #f7f4ee;
  --white: #ffffff;
  --offwhite: #fcfaf6;
  --red: #b94746;
  --red-dark: #9c3435;

  /* Neutral / borders */
  --muted: #65717a;
  --line: rgba(20,47,80,.14);

  /* Typography */
  --serif: Georgia,"Times New Roman",serif;
  --sans: "DM Sans",Arial,sans-serif;
  --display: "Manrope",Arial,sans-serif;

  /* Layout */
  --container: 1290px;

  /* Sticky header */
  --header-bg: rgba(252, 250, 246, 0.92);
  --header-blur: 16px;
  --header-shadow: 0 8px 30px rgba(12, 36, 62, 0.06);
}


/* =========================================================
   02. RESET & GLOBAL
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--navy);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

::selection {
  color: white;
  background: var(--red);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 104px),var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-top: 118px;
  padding-bottom: 118px;
}

.skip-link {
  position: absolute;
  z-index: 1100;
  top: -80px;
  left: 14px;
  padding: 10px 20px;
  background: var(--red);
  color: white;
}

.skip-link:focus {
  top: 15px;
}


/* =========================================================
   03. HEADER & NAVIGATION
   ========================================================= */

.top-strip {
  background: var(--navy-deep);
  text-align: center;
  color: #e8e9eb;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  padding: 11px 10px;
}

.top-sparkle {
  color: #d39c9d;
  margin: 0 18px;
}

.site-header {
  /* Sticky premium header */
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
  border-bottom: 1px solid var(--line);
  box-shadow: var(--header-shadow);
}

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

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}

.brand-symbol {
  width: 39px;
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(20,47,80,.15);
  transform: rotate(-6deg);
}

.brand-symbol::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid #d3d8df;
  border-radius: 2px;
}

.brand-symbol span {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--red);
  z-index: 1;
  transform: rotate(6deg);
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -.075em;
  font-weight: 800;
}

.brand-accent {
  color: var(--red);
}

.brand-name small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .25em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 700;
  color: #394b60;
  transition: color .2s;
}

.desktop-nav a:hover,.footer-links a:hover {
  color: var(--red);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  min-height: 53px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .22s,color .22s,transform .22s,border-color .22s;
}

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

.btn span {
  font-size: 17px;
  font-weight: 400;
}

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-dark:hover {
  background: var(--navy-deep);
}

.btn-red {
  background: var(--red);
  color: white;
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-cream {
  background: var(--cream);
  color: var(--navy);
}

.btn-cream:hover {
  background: white;
}

.header-cta {
  min-height: 42px;
  padding: 0 17px;
  gap: 16px;
}

.menu-toggle,.mobile-nav {
  display: none;
}


/* =========================================================
   04. HERO
   ========================================================= */

.hero {
  position: relative;
  padding-top: 48px;
  padding-bottom: 26px;
  overflow: hidden;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.01fr 1fr;
  min-height: 625px;
  gap: 45px;
  align-items: stretch;
}

.hero-copy {
  padding: 78px 0 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow,.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 10px;
  letter-spacing: .185em;
  font-weight: 800;
}

.eyebrow-line {
  height: 1px;
  width: 27px;
  background: var(--red);
}

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

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(52px,5.3vw,87px);
  line-height: 1.075;
  letter-spacing: -.079em;
  margin: 24px 0 28px;
}

.hero h1 em,.section-heading h2 em,.bar-copy h2 em,.gatherings h2 em,.faq-grid h2 em,.closing h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.065em;
}

.dot {
  color: var(--red);
}

.hero-copy>p {
  max-width: 440px;
  font-size: 15px;
  line-height: 1.9;
  color: #65717c;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.text-link,.light-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding: 12px 0;
}

.text-link:hover {
  color: var(--red);
}

.hero-foot {
  margin-top: auto;
  padding-top: 55px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #77818a;
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 700;
}

.hero-foot i {
  color: var(--red);
  font-style: normal;
  margin: 0 7px;
}

.tile-stack {
  display: flex;
  padding-left: 6px;
}

.tile-stack span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 31px;
  margin-left: -6px;
  background: #fff;
  border: 1px solid #d7d7d2;
  border-radius: 4px;
  font: 700 14px var(--serif);
  color: var(--red);
  box-shadow: 1px 2px 0 #9aaab9;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual-shell {
  position: relative;
  height: 100%;
  min-height: 620px;
  background: var(--navy);
  isolation: isolate;
  border-radius: 130px 130px 4px 4px;
  overflow: visible;
}

.hero-visual-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -17px;
  top: 35px;
  bottom: 13px;
  width: 55%;
  border: 1px solid var(--red);
  border-radius: 0 100px 0 0;
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 130px 130px 4px 4px;
}

.hero-floating-card {
  display: flex;
  align-items: center;
  gap: 13px;
  position: absolute;
  bottom: 45px;
  left: -48px;
  min-width: 255px;
  padding: 17px 23px;
  background: #fff;
  box-shadow: 0 17px 36px rgba(20,47,80,.13);
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--red);
  font-size: 22px;
}

.hero-floating-card div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-floating-card small {
  font-size: 8px;
  color: #8b939b;
  letter-spacing: .16em;
  font-weight: 800;
}

.hero-floating-card strong {
  font: italic 22px var(--serif);
}

.hero-side-label {
  position: absolute;
  top: 54%;
  right: -46px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 2;
  color: var(--navy);
  letter-spacing: .3em;
  font-weight: 800;
  font-size: 8px;
  white-space: nowrap;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 9px;
  letter-spacing: .2em;
  color: #8b949e;
  font-weight: 700;
}

.scroll-indicator span {
  font-size: 17px;
  color: var(--red);
  margin-left: 14px;
}


/* =========================================================
   05. EXPERIENCE / INTRO
   ========================================================= */

.intro {
  background: var(--offwhite);
}

.intro-grid {
  display: grid;
  grid-template-columns: .75fr 1.4fr;
  gap: 60px;
}

.intro-grid>.section-kicker {
  align-self: start;
  margin-top: 20px;
}

.mini-red-square {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--red);
  flex-shrink: 0;
}

.intro h2,.section-heading h2,.bar-copy h2,.gatherings h2,.faq-grid h2,.closing h2 {
  font-family: var(--display);
  font-size: clamp(39px,4.15vw,65px);
  line-height: 1.19;
  letter-spacing: -.069em;
  font-weight: 600;
}

.intro h2 {
  margin-bottom: 24px;
}

.underline-accent {
  border-bottom: 3px solid var(--red);
}

.intro-grid p {
  font-size: 15px;
  max-width: 660px;
  line-height: 1.9;
  color: var(--muted);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  margin-top: 69px;
}

.perk {
  position: relative;
  min-height: 260px;
  padding: 35px 36px 28px;
  border: 1px solid var(--line);
  background: white;
}

.perk-num {
  position: absolute;
  top: 26px;
  right: 30px;
  font-size: 10px;
  color: #9aa5b1;
  letter-spacing: .13em;
}

.perk-icon {
  width: 51px;
  height: 51px;
  display: block;
  color: var(--red);
  margin-bottom: 23px;
}

.perk-icon svg {
  width: 100%;
  height: 100%;
}

.perk h3 {
  font: 600 20px var(--display);
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.perk p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
  max-width: 285px;
}


/* =========================================================
   06. QUOTE BAND
   ========================================================= */

.quote-band {
  background: #e9eaf0;
  padding: 27px 0;
}

.quote-band .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.quote-band p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 800;
}

.quote-band em {
  font-family: var(--serif);
  letter-spacing: 0;
  font-size: 17px;
  font-weight: 400;
}

.star {
  color: var(--red);
  font-size: 24px;
}


/* =========================================================
   07. SPACES
   ========================================================= */

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

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 45px;
}

.section-heading h2 {
  margin: 18px 0 0;
}

.split-heading>p {
  max-width: 345px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 9px;
}

.space-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 27px;
  margin-top: 48px;
}

.space-card {
  background: var(--offwhite);
  min-width: 0;
}

.space-media {
  position: relative;
  aspect-ratio: 1.02;
  overflow: hidden;
  background: #d9d9d4;
}

.space-large .space-media {
  aspect-ratio: 1.41;
}

.space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.space-card:hover img {
  transform: scale(1.035);
}

.space-media-one {
  background: #bfc8c8;
}

.space-media-two {
  background: #c6d2db;
}

.space-index {
  position: absolute;
  top: 25px;
  left: 26px;
  background: var(--cream);
  padding: 12px 14px;
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 800;
}

.space-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px 31px 31px;
}

.space-info h3 {
  font: 600 22px var(--display);
  letter-spacing: -.045em;
  margin-bottom: 9px;
}

.space-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
  max-width: 410px;
}

.circle-action {
  flex-shrink: 0;
  width: 41px;
  height: 41px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  font-size: 19px;
  color: var(--red);
  transition: background .2s,color .2s;
}

.circle-action:hover {
  background: var(--navy);
  color: white;
}

.design-note {
  font-size: 11px;
  color: #77818a;
  margin-top: 18px;
  margin-bottom: 0;
}


/* =========================================================
   08. BAR SECTION
   ========================================================= */

.bar-section {
  background: var(--navy-deep);
  color: white;
}

.bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(58px,8vw,130px);
}

.bar-art-frame {
  height: 625px;
  max-height: 75vw;
  position: relative;
  border-radius: 150px 150px 5px 5px;
  background: #3a506a;
  overflow: hidden;
}

.bar-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-side-caption {
  position: absolute;
  bottom: 35px;
  right: 26px;
  color: #f3f0e9;
  font-size: 9px;
  letter-spacing: .23em;
  writing-mode: vertical-rl;
}

.section-kicker.light {
  color: #f1b9b5;
}

.bar-copy h2 {
  margin: 26px 0 27px;
}

.bar-copy h2 em {
  color: #f0b4ac;
}

.bar-copy>p {
  font-size: 15px;
  color: #c3ccd6;
  line-height: 1.9;
  max-width: 480px;
}

.bar-details {
  display: grid;
  gap: 24px;
  margin: 36px 0 28px;
}

.bar-details>div {
  display: flex;
  gap: 17px;
  border-top: 1px solid rgba(255,255,255,.17);
  padding-top: 20px;
}

.bar-details-icon {
  color: #ecb8b1;
  font-size: 25px;
  line-height: 1;
}

.bar-details h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
}

.bar-details p {
  font-size: 13px;
  line-height: 1.8;
  color: #b9c3d0;
  max-width: 355px;
  margin: 0;
}

.light-link {
  color: white;
  border-color: rgba(255,255,255,.52);
}

.light-link:hover {
  color: #f2b7b5;
}

.bar-copy .menu-note {
  font-size: 10px;
  color: #a6b5c2;
  margin: 26px 0 0;
  line-height: 1.6;
}


/* =========================================================
   09. GATHERINGS
   ========================================================= */

.gatherings {
  background: var(--offwhite);
  text-align: center;
  overflow: hidden;
}

.gatherings-inner {
  max-width: 840px;
  position: relative;
}

.section-kicker.centered {
  justify-content: center;
}

.gatherings h2 {
  margin: 25px 0;
}

.gatherings h2 em {
  color: var(--red);
}

.gatherings-inner>p {
  max-width: 545px;
  margin: 0 auto 31px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.gathering-shape {
  position: absolute;
  font: 54px var(--serif);
  width: 100px;
  height: 132px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid #e1e2dc;
  border-radius: 10px;
  color: var(--red);
  box-shadow: 5px 7px 0 #c7d2da;
  opacity: .65;
  z-index: 0;
}

.gathering-shape-one {
  left: -120px;
  top: 40px;
  transform: rotate(-22deg);
}

.gathering-shape-two {
  right: -110px;
  bottom: 0;
  transform: rotate(17deg);
}


/* =========================================================
   10. FAQ
   ========================================================= */

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.13fr;
  gap: 85px;
}

.faq-grid h2 {
  margin: 23px 0;
}

.faq-grid .faq-intro {
  font-size: 14px;
  color: var(--muted);
}

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

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

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

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

.faq-list summary span {
  font-size: 23px;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 510px;
  font-size: 13px;
  line-height: 1.8;
  margin: 16px 30px 0 0;
  color: var(--muted);
}


/* =========================================================
   11. CLOSING CTA
   ========================================================= */

.closing {
  background: var(--red);
  text-align: center;
  color: white;
  padding: 94px 0 35px;
  position: relative;
  overflow: hidden;
}

.closing::before,.closing::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  width: 360px;
  height: 360px;
  transform: rotate(45deg);
  pointer-events: none;
}

.closing::before {
  left: -285px;
  top: 40px;
}

.closing::after {
  right: -265px;
  bottom: -190px;
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-spark {
  font-size: 31px;
  margin-bottom: 19px;
}

.closing h2 {
  margin: 24px 0 17px;
  font-size: clamp(41px,5.3vw,78px);
}

.closing h2 em {
  color: #fff2e9;
}

.closing p {
  margin: 0 auto 29px;
  max-width: 455px;
  line-height: 1.9;
  font-size: 14px;
  color: #f9e5e3;
}

.closing .section-kicker {
  color: #f9e3e1;
}

.closing-footer {
  border-top: 1px solid rgba(255,255,255,.25);
  margin-top: 83px;
  padding-top: 22px;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: .31em;
}

.closing-footer span {
  padding: 0 20px;
}


/* =========================================================
   12. FOOTER
   ========================================================= */

.footer {
  background: var(--offwhite);
}

.footer-main {
  padding: 62px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-main>p {
  line-height: 1.8;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-weight: 700;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7c8790;
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 700;
}

.footer-red-dot {
  color: var(--red);
  margin: 0 8px;
}


/* =========================================================
   13. BOOKING MODAL
   ========================================================= */

.booking-dialog {
  max-height: min(90vh,850px);
  overflow: auto;
  width: min(calc(100% - 32px),620px);
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--offwhite);
  box-shadow: 0 30px 90px rgba(12,36,62,.3);
  color: var(--navy);
  border-radius: 4px;
}

.booking-dialog::backdrop {
  background: rgba(8,21,36,.72);
  backdrop-filter: blur(5px);
}

.dialog-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
}

.dialog-eyebrow {
  font-weight: 800;
  color: var(--red);
  font-size: 9px;
  letter-spacing: .21em;
}

.booking-dialog h2 {
  font: 600 36px var(--display);
  letter-spacing: -.06em;
  margin: 9px 0 0;
}

.dialog-close {
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  width: 36px;
  height: 36px;
  font-size: 26px;
  line-height: 1;
}

.dialog-copy {
  line-height: 1.7;
  font-size: 13px;
  color: var(--muted);
  margin: 15px 0 25px;
}

.booking-dialog form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-dialog label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.booking-dialog label>span {
  color: var(--red);
}

.booking-dialog input,.booking-dialog select,.booking-dialog textarea {
  border: 1px solid #d5d9db;
  border-radius: 0;
  min-height: 43px;
  padding: 11px 12px;
  background: white;
  color: var(--navy);
  outline: 0;
  width: 100%;
  font-size: 13px;
  max-width: 100%;
}

.booking-dialog input:focus,.booking-dialog select:focus,.booking-dialog textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(20,47,80,.1);
}

.booking-dialog textarea {
  resize: vertical;
  min-height: 77px;
}

.booking-submit {
  width: 100%;
  margin-top: 5px;
}

.form-disclaimer {
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  color: var(--muted);
  margin: 0;
}

.booking-result {
  background: #edf4ef;
  border-left: 3px solid #447457;
  padding: 14px;
  color: #2b6043;
  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   14. TOAST / NOTIFICATION
   ========================================================= */

.toast {
  position: fixed;
  z-index: 70;
  right: 28px;
  bottom: 26px;
  background: var(--navy-deep);
  color: white;
  font-size: 12px;
  padding: 13px 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(9px);
  transition: opacity .25s,transform .25s;
  max-width: min(340px,calc(100% - 32px));
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   15A. RESPONSIVE — SMALL DESKTOP / ≤ 1120px
   ========================================================= */

@media (max-width:1120px) {
  .container {
    width: min(calc(100% - 64px),var(--container));
  }

  .desktop-nav {
    gap: 19px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(52px,5.8vw,75px);
  }

  .hero-side-label {
    display: none;
  }

  .hero-floating-card {
    left: -27px;
  }

  .gathering-shape-one {
    left: -70px;
  }

  .gathering-shape-two {
    right: -70px;
  }
}


/* =========================================================
   15B. RESPONSIVE — TABLET / ≤ 850px
   ========================================================= */

@media (max-width:850px) {
  .desktop-nav,.header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 43px;
    height: 43px;
    border: 1px solid var(--line);
    background: transparent;
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--navy);
    transition: transform .2s;
  }

  .menu-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-nav:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 32px 24px;
    border-top: 1px solid var(--line);
    background: var(--offwhite);
  }

  .mobile-nav a {
    padding: 15px 0;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .mobile-nav .btn {
    margin-top: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    padding: 30px 0 5px;
  }

  .hero h1 {
    font-size: clamp(52px,8.5vw,76px);
  }

  .hero-foot {
    padding-top: 33px;
  }

  .hero-visual-shell {
    min-height: 500px;
    max-height: 650px;
    height: 65vw;
    border-radius: 110px 110px 4px 4px;
  }

  .hero-art {
    border-radius: 110px 110px 4px 4px;
  }

  .hero-floating-card {
    left: 20px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-grid>.section-kicker {
    margin-top: 0;
  }

  .faq-grid {
    gap: 35px;
  }

  .bar-grid {
    gap: 45px;
  }

  .bar-art-frame {
    height: 490px;
  }

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

  .space-media,.space-large .space-media {
    aspect-ratio: 1;
  }

  .space-info {
    padding: 23px;
  }

  .space-info h3 {
    font-size: 19px;
  }

  .section-pad {
    padding-top: 83px;
    padding-bottom: 83px;
  }

  .gathering-shape {
    opacity: .25;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-links {
    grid-column: 1/-1;
    grid-template-columns: repeat(4,max-content);
    gap: 25px;
  }
}


/* =========================================================
   15C. RESPONSIVE — MOBILE / ≤ 620px
   ========================================================= */

@media (max-width:620px) {
  .container {
    width: calc(100% - 40px);
  }

  .top-strip {
    font-size: 7px;
    letter-spacing: .14em;
  }

  .top-sparkle {
    margin: 0 6px;
  }

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

  .brand-symbol {
    width: 34px;
    height: 40px;
  }

  .brand-name strong {
    font-size: 13px;
  }

  .brand-name small {
    font-size: 6.5px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-copy {
    padding-top: 54px;
  }

  .eyebrow,.section-kicker {
    font-size: 9px;
    letter-spacing: .15em;
  }

  .hero h1 {
    font-size: clamp(48px,11.7vw,70px);
    margin: 20px 0;
  }

  .hero-copy>p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 26px;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-foot {
    font-size: 8px;
    letter-spacing: .08em;
    gap: 13px;
  }

  .hero-visual-shell {
    height: 118vw;
    min-height: 390px;
    max-height: 590px;
    border-radius: 90px 90px 4px 4px;
  }

  .hero-art {
    border-radius: 90px 90px 4px 4px;
  }

  .hero-visual-shell::after {
    right: -8px;
  }

  .hero-floating-card {
    min-width: 0;
    padding: 12px 16px;
    bottom: 26px;
    left: 15px;
  }

  .hero-floating-card strong {
    font-size: 19px;
  }

  .hero-bottom {
    padding-top: 19px;
    font-size: 8px;
  }

  .scroll-indicator {
    display: none;
  }

  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .intro h2,.section-heading h2,.bar-copy h2,.gatherings h2,.faq-grid h2,.closing h2 {
    font-size: clamp(37px,9vw,50px);
  }

  .intro-grid p {
    font-size: 14px;
  }

  .perks-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 35px;
  }

  .perk {
    min-height: 0;
    padding: 24px 26px;
  }

  .perk-icon {
    margin-bottom: 12px;
    width: 42px;
    height: 42px;
  }

  .perk h3 {
    margin-bottom: 7px;
  }

  .quote-band {
    padding: 19px 0;
  }

  .quote-band p {
    font-size: 8px;
    letter-spacing: .07em;
    line-height: 1.8;
  }

  .quote-band em {
    font-size: 12px;
  }

  .star {
    font-size: 14px;
  }

  .split-heading {
    display: block;
  }

  .split-heading>p {
    margin-top: 19px;
  }

  .space-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .space-media,.space-large .space-media {
    aspect-ratio: 1.32;
  }

  .space-info {
    padding: 21px;
  }

  .space-info p {
    font-size: 12px;
  }

  .bar-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .bar-art-frame {
    height: 109vw;
    max-height: 490px;
    border-radius: 110px 110px 4px 4px;
  }

  .bar-copy h2 {
    margin: 18px 0;
  }

  .bar-copy>p {
    font-size: 14px;
  }

  .gatherings-inner>p {
    font-size: 14px;
  }

  .gathering-shape {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-list details {
    padding: 19px 0;
  }

  .faq-list summary {
    font-size: 13px;
  }

  .closing {
    padding: 72px 0 27px;
  }

  .closing-footer {
    font-size: 8px;
    letter-spacing: .1em;
    margin-top: 60px;
  }

  .closing-footer span {
    padding: 0 8px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 0;
  }

  .footer-links {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 20px 0;
    line-height: 1.6;
  }

  .booking-dialog {
    padding: 23px;
  }

  .booking-dialog h2 {
    font-size: 29px;
  }

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

  .toast {
    right: 16px;
    bottom: 16px;
  }
}


/* =========================================================
   16. ACCESSIBILITY — REDUCED MOTION
   ========================================================= */

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

  *,*::before,*::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
