/* ===== LEVITO — Stylesheet ===== */

:root {
  --bg:        #0c0d10;
  --bg-alt:    #121419;
  --surface:   #171a21;
  --surface-2: #1e222b;
  --line:      rgba(255,255,255,.09);
  --text:      #eef0f4;
  --muted:     #9aa0ad;
  --gold:      #c9a24b;
  --gold-soft: #e2c987;
  --radius:    16px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --header-h:  132px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.center .lead, .center p { margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }

.section { padding: 100px 0; }
.section.alt { background: var(--bg-alt); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 22px; }
h3 { font-size: 1.5rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }

.section-head { margin-bottom: 56px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn.small { padding: 12px 26px; font-size: .74rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1406;
  box-shadow: 0 10px 30px -12px rgba(201,162,75,.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -12px rgba(201,162,75,.7); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,13,16,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; line-height: 1.05; margin-right: auto; }
.brand-logo { height: 100px; width: auto; display: block; }
.brand-mark { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: .42em; font-size: 1.15rem; padding-left: .42em; }
.brand-sub { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: .82rem; letter-spacing: .06em; color: var(--muted);
  position: relative; transition: color .25s; padding: 4px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--gold-soft); border: 1px solid var(--line); padding: 9px 18px; border-radius: 50px;
  transition: border-color .25s, color .25s;
}
.nav-cta:hover { border-color: var(--gold); color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: .3s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background:
    radial-gradient(circle at 75% 30%, rgba(201,162,75,.14), transparent 55%),
    linear-gradient(180deg, #0c0d10 0%, #14161c 60%, #0c0d10 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.015) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
/* Einzelnes Hero-Bild (Unterseiten) */
.hero > .hero-bg { opacity: .42; }
/* Slider-Bilder: Crossfade zwischen den Slides */
.hero-slider .hero-bg {
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-slider .hero-bg.is-active { opacity: .42; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, rgba(12,13,16,.94) 0%, rgba(12,13,16,.7) 48%, rgba(12,13,16,.32) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding-top: 60px; padding-bottom: 60px; }
.hero h1 { margin-bottom: 26px; }
.hero-lead { font-size: 1.2rem; color: var(--muted); max-width: 600px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-rating { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .9rem; }
.stars { color: var(--gold); letter-spacing: 3px; }

/* ===== Values ===== */
.values { background: var(--surface); border-block: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value { text-align: center; padding: 40px 20px; border-right: 1px solid var(--line); }
.value:last-child { border-right: 0; }
.value-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold-soft); }
.value p { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ===== Split layout ===== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; }
.split-text p { color: var(--muted); margin-bottom: 18px; }

/* ===== Checklist ===== */
.checklist { list-style: none; display: grid; gap: 12px; margin-top: 6px; }
.checklist li { position: relative; padding-left: 30px; color: var(--text); font-size: .98rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 12px; border: solid var(--gold); border-width: 0 2px 2px 0;
  transform: rotate(40deg); border-radius: 1px;
}

/* ===== FAQ ===== */
.split-faq { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.split-faq h3 { margin-bottom: 12px; color: var(--gold-soft); }
.split-faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.split-faq details:last-child { border-bottom: 0; }
.split-faq summary {
  cursor: pointer; font-weight: 500; list-style: none; position: relative; padding-right: 28px; color: var(--text);
}
.split-faq summary::-webkit-details-marker { display: none; }
.split-faq summary::after { content: '+'; position: absolute; right: 0; top: -2px; color: var(--gold); font-size: 1.4rem; transition: transform .3s; }
.split-faq details[open] summary::after { transform: rotate(45deg); }
.split-faq details p { color: var(--muted); margin-top: 10px; font-size: .94rem; }

/* ===== Cards ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.4); }
.card h3 { color: var(--gold-soft); margin-bottom: 18px; }
.card p { color: var(--muted); }
.card-accent { background: linear-gradient(160deg, var(--surface-2), var(--surface)); display: flex; flex-direction: column; gap: 18px; }
.card-accent .btn { margin-top: auto; align-self: flex-start; }

/* ===== Price stack (Folie) ===== */
.price-stack { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 28px; align-self: stretch; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row h4 { font-size: 1.3rem; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--gold-soft); white-space: nowrap; }
.price small { display: block; font-family: 'Inter', sans-serif; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-align: right; }

/* ===== Packages ===== */
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.package {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 26px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.package:hover { transform: translateY(-8px); border-color: rgba(201,162,75,.4); }
.package.featured {
  border-color: rgba(201,162,75,.5);
  box-shadow: 0 24px 60px -30px rgba(201,162,75,.5);
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
}
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #1a1406;
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  padding: 6px 16px; border-radius: 50px;
}
.package-head { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 20px; }
.package-head h3 { color: var(--text); }
.package-head p { color: var(--gold-soft); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 6px; }
.package .checklist { margin-bottom: 22px; }
.package .checklist li { font-size: .9rem; }
.price-list { list-style: none; margin-top: auto; margin-bottom: 22px; border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 8px; }
.price-list li { display: flex; justify-content: space-between; font-size: .9rem; color: var(--muted); }
.price-list b { color: var(--gold-soft); font-weight: 600; }
.package .btn { align-self: stretch; text-align: center; }

/* ===== Fahrzeugklassen-Tabs ===== */
.class-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px;
}
.class-tab {
  font-family: 'Inter', sans-serif; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: 50px;
  padding: 12px 24px; transition: all .25s var(--ease);
}
.class-tab:hover { color: var(--text); border-color: rgba(201,162,75,.4); }
.class-tab.is-active {
  color: #1a1406; border-color: transparent;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 600;
}

/* ===== Preistabellen ===== */
.price-tables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 14px; transition: border-color .3s;
}
.price-card:hover { border-color: rgba(201,162,75,.35); }
.price-card-head { border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 8px; }
.price-card-head h3 { color: var(--gold-soft); }
.price-card-head p { color: var(--muted); font-size: .88rem; margin-top: 4px; }
.price-card .price-list { margin: 0; border-top: 0; padding-top: 4px; }
.price-card .price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .96rem;
}
.price-card .price-list li:last-child { border-bottom: 0; }
.price-card .price-list span { color: var(--text); }
.price-card .price-list b { color: var(--gold-soft); white-space: nowrap; font-weight: 600; }

/* Aufklappbare Preiszeilen */
.price-item { border-bottom: 1px solid var(--line); }
.price-item:last-child { border-bottom: 0; }
.price-item summary {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 28px 14px 0; position: relative; cursor: pointer; list-style: none;
  font-size: .96rem; transition: color .2s;
}
.price-item summary::-webkit-details-marker { display: none; }
.price-item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.25rem; line-height: 1; transition: transform .3s var(--ease);
}
.price-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.price-item summary:hover .pi-name { color: var(--gold-soft); }
.pi-name { color: var(--text); }
.pi-price { color: var(--gold-soft); white-space: nowrap; font-weight: 600; }
.pi-features {
  list-style: none; margin: 0 0 14px; padding: 4px 0 0; display: grid; gap: 8px;
}
.pi-features li { position: relative; padding-left: 22px; color: var(--muted); font-size: .88rem; }
.pi-features li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 9px;
  border: solid var(--gold); border-width: 0 2px 2px 0; transform: rotate(40deg);
}
.price-foot { text-align: center; max-width: 680px; margin: 40px auto 0; font-size: .85rem; }

/* ===== Add-ons ===== */
.addons { margin-top: 64px; text-align: center; }
.addons h3 { margin-bottom: 28px; color: var(--gold-soft); }
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.addon {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: border-color .3s;
}
.addon:hover { border-color: rgba(201,162,75,.4); }
.addon span { font-size: .92rem; }
.addon b { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-soft); }

/* ===== Testimonials ===== */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.quote .stars { display: block; margin-bottom: 16px; font-size: 1.1rem; }
.quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; line-height: 1.4; color: var(--text); }

/* ===== Gallery ===== */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line);
  /* Elegant fallback shown until a real photo is dropped into /images */
  background:
    linear-gradient(160deg, rgba(201,162,75,.12), transparent 60%),
    linear-gradient(145deg, var(--surface-2), var(--surface));
}
.gallery-lg { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease); color: transparent; /* hide alt text if missing */
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 22px 18px; display: flex; flex-direction: column; gap: 3px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--text);
  background: linear-gradient(to top, rgba(8,9,11,.85), transparent);
}
.gallery-item figcaption span {
  font-family: 'Inter', sans-serif; font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-soft); font-weight: 600;
}
.gallery-lg figcaption { font-size: 1.7rem; }

/* ===== Sub-Hero (Unterseiten) ===== */
.hero-sub { min-height: 68vh; }
.hero-sub .hero-content { padding-top: 40px; padding-bottom: 40px; }

/* ===== Prozess-Schritte ===== */
.process {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px;
}
.process h3 { color: var(--gold-soft); margin-bottom: 22px; }
.steps { list-style: none; display: grid; gap: 22px; }
.steps li { display: flex; gap: 18px; align-items: flex-start; }
.step-n {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; color: #1a1406;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.steps b { display: block; color: var(--text); margin-bottom: 3px; }
.steps p { color: var(--muted); font-size: .92rem; }

/* ===== Partner ===== */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .35s var(--ease), border-color .35s;
}
a.partner-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.45); }
.partner-card h3 { color: var(--text); }
.partner-meta { color: var(--muted); font-size: .92rem; }
.partner-brands {
  color: var(--gold-soft); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}
.partner-link { margin-top: auto; padding-top: 14px; color: var(--gold); font-size: .9rem; font-weight: 600; }
.partner-card--cta {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-style: dashed; align-items: flex-start; justify-content: center; text-align: left;
}
.partner-card--cta h3 { color: var(--gold-soft); }
.partner-card--cta .btn { margin-top: 14px; }

/* ===== Contact ===== */
.contact-list { list-style: none; margin-top: 30px; display: grid; gap: 22px; }
.contact-list li { display: grid; gap: 4px; }
.contact-list .ci { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.contact-list a, .contact-list span:not(.ci) { font-size: 1.1rem; color: var(--text); transition: color .25s; }
.contact-list a:hover { color: var(--gold-soft); }
.contact-list--center { max-width: 460px; margin-left: auto; margin-right: auto; justify-items: center; text-align: center; }
.contact-list--center li { justify-items: center; }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; display: grid; gap: 18px; }
.contact-form h3 { color: var(--gold-soft); margin-bottom: 6px; }
.contact-form label { display: grid; gap: 8px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: .95rem; font-weight: 300;
  transition: border-color .25s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .btn { margin-top: 6px; }
.form-note { font-size: .78rem; color: var(--muted); text-transform: none; letter-spacing: 0; }
.form-note--ok { color: var(--gold-soft); }
.form-note--err { color: #e08a7a; }

/* ===== Legal pages ===== */
.legal { padding: 120px 0 100px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 12px; }
.legal .updated { color: var(--muted); font-size: .85rem; margin-bottom: 48px; }
.legal h2 { font-size: 1.7rem; margin: 44px 0 14px; }
.legal h3 { font-size: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 600; margin: 28px 0 10px; color: var(--gold-soft); }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; font-size: 1rem; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--gold-soft); }
.legal a:hover { text-decoration: underline; }
.legal .back { display: inline-block; margin-bottom: 32px; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.legal strong { color: var(--text); font-weight: 600; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-top: 56px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-inner .brand-mark { font-size: 1.1rem; }
.footer-logo { height: 200px; width: auto; display: block; max-width: 100%; object-fit: contain; }
.footer-ig {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 14px;
  color: var(--muted); font-size: .9rem; transition: color .25s;
}
.footer-ig:hover { color: var(--gold-soft); }
.footer-inner .muted { margin-top: 8px; font-size: .9rem; }
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-legal a { color: var(--muted); font-size: .9rem; transition: color .25s; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--gold-soft); }
.footer-bottom { padding: 24px 0; color: var(--muted); font-size: .82rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-lg { grid-column: span 2; grid-row: span 1; }
  .price-tables { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  :root { --header-h: 92px; }
  .brand-logo { height: 64px; }
  .footer-logo { height: 140px; }
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 24px; gap: 20px;
  }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(2) { border-right: 0; }
  .section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .package-grid, .addon-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-lg { grid-column: span 1; }
}
