@import url("../vendor/fontawesome/css/fontawesome.min.css");
@import url("../vendor/fontawesome/css/solid.min.css");
@import url("../vendor/fontawesome/css/brands.min.css");

:root {
  --rose: #d95f72;
  --rose-dark: #a83c53;
  --rose-soft: #f7dce0;
  --sand: #ead7b7;
  --sand-light: #fbf7ef;
  --sun: #efb344;
  --earth: #724c38;
  --green: #315d4c;
  --ink: #1e2926;
  --muted: #53605b;
  --white: #fffdfa;
  --border: rgba(30, 41, 38, 0.12);
  --shadow: 0 20px 55px rgba(57, 38, 28, 0.12);
  --shadow-sm: 0 10px 30px rgba(57, 38, 28, 0.09);
  --radius: 1.35rem;
  --radius-sm: 0.8rem;
  --container: 1180px;
  --header-height: 80px;
  --display: "Aptos Display", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --body: Aptos, "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.025rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open, body.lightbox-open { overflow: hidden; }

img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; text-wrap: balance; }
h1 { font-size: clamp(2.65rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
p { color: var(--muted); text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }
::selection { background: var(--rose); color: white; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 0.5rem;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section--compact { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--sand { background: var(--sand-light); }
.section--rose { background: linear-gradient(145deg, #fbe9ea, #fff7ec); }
.section--dark { background: var(--ink); color: white; }
.section--dark p { color: #cbd3cf; }
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cluster { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.stack > * + * { margin-top: 1rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 2rem; height: 2px; background: currentColor; content: ""; }
.section--dark .eyebrow { color: #f4b4be; }
.section-heading { max-width: 760px; margin-bottom: 2.6rem; }
.section-heading h2 { margin-bottom: 1rem; }
.section-heading p { max-width: 650px; font-size: 1.08rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center p { margin-inline: auto; }
.kicker { color: var(--earth); font-weight: 750; }
.muted { color: var(--muted); }
.fine-print { font-size: 0.83rem; }
.price { color: var(--rose-dark); font-family: var(--display); font-size: 2rem; font-weight: 700; line-height: 1; }
.price small { display: block; margin-top: 0.45rem; color: var(--muted); font-family: var(--body); font-size: 0.75rem; font-weight: 650; letter-spacing: 0.04em; }
.tag, .status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 9px 22px rgba(217, 95, 114, 0.22);
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); background: var(--rose-dark); box-shadow: 0 13px 28px rgba(168, 60, 83, 0.28); }
.btn i { font-size: .88em; transition: transform 180ms ease; }
.btn:hover .fa-arrow-right { transform: translateX(3px); }
.btn--dark { background: var(--ink); box-shadow: none; }
.btn--dark:hover { background: #35423e; }
.btn--light { background: white; box-shadow: none; color: var(--ink); }
.btn--light:hover { background: var(--sand-light); }
.btn--outline { border-color: rgba(30, 41, 38, 0.22); background: transparent; box-shadow: none; color: var(--ink); }
.btn--outline:hover { border-color: var(--rose); background: var(--rose-soft); color: var(--rose-dark); }
.btn--sm { min-height: 42px; padding: 0.68rem 0.95rem; font-size: 0.82rem; }
.btn[aria-disabled="true"], .btn:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.icon { width: 1.1rem; height: 1.1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

.notice {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(239, 179, 68, 0.45);
  border-radius: var(--radius-sm);
  background: #fff8e8;
  color: #6e5526;
  font-size: 0.9rem;
}
.notice--error { border-color: #e8a6aa; background: #fff0f1; color: #8d2937; }
.notice--success { border-color: #9cc5b1; background: #eff9f4; color: #1f6048; }
.placeholder { padding: 1rem; border: 1px dashed rgba(30,41,38,.26); border-radius: .75rem; background: rgba(255,255,255,.55); color: var(--muted); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 250, 0.96);
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.home .site-header:not(.is-scrolled) { background: linear-gradient(to bottom, rgba(15,25,22,.68), transparent); color: white; }
.home .site-header:not(.is-scrolled) .btn--outline { border-color: rgba(255,255,255,.48); color: white; }
.site-header.is-scrolled { height: 70px; border-color: var(--border); box-shadow: 0 10px 35px rgba(31,35,32,.08); backdrop-filter: blur(14px); }
.nav-shell { display: flex; width: min(calc(100% - 2rem), 1320px); height: 100%; align-items: center; justify-content: space-between; gap: 1rem; margin-inline: auto; }
.brand { display: inline-flex; min-width: max-content; align-items: center; gap: 0.65rem; font-family: var(--display); font-size: 1.18rem; font-weight: 850; letter-spacing: -.025em; }
.brand-logo { width: 54px; height: 54px; flex: 0 0 54px; padding: 2px; border: 1px solid rgba(217,95,114,.2); border-radius: 15px; background: white; box-shadow: 0 8px 22px rgba(24,37,33,.14); object-fit: contain; transition: width 220ms ease, height 220ms ease, transform 220ms ease; }
.brand:hover .brand-logo { transform: rotate(-2deg) scale(1.03); }
.brand-name em { color: var(--rose); font-style: normal; }
.site-header.is-scrolled .brand-logo { width: 48px; height: 48px; flex-basis: 48px; }
.nav-links { display: flex; align-items: center; gap: clamp(.55rem, 1.5vw, 1.35rem); }
.nav-links a { position: relative; padding: .45rem .05rem; font-size: .82rem; font-weight: 750; }
.nav-links a::after { position: absolute; right: 0; bottom: .05rem; left: 0; height: 2px; border-radius: 2px; background: var(--rose); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid currentColor; border-radius: 50%; background: transparent; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 19px; height: 2px; background: currentColor; content: ""; transition: transform 180ms ease; }
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.nav-backdrop { display: none; }

/* Hero and page masthead */
.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: end;
  overflow: hidden;
  background: #293830;
  color: white;
  isolation: isolate;
}
.hero__media { position: absolute; z-index: -2; inset: 0; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; animation: heroZoom 18s ease-out both; }
.hero::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(16,26,23,.82) 0%, rgba(16,26,23,.56) 42%, rgba(16,26,23,.12) 78%), linear-gradient(0deg, rgba(16,26,23,.56), transparent 55%); content: ""; }
.hero__content { max-width: 790px; padding: calc(var(--header-height) + 5rem) 0 5.5rem; }
.hero h1 { max-width: 750px; margin-bottom: 1.25rem; }
.hero p { max-width: 650px; color: #eef2ef; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero__actions { margin: 2rem 0; }
.hero__proof { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin: 1.8rem 0 0; padding: 0; list-style: none; color: #eff3f0; font-size: .83rem; font-weight: 750; }
.hero__proof li::before { margin-right: .45rem; color: var(--sun); content: "\f058"; font-family: "Font Awesome 7 Free"; font-weight: 900; }
.scroll-cue { position: absolute; right: max(1rem, calc((100vw - var(--container))/2)); bottom: 2.1rem; display: inline-grid; width: 44px; height: 64px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; color: white; }
.scroll-cue::after { width: 5px; height: 5px; border-radius: 50%; background: currentColor; content: ""; animation: scrollCue 1.8s infinite; }
.page-hero { position: relative; padding: calc(var(--header-height) + 6rem) 0 5rem; overflow: hidden; background: var(--ink); color: white; }
.page-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(217,95,114,.45), transparent 30%), radial-gradient(circle at 65% 95%, rgba(239,179,68,.18), transparent 32%); content: ""; }
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 850px; margin-bottom: 1rem; font-size: clamp(2.6rem, 6vw, 5.4rem); }
.page-hero p { max-width: 650px; color: #d2d9d5; font-size: 1.08rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.7rem; color: #d7dedb; font-size: .8rem; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs span::before { margin-right: .45rem; content: "/"; opacity: .55; }

/* Cards and media */
.card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.card:hover { border-color: rgba(217,95,114,.3); transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.card:hover .card__media img { transform: scale(1.045); }
.card__badge { position: absolute; top: 1rem; left: 1rem; box-shadow: 0 8px 22px rgba(45,31,25,.12); backdrop-filter: blur(10px); }
.card__body { padding: 1.35rem; }
.card__body h3 { margin-bottom: .65rem; }
.card__body p { margin-bottom: 1.1rem; }
.card__footer { display: flex; align-items: end; justify-content: space-between; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.card__actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.pack-card { display: flex; flex-direction: column; }
.pack-card .card__body { display: flex; flex: 1; flex-direction: column; }
.pack-card__heading { margin-bottom: .9rem; }
.pack-card__kicker { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: .55rem; color: var(--rose-dark); font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.pack-card__heading h3 { margin: 0; font-size: clamp(1.55rem, 2.15vw, 2.05rem); overflow-wrap: anywhere; }
.pack-card__bottom { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.pack-card__price { margin-bottom: 1rem; padding: .9rem 1rem; border: 1px solid rgba(217,95,114,.16); border-radius: 1rem; background: linear-gradient(135deg, #fff4f5, #fffaf2); }
.pack-card__price-label { display: block; margin-bottom: .2rem; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.pack-card__price-row { display: flex; min-width: 0; align-items: baseline; flex-wrap: wrap; gap: .15rem .45rem; color: var(--rose-dark); }
.pack-card__price-row strong { font-family: var(--display); font-size: clamp(1.8rem, 2.4vw, 2.35rem); line-height: 1; letter-spacing: -.025em; white-space: nowrap; }
.pack-card__price-row span { font-size: .78rem; font-weight: 900; letter-spacing: .05em; white-space: nowrap; }
.pack-card .card__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pack-card .card__actions .btn { min-width: 0; padding-inline: .75rem; }
.activity-gallery { display: grid; gap: 3px; }
.activity-gallery img { min-width: 0; min-height: 0; }
.activity-gallery--2 { grid-template-columns: 1.2fr .8fr; }
.activity-gallery--3 { grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, minmax(0, 1fr)); }
.activity-gallery--3 img:first-child { grid-row: 1 / 3; }
.feature-list { display: grid; gap: .65rem; margin: 1rem 0 1.4rem; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 1.5rem; color: var(--muted); font-size: .92rem; }
.feature-list li::before { position: absolute; top: .08rem; left: 0; color: var(--green); content: "\f058"; font-family: "Font Awesome 7 Free"; font-size: .82rem; font-weight: 900; }
.feature-list--light li { color: #d5dcd8; }
.feature-list--light li::before { color: #f7bdc5; }
.icon-card { padding: 1.45rem; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,.78); transition: transform 200ms ease, border-color 200ms ease; }
.icon-card:hover { border-color: rgba(217,95,114,.3); transform: translateY(-4px); }
.icon-card__icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 1.2rem; border-radius: 16px; background: linear-gradient(135deg, var(--rose), #f28a73); box-shadow: 0 10px 24px rgba(217,95,114,.22); color: white; font-size: 1.15rem; transform: rotate(-3deg); transition: transform 200ms ease; }
.icon-card:hover .icon-card__icon { transform: rotate(3deg) scale(1.04); }
.icon-card h3 { margin-bottom: .6rem; }
.contact-value { margin: 0; color: var(--ink); font-weight: 800; overflow-wrap: anywhere; }
.contact-value a:hover { color: var(--rose-dark); }
.empty-state__icon { margin-bottom: .65rem; color: var(--rose); font-size: 2rem; }
.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.split--reverse > :first-child { order: 2; }
.media-frame { position: relative; overflow: hidden; border-radius: calc(var(--radius) * 1.35); box-shadow: var(--shadow); }
.media-frame img { width: 100%; min-height: 420px; object-fit: cover; }
.media-frame::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.25); border-radius: inherit; content: ""; pointer-events: none; }
.media-note { position: absolute; right: 1rem; bottom: 1rem; max-width: 240px; padding: .9rem 1rem; border-radius: .9rem; background: rgba(255,253,250,.92); box-shadow: var(--shadow-sm); color: var(--ink); font-size: .82rem; font-weight: 700; backdrop-filter: blur(10px); }

.pack-gallery-section { padding-top: 0; }
.pack-gallery { display: grid; min-height: 560px; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.pack-gallery__item { position: relative; min-height: 0; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--sand); box-shadow: var(--shadow-sm); }
.pack-gallery__item--featured { grid-row: 1 / 3; }
.pack-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.pack-gallery__item:hover img { transform: scale(1.04); }
.pack-gallery__item figcaption { position: absolute; right: .75rem; bottom: .75rem; left: .75rem; padding: .7rem .8rem; border: 1px solid rgba(255,255,255,.2); border-radius: .75rem; background: rgba(17,29,25,.76); color: white; font-size: .76rem; font-weight: 700; line-height: 1.35; backdrop-filter: blur(8px); }

.experience-collage { display: grid; min-height: 580px; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 1rem; }
.experience-collage figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); }
.experience-collage figure:first-child { grid-row: 1 / 3; }
.experience-collage img { width: 100%; height: 100%; object-fit: cover; }
.experience-collage figcaption { position: absolute; right: .7rem; bottom: .7rem; left: .7rem; padding: .7rem .85rem; border-radius: .65rem; background: rgba(20,31,27,.74); color: white; font-size: .78rem; font-weight: 700; backdrop-filter: blur(8px); }

/* Stats, testimonials, CTA */
.proof-strip { position: relative; z-index: 2; margin-top: -2rem; }
.proof-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.proof-item { padding: 1.25rem; border-right: 1px solid var(--border); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: .2rem; font-family: var(--display); font-size: 1.1rem; }
.proof-item span { color: var(--muted); font-size: .78rem; }
.testimonial { padding: 2rem; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.testimonial blockquote { margin-bottom: 1.4rem; color: white; font-family: var(--display); font-size: clamp(1.25rem, 2.5vw, 2rem); line-height: 1.35; }
.testimonial footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.stars { color: var(--sun); letter-spacing: .15em; }
.carousel-controls { display: flex; justify-content: end; gap: .6rem; margin-top: 1rem; }
.carousel-controls button { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: white; }
.cta-panel { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; overflow: hidden; padding: clamp(2rem, 5vw, 4rem); border-radius: calc(var(--radius) * 1.25); background: linear-gradient(135deg, var(--rose-dark), var(--rose)); color: white; box-shadow: var(--shadow); }
.cta-panel::after { position: absolute; top: -100%; right: -10%; width: 400px; height: 400px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; }
.cta-panel h2 { max-width: 680px; margin-bottom: .7rem; }
.cta-panel p { max-width: 620px; margin: 0; color: #ffeef0; }
.cta-panel .cluster { position: relative; z-index: 1; justify-content: end; }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; text-align: left; }
th, td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--sand-light); color: var(--earth); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }
td strong { color: var(--ink); }
.comparison th:not(:first-child), .comparison td:not(:first-child) { min-width: 180px; text-align: center; }
.comparison td:first-child { position: sticky; left: 0; min-width: 170px; background: white; font-weight: 750; }

/* Gallery */
.filter-bar { display: flex; gap: .55rem; margin-bottom: 2rem; overflow-x: auto; padding: .25rem .1rem .8rem; scrollbar-width: thin; }
.filter-btn { flex: 0 0 auto; min-height: 42px; padding: .6rem .95rem; border: 1px solid var(--border); border-radius: 999px; background: white; color: var(--muted); font-size: .82rem; font-weight: 750; }
.filter-btn.is-active, .filter-btn:hover { border-color: var(--rose); background: var(--rose-soft); color: var(--rose-dark); }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery-item { position: relative; min-height: 280px; grid-column: span 4; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--sand); padding: 0; }
.gallery-item:nth-child(5n + 1) { grid-column: span 7; }
.gallery-item:nth-child(5n + 2) { grid-column: span 5; }
.gallery-grid .gallery-item--portrait { min-height: 420px; grid-column: span 4; }
.gallery-grid .gallery-item--landscape { min-height: 320px; grid-column: span 6; }
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item span { position: absolute; right: .7rem; bottom: .7rem; left: .7rem; padding: .75rem .9rem; border-radius: .7rem; background: rgba(18,28,24,.75); color: white; font-size: .8rem; font-weight: 750; text-align: left; backdrop-filter: blur(8px); }
.lightbox { position: fixed; z-index: 1800; display: none; place-items: center; inset: 0; padding: 1.2rem; background: rgba(10,16,14,.92); }
.lightbox.is-open { display: grid; }
.lightbox__dialog { position: relative; width: min(100%, 1100px); }
.lightbox img { width: 100%; max-height: 78vh; border-radius: 1rem; object-fit: contain; }
.lightbox__caption { margin-top: .8rem; color: white; text-align: center; }
.lightbox__close, .lightbox__nav { position: absolute; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(22,31,28,.76); color: white; }
.lightbox__close { top: .75rem; right: .75rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: .75rem; }
.lightbox__nav--next { right: .75rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); align-items: start; gap: 2rem; }
.faq-nav { position: sticky; top: calc(var(--header-height) + 1.5rem); padding: 1.1rem; border: 1px solid var(--border); border-radius: var(--radius); background: white; }
.faq-nav a { display: block; padding: .6rem .7rem; border-radius: .55rem; color: var(--muted); font-size: .88rem; font-weight: 700; }
.faq-nav a:hover { background: var(--rose-soft); color: var(--rose-dark); }
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border: 0; background: transparent; color: var(--ink); font-weight: 800; text-align: left; }
.accordion-trigger::after { flex: 0 0 auto; width: 2rem; height: 2rem; border-radius: 50%; background: var(--sand-light); content: "+"; font-size: 1.3rem; line-height: 2rem; text-align: center; }
.accordion-trigger[aria-expanded="true"]::after { content: "−"; }
.accordion-panel { padding: 0 3rem 1.25rem 0; }
.accordion-panel[hidden] { display: none; }

/* Forms */
.form-shell { padding: clamp(1.35rem, 4vw, 2.5rem); border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { color: var(--ink); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; border: 1px solid rgba(30,41,38,.22); border-radius: .7rem; background: #fffdfa; padding: .75rem .85rem; transition: border-color 160ms ease, box-shadow 160ms ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(217,95,114,.12); outline: 0; }
.field [aria-invalid="true"] { border-color: #b53949; }
.field-error { min-height: 1.1em; color: #a02b3b; font-size: .77rem; }
.check-field { display: flex; align-items: flex-start; gap: .7rem; }
.check-field input { flex: 0 0 auto; width: 1.1rem; height: 1.1rem; margin-top: .2rem; accent-color: var(--rose); }
.booking-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: start; gap: 2rem; }
.booking-summary { position: sticky; top: calc(var(--header-height) + 1.5rem); padding: 1.5rem; border-radius: var(--radius); background: var(--ink); color: white; box-shadow: var(--shadow); }
.booking-summary h2 { font-size: 1.65rem; }
.booking-summary p, .booking-summary li { color: #ccd5d1; }
.summary-list { margin: 1.2rem 0; padding: 0; list-style: none; }
.summary-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .85rem; }
.summary-price { color: #ffd1d7; font-family: var(--display); font-size: 2rem; }
.honeypot { position: absolute !important; left: -9999px !important; }

/* Confirmation */
.confirmation-page {
  position: relative;
  min-height: 82svh;
  padding: calc(var(--header-height) + clamp(3rem, 8vw, 6rem)) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(217,95,114,.18), transparent 28rem),
    radial-gradient(circle at 88% 80%, rgba(239,179,68,.2), transparent 25rem),
    var(--sand-light);
}
.confirmation-page::before, .confirmation-page::after { position: absolute; border: 1px solid rgba(217,95,114,.16); border-radius: 50%; content: ""; pointer-events: none; }
.confirmation-page::before { top: 8rem; right: -8rem; width: 24rem; height: 24rem; }
.confirmation-page::after { bottom: -7rem; left: -6rem; width: 18rem; height: 18rem; }
.confirmation-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); overflow: hidden; border: 1px solid rgba(30,41,38,.1); border-radius: clamp(1.4rem, 3vw, 2rem); background: white; box-shadow: 0 28px 80px rgba(57,38,28,.14); }
.confirmation-shell > * { min-width: 0; }
.confirmation-main { padding: clamp(1.5rem, 5vw, 4rem); }
.confirmation-success-icon { display: grid; width: 72px; height: 72px; place-items: center; margin-bottom: 1.6rem; border: 8px solid #fdecef; border-radius: 24px; background: linear-gradient(135deg, var(--rose), #ef8b72); box-shadow: 0 14px 30px rgba(217,95,114,.25); color: white; font-size: 1.55rem; transform: rotate(-4deg); }
.confirmation-main h1 { max-width: 680px; margin-bottom: 1rem; font-size: clamp(2.25rem, 5vw, 4.35rem); }
.confirmation-main > p { max-width: 660px; font-size: 1.05rem; }
.confirmation-email-badge { display: inline-flex; max-width: 100%; align-items: center; gap: .65rem; margin: .5rem 0 1.5rem; padding: .65rem .85rem; border: 1px solid rgba(49,93,76,.18); border-radius: 999px; background: #eff8f3; color: #265641; font-size: .82rem; font-weight: 800; }
.confirmation-email-badge span { min-width: 0; overflow-wrap: anywhere; }
.confirmation-summary-card { margin-top: 1.2rem; padding: 1.25rem; border: 1px solid var(--border); border-radius: 1.1rem; background: #fffaf7; }
.confirmation-summary-card > strong { display: block; margin-bottom: .3rem; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.confirmation-summary-card .summary-list { margin: .35rem 0 0; }
.confirmation-summary-card .summary-list li { border-color: var(--border); color: var(--muted); }
.confirmation-summary-card .summary-list li:last-child { border-bottom: 0; }
.confirmation-summary-card .summary-list strong { max-width: 55%; color: var(--ink); text-align: right; overflow-wrap: anywhere; }
.confirmation-actions { margin-top: 1.8rem; }
.confirmation-next { position: relative; padding: clamp(1.5rem, 4vw, 3rem); overflow: hidden; background: var(--ink); color: white; }
.confirmation-next::after { position: absolute; right: -5rem; bottom: -6rem; width: 16rem; height: 16rem; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.confirmation-next .eyebrow { color: #f4b4be; }
.confirmation-next h2 { margin-bottom: .75rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.confirmation-next > p { color: #cbd3cf; }
.confirmation-steps { display: grid; gap: 1rem; margin-top: 2rem; }
.confirmation-step { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: .85rem; }
.confirmation-step:not(:last-child)::after { position: absolute; top: 42px; bottom: -1rem; left: 20px; width: 1px; background: rgba(255,255,255,.18); content: ""; }
.confirmation-step__number { position: relative; z-index: 1; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.08); color: #ffd1d7; font-weight: 900; }
.confirmation-step strong { display: block; min-width: 0; margin-bottom: .15rem; font-size: .92rem; overflow-wrap: anywhere; }
.confirmation-step p { min-width: 0; margin: 0; color: #aebbb6; font-size: .8rem; line-height: 1.55; overflow-wrap: anywhere; }
.confirmation-help { position: relative; z-index: 1; margin-top: 2rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); }
.confirmation-help p { margin-bottom: .75rem; color: #d8dfdc; font-size: .82rem; }
.confirmation-help a { display: inline-flex; align-items: center; gap: .5rem; color: white; font-size: .86rem; font-weight: 800; }
.confirmation-help a:hover { color: #ffd1d7; }

/* Footer and floating actions */
.site-footer { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0 1.4rem; overflow: hidden; background: radial-gradient(circle at 8% 12%, rgba(217,95,114,.16), transparent 24rem), radial-gradient(circle at 92% 86%, rgba(239,179,68,.1), transparent 22rem), #121d1a; color: white; }
.site-footer::before { position: absolute; top: 7rem; right: -8rem; width: 24rem; height: 24rem; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; pointer-events: none; }
.site-footer > .container { position: relative; z-index: 1; }
.footer-cta { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(1rem, 3vw, 2rem); margin-bottom: clamp(3.5rem, 7vw, 6rem); padding: clamp(1.4rem, 4vw, 2.5rem); overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: calc(var(--radius) * 1.2); background: linear-gradient(125deg, #a83c53, #d95f72 62%, #e9896c); box-shadow: 0 24px 60px rgba(5,12,9,.25); }
.footer-cta::after { position: absolute; top: -8rem; right: 14%; width: 18rem; height: 18rem; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; content: ""; pointer-events: none; }
.footer-cta__icon { position: relative; z-index: 1; display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 20px; background: rgba(255,255,255,.12); color: #ffe2b2; font-size: 1.45rem; transform: rotate(-4deg); backdrop-filter: blur(8px); }
.footer-cta__kicker { display: block; margin-bottom: .4rem; color: #ffe7ea; font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-cta h2 { margin-bottom: .4rem; font-size: clamp(1.65rem, 3vw, 2.6rem); }
.footer-cta p { max-width: 650px; margin: 0; color: #fff0f2; font-size: .9rem; }
.footer-cta__actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: end; gap: .65rem; }
.footer-cta__whatsapp { background: #176f4b; box-shadow: none; }
.footer-cta__whatsapp:hover { background: #0f5a3c; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .9fr 1.2fr; gap: clamp(1.8rem, 4vw, 3.5rem); }
.site-footer .brand { align-items: center; margin-bottom: 1.1rem; color: white; }
.site-footer .brand-logo { width: 82px; height: 82px; flex-basis: 82px; border-color: rgba(255,255,255,.2); border-radius: 21px; box-shadow: 0 16px 35px rgba(5,12,9,.26); }
.site-footer .brand-name { font-size: 1.35rem; }
.site-footer p, .site-footer a, .site-footer li { color: #b8c4bf; }
.footer-brand > p { max-width: 380px; }
.site-footer h2 { margin-bottom: 1.1rem; color: white; font-family: var(--body); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-trust { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0; }
.footer-trust span { display: inline-flex; align-items: center; gap: .4rem; padding: .42rem .62rem; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.045); color: #d6dfdb; font-size: .7rem; font-weight: 750; }
.footer-trust i { color: #f4b4be; }
.footer-links { display: grid; gap: .2rem; margin: 0; padding: 0; list-style: none; font-size: .84rem; }
.footer-links a { display: flex; align-items: center; justify-content: space-between; gap: .7rem; padding: .38rem 0; transition: color 160ms ease, transform 160ms ease; }
.footer-links a i { color: #f4b4be; font-size: .65rem; opacity: 0; transform: translateX(-5px); transition: opacity 160ms ease, transform 160ms ease; }
.footer-links a:hover { color: white; transform: translateX(3px); }
.footer-links a:hover i { opacity: 1; transform: none; }
.footer-contact-list { display: grid; gap: .65rem; }
.footer-contact-list > div { padding: .75rem .8rem; border: 1px solid rgba(255,255,255,.09); border-radius: .8rem; background: rgba(255,255,255,.035); }
.footer-contact-list small { display: block; margin: .2rem 0 0 1.55rem; color: #7f918a; font-size: .65rem; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem; margin-top: clamp(3rem, 6vw, 5rem); padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); color: #8fa099; font-size: .74rem; }
.footer-bottom .fa-heart { margin-inline: .15rem; color: #f4b4be; }
.footer-bottom__links { display: flex; align-items: center; gap: .6rem; }
.footer-bottom a:hover { color: white; }
.socials-title { margin: 1.35rem 0 .55rem; color: #e5ebe8 !important; font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.socials { display: flex; flex-wrap: wrap; gap: .55rem; }
.socials a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(255,255,255,.04); color: white; font-size: .95rem; transition: transform 180ms ease, background 180ms ease; }
.socials a:hover { color: white; transform: translateY(-3px) rotate(3deg); }
.socials__facebook:hover { background: #1877f2 !important; }
.socials__instagram:hover { background: linear-gradient(135deg, #833ab4, #e1306c 55%, #fcb045) !important; }
.socials__tiktok:hover { background: #050505 !important; }
.footer-contact-link { display: inline-flex; max-width: 100%; align-items: center; gap: .55rem; color: #e5ebe8 !important; font-size: .8rem; font-weight: 750; overflow-wrap: anywhere; }
.footer-contact-link:hover { color: white !important; }
.footer-contact-link i { flex: 0 0 1rem; width: 1rem; color: #f4b4be; text-align: center; }
.floating-contact { position: fixed; z-index: 800; right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); display: flex; align-items: center; flex-direction: column; gap: .55rem; }
.floating-action { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; box-shadow: 0 12px 28px rgba(20,42,34,.22); color: white; font-size: 1.02rem; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.floating-action:hover { color: white; transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 32px rgba(20,42,34,.28); }
.floating-action--whatsapp { width: 58px; height: 58px; background: #168c59; font-size: 1.65rem; }
.floating-action--whatsapp:hover { background: #0d7045; }
.floating-action--phone { background: var(--rose); }
.floating-action--phone:hover { background: var(--rose-dark); }
.floating-action--email { background: var(--ink); }
.floating-action--email:hover { background: #34433e; }
.back-to-top { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.04); color: white; transition: transform 180ms ease, background 180ms ease; }
.back-to-top:hover { background: var(--rose); transform: translateY(-3px); }

/* Admin */
.admin-body { background: #f4f6f4; }
.admin-topbar { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1.2rem; border-bottom: 1px solid var(--border); background: white; }
.admin-shell { display: grid; min-height: calc(100vh - 70px); grid-template-columns: 250px 1fr; }
.admin-sidebar { padding: 1.4rem; background: var(--ink); color: white; }
.admin-sidebar nav { display: grid; gap: .35rem; }
.admin-sidebar a { padding: .7rem .8rem; border-radius: .55rem; color: #cbd3d0; font-size: .85rem; font-weight: 700; }
.admin-sidebar a:hover, .admin-sidebar a[aria-current="page"] { background: rgba(255,255,255,.1); color: white; }
.admin-main { padding: clamp(1.25rem, 4vw, 3rem); }
.admin-main h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.admin-card { padding: 1.25rem; border: 1px solid var(--border); border-radius: 1rem; background: white; box-shadow: var(--shadow-sm); }
.admin-login { display: grid; min-height: 100vh; place-items: center; padding: 1.5rem; background: radial-gradient(circle at top, #f7dce0, #f6f3ed 45%, #eef3f0); }
.admin-login .form-shell { width: min(100%, 480px); }

/* Legal and utility */
.legal-content h2 { margin-top: 2.5rem; font-size: 1.8rem; }
.legal-content h3 { margin-top: 1.8rem; font-size: 1.3rem; }
.legal-content li, .legal-content p { max-width: 760px; }
.empty-state { padding: 3rem 1.5rem; border: 1px dashed rgba(30,41,38,.25); border-radius: var(--radius); text-align: center; }
.error-page { display: grid; min-height: 100svh; place-items: center; padding: calc(var(--header-height) + 3rem) 1rem 3rem; background: radial-gradient(circle at 70% 25%, var(--rose-soft), transparent 30%), var(--sand-light); text-align: center; }
.error-code { margin-bottom: 0; color: var(--rose); font-family: var(--display); font-size: clamp(7rem, 25vw, 17rem); font-weight: 900; line-height: .75; opacity: .17; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1.1); } }
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(-9px); } 35% { opacity: 1; } 75%, 100% { opacity: 0; transform: translateY(11px); } }

@media (max-width: 1100px) {
  .nav-links { gap: .75rem; }
  .nav-links a { font-size: .75rem; }
  .nav-actions .btn:first-child { display: none; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 390px);
    height: 100svh;
    align-items: stretch;
    flex-direction: column;
    gap: .15rem;
    padding: calc(var(--header-height) + 1.5rem) 1.25rem 2rem;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(20,30,27,.18);
    color: var(--ink);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: .75rem; border-radius: .6rem; font-size: .95rem; }
  .nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--rose-soft); color: var(--rose-dark); }
  .nav-links a::after { display: none; }
  .nav-backdrop { position: fixed; z-index: 1001; display: block; inset: 0; border: 0; background: rgba(10,18,15,.55); opacity: 0; pointer-events: none; transition: opacity 220ms ease; }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .nav-actions .btn { display: none; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: initial; }
  .proof-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .cluster { justify-content: start; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { position: static; display: flex; gap: .35rem; overflow-x: auto; }
  .faq-nav a { flex: 0 0 auto; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .confirmation-shell { grid-template-columns: 1fr; }
  .confirmation-next { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 1.5rem; }
  .confirmation-steps { margin-top: 0; }
  .confirmation-help { grid-column: 1 / -1; }
  .footer-cta { grid-template-columns: auto 1fr; }
  .footer-cta__actions { grid-column: 1 / -1; justify-content: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { overflow-x: auto; }
  .admin-sidebar nav { display: flex; }
  .admin-sidebar a { flex: 0 0 auto; }
}

@media (max-width: 640px) {
  .container, .container--narrow { width: min(calc(100% - 1.3rem), var(--container)); }
  .section { padding: 4.2rem 0; }
  .grid--2, .grid--3, .grid--4, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .brand { font-size: 1.02rem; }
  .brand-logo, .site-header.is-scrolled .brand-logo { width: 46px; height: 46px; flex-basis: 46px; border-radius: 13px; }
  .hero { min-height: 100svh; }
  .hero__content { padding-bottom: 6.5rem; }
  .hero::after { background: linear-gradient(0deg, rgba(16,26,23,.88), rgba(16,26,23,.34) 90%); }
  .hero__media img { object-position: 54% center; }
  .hero__actions .btn { width: 100%; }
  .scroll-cue { display: none; }
  .page-hero { padding-top: calc(var(--header-height) + 4rem); }
  .proof-strip { margin-top: -1rem; }
  .proof-strip__inner { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .proof-item:nth-child(3) { border-bottom: 1px solid var(--border); }
  .experience-collage { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto; }
  .experience-collage figure:first-child { grid-row: auto; }
  .experience-collage figure { min-height: 280px; }
  .pack-gallery { min-height: 0; grid-template-columns: 1fr; grid-template-rows: none; }
  .pack-gallery__item, .pack-gallery__item--featured { min-height: 300px; grid-row: auto; }
  .pack-gallery__item--featured { min-height: 390px; }
  .gallery-item, .gallery-item:nth-child(5n + 1), .gallery-item:nth-child(5n + 2), .gallery-grid .gallery-item--portrait, .gallery-grid .gallery-item--landscape { min-height: 320px; grid-column: 1 / -1; }
  .confirmation-page { padding-top: calc(var(--header-height) + 2rem); }
  .confirmation-main, .confirmation-next { padding: 1.35rem; }
  .confirmation-main { overflow: hidden; }
  .confirmation-next { display: block; }
  .confirmation-steps { margin-top: 1.5rem; }
  .confirmation-main h1 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .confirmation-email-badge { align-items: flex-start; border-radius: .8rem; }
  .confirmation-summary-card .summary-list li { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .confirmation-summary-card .summary-list strong { max-width: none; text-align: left; }
  .confirmation-actions .btn { width: 100%; }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta__icon { width: 54px; height: 54px; border-radius: 17px; }
  .footer-cta__actions { grid-column: auto; display: grid; grid-template-columns: 1fr; }
  .footer-cta__actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: start; }
  .footer-bottom__links { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom .back-to-top { grid-column: 2; grid-row: 1; }
  .floating-contact { right: max(.75rem, env(safe-area-inset-right)); bottom: max(.75rem, env(safe-area-inset-bottom)); flex-direction: row; }
  .floating-action { width: 44px; height: 44px; }
  .floating-action--whatsapp { width: 54px; height: 54px; }
  .cta-panel .btn { width: 100%; }
  .card__footer { align-items: flex-start; flex-direction: column; }
  .pack-card .card__actions { grid-template-columns: 1fr; }
  .admin-topbar { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .floating-contact, .btn, .filter-bar { display: none !important; }
  body { background: white; color: black; }
  .page-hero { padding: 2rem 0; background: white; color: black; }
  .section { padding: 2rem 0; }
}
