:root {
  --ink: #14100d;
  --ink-soft: #31261f;
  --gold: #c99a44;
  --gold-bright: #f4d37b;
  --pearl: #fffaf0;
  --cream: #f6efe2;
  --sea: #407f7d;
  --sea-dark: #23585a;
  --rose: #9d5167;
  --line: rgba(57, 44, 31, 0.16);
  --shadow: 0 24px 70px rgba(29, 20, 10, 0.18);
  color: var(--ink);
  background: var(--pearl);
  font-family:
    "Poppins",
    "Aptos",
    "Segoe UI",
    system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main[id],
section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  line-height: 1.55;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(247, 241, 230, 0.96)),
    var(--pearl);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle at 16px 16px, rgba(64, 127, 125, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 56px 46px, rgba(201, 154, 68, 0.14) 0 1px, transparent 2px);
  background-size: 72px 72px;
  opacity: 0.55;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(201, 154, 68, 0.2);
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(16px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(201, 154, 68, 0.45);
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

nav a,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

nav a {
  border: 1px solid rgba(57, 44, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.social-links a {
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--sea-dark);
  border-color: rgba(201, 154, 68, 0.54);
  background: rgba(255, 250, 240, 0.78);
}

.social-links a:hover {
  color: var(--sea-dark);
  border-color: var(--gold);
}

nav a[aria-current="page"] {
  color: var(--sea-dark);
  border-color: rgba(201, 154, 68, 0.78);
  background: rgba(255, 250, 240, 0.92);
}

.admin-nav-button {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.86rem;
  box-shadow: none;
}

.section-band {
  position: relative;
  padding: 88px 0;
}

.page-main {
  min-height: calc(100vh - 158px);
}

.page-title {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2rem, 3.9vw, 3.55rem);
  line-height: 0.98;
}

.hero {
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--pearl);
  background:
    linear-gradient(90deg, rgba(18, 14, 10, 0.96) 0%, rgba(18, 14, 10, 0.82) 54%, rgba(18, 14, 10, 0.58) 100%),
    url("/assets/gold-bubble-sparkle.jpg") center / cover;
}

.home-hero {
  min-height: calc(100vh - 76px);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 250, 240, 0.98));
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(244, 211, 123, 0.35);
  border-radius: 999px;
  animation: bubble-rise 14s linear infinite;
}

.hero-bg::before {
  right: 9%;
  bottom: -120px;
  width: 78px;
  height: 78px;
}

.hero-bg::after {
  right: 24%;
  bottom: -80px;
  width: 42px;
  height: 42px;
  animation-delay: -7s;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 44px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-bright);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--pearl);
  font-size: clamp(2.6rem, 5.5vw, 4.9rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.2vw, 3.15rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.hero p {
  max-width: 640px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 1.12rem;
}

blockquote {
  max-width: 620px;
  margin: 26px 0 0;
  padding: 18px 0 18px 22px;
  color: rgba(255, 250, 240, 0.92);
  border-left: 3px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

button:hover:not(:disabled) {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

button:active:not(:disabled) {
  transform: translateY(1px) scale(0.98);
}

button:focus-visible {
  outline: 3px solid rgba(64, 127, 125, 0.35);
  outline-offset: 3px;
}

button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.btn-primary,
button {
  color: #19120a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 28px rgba(201, 154, 68, 0.25);
}

.btn-secondary {
  color: var(--pearl);
  border-color: rgba(255, 250, 240, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.section-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 0;
  color: var(--sea-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.section-contact-link:hover {
  color: var(--rose);
}

.hero-section-link {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-top: -28px;
}

.hero .section-contact-link,
.story-band .section-contact-link {
  color: var(--gold-bright);
}

.hero-logo-wrap {
  display: grid;
  justify-items: center;
}

.hero-logo {
  width: min(100%, 440px);
  max-height: 620px;
  object-fit: contain;
  border: 1px solid rgba(244, 211, 123, 0.22);
  box-shadow: var(--shadow);
}

.pearl-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(246, 239, 226, 0.95)),
    var(--cream);
}

.split-section,
.story-layout,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.feature-list,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-list {
  grid-template-columns: 1fr;
}

.feature-list article,
.service-grid article,
.lead-form,
.admin-panel,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(29, 20, 10, 0.08);
}

.feature-list article,
.service-grid article,
.stat-card {
  padding: 22px;
}

.services-listing {
  margin-top: 44px;
}

.service-highlights {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.service-highlights .section-heading {
  margin-bottom: 16px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.story-band {
  color: var(--pearl);
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.97), rgba(35, 88, 90, 0.88)),
    var(--ink);
}

.story-band .eyebrow,
.story-band h2 {
  color: var(--gold-bright);
}

.story-band p {
  color: rgba(255, 250, 240, 0.86);
}

.story-mark {
  display: grid;
  justify-items: center;
}

.story-mark img {
  width: min(100%, 340px);
  border: 1px solid rgba(244, 211, 123, 0.22);
}

.story-section-link {
  grid-column: 1 / -1;
  justify-content: flex-start;
  margin-top: 0;
}

.story-page-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.story-page-copy {
  max-width: 820px;
}

.story-page-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.7vw, 5.4rem);
}

.story-page-copy p {
  font-size: 1.03rem;
}

.story-why-panel {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(244, 211, 123, 0.28);
}

.story-why-panel h2 {
  color: var(--gold-bright);
}

.story-why-panel blockquote {
  max-width: 720px;
  margin: 20px 0;
  color: rgba(255, 250, 240, 0.94);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.gallery-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(246, 239, 226, 0.94)),
    var(--cream);
}

.highlight-video-card {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
  margin-bottom: 30px;
  padding: clamp(16px, 2.3vw, 28px);
  color: var(--pearl);
  border: 1px solid rgba(244, 211, 123, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 16, 13, 0.96), rgba(35, 88, 90, 0.92)),
    var(--ink);
  box-shadow: var(--shadow);
}

.highlight-video-copy {
  max-width: 760px;
}

.highlight-video-copy h3 {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1;
}

.highlight-video-card .eyebrow {
  color: var(--gold-bright);
}

.highlight-video-copy .muted {
  color: rgba(255, 250, 240, 0.78);
}

.highlight-video-stage {
  position: relative;
  isolation: isolate;
  width: min(100%, 1060px);
  margin-inline: auto;
  min-height: clamp(330px, 47vw, 560px);
  display: grid;
  place-items: center;
  padding: clamp(34px, 6vw, 74px) clamp(12px, 4vw, 46px);
  overflow: hidden;
}

.highlight-video-stage::before {
  position: absolute;
  inset: 10% 7%;
  z-index: 0;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 34%, rgba(244, 211, 123, 0.18), transparent 34%),
    radial-gradient(circle at 76% 58%, rgba(64, 127, 125, 0.28), transparent 42%);
  filter: blur(10px);
}

.highlight-video-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.highlight-video-bubble {
  --size: 54px;
  --drift-x: 12px;
  --duration: 8s;
  position: absolute;
  width: var(--size);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 240, 0.5);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.95) 0 8%, transparent 10%),
    radial-gradient(circle at 68% 74%, rgba(244, 211, 123, 0.22), transparent 42%),
    rgba(255, 250, 240, 0.08);
  box-shadow:
    inset 10px 12px 24px rgba(255, 255, 255, 0.22),
    inset -12px -14px 26px rgba(64, 127, 125, 0.24),
    0 14px 30px rgba(9, 7, 5, 0.18);
  animation: video-bubble-float var(--duration) ease-in-out infinite;
}

.highlight-video-bubble:nth-child(1) {
  --size: 74px;
  --drift-x: 18px;
  --duration: 9s;
  left: 3%;
  top: 16%;
}

.highlight-video-bubble:nth-child(2) {
  --size: 42px;
  --drift-x: -12px;
  --duration: 7.4s;
  left: 16%;
  top: 7%;
  animation-delay: -2s;
}

.highlight-video-bubble:nth-child(3) {
  --size: 64px;
  --drift-x: -18px;
  --duration: 8.8s;
  right: 7%;
  top: 9%;
  animation-delay: -4.2s;
}

.highlight-video-bubble:nth-child(4) {
  --size: 36px;
  --drift-x: 10px;
  --duration: 6.8s;
  right: 21%;
  top: 23%;
  animation-delay: -1.1s;
}

.highlight-video-bubble:nth-child(5) {
  --size: 92px;
  --drift-x: 24px;
  --duration: 10.5s;
  left: 0;
  bottom: 10%;
  animation-delay: -5.6s;
}

.highlight-video-bubble:nth-child(6) {
  --size: 44px;
  --drift-x: -16px;
  --duration: 7.6s;
  left: 24%;
  bottom: 5%;
  animation-delay: -3.4s;
}

.highlight-video-bubble:nth-child(7) {
  --size: 78px;
  --drift-x: -22px;
  --duration: 9.8s;
  right: 1%;
  bottom: 13%;
  animation-delay: -6.2s;
}

.highlight-video-bubble:nth-child(8) {
  --size: 34px;
  --drift-x: 13px;
  --duration: 7s;
  right: 17%;
  bottom: 2%;
  animation-delay: -2.8s;
}

.highlight-video-bubble:nth-child(9) {
  --size: 28px;
  --drift-x: -10px;
  --duration: 6.4s;
  left: 9%;
  top: 48%;
  animation-delay: -4.8s;
}

.highlight-video-bubble:nth-child(10) {
  --size: 46px;
  --drift-x: 14px;
  --duration: 8.2s;
  right: 8%;
  top: 48%;
  animation-delay: -1.8s;
}

.highlight-video-bubble:nth-child(11) {
  --size: 26px;
  --drift-x: 8px;
  --duration: 6.2s;
  left: 35%;
  top: 3%;
  animation-delay: -5.1s;
}

.highlight-video-bubble:nth-child(12) {
  --size: 32px;
  --drift-x: -8px;
  --duration: 6.6s;
  right: 34%;
  bottom: 4%;
  animation-delay: -3.9s;
}

.highlight-video-frame {
  position: relative;
  width: min(100%, 820px);
  aspect-ratio: 16 / 9;
  z-index: 2;
  overflow: hidden;
  border: 2px solid rgba(255, 250, 240, 0.7);
  border-radius: 44% 36% 40% 48% / 38% 46% 35% 44%;
  background: #090705;
  box-shadow:
    inset 0 0 28px rgba(244, 211, 123, 0.32),
    0 18px 44px rgba(9, 7, 5, 0.32);
}

.highlight-video-frame iframe,
.highlight-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  padding: 10px 0 6px;
}

.gallery-bubble {
  width: clamp(158px, 20vw, 255px);
  margin: 0;
  color: var(--ink-soft);
  animation: bubble-drift 7s ease-in-out infinite;
}

.gallery-bubble-1,
.gallery-bubble-4 {
  width: clamp(190px, 25vw, 310px);
}

.gallery-bubble-2 {
  width: clamp(142px, 17vw, 220px);
  animation-delay: -1.4s;
}

.gallery-bubble-3 {
  animation-delay: -2.6s;
}

.gallery-bubble-4 {
  animation-delay: -3.8s;
}

.gallery-bubble-5 {
  width: clamp(170px, 22vw, 278px);
  animation-delay: -5.1s;
}

.gallery-bubble-frame {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.6vw, 17px);
  overflow: visible;
  border: 1px solid rgba(64, 127, 125, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.72) 28%, transparent 30%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.86), rgba(64, 127, 125, 0.16));
  box-shadow:
    inset 10px 14px 26px rgba(255, 255, 255, 0.72),
    inset -16px -18px 30px rgba(64, 127, 125, 0.16),
    0 18px 38px rgba(29, 20, 10, 0.14);
}

.gallery-bubble-frame img {
  width: auto;
  max-width: 78%;
  height: auto;
  max-height: 78%;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(255, 250, 240, 0.68);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 10px 24px rgba(29, 20, 10, 0.16);
}

.gallery-bubble figcaption {
  margin-top: 9px;
  overflow-wrap: anywhere;
  color: rgba(49, 38, 31, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.gallery-empty {
  margin: 0;
  color: rgba(49, 38, 31, 0.72);
  font-weight: 800;
}

.booking-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(255, 255, 255, 0.78)),
    var(--pearl);
}

.booking-layout-full {
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1.12fr);
}

.booking-copy {
  position: sticky;
  top: 100px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.booking-copy .page-title {
  font-size: clamp(1.85rem, 3.05vw, 2.7rem);
  line-height: 1;
}

.booking-notes,
.menu-list {
  padding-left: 20px;
}

.booking-notes li,
.menu-list li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.lead-form {
  display: grid;
  gap: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.sandbox-review-label {
  width: fit-content;
  margin: 0 0 10px;
  padding: 7px 10px;
  color: var(--pearl);
  border-radius: 999px;
  background: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-intro {
  padding-bottom: 4px;
}

.form-intro h3,
.section-subheading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.15vw, 1.7rem);
  line-height: 1;
}

.section-subheading {
  margin-bottom: 16px;
}

.section-subheading p,
.form-help {
  margin: 5px 0 0;
  color: rgba(49, 38, 31, 0.78);
  font-size: 0.82rem;
  font-style: italic;
}

.form-section + .form-section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.form-row {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.form-row.wide {
  grid-column: 1 / -1;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 9px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(57, 44, 31, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  font: inherit;
}

input[type="radio"],
input[type="checkbox"] {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--sea);
  box-shadow: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(64, 127, 125, 0.2);
  border-color: var(--sea);
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  min-height: 30px;
}

.option-wrap {
  align-items: flex-start;
}

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

.choice {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.choice span {
  min-width: 0;
}

.required {
  color: #9d1f2f;
}

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

#form-status,
.status-message {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

#form-status[data-state="error"],
.status-message[data-state="error"] {
  color: #9d1f2f;
}

#form-status[data-state="success"],
.status-message[data-state="success"] {
  color: #166f46;
}

.menu-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0;
  list-style: square;
}

.service-bio {
  max-width: 900px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sea);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(64, 127, 125, 0.1)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(29, 20, 10, 0.08);
}

.service-bio p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.site-footer {
  padding: 28px 0;
  color: var(--pearl);
  background: var(--ink);
}

.footer-layout {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.footer-social a {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(244, 211, 123, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.07);
}

.footer-social a:hover {
  color: var(--pearl);
  border-color: rgba(244, 211, 123, 0.74);
  background: rgba(64, 127, 125, 0.32);
}

.footer-social svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-layout img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(244, 211, 123, 0.3);
  border-radius: 999px;
}

.footer-layout p {
  margin: 2px 0 0;
  color: rgba(255, 250, 240, 0.75);
}

.admin-main {
  min-height: calc(100vh - 76px);
  padding: 44px 0 80px;
  background: var(--pearl);
}

.admin-locked .admin-main {
  display: grid;
  align-items: start;
}

.admin-shell {
  display: grid;
  gap: 20px;
}

#dashboard-panel,
.admin-page {
  display: grid;
  gap: 20px;
}

.admin-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.admin-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.admin-panel {
  padding: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: start;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-table-control {
  min-width: 130px;
}

.admin-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
}

.calendar-actions {
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.lead-status-sections {
  display: grid;
  gap: 24px;
}

.lead-status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.lead-status-tabs button[aria-selected="true"] {
  color: var(--pearl);
  border-color: var(--sea);
  background: var(--sea);
}

.admin-main button:not(.lead-link) {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--ink);
  border: 1px solid rgba(57, 44, 31, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 3px 8px rgba(29, 20, 10, 0.08);
}

.admin-main button:not(.lead-link):hover:not(:disabled) {
  color: var(--ink);
  border-color: var(--sea);
  background: rgba(64, 127, 125, 0.12);
  filter: none;
}

.admin-main .lead-status-tabs button[aria-selected="true"] {
  color: var(--pearl);
  border-color: var(--sea);
  background: var(--sea);
}

.admin-dialog .btn-secondary {
  flex-shrink: 0;
  min-width: 78px;
  color: var(--ink);
  border-color: rgba(57, 44, 31, 0.24);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.admin-dialog .btn-secondary:hover:not(:disabled) {
  color: var(--ink);
  border-color: var(--sea);
  background: rgba(64, 127, 125, 0.12);
  filter: none;
}

.admin-main .status-message {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.lead-status-section {
  min-width: 0;
}

.lead-status-section h3 {
  margin-bottom: 0;
}

.lead-link {
  min-height: auto;
  padding: 0;
  color: var(--sea);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-weight: 900;
  text-align: left;
}

.lead-link:hover:not(:disabled) {
  color: var(--rose);
  filter: none;
  transform: none;
  text-decoration: underline;
}

.admin-dialog {
  width: min(680px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 28px));
  padding: 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--pearl);
  box-shadow: 0 24px 80px rgba(29, 20, 10, 0.28);
}

.admin-dialog::backdrop {
  background: rgba(29, 20, 10, 0.48);
}

.admin-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-dialog-header h2 {
  margin-bottom: 6px;
}

.lead-inbox {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.lead-inbox .admin-actions {
  align-items: baseline;
}

.lead-message-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.estimate-preview-dialog {
  width: min(760px, calc(100% - 28px));
}

.estimate-preview-sheet {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.estimate-preview-logo {
  display: block;
  width: min(180px, 58%);
  height: auto;
  margin-bottom: 14px;
  object-fit: contain;
}

.estimate-preview-subtitle {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimate-preview-subtitle {
  margin: 8px 0 24px;
  color: var(--ink-soft);
}

.estimate-preview-sheet table {
  min-width: 0;
  margin-top: 24px;
}

.estimate-preview-sheet td:first-child {
  width: 34%;
  color: var(--ink-soft);
}

.estimate-preview-note {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(246, 239, 226, 0.62);
}

.lead-status-archive {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  opacity: 0.86;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(246, 239, 226, 0.7);
}

tr:last-child td {
  border-bottom: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.stat-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.calendar-weekday,
.calendar-day {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calendar-weekday:nth-child(7n),
.calendar-day:nth-child(7n) {
  border-right: 0;
}

.calendar-weekday {
  padding: 10px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(246, 239, 226, 0.72);
}

.calendar-day {
  min-height: 138px;
  padding: 10px;
  background: rgba(255, 250, 240, 0.58);
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.calendar-day:hover {
  background: rgba(64, 127, 125, 0.1);
  box-shadow: inset 0 0 0 2px rgba(64, 127, 125, 0.18);
}

.calendar-day:focus-visible {
  outline: 3px solid rgba(64, 127, 125, 0.55);
  outline-offset: -3px;
}

.calendar-day > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  border-radius: 999px;
  background: rgba(201, 154, 68, 0.16);
}

.calendar-day-muted {
  background: rgba(246, 239, 226, 0.35);
}

.calendar-event {
  display: grid;
  gap: 2px;
  margin-top: 6px;
  padding: 8px;
  border-left: 3px solid var(--sea);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 6px 18px rgba(29, 20, 10, 0.08);
}

.calendar-event-label {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.calendar-event b,
.calendar-event small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.calendar-event small {
  color: rgba(49, 38, 31, 0.72);
}

.calendar-event a {
  display: inline-block;
  margin-top: 4px;
  color: var(--sea);
  font-size: 0.72rem;
  font-weight: 800;
}

.calendar-event button {
  width: fit-content;
  min-height: 28px;
  margin-top: 5px;
  padding: 4px 8px;
  font-size: 0.72rem;
}

.media-admin-list {
  display: grid;
  gap: 12px;
}

.media-drop-zone {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
  border: 2px dashed rgba(64, 127, 125, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(64, 127, 125, 0.11)),
    rgba(255, 255, 255, 0.72);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.media-drop-zone input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.media-drop-zone span {
  pointer-events: none;
  color: var(--sea-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.media-drop-zone.is-drag-over {
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(64, 127, 125, 0.18);
  transform: translateY(-2px);
}

.media-admin-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.media-admin-card[draggable="true"] {
  cursor: grab;
}

.media-admin-card[draggable="true"]:active {
  cursor: grabbing;
}

.media-admin-card.is-dragging {
  opacity: 0.58;
  transform: scale(0.98);
}

.media-admin-card.is-drop-target {
  border-color: var(--gold);
  outline: 3px solid rgba(244, 211, 123, 0.28);
  background: rgba(255, 250, 240, 0.94);
}

.media-admin-preview {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--pearl);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(35, 88, 90, 0.96), rgba(157, 81, 103, 0.84)),
    var(--sea-dark);
  font-weight: 900;
}

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

.media-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.media-admin-actions button {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.muted {
  color: rgba(49, 38, 31, 0.72);
}

.hidden {
  display: none !important;
}

@keyframes bubble-rise {
  from {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  to {
    transform: translateY(-720px) scale(1.25);
    opacity: 0;
  }
}

@keyframes bubble-drift {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes video-bubble-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }

  50% {
    transform: translate3d(var(--drift-x), -18px, 0) scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .nav-row,
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  nav {
    justify-content: flex-start;
  }

  .section-band {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-layout,
  .split-section,
  .story-layout,
  .story-page-layout,
  .booking-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .booking-copy .page-title {
    max-width: 720px;
  }

  .hero-logo {
    max-height: 520px;
  }

  .service-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

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

  .calendar-weekday,
  .calendar-day {
    border-right: 0;
  }

  .calendar-weekday {
    display: none;
  }

  .calendar-day {
    min-height: auto;
  }

  .highlight-video-stage {
    min-height: clamp(290px, 58vw, 470px);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: flex-start;
    gap: 18px 14px;
  }

  .gallery-bubble,
  .gallery-bubble-1,
  .gallery-bubble-2,
  .gallery-bubble-4,
  .gallery-bubble-5 {
    width: 100%;
    animation: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 1.88rem;
  }

  nav a,
  .admin-nav-button {
    padding: 7px 8px;
    font-size: 0.84rem;
  }

  .hero-logo {
    max-height: 410px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .lead-form,
  .admin-panel {
    padding: 18px;
  }

  .footer-layout {
    flex-wrap: wrap;
  }

  .footer-social {
    width: 100%;
    margin-left: 70px;
  }

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

  .highlight-video-stage {
    min-height: 0;
    padding: 34px 0;
  }

  .highlight-video-frame {
    width: 100%;
    border-radius: 30% 24% 27% 21% / 20% 24% 18% 22%;
  }

  .highlight-video-bubble:nth-child(n + 9) {
    display: none;
  }

  .highlight-video-bubble {
    --size: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .gallery-bubble,
  .gallery-bubble-1,
  .gallery-bubble-2,
  .gallery-bubble-4,
  .gallery-bubble-5 {
    width: 100%;
  }

  .gallery-bubble-frame {
    padding: 8px;
  }

  .gallery-bubble-frame img {
    max-width: 82%;
    max-height: 82%;
  }

  .gallery-bubble figcaption {
    font-size: 0.72rem;
  }

  .media-admin-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }
}
