/* ==========================================================================
   Plett Vacation — Stylesheet
   Organized as: Variables > Reset > Base > Layout > Components > Sections
   > Utilities > Responsive
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  /* Palette: deep ocean teal + warm sand + baby blue accent */
  --color-ocean-deep: #0b3d42;
  --color-ocean: #0f5257;
  --color-ocean-light: #1c7f82;
  --color-sand: #f2f3f4;
  --color-sand-dark: #e2e5e7;
  --color-baby-blue: #6fc3e4;
  --color-baby-blue-dark: #4aa3cc;
  --color-ink: #17262a;
  --color-ink-soft: #4a5c60;
  --color-white: #ffffff;
  --color-border: #e3ddce;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-logo: "Birthstone Bounce", cursive;

  --shadow-sm: 0 2px 8px rgba(11, 61, 66, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 61, 66, 0.12);
  --shadow-lg: 0 20px 48px rgba(11, 61, 66, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --container-width: 1180px;
  --logo-size: clamp(1.75rem, calc(12.69vw - 0.781rem), 4.2rem);
  --header-height: calc(var(--logo-size) * 1.333 + 12px);

  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ocean-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.3rem; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

section { scroll-margin-top: var(--header-height); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-baby-blue);
  color: var(--color-ocean-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-baby-blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }
.btn-outline {
  background: transparent;
  color: var(--color-ocean-deep);
  border: 1.5px solid var(--color-ocean-deep);
}
.btn-outline:hover { background: var(--color-ocean-deep); color: var(--color-white); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(11,61,66,0.3);
  border-top-color: var(--color-ocean-deep);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(242, 243, 244, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-logo);
  font-size: var(--logo-size);
  font-weight: 400;
  line-height: 1.3;
  word-spacing: 0.2em;
  color: var(--color-white);
  transition: color var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.site-header.scrolled .logo { color: var(--color-ocean-deep); }
.logo span { color: var(--color-baby-blue-dark); margin-left: 0.08em; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-baby-blue-dark);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.site-header.scrolled .nav-link { color: var(--color-ink); }
.nav-cta.btn { padding: 10px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--color-white);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--color-ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,61,66,0.55) 0%, rgba(11,61,66,0.65) 55%, rgba(11,61,66,0.85) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: var(--header-height); max-width: 760px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-baby-blue-dark);
  margin-bottom: 14px;
}
.hero h1 { color: var(--color-white); margin-bottom: 18px; }
.hero-sub { font-size: 1.15rem; max-width: 560px; margin-bottom: 34px; color: rgba(255,255,255,0.9); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-heading); font-size: 1.6rem; }
.hero-stats span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.75); }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--color-white);
  animation: scrollCue 1.6s ease infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 8px; }
}

/* ---------- Property photography ---------- */
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.lightbox-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

/* ---------- Feature strip ---------- */
.feature-strip { background: var(--color-sand); padding: 64px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-item { text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature-item p { font-size: 0.92rem; color: var(--color-ink-soft); }

/* ---------- Section head (shared) ---------- */
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-sub { color: var(--color-ink-soft); font-size: 1.05rem; margin-top: 12px; }

/* ---------- Gallery ---------- */
.gallery-section { padding: 110px 0 100px; }
.property-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 56px 0 20px;
}
.property-heading:first-of-type { margin-top: 0; }
.property-heading h3 { font-size: 1.4rem; }
.property-heading p { color: var(--color-ink-soft); font-size: 0.92rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  width: 100%; height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item.span-2 { grid-column: span 2; grid-row: span 2; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
  background: linear-gradient(0deg, rgba(11,61,66,0.75) 0%, transparent 100%);
  text-align: left;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9, 30, 33, 0.94);
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox-media { max-width: 900px; width: 100%; }
.lightbox-img { max-height: 78vh; object-fit: contain; margin-inline: auto; }
.lightbox-caption { color: var(--color-white); text-align: center; margin-top: 16px; font-size: 0.95rem; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 2.2rem; color: var(--color-white); line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2.5rem; color: var(--color-white);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.12); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- December / Plett Rage season banner ---------- */
.season-section { background: var(--color-ocean-deep); padding: 90px 0; }
.season-section h2 { color: var(--color-white); }
.season-section .section-sub { color: rgba(255,255,255,0.85); }
.season-section .feature-item h3 { color: var(--color-white); }
.season-section .feature-item p { color: rgba(255,255,255,0.75); }
.season-section .pricing-note { color: rgba(255,255,255,0.6); }
.season-cta { display: flex; justify-content: center; margin-top: 48px; }

/* ---------- Pricing / property comparison ---------- */
.pricing-section { background: var(--color-sand); padding: 110px 0 100px; }
.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}
.property-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.property-card-media { height: 220px; }
.property-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.property-card-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.property-stats { color: var(--color-ink-soft); font-size: 0.9rem; margin: 6px 0 12px; }
.property-price { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-ocean-deep); margin-bottom: 20px; }
.property-price span { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--color-ink-soft); }
.property-card .price-features { flex: 1; margin-bottom: 28px; }
.property-card .price-features li {
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.92rem;
}
.property-card .price-features li:first-child { border-top: none; }
.pricing-note { text-align: center; max-width: 620px; margin: 40px auto 0; font-size: 0.88rem; color: var(--color-ink-soft); }

/* ---------- Forms (shared: booking + contact) ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--color-ocean-deep); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-ocean-light);
  box-shadow: 0 0 0 3px rgba(28, 127, 130, 0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #d64545; }
.form-error {
  font-size: 0.8rem;
  color: #c9412f;
  min-height: 1em;
}
.form-status {
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  min-height: 1.4em;
}
.form-status.success { color: #1c7f4a; }
.form-status.error { color: #c9412f; }

.availability-hint {
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 1.2em;
  margin: -8px 0 4px;
}
.availability-hint.checking { color: var(--color-ink-soft); }
.availability-hint.success { color: #1c7f4a; }
.availability-hint.error { color: #c9412f; }

/* Booking form: labels sit inside the field box instead of above it */
.booking-form .form-row { gap: 16px; }
.booking-form .form-group { margin-bottom: 14px; gap: 0; position: relative; }
.booking-form .form-group label {
  position: absolute;
  top: 7px;
  left: 17px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-ink-soft);
  pointer-events: none;
}
.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
  padding: 23px 16px 9px;
}
.booking-form .form-group textarea { padding-top: 25px; min-height: 74px; }

/* ---------- Booking section ---------- */
.booking-section { padding: 110px 0 100px; }
.booking-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.booking-intro h2 { margin-bottom: 8px; }
.booking-points { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.booking-points li { font-weight: 500; color: var(--color-ocean-deep); }

/* ---------- Location ---------- */
.location-section { background: var(--color-sand); padding: 110px 0 100px; }
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}
.location-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.map-embed {
  min-height: 280px;
}
.location-details { padding: 28px 32px 32px; }
.location-details p { color: var(--color-ink-soft); margin: 10px 0 20px; }

/* ---------- Contact ---------- */
.contact-section { padding: 110px 0 120px; }
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.contact-methods { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.contact-methods li { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-reveal-btn {
  transition: background var(--transition), transform var(--transition);
}
.contact-reveal-btn:hover { background: var(--color-baby-blue); transform: scale(1.06); }
.contact-reveal-btn:focus-visible { outline: 2px solid var(--color-baby-blue-dark); outline-offset: 2px; }
.contact-methods strong { display: block; font-size: 0.85rem; color: var(--color-ink-soft); font-weight: 600; }
.contact-methods .contact-value { font-weight: 600; color: var(--color-ocean-deep); letter-spacing: 0.02em; }
.contact-methods a { font-weight: 600; color: var(--color-ocean-deep); }
.contact-methods a:hover { color: var(--color-baby-blue-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ocean-deep); color: rgba(255,255,255,0.85); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { color: var(--color-white); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; opacity: 0.85; transition: opacity var(--transition); }
.footer-nav a:hover { opacity: 1; }
.footer-copy { font-size: 0.82rem; opacity: 0.65; }

/* ---------- FAQ widget ---------- */
.faq-widget { position: fixed; right: 24px; bottom: 24px; z-index: 300; }
.faq-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-ocean-deep);
  color: var(--color-white);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), background var(--transition);
}
.faq-toggle:hover { transform: scale(1.06); background: var(--color-ocean); }
.faq-panel {
  position: absolute;
  right: 0; bottom: 76px;
  width: min(360px, calc(100vw - 48px));
  max-height: min(520px, calc(100vh - 140px));
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.faq-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.faq-panel-header {
  background: var(--color-ocean-deep);
  color: var(--color-white);
  padding: 18px 20px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
}
.faq-panel-header strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; }
.faq-panel-header span { display: block; font-size: 0.8rem; opacity: 0.8; margin-top: 2px; }
.faq-close { font-size: 1.4rem; color: var(--color-white); line-height: 1; opacity: 0.8; }
.faq-close:hover { opacity: 1; }
.faq-greeting { padding: 16px 20px 4px; font-size: 0.88rem; color: var(--color-ink-soft); }
.faq-list { overflow-y: auto; padding: 8px 12px; flex: 1; }
.faq-item + .faq-item { border-top: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px 8px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ocean-deep);
}
.faq-chevron { transition: transform var(--transition); color: var(--color-baby-blue-dark); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(90deg); }
.faq-answer {
  padding: 0 8px 14px;
  font-size: 0.87rem;
  color: var(--color-ink-soft);
  line-height: 1.55;
}
.faq-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-ink-soft);
}
.faq-footer a { color: var(--color-baby-blue-dark); font-weight: 600; }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Above the mobile nav breakpoint, the full nav-links row returns and needs
   its own room, so the logo scales on a different curve than on mobile. */
@media (min-width: 761px) {
  :root { --logo-size: clamp(0.98rem, calc(12.69vw - 5.425rem), 4.2rem); }
}

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .property-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .booking-layout, .contact-layout { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .map-embed { min-height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.span-2 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: var(--header-height); right: 0;
    width: min(78vw, 320px); height: calc(100vh - var(--header-height));
    background: var(--color-sand);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav .nav-link { color: var(--color-ink); font-size: 1.05rem; }
  .nav-cta { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .card { padding: 28px 22px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.span-2 { grid-column: span 1; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 2rem; }
  .lightbox { padding: 20px; }
}
