:root {
  --color-bg: #0a0a0a;
  --color-teal: #2dd6d6;
  --color-teal-glow: rgba(45, 214, 214, 0.55);
  --color-copper: #b5793f;
  --color-text: #f5f5f0;
  --color-text-muted: #a8a8a0;
  --font-script: "Dancing Script", cursive;
  --font-tagline: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
  /* shared panel treatment so cards, fill row and booking panel match exactly */
  --panel-border: 1px solid rgba(45, 214, 214, 0.28);
  --panel-bg: linear-gradient(160deg, rgba(45, 214, 214, 0.05), rgba(45, 214, 214, 0));
  --panel-radius: 10px;
}

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

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.star-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-teal);
  margin: 1.1rem 0;
}

.star-divider::before,
.star-divider::after {
  content: "";
  width: 64px;
  height: 1px;
  /* fade the rule out toward the star for a crisp, centered ornament */
  background: linear-gradient(to right, transparent, var(--color-teal));
  opacity: 0.6;
}

.star-divider::after {
  background: linear-gradient(to left, transparent, var(--color-teal));
}

.star-divider__mark {
  font-size: 0.7rem;
  line-height: 1;
  color: var(--color-teal);
  text-shadow: 0 0 8px var(--color-teal-glow);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9rem 2rem;
  border: 1px solid var(--color-teal);
  border-radius: 4px;
  color: var(--color-teal);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: transparent;
  box-shadow: 0 0 12px rgba(45, 214, 214, 0.25);
  transition: background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background: var(--color-teal);
  color: var(--color-bg);
  box-shadow: 0 0 22px var(--color-teal-glow);
  transform: translateY(-2px);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
}

.btn-cta__star {
  font-size: 0.7em;
  opacity: 0.8;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
}

/* ambient western sparkle field scattered behind the hero content */
.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.starfield__star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: var(--s);
  line-height: 1;
  color: var(--color-teal);
  opacity: 0.5;
  text-shadow: 0 0 8px var(--color-teal-glow);
  animation: twinkle 3.6s ease-in-out var(--d, 0s) infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.2; }
  to { opacity: 0.85; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.hero__copy {
  max-width: 460px;
}

.hero__subtitle-label {
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  color: var(--color-teal);
  text-transform: uppercase;
  margin-left: 0.42em; /* optical: balance the trailing letter-spacing */
}

.hero__crown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.hero__crown-rule {
  width: 42px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-teal));
  opacity: 0.6;
}

.hero__crown-rule:last-child {
  background: linear-gradient(to left, transparent, var(--color-teal));
}

.hero__crown-star {
  filter: drop-shadow(0 0 8px var(--color-teal-glow));
}

.hero__wordmark {
  font-family: var(--font-script);
  /* scales with viewport so the wide script never overflows small screens */
  font-size: clamp(3rem, 13vw, 4.75rem);
  color: var(--color-teal);
  text-shadow: 0 0 22px var(--color-teal-glow), 0 0 6px var(--color-teal-glow);
  line-height: 0.9;
  margin: 0.1rem 0 0.35rem;
}

.hero__eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--color-teal);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero__tagline {
  font-family: var(--font-tagline);
  font-style: italic;
  font-size: clamp(1.5rem, 6vw, 1.9rem);
  color: var(--color-copper);
}

.hero__body {
  color: var(--color-text-muted);
  margin: 1.1rem 0 1.75rem;
}

.hero__image img {
  width: 100%;
  height: auto;
  max-width: 330px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(45, 214, 214, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0 4rem;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }

  .hero__copy {
    flex: 0 1 460px;
  }

  .hero__image {
    flex: 0 1 440px;
  }

  .hero__image img {
    max-width: 440px;
  }
}

.section-heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(1.05rem, 4.5vw, 1.3rem);
  color: var(--color-teal);
  text-shadow: 0 0 16px rgba(45, 214, 214, 0.35);
  margin-bottom: 2.25rem;
  overflow-wrap: break-word;
}

.section-heading::before,
.section-heading::after {
  content: "✦";
  display: inline-block;
  margin: 0 0.7em;
  font-size: 0.6em;
  letter-spacing: 0;
  opacity: 0.6;
  vertical-align: middle;
  text-shadow: 0 0 8px var(--color-teal-glow);
}

.pricing {
  padding: 3.5rem 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: var(--panel-border);
  border-radius: var(--panel-radius);
  background: var(--panel-bg);
  padding: 2.25rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(45, 214, 214, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card__icon {
  color: var(--color-teal);
  margin: 0 auto 0.9rem;
  filter: drop-shadow(0 0 6px var(--color-teal-glow));
}

.pricing-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.pricing-card p {
  color: var(--color-text-muted);
}

/* the description absorbs the height difference so price + button
   line up across all three cards regardless of copy length */
.pricing-card p:not(.pricing-card__price) {
  flex-grow: 1;
  margin-bottom: 1.1rem;
}

.pricing-card__price {
  font-size: 1.65rem;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.pricing-card .btn-cta {
  min-width: 150px;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fill {
  padding: 1rem 0 3.5rem;
}

.fill-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  border: var(--panel-border);
  border-radius: var(--panel-radius);
  background: var(--panel-bg);
  padding: 1.75rem;
}

.fill-row__icon {
  color: var(--color-teal);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--color-teal-glow));
}

.fill-row__text h3 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.fill-row__text p {
  color: var(--color-text-muted);
}

.fill-row__price {
  font-size: 1.65rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .fill-row {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  /* text takes the middle so icon sits left and price + button group right */
  .fill-row__text {
    flex-grow: 1;
  }

  .fill-row__price {
    min-width: 4ch;
    text-align: right;
  }

  .fill-row .btn-cta {
    min-width: 150px;
  }
}

.book {
  padding: 2rem 0 3.5rem;
}

.book__panel {
  text-align: center;
  border: var(--panel-border);
  border-radius: var(--panel-radius);
  background: var(--panel-bg);
  padding: 3rem 1.5rem;
}

.book__copy {
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.btn-cta--large {
  padding: 1.1rem 2.5rem;
  font-size: 0.95rem;
}

.features {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(45, 214, 214, 0.2);
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.feature__icon {
  color: var(--color-teal);
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 0 5px var(--color-teal-glow));
}

.feature h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer {
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(45, 214, 214, 0.2);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.site-footer__label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--color-teal);
  margin-bottom: 0.25rem;
}

.site-footer__wordmark {
  font-size: 2rem;
}

.site-footer__contact a {
  display: block;
  color: var(--color-text-muted);
  margin: 0.25rem 0;
}

.site-footer__bottom {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* respect users who prefer less motion: no reveal shift, no hover lift */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-cta,
  .pricing-card {
    transition: none;
  }

  .btn-cta:hover,
  .pricing-card:hover {
    transform: none;
  }

  .starfield__star {
    animation: none;
    opacity: 0.5;
  }
}
