/* =========================================================
   TONGA TRAVEL AGENCY — MASTER STYLESHEET
   Palette: Ocean Teal + Coral Pink + Cream Sand
   ========================================================= */

:root {
  --teal-900: #06363F;
  --teal-800: #0B4F5C;
  --teal-700: #0E6578;
  --teal-600: #128197;
  --teal-100: #E1F1F4;
  --pink: #E6197F;
  --pink-dark: #B5125F;
  --pink-soft: #FCE4F0;
  --cream: #FAF6F0;
  --sand: #F3EADB;
  --charcoal: #1A1A1A;
  --slate: #4A5560;
  --slate-light: #7A8490;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(6, 54, 63, 0.08);
  --shadow-md: 0 8px 24px rgba(6, 54, 63, 0.12);
  --shadow-lg: 0 20px 50px rgba(6, 54, 63, 0.18);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: var(--teal-700); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--pink); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin-bottom: 1em; color: var(--slate); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== ANNOUNCEMENT BAR ========== */
.topbar {
  background: var(--teal-900);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 9px 0;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.topbar-inner i {
  color: var(--pink);
  margin-right: 4px;
}
.topbar-divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
}
.topbar a {
  color: var(--cream);
  font-weight: 500;
  transition: color 0.2s ease;
}
.topbar a:hover { color: var(--pink-soft); }

@media (max-width: 720px) {
  .topbar-inner {
    gap: 10px;
    font-size: 0.75rem;
  }
  .topbar-divider { display: none; }
}

/* ========== HEADER / NAV ========== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrap img { height: 60px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal-900);
  font-weight: 700;
}
.logo-text .brand-tag {
  font-size: 0.7rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 3px;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-item {
  position: relative;
}
.nav-item > a,
.nav > a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-item > a::after,
.nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.nav-item > a:hover::after,
.nav-item.active > a::after,
.nav > a:hover:not(.nav-cta)::after,
.nav > a.active:not(.nav-cta)::after { width: 100%; }

.nav-item > a .caret {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  color: var(--slate-light);
}
.nav-item:hover > a .caret {
  transform: rotate(180deg);
  color: var(--pink);
}

/* DROPDOWN MENU */
.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  background: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 12px 0;
  margin-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  border-top: 3px solid var(--pink);
  z-index: 100;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 22px;
  color: var(--charcoal);
  font-size: 0.93rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.2s ease;
}
.dropdown a::after { display: none; }
.dropdown a:hover {
  background: var(--cream);
  color: var(--pink);
  padding-left: 28px;
}
.dropdown .dropdown-divider {
  height: 1px;
  background: var(--sand);
  margin: 8px 18px;
}
.dropdown a.dropdown-view-all {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dropdown a.dropdown-view-all:hover { color: var(--pink-dark); }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--teal-900);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1573843981267-be1999ff37cd?w=1920&q=80') center/cover;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,54,63,0.78) 0%, rgba(11,79,92,0.55) 60%, rgba(230,25,127,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 60px 24px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--pink);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
}
.hero h1 span {
  font-style: italic;
  color: var(--pink-soft);
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--teal-900);
}
.btn-secondary {
  background: var(--teal-800);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--teal-900);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
.section {
  padding: 90px 0;
}
.section-dark {
  background: var(--teal-900);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-sand {
  background: var(--sand);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .eyebrow {
  color: var(--pink);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; }

/* ========== SERVICES GRID ========== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--pink);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-card a {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card a:hover { color: var(--pink-dark); }

/* ========== FEATURED EXPERIENCES ========== */
.experiences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.experience-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.experience-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.experience-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.experience-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.experience-body h3 { margin-bottom: 8px; font-size: 1.3rem; }
.experience-body p { font-size: 0.94rem; flex: 1; }
.experience-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sand);
  font-size: 0.9rem;
  color: var(--slate);
}
.experience-price {
  color: var(--pink);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ========== WHY US (STATS) ========== */
.why-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.why-item {
  text-align: center;
  padding: 20px;
}
.why-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--pink);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.why-item h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.why-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }

/* ========== SPLIT SECTION ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
  background-size: cover;
  background-position: center;
}
.split h2 { margin-bottom: 20px; }
.split ul { margin: 20px 0 30px; list-style: none; }
.split ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--slate);
}
.split ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--pink);
  line-height: 1;
}
.stars { color: #F5A623; margin-bottom: 12px; }
.testimonial p {
  font-style: italic;
  color: var(--charcoal);
  font-size: 1rem;
}
.testimonial-author {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--sand);
}
.testimonial-author strong {
  display: block;
  color: var(--teal-900);
  font-family: var(--font-display);
}
.testimonial-author small { color: var(--slate-light); }

/* ========== BLOG CARDS ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-body { padding: 22px 24px; }
.blog-cat {
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-card h3 { margin: 10px 0 10px; font-size: 1.2rem; }
.blog-card p { font-size: 0.92rem; }
.blog-meta {
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-top: 12px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 30px;
}

/* ========== CONTACT / FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--pink-soft);
  color: var(--pink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item div strong {
  display: block;
  color: var(--teal-900);
  margin-bottom: 3px;
}
.contact-item div a, .contact-item div span {
  color: var(--slate);
  font-size: 0.96rem;
}

.form-wrap {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--teal-900);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DDD8CE;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--pink);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer p { color: rgba(255,255,255,0.75); font-size: 0.94rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a {
  color: rgba(255,255,255,0.78);
  font-size: 0.94rem;
}
.footer a:hover { color: var(--pink); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img { height: 60px; }
.footer-logo span {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.3rem;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
}
.social-icons a:hover {
  background: var(--pink);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

/* ========== PAGE HEADERS (inner pages) ========== */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M30 0L0 30l30 30 30-30z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--pink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--pink-soft); }

/* ========== TABLES ========== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.info-table th {
  background: var(--teal-900);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
}
.info-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--sand);
  color: var(--slate);
}
.info-table tr:last-child td { border-bottom: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-img { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 8px;
    box-shadow: var(--shadow-md);
    align-items: stretch;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav.open .nav-item,
  .nav.open > a { width: 100%; }
  .nav.open .nav-item > a,
  .nav.open > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--sand);
    justify-content: space-between;
    width: 100%;
  }
  .nav.open .nav-item > a .caret {
    transition: transform 0.25s ease;
  }
  .nav.open .nav-item.mobile-open > a .caret {
    transform: rotate(180deg);
  }
  .nav.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--pink);
    border-radius: 0;
    padding: 6px 0;
    margin: 0 0 8px 8px;
    background: var(--cream);
    display: none;
    min-width: 0;
  }
  .nav.open .nav-item.mobile-open .dropdown { display: block; }
  .nav.open .dropdown a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .nav.open .dropdown a:hover {
    padding-left: 22px;
  }
  .nav.open .nav-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }
  .section { padding: 60px 0; }
  .hero { min-height: 78vh; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .logo-text .brand-name { font-size: 1.1rem; }
  .logo-text .brand-tag { font-size: 0.6rem; }
}
