:root {
  --color-indigo: #4f46e5;
  --color-violet: #9333ea;
  --color-pink: #ec4899;
  --color-amber: #fcd34d;
  --color-ink: #1e1b2e;
  --color-white: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.93);
  --color-glass: rgba(255, 255, 255, 0.1);
  --color-glass-strong: rgba(30, 27, 46, 0.34);
  --color-border: rgba(255, 255, 255, 0.22);
  --color-focus: #fff2a8;
  --font-heading: "Bricolage Grotesque", sans-serif;
  --font-body: "Rubik", sans-serif;
  --radius-card: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 24px 70px rgba(25, 12, 58, 0.28);
  --max-width: 1180px;
  --section-space: clamp(5rem, 10vw, 9rem);
}

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

html {
  scroll-padding-top: 7.5rem;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-white);
  background-color: var(--color-indigo);
  background-image:
    linear-gradient(rgba(30, 27, 46, 0.34), rgba(30, 27, 46, 0.34)),
    linear-gradient(135deg, #4f46e5, #9333ea 45%, #ec4899);
  background-attachment: fixed;
  background-size: cover;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip; /* avoid body becoming a scroll container (Safari scroll clamp) */
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
  font-size: clamp(3.15rem, 11vw, 7.6rem);
}

h1 span {
  color: var(--color-amber);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
}

h3 {
  font-size: 1.55rem;
}

::selection {
  color: var(--color-ink);
  background: var(--color-amber);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--color-ink);
  background: var(--color-amber);
  border-radius: var(--radius-pill);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
  padding-block: var(--section-space);
}

.section-heading {
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading > p,
.hero-copy,
.social-intro > p {
  color: var(--color-muted);
}

.section-heading > p {
  max-width: 38rem;
}

.centered-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading > p {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--color-white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.4rem;
  color: var(--color-ink);
  background: var(--color-amber);
  border: 2px solid var(--color-amber);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(30, 27, 46, 0.2);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-small {
  min-height: 2.6rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.85rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-white);
  font-weight: 700;
  text-underline-offset: 0.3rem;
}

.glass,
.nav-pill,
.offering-card,
.gallery-preview,
.step-bubble,
.pricing-card,
.details-card,
.reservation-form {
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  width: min(calc(100% - 1.5rem), 1020px);
  margin: 1.15rem auto 0;
}

.nav-pill {
  position: relative;
  display: flex;
  min-height: 4.15rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  background-color: rgba(30, 27, 46, 0.58);
  border-radius: var(--radius-pill);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  background: var(--color-amber);
  border-radius: 50% 50% 44% 56%;
  transform: rotate(-12deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  width: 2px;
  height: 70%;
  background: rgba(30, 27, 46, 0.5);
  content: "";
}

.brand-mark::before {
  transform: rotate(60deg);
}

.brand-mark::after {
  transform: rotate(-60deg);
}

.nav-toggle {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.68rem;
  place-content: center;
  gap: 0.27rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  left: 0;
  display: none;
  padding: 0.75rem;
  background: rgba(30, 27, 46, 0.94);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
}

.nav-menu.is-open {
  display: grid;
}

.nav-menu > a:not(.button) {
  padding: 0.82rem 1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-menu .button {
  margin-top: 0.4rem;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: min(780px, calc(100vh - 5rem));
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: clamp(5rem, 13vh, 8.5rem);
  padding-bottom: clamp(5.5rem, 11vh, 8rem);
  overflow-x: hidden;
  place-items: center;
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 930px);
  text-align: center;
  text-shadow: 0 2px 22px rgba(30, 27, 46, 0.42);
}

.hero-photo {
  position: absolute;
  z-index: -2;
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  width: min(calc(100% - 2rem), 1400px);
  padding: 0.4rem;
  overflow: hidden;
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  border-radius: clamp(24px, 5vw, 40px);
  box-shadow: var(--shadow-card);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-photo::after {
  position: absolute;
  inset: 0.4rem;
  background:
    linear-gradient(
      180deg,
      rgba(30, 27, 46, 0.68),
      rgba(30, 27, 46, 0.82)
    );
  border-radius: clamp(19px, 4.5vw, 34px);
  content: "";
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: clamp(19px, 4.5vw, 34px);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  background: rgba(30, 27, 46, 0.34);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-chip span {
  color: var(--color-amber);
}

.hero-copy {
  max-width: 650px;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-button {
  min-width: min(100%, 15rem);
}

.hero-link {
  width: fit-content;
  margin: 1.15rem auto 0;
}

.hero-orb {
  --orb-drift-x: 0.75rem;
  --orb-drift-y: -0.6rem;
  --orb-drift-scale: 1.04;
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.7;
}

.hero-orb::before {
  position: absolute;
  inset: 18%;
  background: rgba(252, 211, 77, 0.12);
  border-radius: inherit;
  content: "";
}

.hero-orb-one {
  top: 14%;
  left: 1.25rem;
  width: clamp(10rem, 50vw, 12.5rem);
  aspect-ratio: 1;
}

.hero-orb-two {
  right: 1.25rem;
  bottom: 4%;
  width: clamp(8.75rem, 40vw, 10rem);
  aspect-ratio: 1;
}

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(30, 27, 46, 0.3);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.marquee-track {
  display: flex;
  width: max-content;
  padding-block: 1rem;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-group span:nth-child(even) {
  color: var(--color-amber);
}

/* Offerings scroller */
.section-heading-split {
  display: grid;
  gap: 1rem;
}

.section-heading-split > p,
.social-intro {
  align-self: end;
}

.card-scroller {
  --card-width: min(84vw, 340px);

  display: grid;
  grid-auto-columns: var(--card-width);
  grid-auto-flow: column;
  gap: 1rem;
  width: 100%;
  padding: 0.35rem 0 1.25rem;
  padding-inline-end: calc(100% - var(--card-width));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.42) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.offering-card {
  display: flex;
  height: 100%;
  min-height: 430px;
  flex-direction: column;
  padding: 1rem;
  border-radius: var(--radius-card);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.offering-art {
  position: relative;
  display: grid;
  height: 190px;
  margin-bottom: 1.4rem;
  place-items: center;
  overflow: hidden;
  border-radius: 17px;
}

.offering-art::before,
.offering-art::after,
.offering-art span {
  position: absolute;
  content: "";
}

.offering-brunch .offering-art {
  background: linear-gradient(145deg, #ff8fab, #ffd166);
}

.offering-brunch .offering-art::before {
  width: 125px;
  aspect-ratio: 1;
  background: #fff8df;
  border-radius: 50%;
  box-shadow: 0 12px 0 rgba(30, 27, 46, 0.1);
}

.offering-brunch .offering-art::after {
  width: 63px;
  aspect-ratio: 1;
  background: #fcd34d;
  border-radius: 50%;
  box-shadow: inset -8px -6px 0 rgba(245, 158, 11, 0.28);
}

.offering-brunch .offering-art span {
  right: 18%;
  bottom: 16%;
  width: 26px;
  height: 55px;
  background: #166534;
  border-radius: 100% 0 100% 0;
  transform: rotate(38deg);
}

.offering-dinner .offering-art {
  background: linear-gradient(145deg, #1f9367, #6ee7b7);
}

.offering-dinner .offering-art::before {
  width: 145px;
  height: 92px;
  background: #ff7b54;
  border: 12px solid #ffe8c2;
  border-radius: 50%;
  box-shadow: 0 14px 0 rgba(30, 27, 46, 0.11);
  transform: rotate(-9deg);
}

.offering-dinner .offering-art::after {
  width: 68px;
  height: 8px;
  background: #155e45;
  border-radius: 20px;
  box-shadow: -20px 18px 0 #155e45, 25px -15px 0 #fcd34d;
  transform: rotate(14deg);
}

.offering-catering .offering-art {
  background: linear-gradient(135deg, #f97316, #ec4899);
}

.offering-catering .offering-art::before {
  width: 190px;
  height: 112px;
  background:
    radial-gradient(circle at 24% 45%, #fcd34d 0 15px, transparent 16px),
    radial-gradient(circle at 50% 50%, #86efac 0 17px, transparent 18px),
    radial-gradient(circle at 76% 42%, #fff7ed 0 18px, transparent 19px),
    #6b2148;
  border-radius: 18px;
  box-shadow: 0 15px 0 rgba(30, 27, 46, 0.13);
  transform: rotate(4deg);
}

.offering-events .offering-art {
  background: linear-gradient(145deg, #2563eb, #a855f7);
}

.offering-events .offering-art::before {
  width: 90px;
  height: 108px;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px 15px 35px 35px;
  transform: rotate(-10deg);
}

.offering-events .offering-art::after {
  top: 45px;
  width: 118px;
  height: 44px;
  background: #ff8fab;
  border-radius: 50%;
  transform: rotate(-10deg);
}

.offering-coffee .offering-art {
  background: linear-gradient(145deg, #7c2d12, #f59e0b);
}

.offering-coffee .offering-art::before {
  width: 112px;
  height: 80px;
  background: #fff7ed;
  border-radius: 10px 10px 42px 42px;
  box-shadow: 0 12px 0 rgba(30, 27, 46, 0.12);
}

.offering-coffee .offering-art::after {
  right: calc(50% - 78px);
  width: 45px;
  height: 45px;
  border: 12px solid #fff7ed;
  border-left: 0;
  border-radius: 0 50% 50% 0;
}

.offering-coffee .offering-art span {
  top: 49px;
  width: 90px;
  height: 24px;
  background: #5b2f19;
  border-radius: 50%;
}

.card-number,
.step-number,
.preview-kicker,
.pricing-label,
.detail-label {
  margin-bottom: 0.65rem;
  color: var(--color-amber);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offering-card h3 {
  margin-bottom: 0.65rem;
}

.offering-card > p:not(.card-number) {
  min-height: 4.9rem;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.offering-card .text-link {
  margin-top: auto;
  font-size: 0.9rem;
}

.scroller-controls {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.icon-button {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--color-white);
  background: rgba(30, 27, 46, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
}

.icon-button svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Hover/tap popup gallery */
.gallery-shell {
  position: relative;
  max-width: 900px;
  min-height: 490px;
  margin-inline: auto;
  padding-top: 310px;
}

.gallery-preview {
  position: absolute;
  top: 0;
  left: clamp(10.5rem, var(--popup-left, 50%), calc(100% - 10.5rem));
  z-index: 4;
  display: grid;
  width: min(330px, calc(100vw - 2.5rem));
  padding: 0.65rem;
  border-radius: var(--radius-card);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px) scale(0.96);
}

.gallery-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.gallery-preview-media {
  height: 190px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 17px;
}

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

.gallery-preview > div:last-child {
  padding: 0 0.65rem 0.55rem;
}

.gallery-preview h3 {
  margin-bottom: 0.4rem;
}

.gallery-preview p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.gallery-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.gallery-tile {
  position: relative;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  background: #9333ea;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 13px 35px rgba(30, 27, 46, 0.19);
  cursor: pointer;
}

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

.gallery-tile[aria-expanded="true"] {
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.24);
}

/* Winding process */
.path-wrap {
  position: relative;
  display: grid;
  min-height: 1040px;
  align-content: space-between;
  margin-top: 4rem;
  isolation: isolate;
}

.path-line {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(76%, 600px);
  height: 100%;
  overflow: visible;
  transform: translateX(-50%);
}

.path-line path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.62);
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-width: 3;
}

.step-bubble {
  position: relative;
  width: min(82%, 420px);
  padding: clamp(1.3rem, 4vw, 2.1rem);
  border-radius: var(--radius-card);
}

.step-bubble::after {
  position: absolute;
  top: 50%;
  width: 1rem;
  aspect-ratio: 1;
  background: var(--color-amber);
  border: 4px solid #5e34b6;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(252, 211, 77, 0.23);
  content: "";
}

.step-left {
  justify-self: start;
}

.step-right {
  justify-self: end;
}

.step-left::after {
  right: -2rem;
}

.step-right::after {
  left: -2rem;
}

.step-bubble h3 {
  margin-bottom: 0.6rem;
}

.step-bubble p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

/* Social tiles */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  background: rgba(30, 27, 46, 0.3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.social-button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.social-tile {
  position: relative;
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  border-radius: clamp(16px, 4vw, 24px);
  box-shadow: var(--shadow-card);
}

.social-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(30, 27, 46, 0.24));
  content: "";
  pointer-events: none;
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Catering pricing */
.pricing-card {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(1.25rem, 5vw, 3rem);
  border-radius: clamp(24px, 5vw, 36px);
}

.pricing-topline {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing-topline h3 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
}

.price-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
  padding: 0.3rem;
  background: rgba(30, 27, 46, 0.35);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.price-toggle button {
  min-height: 2.7rem;
  padding: 0.5rem 0.8rem;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.price-toggle button[aria-pressed="true"] {
  color: var(--color-ink);
  background: var(--color-amber);
}

.pricing-main {
  display: grid;
  gap: 2rem;
  padding-block: 2rem;
}

.price {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: clamp(3.7rem, 10vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.price small {
  display: block;
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.price-block > p:last-child {
  margin-top: 0.85rem;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.65rem;
  color: var(--color-muted);
}

.feature-list span {
  color: var(--color-amber);
  font-weight: 700;
}

.pricing-button {
  width: 100%;
}

.other-options {
  display: flex;
  max-width: 780px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  margin: 1.5rem auto 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  text-align: center;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-heading {
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.details-card,
.reservation-form {
  height: 100%;
  border-radius: var(--radius-card);
}

.details-card {
  display: grid;
  align-content: center;
  gap: 1.35rem;
  padding: 1.35rem;
  font-style: normal;
}

.details-card p {
  margin-bottom: 0;
}

.details-card p:not(.detail-label),
.details-card a {
  color: var(--color-muted);
}

.details-card a {
  font-weight: 700;
  text-underline-offset: 0.28rem;
}

.reservation-form {
  padding: clamp(1.25rem, 4vw, 2.1rem);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.field label span {
  color: var(--color-muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--color-white);
  background: rgba(30, 27, 46, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 13px;
}

.field input,
.field select {
  min-height: 3.2rem;
  padding: 0 0.9rem;
}

.field textarea {
  min-height: 7.6rem;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.67);
}

.field select {
  appearance: auto;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-focus);
  outline: 3px solid rgba(255, 242, 168, 0.32);
}

.form-button {
  width: 100%;
}

.form-note,
.form-success {
  margin-top: 0.85rem;
  margin-bottom: 0;
  font-size: 0.78rem;
}

.form-note {
  color: var(--color-muted);
  text-align: center;
}

.form-success {
  padding: 0.8rem 1rem;
  color: #fefce8;
  background: rgba(20, 83, 45, 0.78);
  border: 1px solid rgba(187, 247, 208, 0.62);
  border-radius: 12px;
}

/* Footer */
.site-footer {
  display: grid;
  width: min(calc(100% - 2rem), var(--max-width));
  gap: 1.5rem;
  align-items: center;
  margin-inline: auto;
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-brand {
  justify-self: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.footer-links a {
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-underline-offset: 0.25rem;
}

.site-footer > p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .section {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  .hero {
    width: 100%;
  }

  .hero-orb-one {
    --orb-drift-x: 1rem;
    --orb-drift-y: -1rem;
    --orb-drift-scale: 1.06;
    top: 13%;
    left: 2rem;
    width: clamp(12rem, 30vw, 28rem);
  }

  .hero-orb-two {
    right: 2rem;
    bottom: 3%;
    width: clamp(10rem, 23vw, 21rem);
  }

  .gallery-tiles {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-shell {
    min-height: 445px;
  }

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

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

  .details-card {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 800px) {
  .site-header {
    width: min(calc(100% - 3rem), 1020px);
    margin-top: 1.35rem;
  }

  .nav-pill {
    padding-left: 1.25rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu,
  .nav-menu.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-menu > a:not(.button) {
    padding: 0.75rem 0.8rem;
  }

  .nav-menu .button {
    margin-top: 0;
    margin-left: 0.35rem;
  }

  .section-heading-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .section-heading-split > p {
    margin-bottom: 0.6rem;
  }

  .card-scroller {
    --card-width: min(36vw, 350px);
  }

  .gallery-shell {
    padding-top: 320px;
  }

  .step-bubble {
    width: min(45%, 420px);
  }

  .step-left::after {
    right: -3rem;
  }

  .step-right::after {
    left: -3rem;
  }

  .social-grid {
    gap: 1rem;
  }

  .pricing-topline {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .price-toggle {
    min-width: 330px;
  }

  .pricing-main {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
  }

  .details-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    text-align: left;
  }

  .footer-brand {
    justify-self: start;
  }

  .footer-links {
    justify-content: center;
  }

  .site-footer > p {
    text-align: right;
  }
}

@media (min-width: 1180px) {
  .card-scroller {
    --card-width: 350px;
  }
}

@supports not (backdrop-filter: blur(14px)) {
  .glass,
  .nav-pill,
  .offering-card,
  .gallery-preview,
  .step-bubble,
  .pricing-card,
  .details-card,
  .reservation-form {
    background: rgba(62, 37, 112, 0.94);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .button,
  .text-link,
  .icon-button,
  .social-button,
  .gallery-tile,
  .gallery-preview,
  .nav-menu > a {
    transition:
      color 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease,
      opacity 180ms ease;
  }

  .button:hover {
    box-shadow: 0 16px 34px rgba(30, 27, 46, 0.32);
    transform: translateY(-3px);
  }

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

  .icon-button:hover,
  .social-button:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
  }

  .gallery-tile:hover {
    transform: translateY(-7px) rotate(-1deg);
  }

  .gallery-tile img,
  .social-tile img {
    transition: transform 420ms ease;
  }

  .gallery-tile:hover img,
  .gallery-tile:focus-visible img,
  .gallery-tile[aria-expanded="true"] img,
  .social-tile:hover img {
    transform: scale(1.045);
  }

  .hero-chip {
    animation: chip-bob 4s ease-in-out infinite;
  }

  .hero-orb-one {
    animation: orb-drift 10s ease-in-out infinite alternate;
  }

  .hero-orb-two {
    animation: orb-drift 12s ease-in-out -4s infinite alternate-reverse;
  }

  .marquee-track {
    animation: marquee-scroll 24s linear infinite;
  }

  .path-line path {
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 2.2s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .path-wrap.is-drawn .path-line path {
    stroke-dashoffset: 0;
  }

  .js .reveal {
    opacity: 0;
    transform: translateY(38px);
    transition:
      opacity 700ms ease,
      transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

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

  .js .offerings .offering-card,
  .js .social-section .social-tile {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 520ms ease,
      transform 520ms ease;
  }

  .js .offerings.is-visible .offering-card,
  .js .social-section.is-visible .social-tile {
    opacity: 1;
    transform: translateY(0);
  }

  .js .offerings.is-visible .offering-card:nth-child(2),
  .js .social-section.is-visible .social-tile:nth-child(2) {
    transition-delay: 90ms;
  }

  .js .offerings.is-visible .offering-card:nth-child(3),
  .js .social-section.is-visible .social-tile:nth-child(3) {
    transition-delay: 180ms;
  }

  .js .offerings.is-visible .offering-card:nth-child(4),
  .js .social-section.is-visible .social-tile:nth-child(4) {
    transition-delay: 270ms;
  }

  .js .offerings.is-visible .offering-card:nth-child(5),
  .js .social-section.is-visible .social-tile:nth-child(5) {
    transition-delay: 360ms;
  }

  .js .social-section.is-visible .social-tile:nth-child(6) {
    transition-delay: 450ms;
  }

  .js .path-wrap .step-bubble {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    transition:
      opacity 560ms ease,
      transform 560ms ease;
  }

  .js .path-wrap.is-drawn .step-bubble {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .js .path-wrap.is-drawn .step-bubble:nth-of-type(2) {
    transition-delay: 250ms;
  }

  .js .path-wrap.is-drawn .step-bubble:nth-of-type(3) {
    transition-delay: 500ms;
  }

  .js .path-wrap.is-drawn .step-bubble:nth-of-type(4) {
    transition-delay: 750ms;
  }

  .js .path-wrap.is-drawn .step-bubble:nth-of-type(5) {
    transition-delay: 1000ms;
  }

  @keyframes marquee-scroll {
    to {
      transform: translateX(-50%);
    }
  }

  @keyframes chip-bob {
    0%,
    100% {
      transform: translateY(0) rotate(-0.5deg);
    }
    50% {
      transform: translateY(-8px) rotate(0.5deg);
    }
  }

  @keyframes orb-drift {
    to {
      transform:
        translate3d(var(--orb-drift-x), var(--orb-drift-y), 0)
        scale(var(--orb-drift-scale));
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* iOS Safari fix: date inputs have an intrinsic minimum width that overflows
   their container on real iPhones (invisible in desktop emulation, which uses
   Chrome's engine, not WebKit's UA styles). Kill the intrinsic sizing. */
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* Standard: back-to-top button with scroll-progress ring */
.btt-button {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900;
  width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(17, 17, 17, 0.85); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  display: grid; place-items: center;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btt-button.btt-visible { opacity: 1; visibility: visible; transform: none; }
.btt-button:focus-visible { outline: 3px solid #fcd34d; outline-offset: 3px; }
.btt-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.btt-ring circle { fill: none; stroke-width: 3; }
.btt-ring-track { stroke: rgba(255, 255, 255, 0.22); }
.btt-ring-fill { stroke: #fcd34d; stroke-dasharray: 125.66; stroke-dashoffset: 125.66; stroke-linecap: round; }
.btt-arrow { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: reduce) { .btt-button { transition: none; } }
