:root {
  --cream: #FAF6F0;
  --blush: #F2C4CE;
  --coral: #E8756A;
  --gold: #D4A853;
  --deep: #1A1018;
  --mauve: #8B5E72;
  --sage: #A8B89A;
  --sky: #B8D4E8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--deep);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 20px; height: 20px;
  background: var(--coral);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 44px; height: 44px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
  opacity: 0.5;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: 5rem;
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 2.25rem;
  background: transparent;
  transition: background 0.4s ease;
}
nav.scrolled {
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo-img {
  position: absolute;
  top: 0;
  left: 3rem;
  height: 11.25rem;
  width: auto;
  z-index: 101;
  transition: height 0.4s ease;
}
nav.scrolled .nav-logo-img {
  height: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--deep); opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--deep); color: var(--cream);
  border: none; padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: none; transition: background 0.3s;
}
.nav-cta:hover { background: var(--coral); }

.nav-logo span { color: var(--coral); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 80px;
  position: relative; z-index: 2;
}

.hero-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--coral);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--deep);
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: var(--deep); opacity: 0.65;
  max-width: 380px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex; align-items: center; gap: 28px;
}
.btn-primary {
  background: var(--coral); color: white;
  padding: 18px 40px; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(232,117,106,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232,117,106,0.45);
}
.btn-ghost {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--deep);
  text-decoration: none; cursor: none;
  display: flex; align-items: center; gap: 10px;
  opacity: 0.7; transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }
.btn-ghost::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* Hero right — balloon visual */
.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  width: 650px; height: 650px;
  background: radial-gradient(ellipse at 40% 50%, var(--blush) 0%, transparent 65%),
              radial-gradient(ellipse at 70% 30%, var(--sky) 0%, transparent 55%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.04); }
}

.balloon-cluster {
  position: relative; z-index: 2;
  width: 480px; height: 580px;
}

.balloon {
  position: absolute;
  animation: floatBalloon var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes floatBalloon {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50% { transform: translateY(-18px) rotate(calc(var(--tilt, 0deg) + 2deg)); }
}

.balloon svg { filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12)); }

@keyframes balloonPop {
  0%   { transform: scale(1);    opacity: 1; }
  20%  { transform: scale(1.3);  opacity: 1; }
  40%  { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(0);    opacity: 0; }
}
.balloon.popping {
  animation: balloonPop 0.38s ease-in forwards !important;
  pointer-events: none;
}

/* Balloon positions */
.b10 { --delay: 1.8s; --duration: 5.6s; --tilt:  9deg; top:  68px; left:  15px; }
.b2  { --delay: 0.8s; --duration: 6.5s; --tilt:  5deg; top:  52px; left: 188px; }
.b3  { --delay: 1.5s; --duration: 5.0s; --tilt: -3deg; top:  90px; left: 338px; }
.b4  { --delay: 0.4s; --duration: 7.0s; --tilt: 10deg; top: 165px; left:  68px; }
.b5  { --delay: 1.2s; --duration: 6.0s; --tilt: -6deg; top: 210px; left: 182px; }
.b6  { --delay: 0.6s; --duration: 5.8s; --tilt:  4deg; top: 198px; left: 372px; }
.b1  { --delay: 0.0s; --duration: 5.5s; --tilt: -8deg; top: 338px; left:   8px; }
.b8  { --delay: 0.3s; --duration: 5.3s; --tilt:  8deg; top: 282px; left: 270px; }
.b9  { --delay: 1.1s; --duration: 6.3s; --tilt: -7deg; top: 322px; left: 375px; }
.b7  { --delay: 2.0s; --duration: 6.2s; --tilt:-12deg; top: 412px; left:  88px; }
.b11 { --delay: 2.4s; --duration: 6.7s; --tilt: -4deg; top: 452px; left: 198px; }
.b12 { --delay: 0.7s; --duration: 5.9s; --tilt: 11deg; top: 432px; left: 368px; }

/* MARQUEE */
.marquee-section {
  background: var(--deep);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: var(--cream); opacity: 0.5;
  padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-style: normal; font-size: 12px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SERVICES */
.services {
  padding: 120px 80px;
  position: relative;
}

.section-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--coral);
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1.5px;
}
.section-h2 em { font-style: italic; color: var(--mauve); }

.section-desc {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  opacity: 0.6; max-width: 420px;
  align-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  padding: 48px 40px;
  background: white;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: none;
}
.service-card:hover { transform: translateY(-6px); z-index: 2; }

.service-card:nth-child(1) { background: var(--blush); }
.service-card:nth-child(2) { background: var(--sky); }
.service-card:nth-child(3) { background: var(--sage); }
.service-card:nth-child(4) { background: #F5E6D0; }
.service-card:nth-child(5) { background: #E8D5E8; }
.service-card:nth-child(6) { background: #D0E8D8; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  line-height: 1; color: rgba(0,0,0,0.08);
  position: absolute; top: 20px; right: 28px;
}

.service-icon {
  font-size: 36px; margin-bottom: 20px;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.5px;
}

.service-desc {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  opacity: 0.7;
}

/* GALLERY */
.gallery-section {
  padding: 120px 80px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.gallery-section .section-h2,
.gallery-section .section-desc {
  color: var(--cream);
}
.gallery-section .section-h2 em { color: var(--blush); }
.gallery-section .section-desc { opacity: 0.4; }

.gallery-strip-wrapper { position: relative; }

.gallery-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-strip-item {
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  height: 480px;
  cursor: none;
}
.gallery-strip-item img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-strip-item:hover img { transform: scale(1.03); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(26,16,24,0.78) 0%, transparent 100%);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,246,240,0.9);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}
.gallery-strip-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,240,0.3);
  background: rgba(26,16,24,0.7);
  backdrop-filter: blur(8px);
  color: var(--cream);
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.gallery-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  transform: translateY(-50%) scale(1.08);
}
#galleryPrev { left: -28px; }
#galleryNext { right: -28px; }
.gallery-nav-btn svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

/* QUOTE SECTION */
.quote-section {
  padding: 120px 80px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.quote-left {
  width: 100%;
  max-width: 640px;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}

.quote-left .section-h2 {
  margin-bottom: 20px;
}
.quote-left p {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  opacity: 0.6; margin-bottom: 36px;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}

.form-group {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}

label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.5;
}

input, select, textarea {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(26,16,24,0.2);
  padding: 12px 0; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 300;
  color: var(--deep); outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--coral);
}
textarea { resize: none; height: 80px; }
select { cursor: none; }

.event-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.chip {
  padding: 8px 18px;
  border: 1px solid rgba(26,16,24,0.2);
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: none;
  transition: all 0.2s; background: transparent;
  color: var(--deep);
}
.chip.selected, .chip:hover {
  background: var(--coral); border-color: var(--coral); color: white;
}

.field-error {
  font-size: 11px; color: var(--coral); margin-top: 5px;
  display: none;
}

.field-error.visible { display: block; }

input.invalid, textarea.invalid, select.invalid {
  border-color: var(--coral) !important;
}

.label-optional {
  font-size: 10px; opacity: 0.4; font-style: italic; letter-spacing: 0;
}

.form-group--checkbox {
  margin-top: 8px;
}

.checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 13px; opacity: 0.75; line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px; flex-shrink: 0;
  accent-color: var(--coral); width: 15px; height: 15px; cursor: pointer;
}

.submit-row {
  display: flex; align-items: center; gap: 28px;
  margin-top: 32px;
}

.form-note {
  font-size: 12px; opacity: 0.4; font-style: italic;
}

/* Form success */
.form-success {
  display: none;
  padding: 48px 0;
  text-align: center;
}
.form-success-icon {
  font-size: 56px;
  margin-bottom: 20px;
}
.form-success-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.form-success-text {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; opacity: 0.6;
}

/* FOOTER */
footer {
  background: var(--deep);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  color: var(--cream);
}

.footer-brand .nav-logo { font-size: 26px; color: var(--cream); }
.footer-brand p {
  margin-top: 16px; font-size: 14px; font-weight: 300;
  line-height: 1.7; opacity: 0.75; max-width: 260px;
}

.footer-socials {
  display: flex; gap: 16px; margin-top: 32px;
}
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); cursor: none;
  transition: all 0.3s; text-decoration: none;
}
.social-icon:hover { background: var(--coral); border-color: var(--coral); }

.footer-col h3 {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.7;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col li {
  font-size: 14px; font-weight: 300;
  color: var(--cream); opacity: 0.6;
}
.footer-col a {
  font-size: 14px; font-weight: 300;
  color: var(--cream); text-decoration: none;
  opacity: 1; transition: opacity 0.2s;
  cursor: none;
}
.footer-col a:hover { opacity: 1; color: var(--coral); }
.footer-col a[href^="tel:"] span,
.footer-col a[href^="mailto:"] span,
.footer-col a[href*="wa.me"] span { text-decoration: underline; }

.footer-bottom {
  background: var(--deep);
  padding: 20px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--cream);
}
.footer-bottom p { font-size: 12px; opacity: 0.6; }

/* Floating balloon decoration */
.float-balloon {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  animation: floatUp 12s linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) rotate(-5deg); opacity: 0; }
  5% { opacity: 0.6; }
  95% { opacity: 0.3; }
  100% { transform: translateY(-150px) rotate(5deg); opacity: 0; }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  font-size: 24px; color: var(--deep);
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5; transition: opacity 0.2s;
}
.mobile-menu-close:hover { opacity: 1; }

.mobile-menu {
  display: flex;
  position: fixed; inset: 0;
  height: 100vh;
  background: var(--cream);
  z-index: 150;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--deep); text-decoration: none;
  letter-spacing: -1px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .mobile-cta {
  background: var(--coral); color: white;
  padding: 16px 40px; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 12px;
}

/* TABLET (max 1024px) */
@media (max-width: 1024px) {
  .hero-left { padding: 120px 48px 80px 48px; }
  .services { padding: 100px 48px; }
  .gallery-section { padding: 100px 48px; }
  .quote-section { padding: 100px 48px; gap: 60px; }
  footer { padding: 80px 48px; gap: 40px; }
  .footer-bottom { padding: 20px 48px; }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button, a, input, select, textarea { cursor: auto; }
  .chip, .social-icon, .gallery-nav-btn, .service-card, .gallery-strip-item, .btn-ghost { cursor: auto; }

  nav { padding: 0 1.5rem; }
  .nav-logo-img { left: 1.5rem; height: 6.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    height: auto;
  }
  .hero-right { display: none; }
  .hero-left {
    padding: 7.5rem 1.5rem 3rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hero-h1 { letter-spacing: -1.5px; }
  .hero-sub { max-width: 100%; font-size: 0.9375rem; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }
  .btn-primary { width: 100%; text-align: center; padding: 1.125rem 1.5rem; }

  .marquee-item { font-size: 0.9375rem; padding: 0 1.25rem; }

  .services { padding: 2.5rem 1.5rem; }
  .section-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .section-desc { max-width: 100%; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .service-card { padding: 2rem 1.75rem; }
  .service-num { font-size: 3.25rem; }

  .gallery-section { padding: 2.5rem 1.5rem; }
  .gallery-strip-item { height: 280px; }

  .quote-section {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
  }
  .quote-section::before { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .event-chips { gap: 0.375rem; }
  .chip { padding: 0.5rem 0.875rem; font-size: 0.6875rem; }
  .submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }
  .btn-primary.submit-btn { width: 100%; text-align: center; }

  footer {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
  .footer-bottom {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .footer-brand p { max-width: 100%; }
  .footer-socials { gap: 0.75rem; }
}

/* SMALL MOBILE (max 380px) */
@media (max-width: 380px) {
  .hero-h1 { font-size: 44px; letter-spacing: -1px; }
  .gallery-strip-item { height: 220px; }
  .section-h2 { font-size: 32px; }
  .mobile-menu a { font-size: 28px; }
}

/* Skip navigation */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 24px;
  background: var(--coral);
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
}

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