:root {
  color-scheme: dark;
  --black: #040404;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --silver: #deded8;
  --muted: #a5a39a;
  --gold: #d6aa4f;
  --gold-strong: #f5d47b;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(214, 170, 79, 0.22), transparent 23rem),
    radial-gradient(circle at 82% 10%, rgba(222, 222, 216, 0.12), transparent 22rem),
    linear-gradient(145deg, #040404 0%, #101010 48%, #050505 100%);
  color: #faf6ec;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #fff7c9, var(--gold-strong));
  box-shadow: 0 0 18px rgba(245, 212, 123, 0.65);
}

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

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

.starfield,
.gold-lines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.starfield span {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  opacity: 0;
  transform: rotate(45deg) scale(0.4);
  animation: sparkle 8s ease-in-out infinite;
}

.starfield::before,
.starfield::after {
  content: "";
  position: absolute;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(245, 212, 123, 0.08);
  border-radius: 50%;
  filter: blur(0.2px);
  animation: galaxy-turn 28s linear infinite;
}

.starfield::before {
  top: 8%;
  right: -12rem;
}

.starfield::after {
  bottom: -15rem;
  left: -10rem;
  animation-direction: reverse;
}

.starfield span::before,
.starfield span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: linear-gradient(90deg, transparent, rgba(245, 212, 123, 0.95), transparent);
  transform: translate(-50%, -50%);
}

.starfield span::before {
  width: 1rem;
  height: 1px;
}

.starfield span::after {
  width: 1px;
  height: 1rem;
}

.starfield span:nth-child(1) { top: 16%; left: 19%; animation-delay: -1.1s; }
.starfield span:nth-child(2) { top: 22%; left: 72%; animation-delay: -5.4s; }
.starfield span:nth-child(3) { top: 38%; left: 88%; animation-delay: -2.8s; }
.starfield span:nth-child(4) { top: 54%; left: 12%; animation-delay: -6.6s; }
.starfield span:nth-child(5) { top: 63%; left: 69%; animation-delay: -3.5s; }
.starfield span:nth-child(6) { top: 78%; left: 31%; animation-delay: -7.2s; }
.starfield span:nth-child(7) { top: 84%; left: 83%; animation-delay: -4.2s; }
.starfield span:nth-child(8) { top: 10%; left: 47%; animation-delay: -8s; }
.starfield span:nth-child(9) { top: 44%; left: 42%; animation-delay: -0.6s; }
.starfield span:nth-child(10) { top: 70%; left: 7%; animation-delay: -5.9s; }

.gold-lines span {
  position: absolute;
  left: -28rem;
  width: 28rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 212, 123, 0.82), transparent);
  transform: rotate(-18deg);
  animation: line-drift 13s linear infinite;
}

.gold-lines span:nth-child(1) { top: 20%; }
.gold-lines span:nth-child(2) { top: 55%; animation-delay: -5s; opacity: 0.5; }
.gold-lines span:nth-child(3) { top: 82%; animation-delay: -9s; opacity: 0.36; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 4, 4, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(8rem, 16vw, 13rem);
  height: 3.8rem;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(245, 212, 123, 0.18));
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  color: var(--silver);
  font-size: 0.96rem;
}

nav a,
.contact-card a,
footer a {
  color: var(--gold-strong);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

nav a:hover,
.contact-card a:hover,
footer a:hover {
  color: #fff5c7;
  text-shadow: 0 0 18px rgba(245, 212, 123, 0.45);
}

.phone-pill,
.primary-action,
.secondary-action,
button {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 212, 123, 0.55);
  background: linear-gradient(135deg, #f7de96, #b98625);
  color: #070707;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(214, 170, 79, 0.28);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.phone-pill {
  min-width: 13.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  line-height: 1.05;
  transform-style: preserve-3d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 18%),
    linear-gradient(135deg, #f7de96, #b98625 58%, #6c470f);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -7px 18px rgba(79, 45, 0, 0.3),
    0 16px 38px rgba(214, 170, 79, 0.28);
}

.phone-pill span {
  color: rgba(7, 7, 7, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.phone-pill strong {
  font-size: 1.12rem;
  letter-spacing: 0.06rem;
}

.primary-action,
.secondary-action,
button {
  padding: 0 1.15rem;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.08);
  color: #faf6ec;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.phone-pill::after,
.primary-action::after,
button::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -30%;
  width: 3rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

.phone-pill:hover,
.primary-action:hover,
.secondary-action:hover,
button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 245, 196, 0.9);
  box-shadow: 0 22px 52px rgba(214, 170, 79, 0.35);
}

.phone-pill:hover {
  transform: translateY(-3px) rotateX(7deg) rotateY(-7deg);
}

.phone-pill:hover::after,
.primary-action:hover::after,
button:hover::after {
  animation: quick-flash 0.7s ease forwards;
}

.hero {
  min-height: calc(100vh - 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% -15% auto auto;
  width: min(48rem, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 212, 123, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 212, 123, 0.14), transparent 61%);
  animation: slow-pulse 6s ease-in-out infinite;
}

.hero-copy,
.logo-stage,
.booking-form,
.service-card,
.contact-card,
.hours-card,
.premium-strip {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9.5ch;
  margin-bottom: 1.25rem;
  background: linear-gradient(115deg, #fff 0%, #f4deb0 34%, #d6aa4f 58%, #fff 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.18rem;
}

.hero-copy p,
.section-heading p,
.premium-strip p {
  max-width: 41rem;
  color: var(--silver);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.logo-stage {
  display: grid;
  place-items: center;
  min-height: clamp(25rem, 44vw, 37rem);
  isolation: isolate;
  perspective: 1000px;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.28s ease;
}

.logo-stage img {
  width: min(42rem, 94%);
  filter:
    drop-shadow(0 38px 44px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 45px rgba(245, 212, 123, 0.22));
  transform-style: preserve-3d;
  animation: logo-3d 6.5s ease-in-out infinite;
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 8% 2%;
  z-index: -1;
  background: conic-gradient(from 120deg, transparent, rgba(245, 212, 123, 0.34), transparent, rgba(222, 222, 216, 0.2), transparent);
  filter: blur(32px);
  opacity: 0.55;
  animation: rotate-glow 16s linear infinite;
}

.logo-orbit {
  position: absolute;
  inset: 12% 6%;
  border: 1px solid rgba(245, 212, 123, 0.24);
  border-radius: 50%;
  transform: rotate(-8deg);
  animation: orbit-breathe 4.8s ease-in-out infinite;
}

.logo-orbit.second {
  inset: 18% 13%;
  border-color: rgba(222, 222, 216, 0.18);
  transform: rotate(11deg);
  animation: orbit-breathe-alt 5.8s ease-in-out infinite;
}

.price-badge {
  position: absolute;
  right: 3%;
  bottom: 9%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(245, 212, 123, 0.62);
  background: rgba(4, 4, 4, 0.78);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.price-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.price-badge strong {
  color: var(--gold-strong);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.service-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(245, 212, 123, 0.24);
  background: #060606;
}

.service-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 27s linear infinite;
}

.service-marquee span {
  padding: 1rem 1.5rem;
  color: var(--gold-strong);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.booking-section,
.services-section,
.contact-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214, 170, 79, 0.14), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.package-dropdown {
  grid-column: 1 / -1;
  border: 1px solid rgba(245, 212, 123, 0.35);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(4, 4, 4, 0.58)),
    radial-gradient(circle at 100% 0, rgba(245, 212, 123, 0.16), transparent 17rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 26px 70px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transform-style: preserve-3d;
}

.package-dropdown summary {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.package-dropdown summary::-webkit-details-marker {
  display: none;
}

.package-dropdown summary small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13rem;
  text-transform: uppercase;
}

.package-dropdown summary strong {
  color: #fff;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.summary-arrow {
  width: 0.82rem;
  height: 0.82rem;
  border-right: 2px solid var(--gold-strong);
  border-bottom: 2px solid var(--gold-strong);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.package-dropdown[open] .summary-arrow {
  transform: rotate(225deg);
}

.package-table {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.package-option {
  min-height: 4.9rem;
  display: flex;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--silver);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.package-option:last-child {
  border-bottom: 0;
}

.package-option:hover {
  transform: translateY(-2px) rotateX(4deg);
  background: rgba(255, 255, 255, 0.075);
}

.package-option:has(input:checked) {
  background:
    linear-gradient(90deg, rgba(214, 170, 79, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(4, 4, 4, 0.62);
  box-shadow: inset 3px 0 0 var(--gold-strong);
}

.package-option input {
  width: 1.05rem;
  height: 1.05rem;
  min-height: auto;
  padding: 0;
  accent-color: var(--gold-strong);
}

.package-option span {
  display: grid;
  gap: 0.18rem;
}

.package-option strong {
  color: #fff;
  font-size: 1rem;
}

.package-option small {
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 650;
  line-height: 1.45;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select {
  min-height: 3.3rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 4, 4, 0.62);
  color: #fff;
  padding: 0 0.9rem;
  font: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(245, 212, 123, 0.86);
  background: rgba(4, 4, 4, 0.82);
  box-shadow: 0 0 0 4px rgba(214, 170, 79, 0.13);
}

button {
  grid-column: 1 / -1;
  font: inherit;
}

.services-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-card,
.contact-card,
.hours-card,
.premium-strip {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card {
  min-height: 14.5rem;
  padding: 1.35rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  transform-style: preserve-3d;
}

.service-card::before,
.contact-card::before,
.hours-card::before,
.premium-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(245, 212, 123, 0.2), transparent 32%, transparent 72%, rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.service-card::after {
  animation: card-flash 6s ease-in-out infinite;
}

.service-card:nth-child(2)::after { animation-delay: 0.55s; }
.service-card:nth-child(3)::after { animation-delay: 1.1s; }
.service-card:nth-child(4)::after { animation-delay: 1.65s; }
.service-card:nth-child(5)::after { animation-delay: 2.2s; }
.service-card:nth-child(6)::after { animation-delay: 2.75s; }

.service-card:hover {
  transform: translateY(-7px) rotateX(4deg) rotateY(-3deg);
  border-color: rgba(245, 212, 123, 0.5);
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.62);
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 40;
  width: 3.2rem;
  height: 3.2rem;
  min-height: 3.2rem;
  padding: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.service-card:hover::before,
.contact-card:hover::before,
.hours-card:hover::before,
.premium-strip:hover::before {
  opacity: 1;
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(245, 212, 123, 0.44);
  background: radial-gradient(circle, rgba(245, 212, 123, 0.2), rgba(255, 255, 255, 0.04));
  color: var(--gold-strong);
  font-weight: 950;
  box-shadow: inset 0 0 18px rgba(245, 212, 123, 0.16), 0 0 24px rgba(245, 212, 123, 0.08);
  animation: number-glow 3.7s ease-in-out infinite;
}

.service-card p,
.contact-card,
.hours-card,
footer,
address {
  color: var(--silver);
  line-height: 1.6;
}

.premium-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 clamp(1rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.premium-strip h2 {
  margin-bottom: 0.35rem;
}

.premium-strip p {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card,
.hours-card {
  padding: clamp(1.3rem, 3vw, 2.2rem);
}

address {
  margin: 0 0 1rem;
  font-style: normal;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

dt {
  color: #fff;
  font-weight: 850;
}

dd {
  margin: 0;
  color: var(--silver);
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  background: #040404;
}

footer strong {
  display: block;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes sparkle {
  0%, 70%, 100% {
    opacity: 0;
    transform: rotate(45deg) scale(0.35);
  }
  77% {
    opacity: 0.8;
    transform: rotate(45deg) scale(1);
  }
  84% {
    opacity: 0.14;
    transform: rotate(45deg) scale(1.45);
  }
}

@keyframes line-drift {
  from { transform: translateX(0) rotate(-18deg); }
  to { transform: translateX(calc(100vw + 34rem)) rotate(-18deg); }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-0.7rem) scale(1.015); }
}

@keyframes logo-3d {
  0%, 100% { transform: rotateX(0deg) rotateY(-5deg) translateY(0) scale(1); }
  50% { transform: rotateX(5deg) rotateY(7deg) translateY(-0.8rem) scale(1.018); }
}

@keyframes rotate-glow {
  to { transform: rotate(360deg); }
}

@keyframes orbit-breathe {
  0%, 100% { transform: rotate(-8deg) scale(0.98); opacity: 0.42; }
  50% { transform: rotate(-5deg) scale(1.04); opacity: 0.78; }
}

@keyframes orbit-breathe-alt {
  0%, 100% { transform: rotate(11deg) scale(1.04); opacity: 0.28; }
  50% { transform: rotate(15deg) scale(0.98); opacity: 0.62; }
}

@keyframes galaxy-turn {
  to { transform: rotate(360deg); }
}

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

@keyframes quick-flash {
  0% { left: -30%; opacity: 0; }
  35% { opacity: 0.9; }
  100% { left: 120%; opacity: 0; }
}

@keyframes card-flash {
  0%, 62%, 100% { left: -30%; opacity: 0; }
  68% { opacity: 0.72; }
  78% { left: 120%; opacity: 0; }
}

@keyframes number-glow {
  0%, 100% {
    box-shadow: inset 0 0 18px rgba(245, 212, 123, 0.16), 0 0 20px rgba(245, 212, 123, 0.08);
  }
  50% {
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.16), 0 0 34px rgba(245, 212, 123, 0.24);
  }
}

@keyframes slow-pulse {
  0%, 100% { transform: scale(0.96); opacity: 0.45; }
  50% { transform: scale(1.05); opacity: 0.72; }
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .booking-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .phone-pill {
    width: max-content;
  }

  .hero {
    min-height: auto;
  }

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

  .premium-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .phone-pill,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .phone-pill {
    align-items: center;
  }

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

  .package-dropdown summary,
  .package-option {
    padding-inline: 0.9rem;
  }

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

  h1 {
    font-size: 3.4rem;
  }

  .logo-stage {
    min-height: 20rem;
  }
}
