:root {
  --pine: #2c6b4e;
  --pine-dark: #070604;
  --sea: #d9ad54;
  --sea-soft: #22190e;
  --sun: #d9ad54;
  --paper: #0d0a06;
  --sand: #1d150b;
  --bark: #ad7a35;
  --ink: #fff4d6;
  --muted: #cdbb91;
  --white: #fff4d6;
  --line: rgba(217, 173, 84, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --display: Georgia, "Times New Roman", serif;
  --body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 173, 84, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 24%, rgba(44, 107, 78, 0.18), transparent 26rem),
    linear-gradient(180deg, #060503 0%, #0f0b06 42%, #161007 100%);
  font-family: var(--body);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-180%);
  background: var(--sun);
  color: #070604;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(8, 6, 4, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.2rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.16);
}

.site-nav a:hover {
  color: #ffd97a;
}

.site-header.is-scrolled .nav-cta,
.site-header.nav-active .nav-cta {
  background: var(--sun);
  color: #070604;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 24%, rgba(217, 173, 84, 0.34), transparent 25rem),
    linear-gradient(90deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.66) 48%, rgba(5, 4, 3, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.2), rgba(5, 4, 3, 0.84));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 4rem;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #ffd97a;
}

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

h1,
h2 {
  font-family: var(--display);
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 700;
}

h2 {
  max-width: 780px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
  font-weight: 700;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2.8vw, 2.1rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-2px);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.34) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  background: linear-gradient(135deg, #ffdb7d, #d9ad54 48%, #a86d24);
  color: #090705;
  box-shadow: 0 18px 36px rgba(217, 173, 84, 0.22);
}

.button.ghost {
  border-color: rgba(255, 217, 122, 0.72);
  color: var(--ink);
  background: rgba(255, 217, 122, 0.08);
}

.button.secondary {
  background: #1b140b;
  color: #ffd97a;
  border-color: rgba(217, 173, 84, 0.38);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(800px, 100%);
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-height: 8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 217, 122, 0.26);
  border-radius: var(--radius);
  background: rgba(13, 10, 6, 0.58);
  backdrop-filter: blur(10px);
}

.hero-facts strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--display);
  font-size: 2rem;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.quick-strip {
  padding: 1rem 0;
  background: linear-gradient(90deg, #080604, #1d150b);
  color: var(--white);
  border-block: 1px solid var(--line);
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.strip-inner p {
  margin: 0;
  font-weight: 700;
}

.text-link {
  color: #ffd97a;
  font-weight: 900;
  white-space: nowrap;
}

.section-heading {
  margin-bottom: 2rem;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.split-heading p:not(.eyebrow) {
  max-width: 340px;
  color: var(--muted);
}

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

.benefit-card,
.equipment-panel,
.story-card,
.contact-card,
.map-card,
.booking-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(31, 23, 12, 0.92), rgba(12, 9, 6, 0.94)),
    rgba(21, 16, 10, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.benefit-card {
  padding: 1.2rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 217, 122, 0.55);
  box-shadow: 0 24px 60px rgba(217, 173, 84, 0.15);
}

.benefit-card span {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(217, 173, 84, 0.12);
  color: #ffd97a;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
}

.benefit-card p,
.equipment-panel p,
.story-card p,
.booking-copy p,
.location-section p {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.98), rgba(31, 23, 12, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(217, 173, 84, 0.2), transparent 32rem);
}

.equipment-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(242, 184, 75, 0.22);
}

.story-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(120deg, rgba(24, 18, 10, 0.95), rgba(9, 7, 4, 0.96)),
    linear-gradient(90deg, transparent 0 49%, rgba(217, 173, 84, 0.2) 49% 51%, transparent 51%);
}

.gallery-section {
  background: #090705;
}

.gallery-filters,
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
}

.gallery-filters button,
.price-tabs button {
  border: 1px solid rgba(217, 173, 84, 0.36);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  background: rgba(255, 217, 122, 0.06);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-filters button:hover,
.price-tabs button:hover,
.gallery-filters button.is-active,
.price-tabs button.is-active {
  transform: translateY(-2px);
  background: var(--sun);
  color: #090705;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #15100a;
  cursor: zoom-in;
  border: 1px solid rgba(217, 173, 84, 0.18);
  transition: opacity 180ms ease, transform 220ms ease, border-color 180ms ease;
}

.gallery-item:hover {
  border-color: rgba(255, 217, 122, 0.7);
  transform: translateY(-4px);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: #090705;
  background: rgba(255, 217, 122, 0.9);
  font-weight: 900;
  text-align: left;
}

.gallery-item.is-hidden {
  display: none;
}

.price-section {
  background:
    radial-gradient(circle at 75% 10%, rgba(217, 173, 84, 0.16), transparent 24rem),
    #0d0a06;
}

.price-advisor {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-advisor-copy,
.market-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.4rem);
  background: linear-gradient(145deg, rgba(31, 23, 12, 0.92), rgba(11, 8, 5, 0.96));
  box-shadow: var(--shadow);
}

.price-advisor-copy h3 {
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.price-live {
  margin: 0;
  border-left: 4px solid var(--sun);
  padding: 0.9rem 1rem;
  background: rgba(217, 173, 84, 0.1);
  color: #ffe7a8;
  font-weight: 900;
}

.market-card strong,
.market-card span {
  display: block;
}

.market-card strong {
  color: #ffd97a;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.05;
}

.market-card span {
  margin: 0.35rem 0 1rem;
  color: var(--muted);
}

.mini-meter {
  position: relative;
  height: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-meter i {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7b4a17, #d9ad54, #ffdb7d);
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #120e08;
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

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

.price-head {
  background: linear-gradient(90deg, #130e07, #3a2a12);
  color: #ffd97a;
  font-weight: 900;
}

.price-row.featured {
  background: rgba(217, 173, 84, 0.1);
}

.price-row.is-highlighted {
  background: rgba(217, 173, 84, 0.18);
  box-shadow: inset 4px 0 0 #ffd97a;
}

.price-row strong {
  color: #ffd97a;
  font-size: 1.2rem;
}

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

.note-grid p {
  margin: 0;
  border-left: 4px solid var(--sun);
  padding: 1rem;
  background: rgba(255, 217, 122, 0.08);
  color: var(--muted);
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(9, 7, 4, 0.94), rgba(217, 173, 84, 0.74)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(255, 255, 255, 0.15) 16px 17px);
}

.map-card p {
  margin: 0;
  padding: 1rem;
  color: var(--muted);
}

.rules-section {
  background:
    linear-gradient(180deg, rgba(12, 9, 5, 0.95), rgba(8, 6, 4, 0.98)),
    radial-gradient(circle at 10% 20%, rgba(217, 173, 84, 0.16), transparent 28rem);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.rules-grid article {
  min-height: 8.5rem;
  border-radius: var(--radius);
  padding: 1rem;
  background: linear-gradient(145deg, rgba(31, 23, 12, 0.86), rgba(12, 9, 6, 0.94));
  border: 1px solid var(--line);
}

.rules-grid strong,
.rules-grid span {
  display: block;
}

.rules-grid span {
  margin-top: 0.35rem;
  color: var(--muted);
}

.booking-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(217, 173, 84, 0.18), transparent 24rem),
    #070604;
  color: var(--white);
}

.booking-section .eyebrow {
  color: #ffd97a;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  padding: 1.2rem;
  background: rgba(217, 173, 84, 0.08);
  border-color: rgba(217, 173, 84, 0.28);
}

.contact-card p {
  margin-bottom: 0.35rem;
}

.booking-form {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(145deg, rgba(28, 21, 12, 0.98), rgba(12, 9, 6, 0.98));
  color: var(--ink);
}

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

label {
  display: grid;
  gap: 0.35rem;
  color: #ffe7a8;
  font-weight: 900;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: #0c0905;
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #b53d2f;
  box-shadow: 0 0 0 3px rgba(181, 61, 47, 0.14);
}

.form-message {
  min-height: 1.5rem;
  margin: 1rem 0;
  color: #ffd97a;
  font-weight: 800;
}

.form-message.is-error {
  color: #b53d2f;
}

.form-button {
  width: 100%;
}

.faq-section {
  background: #090705;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 2.5rem 0 5rem;
  background: #050403;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-grid strong {
  color: #fff4d6;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
}

.mobile-booking {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 19;
  display: none;
  border-radius: 999px;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, #ffdb7d, #d9ad54 48%, #a86d24);
  color: #090705;
  box-shadow: var(--shadow);
  text-align: center;
  text-decoration: none;
  font-weight: 950;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(5, 4, 3, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 1rem 0 0;
  color: var(--white);
  font-weight: 900;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 217, 122, 0.48);
  border-radius: 50%;
  background: rgba(217, 173, 84, 0.12);
  color: #ffd97a;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

@media (max-width: 980px) {
  .benefit-grid,
  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .booking-layout,
  .story-card,
  .price-advisor {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
  }

  .nav-toggle span {
    grid-column: 1;
  }

  .nav-toggle {
    grid-template-rows: repeat(3, auto);
  }

  .site-nav {
    position: fixed;
    top: 4.4rem;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.7rem;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.9rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-bottom: 6.5rem;
  }

  .hero-facts,
  .note-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    min-height: auto;
  }

  .strip-inner,
  .split-heading {
    display: block;
  }

  .strip-inner .text-link {
    display: inline-block;
    margin-top: 0.6rem;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .price-head {
    display: none;
  }

  .mobile-booking {
    display: block;
  }
}

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

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

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }
}
