:root {
  --bg: #fffaf3;
  --surface: #ffffff;
  --surface-warm: #fff2df;
  --ink: #1f2630;
  --muted: #64707d;
  --line: #eadfce;
  --accent: #ff6b35;
  --accent-dark: #c9461b;
  --mint: #b8eadf;
  --gold: #ffd166;
  --shadow: 0 18px 55px rgba(50, 38, 25, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  transition:
    background 220ms ease,
    color 220ms ease;
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid rgba(234, 223, 206, 0.8);
  backdrop-filter: blur(18px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.theme-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(54, 42, 28, 0.06);
}

.theme-option {
  min-height: 36px;
  padding: 0 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
}

.theme-option.is-active {
  color: #fff;
  background: var(--ink);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 11px;
  box-shadow: 6px 6px 0 var(--gold);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #394553;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav button {
  color: inherit;
  background: transparent;
  border: 0;
  cursor: default;
  font-weight: inherit;
}

.site-nav button {
  padding: 10px 0;
}

.site-nav button:hover {
  color: var(--accent-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.28);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  min-height: calc(100vh - 78px);
  padding: 54px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-lead,
.section-heading p,
.service-layout p,
.booking-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.benefit-chips span {
  padding: 10px 13px;
  color: #384553;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-main-image {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(32, 30, 25, 0.16);
  backdrop-filter: blur(16px);
}

.availability-card {
  right: 24px;
  bottom: 28px;
  width: min(280px, calc(100% - 48px));
  padding: 18px;
}

.availability-card p,
.stat-card span {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.card-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-card {
  top: 34px;
  left: -28px;
  display: grid;
  gap: 2px;
  padding: 18px 20px;
}

.stat-card strong {
  font-size: 1.8rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 680px;
}

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

.package-card,
.category-card,
.step-card,
.occasion-tile,
.booking-preview,
.faq-list details {
  background: var(--surface);
  border: 1px solid rgba(234, 223, 206, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(54, 42, 28, 0.06);
}

.package-card {
  overflow: hidden;
}

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

.package-card-featured {
  border-color: rgba(255, 107, 53, 0.42);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.14);
}

.card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-meta strong {
  color: var(--ink);
  text-transform: none;
  white-space: nowrap;
}

.package-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  color: var(--muted);
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
}

.package-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
}

.section-muted {
  background: #fff7ec;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-grid,
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 26px;
}

.rental-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid rgba(234, 223, 206, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 36px rgba(54, 42, 28, 0.06);
}

.rental-card img,
.rental-visual {
  width: 100%;
  height: 170px;
}

.rental-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.24), rgba(184, 234, 223, 0.42)),
    #f8efe2;
}

.rental-visual::before,
.rental-visual::after,
.rental-visual span,
.rental-visual span::before,
.rental-visual span::after {
  position: absolute;
  content: "";
}

.rental-visual-tent span {
  bottom: 34px;
  width: 72%;
  height: 62px;
  background: #fff;
  border: 4px solid var(--ink);
  border-top: 0;
}

.rental-visual-tent span::before {
  left: 50%;
  bottom: 62px;
  width: 74%;
  height: 78px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.rental-visual-tent span::after {
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 96px;
  background: var(--ink);
  transform: translateX(-50%);
}

.rental-visual-darts span {
  width: 128px;
  height: 128px;
  background:
    radial-gradient(circle, var(--accent) 0 12px, #fff 13px 26px, var(--ink) 27px 31px, #fff 32px 48px, var(--accent) 49px 64px);
  border: 6px solid var(--ink);
  border-radius: 50%;
}

.rental-visual-darts span::before {
  right: -34px;
  bottom: 10px;
  width: 54px;
  height: 54px;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.rental-visual-chairs span {
  bottom: 38px;
  left: 22%;
  width: 64px;
  height: 76px;
  border: 5px solid var(--ink);
  border-bottom: 12px solid var(--ink);
  border-radius: 10px 10px 4px 4px;
}

.rental-visual-chairs span::before {
  left: 86px;
  bottom: -12px;
  width: 64px;
  height: 76px;
  border: 5px solid var(--ink);
  border-bottom: 12px solid var(--ink);
  border-radius: 10px 10px 4px 4px;
}

.rental-visual-chairs span::after {
  left: 5px;
  bottom: -46px;
  width: 156px;
  height: 36px;
  background: linear-gradient(90deg, var(--accent) 0 18px, transparent 18px 66px, var(--accent) 66px 84px, transparent 84px 132px, var(--accent) 132px);
}

.rental-visual-table span {
  width: 168px;
  height: 24px;
  background: var(--ink);
  border-radius: 999px;
}

.rental-visual-table span::before,
.rental-visual-table span::after {
  top: 22px;
  width: 12px;
  height: 74px;
  background: var(--accent);
  border-radius: 999px;
}

.rental-visual-table span::before {
  left: 24px;
}

.rental-visual-table span::after {
  right: 24px;
}

.rental-visual-grill span {
  width: 128px;
  height: 78px;
  background: var(--ink);
  border-radius: 18px 18px 42px 42px;
}

.rental-visual-grill span::before {
  top: -38px;
  left: 16px;
  width: 96px;
  height: 46px;
  border: 5px solid var(--accent);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
}

.rental-visual-grill span::after {
  left: 22px;
  bottom: -52px;
  width: 84px;
  height: 48px;
  background: linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 38px, var(--ink) 38px 46px, transparent 46px 76px, var(--ink) 76px);
}

.rental-visual-bounce span {
  bottom: 34px;
  width: 164px;
  height: 86px;
  background: var(--accent);
  border: 5px solid var(--ink);
  border-radius: 28px 28px 16px 16px;
}

.rental-visual-bounce span::before,
.rental-visual-bounce span::after {
  top: -44px;
  width: 44px;
  height: 70px;
  background: #fff;
  border: 5px solid var(--ink);
  border-radius: 24px 24px 8px 8px;
}

.rental-visual-bounce span::before {
  left: 18px;
}

.rental-visual-bounce span::after {
  right: 18px;
}

.rental-visual-lights::before {
  top: 42px;
  left: 10%;
  width: 80%;
  height: 42px;
  border-top: 4px solid var(--ink);
  border-radius: 50%;
}

.rental-visual-lights span,
.rental-visual-lights span::before,
.rental-visual-lights span::after {
  top: 72px;
  width: 22px;
  height: 34px;
  background: var(--accent);
  border: 4px solid var(--ink);
  border-radius: 0 0 999px 999px;
}

.rental-visual-lights span {
  left: 28%;
}

.rental-visual-lights span::before {
  top: -7px;
  left: 58px;
}

.rental-visual-lights span::after {
  top: -18px;
  left: 116px;
}

.rental-card img {
  object-fit: cover;
}

.rental-card div {
  padding: 17px 17px 8px;
}

.rental-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-card h3 {
  margin-bottom: 8px;
}

.rental-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.rental-card .text-link {
  align-self: end;
  padding: 0 17px 17px;
}

.category-card,
.occasion-tile,
.step-card {
  padding: 22px;
}

.category-card p,
.occasion-tile p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.category-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 13px;
  font-weight: 950;
}

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

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

.occasion-tile {
  display: block;
  min-height: 150px;
}

.occasion-tile:hover {
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

.service-section {
  padding: 84px 0;
  color: #fff;
  background:
    linear-gradient(rgba(31, 38, 48, 0.84), rgba(31, 38, 48, 0.84)),
    url("https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1600&q=85")
      center/cover;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.service-layout .eyebrow,
.service-layout p {
  color: rgba(255, 255, 255, 0.82);
}

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

.service-points div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.service-points strong,
.service-points span {
  display: block;
}

.service-points span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 52px;
  margin-top: 82px;
  margin-bottom: 82px;
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.5), transparent 34%),
    linear-gradient(135deg, #ff7c45, #ef4f2f);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.booking-copy,
.booking-copy .eyebrow,
.booking-copy p {
  color: #fff;
}

.booking-preview {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.booking-preview label {
  display: grid;
  gap: 6px;
  color: #46515e;
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-preview input,
.booking-preview select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.booking-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  max-width: 880px;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  position: relative;
  padding: 20px 34px 20px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  content: "+";
  color: var(--accent-dark);
  font-size: 1.3rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-bottom: 20px;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 38px;
}

.footer-logo {
  margin-bottom: 14px;
  color: #fff;
}

.footer-logo .logo-mark {
  color: var(--ink);
  background: #fff;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: #fff;
}

body.theme-green {
  --bg: #f1f6ef;
  --surface: #ffffff;
  --surface-warm: #e7f2ec;
  --ink: #17251e;
  --muted: #5e6d65;
  --line: #d7e3dc;
  --accent: #0f7a62;
  --accent-dark: #075f4a;
  --mint: #d5efe5;
  --gold: #f2bd45;
  --shadow: 0 14px 36px rgba(28, 55, 40, 0.1);
  background:
    linear-gradient(90deg, rgba(15, 122, 98, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(15, 122, 98, 0.05) 1px, transparent 1px),
    var(--bg);
  background-size: 34px 34px;
}

body.theme-green .site-header {
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  width: 286px;
  height: 100vh;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.92);
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

body.theme-green main,
body.theme-green .site-footer {
  margin-left: 286px;
}

body.theme-green .logo {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

body.theme-green .logo-mark {
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px var(--mint);
}

body.theme-green .site-nav {
  display: grid;
  justify-content: stretch;
  gap: 8px;
  color: var(--ink);
}

body.theme-green .site-nav button {
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  background: transparent;
  border-radius: 12px;
}

body.theme-green .site-nav button:hover {
  color: var(--accent-dark);
  background: var(--surface-warm);
}

body.theme-green .header-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

body.theme-green .theme-switch {
  grid-template-columns: 1fr 1fr;
  background: #eef6f1;
}

body.theme-green .theme-option.is-active {
  color: #fff;
  background: var(--accent);
}

body.theme-green .header-cta {
  width: 100%;
}

body.theme-green .hero {
  width: min(1240px, calc(100% - 44px));
  min-height: auto;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 34px 0 54px;
}

body.theme-green .hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(15, 122, 98, 0.92), rgba(23, 37, 30, 0.94)),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1300&q=85")
      center/cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

body.theme-green .hero-copy .eyebrow,
body.theme-green .hero-copy h1,
body.theme-green .hero-copy .hero-lead {
  color: #fff;
}

body.theme-green .hero-copy .hero-lead {
  max-width: 760px;
}

body.theme-green .hero-copy .eyebrow,
body.theme-green .hero-copy h1,
body.theme-green .hero-copy .hero-lead {
  grid-column: 1;
}

body.theme-green h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 5.8vw, 5.8rem);
  line-height: 0.92;
}

body.theme-green .hero-actions {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  justify-content: flex-end;
}

body.theme-green .btn-primary {
  background: var(--accent);
}

body.theme-green .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

body.theme-green .benefit-chips {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

body.theme-green .benefit-chips span {
  min-height: 84px;
  padding: 18px;
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
  border-radius: 6px;
}

body.theme-green .hero-visual {
  display: grid;
  min-height: 0;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.theme-green .hero-main-image {
  height: 260px;
  border-radius: 6px;
}

body.theme-green .floating-card {
  position: static;
  display: grid;
  align-content: center;
  min-height: 124px;
  background: var(--surface);
  border-color: var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

body.theme-green .stat-card {
  padding: 22px;
}

body.theme-green .availability-card {
  width: auto;
  padding: 22px;
}

body.theme-green .section-shell {
  width: min(1240px, calc(100% - 44px));
}

body.theme-green .section {
  padding: 58px 0;
}

body.theme-green .section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.55fr);
  gap: 24px;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

body.theme-green .section-heading p {
  margin-bottom: 0;
}

body.theme-green .package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.theme-green .package-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 252px;
  overflow: hidden;
  border-radius: 6px;
}

body.theme-green .package-card img {
  width: 190px;
  height: 100%;
}

body.theme-green .package-card-featured {
  border-color: rgba(15, 122, 98, 0.34);
  box-shadow: 0 18px 44px rgba(15, 122, 98, 0.12);
}

body.theme-green .card-body {
  display: grid;
  align-content: start;
  padding: 22px;
}

body.theme-green .card-meta {
  color: var(--accent-dark);
}

body.theme-green .category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.theme-green .rental-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.theme-green .rental-card {
  border-radius: 6px;
}

body.theme-green .rental-card img {
  height: 190px;
}

body.theme-green .rental-visual {
  height: 190px;
  background:
    linear-gradient(135deg, rgba(15, 122, 98, 0.16), rgba(242, 189, 69, 0.24)),
    #eef6f1;
}

body.theme-green .rental-card span {
  color: var(--accent-dark);
}

body.theme-green .category-card,
body.theme-green .occasion-tile,
body.theme-green .step-card,
body.theme-green .faq-list details,
body.theme-green .booking-preview {
  border-radius: 6px;
}

body.theme-green .category-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

body.theme-green .category-icon {
  margin-bottom: 0;
  color: #fff;
  background: var(--accent);
  border-radius: 6px;
}

body.theme-green .category-card h3,
body.theme-green .category-card p {
  grid-column: 2;
}

body.theme-green .steps {
  grid-template-columns: 1fr;
  max-width: 900px;
}

body.theme-green .step-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
  align-items: center;
}

body.theme-green .step-card span {
  margin-bottom: 0;
  color: #fff;
  background: var(--accent);
  border-radius: 6px;
}

body.theme-green .step-card h3,
body.theme-green .step-card p {
  margin-bottom: 0;
}

body.theme-green .occasion-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.theme-green .service-section {
  color: var(--ink);
  background: #deebe4;
}

body.theme-green .service-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

body.theme-green .service-layout .eyebrow,
body.theme-green .service-layout p {
  color: var(--muted);
}

body.theme-green .service-points div {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 122, 98, 0.16);
  border-radius: 6px;
  backdrop-filter: none;
}

body.theme-green .service-points span {
  color: var(--muted);
}

body.theme-green .booking-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.45fr);
  background: var(--ink);
  border-radius: 6px;
}

body.theme-green .booking-preview {
  background: #fff;
}

body.theme-green .site-footer {
  background: #17251e;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

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

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open button {
    width: 100%;
    text-align: left;
    padding: 13px 12px;
    border-radius: 12px;
  }

  .site-nav.is-open button:hover {
    background: #fff7ec;
  }

  .hero,
  .service-layout,
  .booking-section {
    grid-template-columns: 1fr;
  }

  body.theme-green .site-header {
    position: sticky;
    inset: auto;
    display: grid;
    width: auto;
    height: auto;
    grid-template-columns: auto auto auto;
    flex-direction: row;
    padding: 14px clamp(18px, 4vw, 48px);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.theme-green main,
  body.theme-green .site-footer {
    margin-left: 0;
  }

  body.theme-green .logo {
    padding-bottom: 0;
    border-bottom: 0;
  }

  body.theme-green .site-nav {
    display: none;
  }

  body.theme-green .site-nav.is-open {
    display: grid;
    background: #fff;
  }

  body.theme-green .header-actions {
    display: inline-flex;
    margin-top: 0;
  }

  body.theme-green .hero-copy,
  body.theme-green .booking-section,
  body.theme-green .service-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 58px 0;
  }

  .site-header {
    gap: 10px;
  }

  .theme-switch {
    max-width: 150px;
  }

  .theme-option {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  body.theme-green .hero {
    width: min(100% - 28px, var(--max));
    padding-top: 26px;
  }

  body.theme-green .hero-copy {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  body.theme-green .hero-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: stretch;
  }

  body.theme-green .hero-copy .eyebrow,
  body.theme-green .hero-copy h1,
  body.theme-green .hero-copy .hero-lead,
  body.theme-green .benefit-chips {
    grid-column: 1;
  }

  body.theme-green .benefit-chips,
  body.theme-green .hero-visual,
  body.theme-green .package-grid,
  body.theme-green .rental-grid,
  body.theme-green .category-grid,
  body.theme-green .occasion-grid,
  body.theme-green .service-points {
    grid-template-columns: 1fr;
  }

  body.theme-green .package-card {
    grid-template-columns: 1fr;
  }

  body.theme-green .package-card img {
    width: 100%;
    height: 210px;
  }

  body.theme-green .section-heading,
  body.theme-green .step-card {
    grid-template-columns: 1fr;
  }

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

  .hero-visual,
  .hero-main-image {
    min-height: 420px;
    height: 420px;
  }

  .stat-card {
    top: 16px;
    left: 16px;
  }

  .availability-card {
    right: 16px;
    bottom: 16px;
  }

  .package-grid,
  .rental-grid,
  .category-grid,
  .occasion-grid,
  .steps,
  .service-points,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .package-card img {
    height: 210px;
  }

  .booking-section {
    width: min(100% - 28px, var(--max));
    padding: 28px;
    margin-top: 58px;
    margin-bottom: 58px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 14px;
  }

  .header-actions {
    justify-self: end;
  }

  .theme-switch {
    max-width: 132px;
  }

  .benefit-chips span {
    width: 100%;
  }

  .hero-visual,
  .hero-main-image {
    min-height: 360px;
    height: 360px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
}
