/* =========================================================
   RAJIVAN AIRVIA — Clean Production HTML
   ========================================================= */

:root {
  --bg: #faf7f2;
  --bg-elev: #ffffff;
  --ink: #0e1d2b;
  --ink-soft: #3a4a59;
  --ink-muted: #6b7a87;
  --rule: #e6dfd2;
  --accent: #0d4a5e;
  --accent-2: #c08a4a;
  --accent-soft: #e8efee;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 14px;
  --shadow: 0 12px 30px -12px rgba(14,29,43,.18);
  --shadow-lg: 0 30px 60px -20px rgba(14,29,43,.28);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
p { margin: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(44px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.25; }

/* LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

/* TYPOGRAPHY HELPERS */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}
.lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: currentColor; }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1fb558; transform: translateY(-1px); }
.arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* =====================
   HEADER
   ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--rule);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-style: italic;
  font-size: 18px;
  font-family: var(--serif);
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 4px 0;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Mobile nav */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  background: transparent;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.hamburger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1px;
  background: currentColor;
  transition: transform .25s, opacity .2s;
}
.hamburger span:nth-child(1) { transform: translate(-50%, -5px); }
.hamburger span:nth-child(2) { transform: translate(-50%, 0); }
.hamburger span:nth-child(3) { transform: translate(-50%, 5px); }
.hamburger.open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 49;
  padding: 100px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.mobile-menu a { font-family: var(--serif); font-size: 30px; color: var(--ink); }

@media (max-width: 640px) {
  .mobile-menu {
    padding-top: 88px;
    gap: 22px;
  }

  .mobile-menu ul {
    gap: 10px;
  }

  .mobile-menu a {
    font-size: 24px;
  }
}

@media (max-width: 1020px) {
  .nav-links, .nav-cta .btn:not(.btn-icon) { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 36px;
    height: 36px;
  }
}

/* =====================
   SCROLL REVEAL
   ===================== */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
[data-aos="fade-up"] { transform: translateY(24px); }
[data-aos="fade-left"] { transform: translateX(-24px); }
[data-aos="fade-right"] { transform: translateX(24px); }
[data-aos="zoom-in"] { transform: scale(.97); }
[data-aos].in { opacity: 1; transform: none; }

/* =====================
   HERO
   ===================== */
.hero {
  padding-top: 140px;
  padding-bottom: clamp(48px, 6vw, 84px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero { padding-top: 110px; } }

.hero h1 .accent { font-style: italic; color: var(--accent); font-weight: 400; }
.hero-sub { margin-top: 24px; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-2);
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--accent-soft);
  box-shadow: var(--shadow-lg);
}
.hero-meta {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
.hero-meta .place { font-family: var(--serif); font-style: italic; font-size: 20px; }
.hero-meta .coords { font-family: monospace; font-size: 10px; letter-spacing: 0.14em; opacity: .8; }

/* =====================
   SECTION HEADS
   ===================== */
.section-head { margin-bottom: clamp(36px, 5vw, 64px); max-width: 720px; }
.section-head.split {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  max-width: none;
  align-items: end;
  gap: clamp(20px, 4vw, 64px);
}
@media (max-width: 820px) { .section-head.split { grid-template-columns: 1fr; } }
.section-head .eyebrow { display: inline-flex; }
.section-head h2 { margin-top: 14px; }

/* =====================
   ABOUT
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--accent-soft);
}
.about-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.about-points li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.about-points li:last-child { border-bottom: 0; }
.about-points .num { font-family: monospace; font-size: 11px; color: var(--accent); flex-shrink: 0; padding-top: 3px; }
.audience-toggle {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 4px;
  margin: 20px 0;
}
.audience-toggle button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
  transition: all .2s;
}
.audience-toggle button.active { background: var(--ink); color: var(--bg); }
@media (max-width: 640px) {
  .audience-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .audience-toggle button {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
  }
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.stat .num { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 48px); color: var(--ink); line-height: 1; }
.stat .lbl { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.06em; margin-top: 6px; }

/* =====================
   SERVICES
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--bg-elev);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .3s;
  position: relative;
}
.service-card:hover { background: var(--accent-soft); }
.service-card .s-icon { width: 46px; height: 46px; color: var(--accent); }
.service-card h3 { font-size: 21px; }
.service-card p { color: var(--ink-soft); font-size: 14px; flex-grow: 1; }
.service-card .s-num {
  position: absolute; top: 22px; right: 26px;
  font-family: monospace; font-size: 11px; color: var(--ink-muted);
}
.service-card .s-note {
  font-size: 12px; color: var(--ink-muted); font-style: italic;
  padding-top: 10px; border-top: 1px dashed var(--rule);
}

/* =====================
   PACKAGES
   ===================== */
#packages { background: var(--accent-soft); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1060px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .packages-grid { grid-template-columns: 1fr; } }
.pkg-card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--accent-soft);
}
.svg-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}
.pkg-image .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--bg-elev); color: var(--ink);
  padding: 5px 11px; border-radius: 999px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.04em;
  z-index: 2;
}
.pkg-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.pkg-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.09em; }
.pkg-card h3 { font-size: 20px; }
.pkg-card > .pkg-body > p { font-size: 14px; color: var(--ink-soft); flex-grow: 1; }
.pkg-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--rule);
}
.pkg-foot .from { font-size: 11px; color: var(--ink-muted); }
.pkg-foot .enq {
  font-size: 13px; color: var(--accent); font-weight: 500;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: color .2s;
}
.pkg-foot .enq:hover { color: var(--ink); }

/* =====================
   DESTINATIONS
   ===================== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1080px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--accent-soft);
  cursor: pointer;
  transition: transform .3s;
  display: block;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,18,28,.84) 100%);
  pointer-events: none;
}
.dest-image {
  width: 100%;
  height: 100%;
}
.dest-card .dest-meta {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  z-index: 2; color: #fff;
  display: flex; flex-direction: column; gap: 4px;
}
.dest-meta .d-name,
.dest-meta .name { font-family: var(--serif); font-size: 22px; font-style: italic; }
.dest-meta .d-desc,
.dest-meta .desc { font-size: 11px; opacity: .85; }
.dest-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.9); color: var(--ink);
  padding: 3px 9px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* =====================
   WHY US
   ===================== */
.why-section { background: var(--ink); color: var(--bg); }
.why-section h2 { color: var(--bg); }
.why-section .lead { color: rgba(243,236,224,.7); }
.why-section .eyebrow { color: var(--accent-2); }
.why-section .eyebrow::before { background: var(--accent-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 12px;
}
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-cell {
  background: var(--ink);
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .25s;
}
.why-cell:hover { background: color-mix(in oklab, var(--ink) 82%, var(--accent-2)); }
.why-cell .w-icon { width: 30px; height: 30px; color: var(--accent-2); }
.why-cell h3 { color: var(--bg); font-size: 17px; }
.why-cell p { font-size: 13px; color: rgba(243,236,224,.68); }

/* =====================
   HOW IT WORKS
   ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 32px; left: 0; right: 0;
  height: 1px; background: var(--rule); z-index: 0;
}
@media (max-width: 860px) { .steps-grid { grid-template-columns: repeat(2,1fr); } .steps-grid::before { display: none; } }
@media (max-width: 460px) { .steps-grid { grid-template-columns: 1fr; } }
.step { position: relative; z-index: 1; }
.step .step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 14px; }

/* =====================
   TESTIMONIALS
   ===================== */
#testimonials { background: var(--accent-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.t-card .quote-mark { font-family: var(--serif); font-size: 56px; font-style: italic; color: var(--accent); line-height: .6; height: 22px; }
.t-card blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.45;
  color: var(--ink); margin: 0; flex-grow: 1;
}
.t-card .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--rule);
}
.t-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 17px;
}
.who .t-name { font-size: 14px; font-weight: 500; }
.who .t-loc  { font-size: 12px; color: var(--ink-muted); }
.t-stars { color: var(--accent-2); font-size: 12px; letter-spacing: 2px; }

/* =====================
   FAQ
   ===================== */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.4fr);
  gap: clamp(32px, 6vw, 72px);
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: transparent; border: 0;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  text-align: left;
  font-family: var(--serif); font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink); cursor: pointer;
}
.faq-q .toggle {
  width: 30px; height: 30px;
  border-radius: 50%; border: 1px solid var(--rule);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .2s, color .2s, transform .3s;
  font-size: 14px; color: var(--ink-soft);
}
.faq-item.open .faq-q .toggle {
  background: var(--accent); color: #fff;
  border-color: var(--accent); transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 0 22px; color: var(--ink-soft); font-size: 15px; max-width: 60ch; }

/* =====================
   CONTACT
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.2fr);
  gap: clamp(28px, 5vw, 56px);
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--ink); color: var(--bg);
  padding: 36px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 24px;
  overflow: hidden;
}
.contact-info h3 { color: var(--bg); font-size: 24px; }
.contact-info .ci-desc { font-size: 14px; color: rgba(243,236,224,.7); line-height: 1.65; }
.info-rows { display: grid; gap: 18px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; }
.info-row .ir-icon { width: 17px; height: 17px; color: var(--accent-2); flex-shrink: 0; margin-top: 3px; }
.info-row .lbl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(243,236,224,.55); margin-bottom: 3px; }
.info-row .val { font-size: 14px; color: var(--bg); }
.info-row .val a { color: inherit; text-decoration: none; }
.info-row .val a:hover { color: var(--accent-2); }
.map-placeholder {
  margin-top: auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.contact-form {
  background: var(--bg-elev);
  padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form .full { grid-column: 1/-1; }
@media (max-width: 580px) { .contact-form { grid-template-columns: 1fr; } .contact-form .full { grid-column: 1; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--bg); font-size: 14px; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--bg-elev);
}
.field textarea { resize: vertical; min-height: 96px; }
.segmented {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule); border-radius: var(--radius);
  overflow: hidden; background: var(--bg);
}
.segmented input[type="radio"] { display: none; }
.segmented label {
  text-align: center; padding: 11px 8px; cursor: pointer;
  font-size: 13px; color: var(--ink-soft);
  transition: all .2s; letter-spacing: 0;
  text-transform: none; border-right: 1px solid var(--rule);
}
.segmented label:last-child { border-right: 0; }
.segmented input:checked + label { background: var(--ink); color: var(--bg); }
.form-actions { grid-column: 1/-1; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.success-msg { font-size: 14px; color: #1f8a5b; font-weight: 500; }

/* =====================
   FOOTER
   ===================== */
.site-footer { background: var(--ink); color: rgba(243,236,224,.65); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--bg);
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-grid a:hover { color: var(--bg); }
.f-brand { color: var(--bg); }
.f-brand .brand-mark { background: var(--bg); color: var(--ink); }
.f-brand small { color: rgba(243,236,224,.45); }
.f-desc { font-size: 14px; line-height: 1.7; max-width: 36ch; margin-top: 16px; }
.socials { display: flex; gap: 7px; margin-top: 18px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s, color .2s;
}
.socials a:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--ink); }
.socials svg { width: 13px; height: 13px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px; font-size: 12px;
  color: rgba(243,236,224,.45);
}
@media (max-width: 580px) { .footer-bottom { flex-direction: column; gap: 8px; } }

/* =====================
   FLOATING WHATSAPP
   ===================== */
.fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 40;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.38);
  transition: transform .2s;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 24px; height: 24px; }

/* =====================
   SVG ILLUSTRATIONS
   ===================== */
.svg-full { width: 100%; height: 100%; display: block; }
