/* Elegance Lounge — brand tokens & layout */
:root {
  --ivory: #f7f3ec;
  --beige: #e8dfd0;
  --beige-deep: #d9cdb8;
  --gold: #c4a574;
  --gold-deep: #a8895a;
  --gold-soft: rgba(196, 165, 116, 0.18);
  --blush: #f5ebe6;
  --charcoal: #2c2a28;
  --charcoal-soft: #5a5550;
  --white: #ffffff;
  --overlay: rgba(44, 42, 40, 0.42);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --nav-h: 5.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -3rem;
  left: 1rem;
  z-index: 200;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* —— Typography —— */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  text-transform: uppercase;
}

.h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lede {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  max-width: 36rem;
}

.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    transform 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* —— Header —— */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 1.5rem 0;
}

.site-header.is-solid {
  position: sticky;
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
  padding-bottom: 0.75rem;
}

.nav-bar {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 1.5vw, 1.35rem);
  font-size: clamp(0.62rem, 0.85vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a {
  color: var(--white);
  opacity: 0.88;
  transition: opacity 0.25s;
  position: relative;
}

.site-header.is-solid .nav-links a,
.site-header.is-solid .nav-toggle {
  color: var(--charcoal);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--gold);
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.logo-link {
  display: block;
  width: clamp(7.5rem, 14vw, 9.5rem);
}

.logo-link img {
  width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: currentColor;
  margin: 0.3rem auto;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

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

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

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

/* Mobile dropdown is hidden on desktop; the mobile media query positions and reveals it. */
.nav-mobile {
  display: none;
}

/* Mobile menu is hidden on desktop; the mobile media query positions and reveals it. */
.nav-mobile {
  display: none;
}

/* —— Book tab —— */
.book-tab {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 90;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--gold);
  color: var(--white);
  padding: 1.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
}

.book-tab:hover {
  background: var(--gold-deep);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.9) brightness(1.03) sepia(0.06);
  animation: heroDrift 26s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translateY(0);
  }
  to {
    transform: scale(1.06) translateY(-1%);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Champagne warm tint softens the cool studio photos, charcoal scrim keeps text legible. */
  background:
    linear-gradient(180deg, rgba(44, 42, 40, 0.22) 0%, rgba(44, 42, 40, 0.28) 45%, rgba(44, 42, 40, 0.6) 100%),
    linear-gradient(155deg, rgba(196, 165, 116, 0.3) 0%, rgba(245, 235, 230, 0.08) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  max-width: 48rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.2s forwards;
}

.hero .h1 {
  margin-bottom: 1rem;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.4s forwards;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 1.75rem;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.55s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.7s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  opacity: 0.75;
  animation: bounce 2.2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 1.25rem;
  height: 1.25rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.page-hero {
  min-height: 52svh;
}

.page-hero .h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

/* —— Sections —— */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head .eyebrow {
  margin-bottom: 0.75rem;
}

.section-head .lede {
  margin: 0.85rem auto 0;
}

.divider-ornament {
  width: 1px;
  height: 2.5rem;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.philosophy {
  background:
    radial-gradient(ellipse at 20% 0%, var(--gold-soft), transparent 50%),
    linear-gradient(160deg, var(--beige) 0%, var(--blush) 55%, var(--beige) 100%);
  text-align: center;
}

.philosophy-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--charcoal-soft);
  margin-bottom: 1.25rem;
}

.philosophy-impact {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* —— Service cards (homepage grid) —— */
.services-band {
  position: relative;
  padding-bottom: clamp(5rem, 12vw, 9rem);
  background: var(--ivory);
}

.services-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background:
    radial-gradient(ellipse at 80% 100%, var(--gold-soft), transparent 55%),
    linear-gradient(180deg, transparent 0%, var(--blush) 60%, var(--ivory) 100%);
  pointer-events: none;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--blush);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(44, 42, 40, 0.08);
}

.service-card .h3 {
  margin-bottom: 0.85rem;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card .btn {
  align-self: center;
}

/* —— Trust —— */
.trust {
  background: var(--charcoal);
  color: var(--ivory);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-grid.trust-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.trust-item svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  margin: 0 auto 1rem;
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.trust-item p {
  font-size: 0.88rem;
  color: rgba(247, 243, 236, 0.7);
}

/* —— Split feature —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-media {
  overflow: hidden;
  min-height: 22rem;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.03) sepia(0.05);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.split:hover .split-media img {
  transform: scale(1.03);
  filter: saturate(0.96) brightness(1.04) sepia(0.03);
}

.split-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.split-copy .h2 {
  margin-bottom: 1rem;
}

.split-copy .lede {
  margin-bottom: 1.75rem;
}

.beige-panel {
  background: var(--beige);
}

.blush-panel {
  background: var(--blush);
}

/* —— Menu / pricing —— */
.menu-section {
  padding-top: clamp(4rem, 7vw, 6.5rem);
}

.jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin-top: 1.5rem;
}

.jump-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: border-color 0.25s var(--ease);
}

.jump-nav a:hover {
  border-color: var(--gold);
}

.price-group {
  scroll-margin-top: 6rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.price-group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  border-bottom: 1px solid var(--beige-deep);
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
}

.price-group-head .h2 {
  color: var(--charcoal);
}

.price-group-head a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
  white-space: nowrap;
}

.menu-block {
  margin-bottom: 3rem;
}

.menu-block:last-child {
  margin-bottom: 0;
}

.menu-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.menu-title .h3 {
  color: var(--gold-deep);
}

.menu-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.65rem 0 1.35rem;
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--beige-deep);
  align-items: baseline;
}

.price-row:last-child {
  border-bottom: none;
}

.price-name {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.price-desc {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin-top: -0.35rem;
}

.price-meta {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  white-space: nowrap;
}

.price-dual {
  display: grid;
  grid-template-columns: 1fr 5.5rem 5.5rem;
  gap: 0.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--beige-deep);
  align-items: baseline;
  font-size: 0.95rem;
}

.price-dual-head {
  display: grid;
  grid-template-columns: 1fr 5.5rem 5.5rem;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--beige-deep);
  margin-bottom: 0.25rem;
}

.price-dual-head span:not(:first-child),
.price-dual span:not(:first-child) {
  text-align: right;
}

.add-on-box {
  background: var(--blush);
  border: 1px solid var(--beige-deep);
  padding: 1.75rem 1.5rem;
}

.add-on-box .h3 {
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
  text-align: center;
}

.care-list {
  display: grid;
  gap: 0.85rem;
}

.care-item {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.care-item .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  justify-self: center;
}

.offer-banner {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 2rem 1.75rem;
  text-align: center;
}

.offer-banner .h3 {
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.offer-banner p {
  color: rgba(247, 243, 236, 0.85);
  margin: 0.35rem 0;
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-grid figure {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.03) sepia(0.05);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
  filter: saturate(0.98) brightness(1.04) sepia(0.02);
}

.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(5) {
  aspect-ratio: 16 / 11;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-details h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-details p,
.contact-details a {
  color: var(--charcoal-soft);
}

.contact-details a:hover {
  color: var(--gold-deep);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-row a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
}

.form {
  position: relative;
  background: var(--blush);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  gap: 1rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--beige-deep);
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--gold);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

/* —— Opening hours (contact) —— */
.hours-list {
  display: grid;
  gap: 0.5rem;
  max-width: 22rem;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--beige-deep);
  font-size: 0.95rem;
}

.hours-list dt {
  color: var(--charcoal);
  font-weight: 500;
}

.hours-list dd {
  color: var(--charcoal-soft);
}

.hours-note {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  margin-top: 0.35rem;
}

/* —— Map embed —— */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 3rem;
  border: 1px solid var(--beige-deep);
  overflow: hidden;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— FAQ accordion —— */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--beige-deep);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--gold-deep);
}

.faq-answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
}

/* —— Footer —— */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 4rem 1.5rem 2rem;
}

.footer-cta {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 243, 236, 0.12);
}

.footer-cta .h2 {
  color: var(--ivory);
  margin: 0.75rem 0 1rem;
}

.footer-cta .lede {
  color: rgba(247, 243, 236, 0.7);
  margin: 0 auto 1.75rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  width: 8rem;
  margin-bottom: 1rem;
}

.footer-brand .script {
  display: block;
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.92rem;
  color: rgba(247, 243, 236, 0.72);
  margin-bottom: 0.45rem;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 243, 236, 0.12);
}

.footer-hours p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.footer-hours span:first-child {
  color: rgba(247, 243, 236, 0.55);
}

.footer-hours span:last-child {
  color: rgba(247, 243, 236, 0.82);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(247, 243, 236, 0.45);
}

/* —— Reveal on scroll —— */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

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

  .hero-media img {
    transform: scale(1.03);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Mobile —— */
@media (max-width: 1100px) {
  .trust-grid.trust-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .service-grid,
  .trust-grid,
  .menu-cols,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 16rem;
  }

  .split-media img {
    min-height: 16rem;
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(247, 243, 236, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--beige);
    padding: 0.75rem 1rem;
  }

  .nav-bar {
    grid-template-columns: 2.5rem 1fr 2.5rem;
  }

  .logo-link {
    width: 6.5rem;
    justify-self: center;
    grid-column: 2;
  }

  .nav-toggle {
    display: block;
    color: var(--charcoal);
    grid-column: 3;
    justify-self: end;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--beige);
    padding: 1rem 1.25rem 1.5rem;
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav-mobile.is-open {
    display: flex;
  }

  .nav-mobile a {
    padding: 0.85rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--beige);
    color: var(--charcoal);
  }

  .book-tab {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .service-grid,
  .trust-grid,
  .menu-cols,
  .gallery-grid,
  .price-dual,
  .price-dual-head {
    grid-template-columns: 1fr;
  }

  .price-dual,
  .price-dual-head {
    grid-template-columns: 1fr auto auto;
  }

  .price-dual span:first-child {
    grid-column: 1 / -1;
  }

  .price-dual-head span:first-child {
    display: none;
  }
}

@media (max-width: 520px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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