/* ============================================================
   TRAVEL HAVEN — Design Tokens
   Palette sampled directly from the client's own logo artwork:
   deep indigo navy + antique gold, with misty slate-blue support.
   Display: Fraunces (literary serif, echoes the logo's engraved wordmark)
   Body: Public Sans (quiet, legible, humane)
   Utility/eyebrow: Space Mono (ticket-stub, itinerary-stamp feel)
   ============================================================ */

:root {
  --indigo-950: #0A1B2E;
  --indigo-900: #12233E;
  --indigo-800: #1B3355;
  --indigo-700: #24405F;
  --slate-500: #51708C;
  --slate-400: #7592AB;
  --mist-200: #E1E8EF;
  --mist-100: #EEF2F6;
  --ivory-50: #F7F7F4;
  --gold-500: #B98A47;
  --gold-600: #9C7238;
  --gold-300: #D9BD8C;
  --ink-900: #1C2430;
  --ink-600: #4B5768;

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --radius-card: 14px;
  --radius-pill: 999px;
  --max-width: 1180px;

  --shadow-soft: 0 12px 32px -16px rgba(10, 27, 46, 0.28);
  --shadow-lift: 0 20px 44px -18px rgba(10, 27, 46, 0.4);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory-50);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--indigo-950);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 500; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.14; }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1em; color: var(--ink-600); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--gold-500); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.on-dark { color: var(--gold-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), color 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-500); color: var(--indigo-950); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--gold-600); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; color: var(--ivory-50); border-color: rgba(247,247,244,0.4); }
.btn-ghost:hover { border-color: var(--ivory-50); background: rgba(247,247,244,0.08); }
.btn-outline { background: transparent; color: var(--indigo-950); border-color: var(--indigo-900); }
.btn-outline:hover { background: var(--indigo-950); color: var(--ivory-50); }
.btn-whatsapp { background: #25D366; color: #05330f; }
.btn-whatsapp:hover { background: #1ebe5a; }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 247, 244, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 27, 46, 0.08);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand-mark { display: flex; align-items: center; gap: 10px; }
.brand-mark img { height: 46px; width: auto; }
.brand-word { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; font-weight: 600; color: var(--indigo-950); line-height: 1.1; }
.brand-word span { display: block; font-family: var(--font-mono); font-style: normal; font-size: 0.58rem; letter-spacing: 0.12em; color: var(--gold-600); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.93rem; font-weight: 500; color: var(--ink-600); position: relative; padding: 4px 0; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--indigo-950); }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--gold-500); border-radius: 2px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--indigo-950); margin: 5px 0; transition: all 0.25s var(--ease-out); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 82px; left: 0; right: 0;
    background: var(--ivory-50);
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 14px 28px 24px;
    border-bottom: 1px solid rgba(10,27,46,0.08);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: all 0.25s var(--ease-out);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #1B3355 0%, var(--indigo-900) 55%, var(--indigo-950) 100%); color: var(--ivory-50); padding-top: 64px; }
.hero-inner { position: relative; z-index: 3; padding: 70px 0 0; text-align: center; }
.hero .sub { max-width: 620px; margin: 0 auto 34px; color: rgba(247,247,244,0.82); font-size: 1.1rem; }
.hero h1 { color: var(--ivory-50); max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.hero-strip { position: relative; z-index: 3; border-top: 1px dashed rgba(247,247,244,0.25); padding: 18px 0; }
.hero-strip .wrap { display: flex; justify-content: center; gap: 10px; align-items: center; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; color: rgba(247,247,244,0.7); text-align: center; flex-wrap: wrap; }
.hero-art { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; z-index: 1; }
.hero-mist { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(185,138,71,0.16), transparent 60%); z-index: 2; pointer-events: none; }
.parallax-slow { transition: transform 0.1s linear; }

/* ---------- Section scaffolding ---------- */
section { padding: 92px 0; }
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.bg-mist { background: var(--mist-100); }
.bg-indigo { background: var(--indigo-950); color: var(--ivory-50); }
.bg-indigo h2, .bg-indigo h3 { color: var(--ivory-50); }
.bg-indigo p { color: rgba(247,247,244,0.75); }

/* ---------- Room-teaser / trip stub cards ---------- */
.stub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.stub {
  position: relative; background: var(--ivory-50); border-radius: var(--radius-card);
  padding: 30px 26px 26px; box-shadow: var(--shadow-soft); border: 1px solid rgba(10,27,46,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.stub:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.stub::after {
  content: ""; position: absolute; right: 22px; top: 0; bottom: 0; width: 1px;
  background-image: linear-gradient(rgba(10,27,46,0.16) 60%, transparent 0%);
  background-size: 1px 8px; background-repeat: repeat-y;
}
.stub-index { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold-600); letter-spacing: 0.1em; margin-bottom: 10px; }
.stub h3 { margin-bottom: 8px; }
.stub .best-for { font-size: 0.86rem; color: var(--slate-500); font-weight: 600; margin-top: auto; padding-top: 14px; }
.stub .stub-cta { margin-top: 16px; font-size: 0.88rem; font-weight: 700; color: var(--indigo-950); display: inline-flex; align-items: center; gap: 6px; }
.stub .stub-cta::after { content: "\2192"; transition: transform 0.2s var(--ease-out); }
.stub:hover .stub-cta::after { transform: translateX(4px); }

/* ---------- Photo-backed feature card (room teaser) ---------- */
.photo-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.photo-feature img { border-radius: 18px; box-shadow: var(--shadow-lift); }
@media (max-width: 900px) { .photo-feature { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Trust checklist ---------- */
.trust-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.trust-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.trust-list li { display: flex; gap: 16px; align-items: flex-start; }
.trust-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: rgba(185,138,71,0.15); display: flex; align-items: center; justify-content: center; color: var(--gold-600); font-size: 1rem; }
.trust-list strong { display: block; color: var(--indigo-950); margin-bottom: 2px; }
.trust-list p { margin: 0; font-size: 0.95rem; }
@media (max-width: 860px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials: postcards ---------- */
.postcard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.postcard { background: var(--ivory-50); border: 1px dashed rgba(10,27,46,0.28); border-radius: 10px; padding: 28px 24px; position: relative; }
.postcard::before {
  content: "\270E"; position: absolute; top: -14px; left: 22px; background: var(--gold-500); color: var(--indigo-950);
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; box-shadow: var(--shadow-soft);
}
.postcard p.quote { font-family: var(--font-display); font-style: italic; font-size: 1.06rem; color: var(--ink-900); margin-bottom: 16px; }
.postcard .who { font-family: var(--font-mono); font-size: 0.76rem; color: var(--slate-500); letter-spacing: 0.04em; }

/* ---------- How it works: trail waypoints ---------- */
.trail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trail::before {
  content: ""; position: absolute; top: 22px; left: 6%; right: 6%; height: 2px;
  background-image: linear-gradient(to right, rgba(247,247,244,0.4) 50%, transparent 0%);
  background-size: 14px 2px;
}
.waypoint { position: relative; text-align: center; padding-top: 60px; }
.waypoint .pin {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-500); color: var(--indigo-950); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.9rem; box-shadow: 0 0 0 6px var(--indigo-950), var(--shadow-soft);
}
.waypoint h3 { font-size: 1.06rem; margin-bottom: 6px; }
.waypoint p { font-size: 0.92rem; }
@media (max-width: 860px) { .trail { grid-template-columns: 1fr; gap: 44px; } .trail::before { display: none; } }
.how-cta { text-align: center; margin-top: 46px; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--indigo-950); color: rgba(247,247,244,0.7); padding: 56px 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(247,247,244,0.14); margin-bottom: 24px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 12px; }
.footer-brand p { max-width: 320px; margin-top: 10px; font-size: 0.92rem; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { color: var(--ivory-50); font-family: var(--font-body); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 0.92rem; margin-bottom: 8px; color: rgba(247,247,244,0.7); }
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }
.icon-badge { width: 52px; height: 52px; border-radius: 50%; background: rgba(185,138,71,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; flex-shrink: 0; }
.icon-badge svg { width: 28px; height: 28px; }
.trip-meta .icon-badge { background: rgba(81,112,140,0.14); }

/* ---------- Sikkim highlight chips ---------- */
.highlight-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.highlight-chips span { font-family: var(--font-mono); font-size: 0.8rem; color: rgba(247,247,244,0.85); background: rgba(247,247,244,0.08); border: 1px solid rgba(247,247,244,0.2); padding: 7px 14px; border-radius: var(--radius-pill); }
.footer-social { display: flex; gap: 18px; margin-top: 16px; }
.footer-social a { font-size: 0.86rem; font-weight: 600; color: var(--gold-300); margin-bottom: 0; }
.footer-social a:hover { color: var(--ivory-50); }
.placeholder-flag { color: var(--gold-300); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(180deg, var(--indigo-900), var(--indigo-950)); color: var(--ivory-50); padding: 66px 0 70px; text-align: center; }
.page-hero h1 { color: var(--ivory-50); }
.page-hero .sub { max-width: 600px; margin: 0 auto; color: rgba(247,247,244,0.78); }

/* ---------- Room gallery ---------- */
.room-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.room-gallery img { border-radius: 16px; box-shadow: var(--shadow-soft); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (max-width: 700px) { .room-gallery { grid-template-columns: 1fr; } }

.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin: 32px 0; }
.amenity { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--ivory-50); border-radius: 12px; border: 1px solid rgba(10,27,46,0.08); font-size: 0.94rem; font-weight: 600; color: var(--indigo-950); }
.amenity .icon { color: var(--gold-600); font-size: 1.1rem; }

.rate-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-600); background: rgba(185,138,71,0.12); padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 20px; }

.coming-soon-card { border: 1px dashed rgba(10,27,46,0.25); border-radius: var(--radius-card); padding: 34px; text-align: center; background: var(--mist-100); }

/* ---------- Trip cards (tours page) ---------- */
.trip-list { display: flex; flex-direction: column; gap: 20px; }
.trip-card { display: grid; grid-template-columns: 190px 1fr; gap: 26px; background: var(--ivory-50); border-radius: var(--radius-card); padding: 28px; box-shadow: var(--shadow-soft); border: 1px solid rgba(10,27,46,0.06); }
.trip-meta { display: flex; flex-direction: column; gap: 10px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--slate-500); border-right: 1px dashed rgba(10,27,46,0.18); padding-right: 18px; }
.trip-meta .trip-icon { font-size: 1.6rem; margin-bottom: 2px; }
.trip-body h3 { margin-bottom: 8px; }
.trip-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 16px; }
.trip-tags span { font-size: 0.78rem; font-family: var(--font-mono); background: rgba(81,112,140,0.12); color: var(--slate-500); padding: 5px 12px; border-radius: var(--radius-pill); }
@media (max-width: 700px) {
  .trip-card { grid-template-columns: 1fr; }
  .trip-meta { border-right: none; border-bottom: 1px dashed rgba(10,27,46,0.18); padding-right: 0; padding-bottom: 16px; flex-direction: row; flex-wrap: wrap; gap: 18px; align-items: center; }
}

/* ---------- Sikkim custom banner ---------- */
.custom-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; background: var(--indigo-950); color: var(--ivory-50); border-radius: 24px; padding: 56px; }
.custom-banner h2, .custom-banner h3 { color: var(--ivory-50); }
.custom-banner p { color: rgba(247,247,244,0.78); }
.custom-banner ul { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.custom-banner ul li { padding-left: 24px; position: relative; font-size: 0.95rem; color: rgba(247,247,244,0.85); }
.custom-banner ul li::before { content: "\25C6"; position: absolute; left: 0; top: 3px; color: var(--gold-500); font-size: 0.7rem; }
@media (max-width: 860px) { .custom-banner { grid-template-columns: 1fr; padding: 34px 26px; } }

/* ---------- Transfer service callout ---------- */
.transfer-card { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; background: var(--mist-100); border-radius: var(--radius-card); padding: 30px 34px; border: 1px solid rgba(10,27,46,0.08); }
.transfer-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--indigo-950); color: var(--gold-300); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.transfer-route { font-family: var(--font-mono); font-size: 0.82rem; color: var(--slate-500); margin-top: 4px; }
@media (max-width: 700px) { .transfer-card { grid-template-columns: 1fr; text-align: center; } .transfer-icon { margin: 0 auto; } }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.value-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.value-list li { padding-left: 26px; position: relative; }
.value-list li::before { content: "\25C6"; position: absolute; left: 0; top: 2px; color: var(--gold-500); font-size: 0.7rem; }
.fit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.fit-card { padding: 22px; border-radius: 14px; }
.fit-card.good { background: rgba(81,112,140,0.1); }
.fit-card.not { background: rgba(185,138,71,0.1); }
.fit-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .fit-cols { grid-template-columns: 1fr; } }

/* ---------- Enquiry form ---------- */
.form-shell { background: var(--ivory-50); border-radius: 20px; box-shadow: var(--shadow-lift); padding: 44px; max-width: 760px; margin: 0 auto; border: 1px solid rgba(10,27,46,0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--indigo-950); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.96rem; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(10,27,46,0.18); background: #fff; color: var(--ink-900);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(185,138,71,0.22); }
.field textarea { resize: vertical; min-height: 92px; }
.privacy-note { font-size: 0.85rem; color: var(--slate-500); margin-top: 18px; display: flex; gap: 8px; align-items: flex-start; }
.form-submit { margin-top: 22px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-shell { padding: 28px 22px; } }
.form-success { display: none; text-align: center; padding: 20px; }
.form-success.show { display: block; }
.form-success h3 { color: var(--slate-500); }

.enquire-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 50px; }
.contact-card { background: var(--indigo-950); color: var(--ivory-50); border-radius: 20px; padding: 40px; height: 100%; }
.contact-card h3 { color: var(--ivory-50); }
.contact-card p { color: rgba(247,247,244,0.75); }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-line .icon { color: var(--gold-400, var(--gold-300)); font-size: 1.2rem; width: 26px; flex-shrink: 0; }
.contact-line strong { display: block; color: var(--ivory-50); font-size: 0.9rem; }
.contact-line span, .contact-line a { font-size: 0.94rem; color: rgba(247,247,244,0.8); }
@media (max-width: 860px) { .enquire-split { grid-template-columns: 1fr; } }

/* ---------- WhatsApp float button ---------- */
/* ---------- Social float stack (WhatsApp, Telegram, Instagram) ---------- */
.social-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  display: flex; flex-direction: column-reverse; gap: 14px;
}
.social-float a {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  transition: transform 0.25s var(--ease-out);
}
.social-float a:hover { transform: scale(1.08); }
.social-float a svg { width: 26px; height: 26px; }
.sf-whatsapp { background: #25D366; }
.sf-telegram { background: #229ED9; }
.sf-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

@media (max-width: 600px) {
  .social-float { bottom: 16px; right: 16px; gap: 10px; }
  .social-float a { width: 48px; height: 48px; }
  .social-float a svg { width: 22px; height: 22px; }
}

/* ---------- Fade-in on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
