:root {
  --ink: #15120f;
  --charcoal: #211c18;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --muted: #766c62;
  --line: rgba(32, 24, 18, 0.14);
  --gold: #c79549;
  --coral: #ff9357;
  --green: #546b55;
  --shadow: 0 24px 80px rgba(21, 18, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  color: var(--paper);
  background: rgba(21, 18, 15, 0.78);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.scrolled {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 248, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1;
}

.brand small {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
}

.main-nav a,
.header-cta,
.button,
.text-link {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.main-nav a {
  padding: 10px 12px;
  color: rgba(255, 253, 248, 0.78);
  border-radius: 8px;
  font-size: 0.92rem;
}

.main-nav a:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.09);
}

.header-cta {
  padding: 13px 16px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  font-weight: 800;
}

.header-cta:hover,
.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--paper);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: 130px max(24px, calc((100vw - 1180px) / 2)) 70px;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(21, 18, 15, 0.98) 0%, rgba(33, 28, 24, 0.92) 48%, rgba(199, 149, 73, 0.24) 100%),
    url("Art/Affiche.jpeg") center / cover;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7.4vw, 7.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 590px;
  color: rgba(255, 253, 248, 0.8);
  font-size: 1.12rem;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.payment-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  color: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  font-weight: 800;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.payment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 147, 87, 0.65);
  background: rgba(255, 253, 248, 0.12);
}

.payment-card small {
  display: block;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.payment-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.cashapp .payment-icon {
  background: #00d64f;
}

.zelle .payment-icon {
  color: var(--paper);
  background: #6d31d4;
}

.modal-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(9, 7, 6, 0.72);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.cashapp-modal {
  position: relative;
  width: min(100%, 540px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(26px, 5vw, 42px);
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(33, 28, 24, 0.98), rgba(18, 15, 13, 0.98));
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.cashapp-modal h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.cashapp-modal p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.72);
}

.lightbox-modal {
  position: relative;
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 12px;
  padding: 14px;
  color: var(--paper);
  background: rgba(18, 15, 13, 0.96);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-modal img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-modal p {
  margin: 0;
  padding: 0 4px 4px;
  color: rgba(255, 253, 248, 0.78);
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
}

.modal-close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: var(--paper);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--ink);
  background: #00d64f;
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 900;
}

.zelle-icon {
  color: var(--paper);
  background: #6d31d4;
}

.cashapp-tag {
  display: grid;
  gap: 2px;
  margin: 22px 0;
  padding: 18px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
}

.cashapp-tag small {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cashapp-tag strong {
  font-size: 2rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.modal-actions .button {
  flex: 1 1 180px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--coral);
}

.button.ghost {
  color: var(--paper);
  border-color: rgba(255, 253, 248, 0.36);
}

.button.dark {
  color: var(--paper);
  background: var(--ink);
}

.button.light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.hero-stats span {
  min-height: 84px;
  padding: 16px;
  color: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
}

.hero-stats strong {
  display: block;
  color: var(--paper);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7% 6% auto auto;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 50%;
}

.hero-main-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 88%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-float-img {
  position: absolute;
  width: 34%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 8px solid rgba(251, 247, 239, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero-float-img.top {
  left: 4%;
  top: 12%;
}

.hero-float-img.bottom {
  left: 18%;
  bottom: 3%;
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 44px;
  align-items: end;
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
  background: var(--paper);
}

.intro-band h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.intro-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.video-strip {
  position: relative;
  height: clamp(320px, 52vw, 620px);
  overflow: hidden;
  background: var(--ink);
}

.video-strip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.video-copy {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  width: min(430px, calc(100% - 48px));
  padding: 22px;
  color: var(--paper);
  background: rgba(21, 18, 15, 0.74);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.video-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-copy strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.02;
}

.section {
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.services {
  background: #f4eadc;
}

.service-carousel-wrap {
  position: relative;
}

.service-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 52px 14px;
  scrollbar-width: none;
}

.service-carousel::-webkit-scrollbar {
  display: none;
}

.service-slide {
  flex: 0 0 min(360px, 78vw);
  min-height: 500px;
  cursor: zoom-in;
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: rgba(21, 18, 15, 0.86);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 50%;
  box-shadow: 0 14px 38px rgba(21, 18, 15, 0.24);
  font-size: 1.5rem;
  font-weight: 900;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-arrow:hover {
  background: var(--coral);
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.service-slide:focus-visible,
.masonry figure:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.service-feature {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.service-feature img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.service-feature div,
.service-card {
  overflow: hidden;
}

.service-feature span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-feature p,
.service-card p {
  color: var(--muted);
}

.service-feature p {
  color: rgba(255, 253, 248, 0.72);
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.68);
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-card div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px 24px;
}

.gallery {
  background: var(--ink);
  color: var(--paper);
}

.gallery-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 14px;
}

.masonry figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--charcoal);
  cursor: zoom-in;
}

.masonry figure.tall {
  grid-row: span 2;
}

.masonry figure.wide {
  grid-column: span 2;
}

.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.masonry figure:hover img {
  transform: scale(1.05);
}

.masonry figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(21, 18, 15, 0.72);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.why {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-grid div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8, #f7efe5);
}

.why-grid strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.52rem;
  line-height: 1.05;
}

.why-grid span {
  color: var(--muted);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  background:
    linear-gradient(100deg, rgba(21, 18, 15, 0.96), rgba(21, 18, 15, 0.84)),
    url("Art/img5.jpeg") center / cover;
}

.booking-panel,
.booking-form {
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  background: rgba(21, 18, 15, 0.68);
  backdrop-filter: blur(18px);
}

.booking-panel {
  max-width: 920px;
  width: 100%;
  justify-self: center;
  padding: clamp(28px, 5vw, 54px);
}

.booking-panel p {
  color: rgba(255, 253, 248, 0.72);
}

.booking-form {
  max-width: 920px;
  width: 100%;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
}

.booking-form.is-locked {
  display: none;
}

.booking-note,
.form-message {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.74);
  font-weight: 800;
}

.form-message {
  padding: 14px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
}

.form-message.is-error {
  color: #ffd9cb;
  border-color: rgba(255, 147, 87, 0.55);
}

.form-message.is-success {
  color: #dfffe8;
  border-color: rgba(0, 214, 79, 0.45);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--paper);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  outline: none;
}

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

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
}

.booking-form option {
  color: var(--ink);
}

.full {
  grid-column: 1 / -1;
}

.reviews {
  background:
    linear-gradient(180deg, #f4eadc, #fff8ec);
}

.reviews-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.review-cta {
  flex: 0 0 auto;
}

.reviews-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
}

.review-feature {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(33, 28, 24, 0.98), rgba(18, 15, 13, 0.96)),
    url("Art/Logo.jpeg") center / cover;
  border-radius: 8px;
  overflow: hidden;
}

.review-feature p {
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.02rem;
}

.review-feature .text-link {
  align-self: flex-start;
  color: var(--paper);
}

.review-score strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.8rem;
  line-height: 0.9;
}

.review-score span,
.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.review-score span {
  display: block;
  margin-top: 12px;
  font-size: 1.45rem;
}

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

blockquote {
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(33, 28, 24, 0.08);
}

.stars {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 900;
}

blockquote p {
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 700;
}

cite {
  display: block;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

cite span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  padding: 104px max(24px, calc((100vw - 1180px) / 2)) 92px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(33, 28, 24, 0.98), rgba(18, 15, 13, 0.98)),
    url("Art/Affiche.jpeg") right center / cover;
}

.contact::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199, 149, 73, 0.24);
  border-radius: 50%;
}

.contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 147, 87, 0.8), transparent);
}

.contact-copy,
.contact-links {
  position: relative;
  z-index: 1;
}

.contact h2 {
  margin-bottom: 22px;
}

.contact p {
  color: rgba(255, 253, 248, 0.72);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.contact-links a {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 147, 87, 0.7);
  background: rgba(255, 253, 248, 0.11);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.contact-links a span:last-child {
  min-width: 0;
}

.contact-links small {
  display: block;
  margin-bottom: 2px;
  color: var(--coral);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.icon-badge {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(255, 147, 87, 0.2);
}

.icon-badge svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge svg path:first-child,
.icon-badge svg rect,
.icon-badge svg circle {
  vector-effect: non-scaling-stroke;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  padding: 38px max(24px, calc((100vw - 1180px) / 2)) 24px;
  color: rgba(255, 253, 248, 0.7);
  background:
    linear-gradient(180deg, #120f0d, #0b0908);
  border-top: 1px solid rgba(255, 253, 248, 0.08);
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: var(--paper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.footer-brand small {
  color: var(--coral);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-main p {
  max-width: 420px;
  margin: 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 147, 87, 0.58);
  background: rgba(255, 147, 87, 0.12);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.08);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-flex;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    padding: 14px;
    background: rgba(21, 18, 15, 0.96);
    border: 1px solid rgba(255, 253, 248, 0.14);
    border-radius: 8px;
  }

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

  .hero-media {
    min-height: 540px;
  }

  .intro-band,
  .booking,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .review-row,
  .reviews-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 10px;
    padding: 8px 10px;
  }

  .brand {
    max-width: 100%;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    max-width: 180px;
    overflow: hidden;
    font-size: 1.05rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav.is-open {
    top: calc(100% + 8px);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

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

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-stats,
  .why-grid,
  .review-row,
  .reviews-shell,
  .payment-options,
  .booking-form,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-main-img {
    width: 78%;
    height: 88%;
  }

  .hero-float-img {
    width: 38%;
    border-width: 5px;
  }

  .intro-band,
  .section,
  .booking,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .gallery-heading {
    display: block;
  }

  .reviews-heading {
    display: block;
  }

  .review-cta {
    margin-top: 12px;
  }

  .masonry {
    grid-auto-rows: 210px;
  }

  .masonry figure.wide {
    grid-column: span 1;
  }

  .service-feature img {
    height: 300px;
  }

  .service-card img {
    height: 280px;
  }

  .service-carousel {
    padding-inline: 42px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .modal-backdrop {
    align-items: start;
    padding: 12px;
  }

  .cashapp-modal,
  .lightbox-modal {
    max-height: calc(100vh - 24px);
  }

  footer {
    display: grid;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}
