:root {
  --header-height: 88px;
  --green: #08a51f;
  --green-dark: #067d19;
  --orange: #ff6a00;
  --cream: #fff9ef;
  --cream-dark: #ffe9c9;
  --text: #241404;
  --muted: #665748;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(36, 20, 4, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-height);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(36, 20, 4, 0.08);
  box-shadow: 0 8px 24px rgba(36, 20, 4, 0.08);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  flex: 1 1 auto;
}

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

.brand-logo {
  display: block;
  width: 58px;
  height: auto;
}

.brand-text {
  min-width: 0;
  line-height: 1;
}

.brand-title {
  display: block;
  color: var(--text);
  font-size: clamp(1.2rem, 5vw, 1.45rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  white-space: normal;
  line-height: 1.02;
}

 .desktop-nav,
.header-call {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid rgba(36, 20, 4, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-toggle-icon {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: top 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.menu-toggle-icon::before { top: -6px; }
.menu-toggle-icon::after { top: 6px; }

.menu-toggle[aria-expanded="true"] .menu-toggle-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after { top: 0; transform: rotate(-45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-label { font-size: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-label::after { content: "Close"; font-size: 0.9rem; }

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 12px;
  left: 12px;
  z-index: 999;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(36, 20, 4, 0.1);
  border-radius: 0 0 22px 22px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.mobile-nav[hidden] { display: none !important; }

.mobile-nav a,
.desktop-nav a {
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
}

.mobile-nav a:hover { background: var(--cream); }

body.menu-open { overflow: hidden; }

body.menu-open::before {
  content: "";
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 998;
  background: rgba(36, 20, 4, 0.18);
}

.btn,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.header-call {
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  padding: 30px 18px 44px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.18), transparent 36%),
    radial-gradient(circle at bottom left, rgba(8, 165, 31, 0.14), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.hero-inner {
  display: grid;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.hero-content { max-width: 720px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.22rem, 10.8vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 7vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 { margin-bottom: 10px; font-size: 1.25rem; line-height: 1.15; }

.hero-text {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.02rem;
}


section[id],
#contact,
#faq,
#areas,
#setup,
#packages,
#events,
#quote-details,
#booking-fit {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

@media (min-width: 680px) {
  .hero-text { font-size: 1.08rem; }
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.btn { padding: 14px 20px; text-align: center; }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 12px 30px rgba(8, 165, 31, 0.22); }
.btn-secondary { background: var(--white); color: var(--text); border: 2px solid rgba(36, 20, 4, 0.12); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(36, 20, 4, 0.1);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(36, 20, 4, 0.08);
}

.hero-media { min-width: 0; }

.hero-photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 230px;
  border: 3px dashed rgba(36, 20, 4, 0.18);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(8, 165, 31, 0.12)), #ffffff;
  box-shadow: var(--shadow);
}

.hero-photo-placeholder span,
.placeholder-image span,
.gallery-placeholder span { color: var(--muted); font-weight: 900; }

.hero-media img {
  display: block;
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.section { padding: 56px 20px; }
.container { max-width: 1120px; margin: 0 auto; }

.section-heading { max-width: 780px; margin-bottom: 26px; }
.section-heading p:last-child,
.intro-section p,
.section > .container > p { color: var(--muted); font-size: 1.03rem; }
.intro-section p, .section > .container > p { max-width: 760px; }

.trust-section,
.packages-section,
.contact-section { background: #ffffff; }

.trust-grid,
.card-grid,
.spec-grid,
.package-grid,
.gallery-grid,
.area-layout,
.faq-list { display: grid; gap: 16px; }

.trust-card,
.card,
.spec,
details,
.area-card {
  background: var(--white);
  border: 1px solid rgba(36, 20, 4, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card { padding: 20px; background: var(--cream); }
.trust-card strong, .trust-card span { display: block; }
.trust-card strong { margin-bottom: 6px; font-size: 1.05rem; }
.trust-card span, .card p, .package-content p, .area-card p, details p, .form-note { color: var(--muted); }

.card { padding: 22px; }
.card p { margin-bottom: 0; }

.package-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid rgba(36, 20, 4, 0.08);
  box-shadow: var(--shadow);
}

.package-image { min-height: 220px; }

.placeholder-image {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.14), rgba(8, 165, 31, 0.12)), #ffffff;
  border-bottom: 1px solid rgba(36, 20, 4, 0.08);
}

.package-content { padding: 22px; }
.package-content p { margin-bottom: 0; }

.gallery-item { margin: 0; }

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 210px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(8, 165, 31, 0.12)), #ffffff;
  border: 1px solid rgba(36, 20, 4, 0.08);
  box-shadow: var(--shadow);
}

.gallery-item figcaption { margin-top: 10px; color: var(--muted); font-size: 0.92rem; font-weight: 700; }

.highlight-section { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.spec { padding: 20px; }
.spec span, .spec strong { display: block; }
.spec span { margin-bottom: 6px; color: var(--muted); font-size: 0.9rem; }
.spec strong { font-size: 1.1rem; }

.area-card { padding: 22px; }
.area-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 800;
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}


.quote-prep-section { background: #ffffff; }
.quote-prep-layout { display: grid; gap: 22px; }
.quote-check-grid { display: grid; gap: 14px; }
.quote-check-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(36, 20, 4, 0.08);
  box-shadow: var(--shadow);
}
.quote-check-card strong,
.quote-check-card span { display: block; }
.quote-check-card strong { margin-bottom: 6px; font-size: 1.04rem; }
.quote-check-card span { color: var(--muted); }
.footer-note { color: rgba(255,255,255,0.82); }

.faq-section { background: var(--cream); }
details { padding: 18px; }
summary { cursor: pointer; font-weight: 900; }
details p { margin: 12px 0 0; }

.contact-layout { display: grid; gap: 28px; align-items: start; }

.quote-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid rgba(36, 20, 4, 0.1);
  box-shadow: var(--shadow);
}

.quote-form label { display: grid; gap: 6px; color: var(--text); font-weight: 900; }

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 20, 4, 0.16);
  border-radius: 16px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.quote-form input:focus,
.quote-form textarea:focus { outline: 3px solid rgba(8, 165, 31, 0.18); border-color: var(--green); }
.quote-form button { border: 0; cursor: pointer; }
.form-note { margin: 0; font-size: 0.88rem; }
.form-status {
  display: none;
  margin: 2px 0 0;
  font-weight: 900;
  line-height: 1.35;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--text);
}

.form-status.is-error {
  color: #b42318;
}

.quote-form button[disabled] {
  cursor: wait;
  opacity: 0.76;
}

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

.site-footer { padding: 36px 20px 86px; background: var(--text); color: var(--white); text-align: center; }
.site-footer p { margin-bottom: 8px; }
.site-footer a { color: var(--white); font-weight: 800; }

.sticky-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 200;
  padding: 14px 18px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(8, 165, 31, 0.3);
}

.btn,
.header-call,
.sticky-call,
.menu-toggle,
.mobile-nav a,
.desktop-nav a { transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }

.btn:hover,
.header-call:hover,
.sticky-call:hover,
.menu-toggle:hover { transform: translateY(-1px); }
.btn-primary:hover,
.header-call:hover,
.sticky-call:hover { background: var(--green-dark); }

.btn:focus-visible,
.header-call:focus-visible,
.sticky-call:focus-visible,
.menu-toggle:focus-visible,
.mobile-nav a:focus-visible,
.desktop-nav a:focus-visible,
summary:focus-visible,
.quote-form input:focus-visible,
.quote-form textarea:focus-visible { outline: 3px solid rgba(255, 106, 0, 0.35); outline-offset: 3px; }


section[id],
#contact,
#faq,
#areas,
#setup,
#packages,
#events,
#quote-details,
#booking-fit {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

@media (min-width: 680px) {
  .hero-actions,
  .contact-actions { flex-direction: row; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-call { right: 24px; left: auto; bottom: 24px; min-width: 180px; }
}

@media (min-width: 760px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .quote-check-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  :root { --header-height: 102px; }
  .site-header { padding: 12px 32px; }
  .brand { gap: 12px; flex: 0 1 auto; }
  .brand-logo { width: 78px; }
  .brand-title { font-size: 1.55rem; }
  .hero { padding: 76px 40px 86px; }
  .hero-inner { grid-template-columns: 1.02fr 0.98fr; }
  .hero-photo-placeholder { min-height: 440px; }
  .section { padding: 76px 40px; }
  .spec-grid { grid-template-columns: repeat(4, 1fr); }
  .package-grid, .area-layout { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 0.85fr 1.15fr; }
  .quote-form { padding: 26px; }
}

@media (min-width: 980px) {
  .menu-toggle,
  .mobile-nav { display: none !important; }

  body.menu-open { overflow: auto; }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 0 1 auto;
  }

  .desktop-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 4px;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .desktop-nav a:hover { color: var(--green-dark); }

  .header-call { display: inline-flex; }
}

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

@media (max-width: 430px) {
  :root { --header-height: 74px; }
  .site-header { gap: 8px; padding: 8px 10px; }
  .brand { gap: 8px; }
  .brand-logo { width: 54px; }
  .brand-title { font-size: clamp(1.12rem, 5.4vw, 1.3rem); }
  .menu-toggle { min-height: 40px; padding: 8px 10px; font-size: 0.88rem; }
  .hero { padding-top: 32px; }
  h1 { font-size: clamp(2rem, 12vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 10vw, 2.45rem); }
  .card,
  .spec,
  details,
  .trust-card,
  .area-card,
  .package-card { border-radius: 20px; }
}


/* v11 real hero + live-safe structure */
.hero-media picture {
  display: block;
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.package-card-text-only {
  display: flex;
  min-height: 100%;
}

.package-card-text-only .package-content {
  padding: 24px;
}

.package-card-text-only h3 {
  color: var(--text);
}

@media (max-width: 899px) {
  .hero-media img {
    max-height: 360px;
  }
}


/* v14 conversion polish */
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}
.text-link::after {
  content: "→";
  margin-left: 6px;
}
.text-link:hover { text-decoration: underline; }

.booking-fit-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.booking-fit-layout { display: grid; gap: 22px; }
.booking-fit-grid { display: grid; gap: 16px; }

.booking-fit-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(36, 20, 4, 0.08);
  box-shadow: var(--shadow);
}

.booking-fit-card-accent {
  background: var(--cream-dark);
}

.booking-fit-card h3 { margin-bottom: 12px; }
.booking-fit-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-weight: 700;
}
.booking-fit-card li + li { margin-top: 8px; }

@media (min-width: 760px) {
  .booking-fit-grid { grid-template-columns: repeat(2, 1fr); }
}


/* v15 SEO/footer polish */
.inline-link,
.text-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero-figure {
  margin: 0;
}

.hero-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-brand-block p {
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin: 22px 0;
}

.footer-nav a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.footer-links {
  max-width: 760px;
  margin-inline: auto;
}

.footer-small {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
}

.footer-nap {
  margin: 14px auto;
  max-width: 720px;
}

.footer-nap p {
  margin-bottom: 6px;
}

.footer-nap a {
  color: var(--white);
  font-weight: 800;
}


/* v25 real photos + video section */
.media-section {
  background: #ffffff;
}

.photo-grid {
  display: grid;
  gap: 16px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid rgba(36, 20, 4, 0.08);
  box-shadow: var(--shadow);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.video-card {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 30px;
  background: var(--cream);
  border: 1px solid rgba(36, 20, 4, 0.08);
  box-shadow: var(--shadow);
}

.video-copy h3 {
  margin-bottom: 8px;
}

.video-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

@media (min-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .video-card {
    grid-template-columns: 0.62fr 1.38fr;
    align-items: center;
    padding: 24px;
  }
}
