/* ============================================================
   Airbnb India — Style & Animation System
   ============================================================ */

:root {
  --teal-900: #0b2b26;
  --teal-800: #0f3d36;
  --teal-700: #14594d;
  --teal-600: #1b7a68;
  --teal-500: #23a08a;
  --teal-100: #e3f4f0;
  --amber-500: #ff7a1a;
  --amber-400: #ff9838;
  --amber-100: #fff1e3;
  --ink: #16241f;
  --ink-soft: #40544c;
  --paper: #fffdf9;
  --cream: #f7f3ea;
  --white: #ffffff;
  --line: #e6e0d3;
  --shadow-sm: 0 2px 10px rgba(11, 43, 38, 0.08);
  --shadow-md: 0 12px 30px rgba(11, 43, 38, 0.14);
  --shadow-lg: 0 24px 60px rgba(11, 43, 38, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--amber-500); }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--ink); }

.display-title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.01em; }
.section-sub { color: var(--ink-soft); margin-top: 10px; max-width: 640px; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 8px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-500);
  background: var(--amber-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary { background: var(--amber-500); color: #fff; box-shadow: 0 10px 24px rgba(255, 122, 26, 0.35); }
.btn-primary:hover { background: var(--amber-400); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255, 122, 26, 0.4); }

.btn-teal { background: var(--teal-600); color: #fff; box-shadow: 0 10px 24px rgba(27, 122, 104, 0.3); }
.btn-teal:hover { background: var(--teal-500); color: #fff; transform: translateY(-3px); }

.btn-outline { border-color: var(--teal-600); color: var(--teal-700); background: transparent; }
.btn-outline:hover { background: var(--teal-100); transform: translateY(-3px); }

.btn-ghost { background: #fff; color: var(--teal-700); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--teal-800); }
.logo:hover { color: var(--teal-800); }
.logo-badge { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--teal-600), var(--amber-500)); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.logo-badge svg { width: 24px; height: 24px; }

.logo .dot { color: var(--amber-500); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); position: relative; padding: 6px 2px; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--amber-500); transition: width 0.3s ease; border-radius: 2px; }
.nav a:hover { color: var(--teal-800); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--teal-800); }
.nav a.active::after { width: 100%; }

.nav-cta { padding: 10px 20px; font-size: 0.9rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--teal-800); margin: 5px 0; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-700) 60%, var(--teal-600) 100%); color: #fff; padding: 90px 0 140px; }

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg svg { position: absolute; width: 100%; height: 100%; opacity: 0.14; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.5; animation: float 12s ease-in-out infinite; }
.orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, var(--amber-500), transparent 70%); top: -90px; right: -60px; }
.orb-2 { width: 320px; height: 320px; background: radial-gradient(circle, #7fe3c9, transparent 70%); bottom: -120px; left: -70px; animation-delay: -6s; }
.orb-3 { width: 140px; height: 140px; background: radial-gradient(circle, #ffd08a, transparent 70%); top: 40%; left: 55%; animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-34px) translateX(18px) scale(1.06); }
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { color: #fff; margin: 16px 0 18px; }
.hero p.lead { color: rgba(255, 255, 255, 0.85); font-size: 1.13rem; max-width: 620px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22); padding: 8px 16px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: #fff; backdrop-filter: blur(4px); animation: fadeUp 0.7s ease both; }
.hero-badge svg { width: 16px; height: 16px; }

/* ---------- Search ---------- */
.search-shell { margin-top: 34px; max-width: 720px; }
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}
.search-box svg { width: 22px; height: 22px; color: var(--teal-600); flex-shrink: 0; }
.search-input { flex: 1; border: 0; outline: 0; font-family: var(--font-body); font-size: 1.02rem; color: var(--ink); background: transparent; padding: 10px 0; }
.search-input::placeholder { color: #93a69f; }
.search-submit { background: var(--amber-500); border: 0; color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; padding: 14px 28px; border-radius: 999px; cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; white-space: nowrap; }
.search-submit:hover { background: var(--amber-400); transform: scale(1.03); }

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  max-height: 380px;
  overflow: auto;
  z-index: 50;
  display: none;
}
.search-results.open { display: block; animation: fadeUp 0.25s ease both; }
.search-result-item { display: flex; gap: 12px; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--cream); cursor: pointer; transition: background 0.2s ease; }
.search-result-item:hover { background: var(--teal-100); }
.search-result-item .thumb { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.1rem; }
.search-result-item .res-title { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.search-result-item .res-sub { font-size: 0.8rem; color: var(--ink-soft); }
.search-result-item .tag { margin-left: auto; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: var(--amber-100); color: var(--amber-500); padding: 4px 10px; border-radius: 999px; }
.search-popular { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.search-popular a { color: rgba(255, 255, 255, 0.85); font-size: 0.85rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); padding: 7px 14px; border-radius: 999px; transition: background 0.25s ease, transform 0.25s ease; }
.search-popular a:hover { background: rgba(255, 255, 255, 0.25); color: #fff; transform: translateY(-2px); }

/* ---------- Floating stat cards ---------- */
.hero-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 820px; margin-top: 60px; }
.stat-card { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-md); padding: 22px 24px; backdrop-filter: blur(8px); color: #fff; animation: fadeUp 0.8s ease both; }
.stat-card:nth-child(2) { animation-delay: 0.15s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
.stat-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-alt { background: var(--cream); }

/* ---------- Destination cards ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }

.dest-card { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: block; aspect-ratio: 4 / 5; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.dest-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }
.dest-card .dest-art { position: absolute; inset: 0; }
.dest-card .dest-art svg { width: 100%; height: 100%; transition: transform 0.6s ease; }
.dest-card:hover .dest-art svg { transform: scale(1.08); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8, 20, 17, 0.82) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.dest-overlay h3 { color: #fff; font-size: 1.4rem; }
.dest-overlay p { color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; margin-top: 4px; }
.dest-count { position: absolute; top: 14px; right: 14px; background: rgba(255, 255, 255, 0.92); color: var(--teal-800); font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }

/* ---------- BNB cards ---------- */
.bnb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 26px; }

.bnb-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s ease, box-shadow 0.35s ease; display: flex; flex-direction: column; }
.bnb-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.bnb-photo { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.bnb-photo svg { width: 100%; height: 100%; transition: transform 0.6s ease; }
.bnb-card:hover .bnb-photo svg { transform: scale(1.07); }
.bnb-price-flag { position: absolute; top: 14px; left: 14px; background: var(--amber-500); color: #fff; font-weight: 700; font-size: 0.82rem; padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.bnb-heart { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.92); display: grid; place-items: center; cursor: pointer; transition: transform 0.25s ease; border: 0; }
.bnb-heart:hover { transform: scale(1.12); }
.bnb-heart svg { width: 20px; height: 20px; color: var(--amber-500); }
.bnb-heart.saved svg { fill: var(--amber-500); }

.bnb-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bnb-loc { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-600); }
.bnb-loc svg { width: 13px; height: 13px; }
.bnb-body h3 { font-size: 1.22rem; }
.bnb-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.bnb-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--ink-soft); background: var(--cream); padding: 5px 11px; border-radius: 999px; }
.bnb-meta svg { width: 14px; height: 14px; color: var(--teal-600); }
.bnb-rating { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.bnb-rating svg { width: 16px; height: 16px; color: var(--amber-500); }
.bnb-rating small { font-weight: 500; color: var(--ink-soft); }
.bnb-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 14px; }
.bnb-actions .btn { flex: 1; padding: 11px 14px; font-size: 0.9rem; }

/* ---------- Features / how it works ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card { background: #fff; border-radius: var(--radius-md); padding: 30px 26px; box-shadow: var(--shadow-sm); border: 1px solid transparent; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.feature-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(135deg, var(--teal-100), var(--teal-600)); color: #fff; }
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--teal-900); padding: 18px 0; }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.7); font-weight: 600; white-space: nowrap; }
.marquee-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber-500); display: inline-block; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--teal-800), var(--teal-600)); border-radius: var(--radius-lg); padding: 64px 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 12px 0 24px; }
.cta-band .cta-art { position: relative; display: grid; place-items: center; }
.cta-band .cta-art svg { width: 100%; max-width: 300px; animation: float 8s ease-in-out infinite; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Contact / listing CTA strip ---------- */
.list-cta { background: linear-gradient(120deg, var(--amber-500), var(--amber-400)); border-radius: var(--radius-md); padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: #fff; box-shadow: 0 16px 40px rgba(255, 122, 26, 0.3); }
.list-cta h3 { color: #fff; font-size: 1.5rem; }
.list-cta p { color: rgba(255, 255, 255, 0.92); margin-top: 6px; }
.list-cta .btn { background: #fff; color: var(--amber-500); }
.list-cta .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: rgba(255, 255, 255, 0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; padding: 5px 0; }
.footer-col a:hover { color: var(--amber-400); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; padding: 6px 0; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255, 255, 255, 0.72); }
.footer-bottom a:hover { color: var(--amber-400); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--teal-900), var(--teal-700)); color: #fff; padding: 64px 0 76px; }
.page-hero h1 { color: #fff; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.85rem; margin-bottom: 14px; }
.page-hero .crumb { color: rgba(255, 255, 255, 0.7); }
.page-hero .crumb a { color: rgba(255, 255, 255, 0.85); }
.page-hero .crumb a:hover { color: var(--amber-400); }
.page-hero .crumb .sep { color: rgba(255, 255, 255, 0.4); }
.bnb-hero .crumb { color: var(--ink-soft); }
.bnb-hero .crumb a { color: var(--teal-700); }
.bnb-hero .crumb a:hover { color: var(--amber-500); }
.bnb-hero .crumb .sep { color: var(--ink-soft); }
.bnb-hero .crumb > span:last-child { color: var(--ink); }
.page-hero p { color: rgba(255, 255, 255, 0.82); max-width: 700px; margin-top: 14px; }
.page-hero-orb { position: absolute; border-radius: 50%; background: radial-gradient(circle, var(--amber-500), transparent 70%); filter: blur(8px); opacity: 0.4; animation: float 10s ease-in-out infinite; }
.page-hero-orb.one { width: 300px; height: 300px; top: -100px; right: -60px; }
.page-hero-orb.two { width: 200px; height: 200px; bottom: -80px; left: 30%; background: radial-gradient(circle, #7fe3c9, transparent 70%); animation-delay: -4s; }

/* ---------- Breadcrumb JSON note ---------- */

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.blog-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s ease, box-shadow 0.35s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-cover { aspect-ratio: 16 / 9; overflow: hidden; position: relative; }
.blog-cover svg { width: 100%; height: 100%; transition: transform 0.6s ease; }
.blog-card:hover .blog-cover svg { transform: scale(1.06); }
.blog-cover .cat-tag { position: absolute; top: 14px; left: 14px; background: var(--teal-600); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.blog-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-date { font-size: 0.8rem; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.blog-date svg { width: 14px; height: 14px; }
.blog-body h3 { font-size: 1.22rem; line-height: 1.3; }
.blog-body h3 a { color: var(--ink); }
.blog-body h3 a:hover { color: var(--amber-500); }
.blog-body p { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.read-more { font-weight: 700; font-size: 0.9rem; color: var(--teal-700); display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { color: var(--amber-500); }
.read-more svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.read-more:hover svg { transform: translateX(4px); }

/* ---------- Article page ---------- */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-hero-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 34px; box-shadow: var(--shadow-md); }
.article-hero-cover svg { width: 100%; height: auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--ink-soft); font-size: 0.88rem; margin: 18px 0 26px; align-items: center; }
.article-meta .author-chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.article-meta .author-chip .avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-600), var(--amber-500)); color: #fff; display: grid; place-items: center; font-size: 0.85rem; }
.article-body h2 { font-size: 1.55rem; margin: 34px 0 14px; }
.article-body h3 { font-size: 1.25rem; margin: 26px 0 12px; }
.article-body p { margin-bottom: 16px; color: var(--ink-soft); }
.article-body ul { list-style: disc; margin: 0 0 18px 24px; color: var(--ink-soft); }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { border-left: 4px solid var(--amber-500); background: var(--amber-100); padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; color: var(--ink); }
.article-toc { background: var(--cream); border-radius: var(--radius-md); padding: 22px 26px; margin: 26px 0; border: 1px solid var(--line); }
.article-toc h3 { margin-bottom: 10px; font-size: 1.1rem; }
.article-toc a { display: block; padding: 5px 0; color: var(--teal-700); font-weight: 600; font-size: 0.94rem; }
.article-toc a:hover { color: var(--amber-500); }
.article-toc ol { margin-left: 20px; }
.author-box { display: flex; gap: 18px; align-items: center; background: var(--teal-100); border-radius: var(--radius-md); padding: 22px 26px; margin-top: 40px; }
.author-box .avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-600), var(--amber-500)); color: #fff; display: grid; place-items: center; font-size: 1.4rem; font-weight: 700; flex-shrink: 0; }
.author-box h4 { margin-bottom: 4px; }
.author-box p { font-size: 0.92rem; color: var(--ink-soft); }
.host-contact { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.host-contact .btn-sm { padding: 8px 16px; font-size: 0.85rem; border-radius: 999px; text-decoration: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.contact-panel { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.contact-panel h2 { margin-bottom: 8px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.contact-actions .btn { flex: 1 1 200px; }
.contact-actions .btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-field { margin-bottom: 18px; }
.contact-field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.contact-field input, .contact-field textarea, .contact-field select { width: 100%; font-family: var(--font-body); font-size: 0.98rem; border: 2px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px; outline: 0; background: var(--paper); transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.contact-field input:focus, .contact-field textarea:focus, .contact-field select:focus { border-color: var(--teal-600); box-shadow: 0 0 0 4px rgba(27, 122, 104, 0.12); }
.contact-field textarea { min-height: 130px; resize: vertical; }
.contact-field .hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 6px; }

.contact-side { display: flex; flex-direction: column; gap: 18px; }
.contact-card { background: #fff; border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.94rem; color: var(--ink-soft); }
.contact-card a { color: var(--teal-700); font-weight: 600; }
.contact-card a:hover { color: var(--amber-500); }

/* ---------- Why list / steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: step; }
.step-card { background: #fff; border-radius: var(--radius-md); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-card::before { counter-increment: step; content: counter(step); position: absolute; top: 18px; right: 20px; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--teal-100); }
.step-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 0.93rem; }

.benefit-band { background: linear-gradient(135deg, var(--teal-900), var(--teal-700)); border-radius: var(--radius-lg); color: #fff; padding: 44px 40px; text-align: center; margin: 10px 0; }
.benefit-band h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); max-width: 760px; margin: 0 auto 14px; }
.benefit-band p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,0.85); }
.benefit-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.benefit-pill { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); padding: 8px 18px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 26px; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-q .ico { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; flex-shrink: 0; transition: transform 0.3s ease, background 0.3s ease; }
.faq-q .ico svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--amber-500); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 26px 22px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Tables ---------- */
.tbl-wrap { overflow-x: auto; margin: 20px 0; }
.tbl-wrap table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 0.92rem; }
.tbl-wrap th, .tbl-wrap td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.tbl-wrap th { background: var(--teal-800); color: #fff; font-weight: 600; }
.tbl-wrap tr:hover td { background: var(--cream); }

/* ---------- Animations / reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { from { background-position: -400px 0; } to { background-position: 400px 0; } }

.animate-pulse-slow { animation: pulse 3s ease-in-out infinite; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--teal-800); color: #fff; padding: 14px 24px; border-radius: 999px; box-shadow: var(--shadow-lg); font-weight: 600; font-size: 0.92rem; z-index: 300; opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---------- Back to top ---------- */
.back-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--teal-800); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; z-index: 100; }
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-4px); }
.back-top svg { width: 20px; height: 20px; }

/* ---------- Skip to main content ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal-800);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 500;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 0; color: #fff; }

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

/* ============================================================
   Photo layout system (v2)
   ============================================================ */

/* ---------- Logo / brand ---------- */
.logo-badge img { width: 24px; height: 24px; }
.cta-band .cta-art img { width: 100%; max-width: 300px; animation: float 8s ease-in-out infinite; }

/* ---------- Photo hero (home) ---------- */
.hero--photo { background: linear-gradient(160deg, var(--teal-900), var(--teal-700)); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7, 22, 19, 0.92) 0%, rgba(9, 34, 29, 0.78) 45%, rgba(11, 43, 38, 0.55) 100%); }
.hero--photo .hero-content, .hero--photo .hero-stats { position: relative; z-index: 2; }
.text-accent { color: var(--amber-400); }
.eyebrow--light { background: rgba(255, 255, 255, 0.14); color: var(--amber-400); backdrop-filter: blur(4px); }

/* ---------- Photo hero (inner pages) ---------- */
.page-hero--photo { background: var(--teal-900); }
.page-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7, 22, 19, 0.9), rgba(9, 34, 29, 0.62) 60%, rgba(11, 43, 38, 0.45)); }
.page-hero--photo .container { position: relative; z-index: 2; }

/* ---------- Images in cards (replace svg) ---------- */
.dest-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover .dest-art img { transform: scale(1.08); }
.bnb-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bnb-card:hover .bnb-photo img { transform: scale(1.07); }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-cover img { transform: scale(1.06); }
.article-hero-cover img { width: 100%; height: auto; display: block; }
.bnb-blurb { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; margin-top: 2px; }

/* ---------- Search thumbnails (images) ---------- */
.search-result-item .thumb { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; object-fit: cover; display: block; }
.search-result-item span.thumb { display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.1rem; }

/* ---------- Tier cards (best / cheap / luxury) ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.tier-card { display: block; background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; position: relative; overflow: hidden; }
.tier-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tier-card::after { content: ""; position: absolute; top: -70px; right: -70px; width: 160px; height: 160px; border-radius: 50%; opacity: 0.14; }
.tier--best::after { background: var(--amber-500); }
.tier--cheap::after { background: var(--teal-600); }
.tier--luxury::after { background: #8a5a44; }
.tier-emoji { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.tier--best .tier-emoji { background: linear-gradient(135deg, var(--amber-400), var(--amber-500)); }
.tier--cheap .tier-emoji { background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); }
.tier--luxury .tier-emoji { background: linear-gradient(135deg, #b07a5c, #8a5a44); }
.tier-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.tier-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 14px; }
.tier-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.9rem; color: var(--teal-700); }
.tier-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.tier-card:hover .tier-link svg { transform: translateX(4px); }
.tier-card:hover .tier-link { color: var(--amber-500); }

/* tier inline strip on destination pages */
.tier-inline { background: var(--cream); border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--line); }
.tier-inline h3 { margin-bottom: 16px; }
.tier-inline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.tier-mini { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: var(--radius-md); padding: 16px 18px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tier-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-mini .tier-emoji { width: 42px; height: 42px; font-size: 1.15rem; margin-bottom: 0; border-radius: 12px; flex-shrink: 0; }
.tier-mini strong { display: block; font-size: 0.95rem; color: var(--ink); }
.tier-mini small { color: var(--ink-soft); font-size: 0.78rem; }

/* ---------- Area cards ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.area-card { display: block; background: #fff; border-radius: var(--radius-md); padding: 26px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.area-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.area-card p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 10px; }
.area-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.86rem; color: var(--teal-700); }
.area-link svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.area-card:hover .area-link { color: var(--amber-500); }
.area-card:hover .area-link svg { transform: translateX(4px); }

/* ---------- Split info cards ---------- */
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; }
.info-card h3 { margin-bottom: 8px; }
.info-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- More locations chips ---------- */
.more-locs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 18px; }
.loc-chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 22px; font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); box-shadow: var(--shadow-sm); }

/* ---------- BNB detail page ---------- */
.bnb-hero { padding-top: 40px; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 12px; border-radius: var(--radius-lg); overflow: hidden; }
.gal-main { grid-row: 1 / span 2; }
.gal-main img, .gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-thumb img { height: 100%; min-height: 120px; }
.bnb-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.bnb-head h1 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin: 8px 0 8px; }
.bnb-head .bnb-loc { font-size: 0.8rem; }
.book-panel { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 1px solid var(--line); padding: 26px; min-width: 280px; display: flex; flex-direction: column; gap: 14px; }
.book-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink); display: flex; align-items: baseline; gap: 6px; }
.book-price small { font-size: 0.9rem; font-family: var(--font-body); color: var(--ink-soft); font-weight: 500; }
.book-note { font-size: 0.8rem; color: var(--ink-soft); text-align: center; }
.amen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; margin-top: 18px; }
.amen-chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.amen-chip svg { width: 15px; height: 15px; color: var(--teal-600); flex-shrink: 0; }
.nearby-list { margin-top: 16px; }
.nearby-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; color: var(--ink-soft); }
.nearby-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber-500); flex-shrink: 0; }

/* ---------- Blog filters ---------- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.1); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 0.86rem; padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; }
.chip:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.chip.active { background: var(--amber-500); border-color: var(--amber-500); color: #fff; }

/* ---------- "More" card ---------- */
.bnb-card--more .bnb-photo { position: relative; }
.bnb-card--more .bnb-photo img { opacity: 0.75; }

/* ============================================================
   Responsive refinements (all screen sizes)
   ============================================================ */
@media (max-width: 1200px) {
  .hero { padding: 80px 0 110px; }
}

@media (max-width: 1024px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .cta-art { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .gal-main { grid-row: auto; grid-column: 1 / -1; }
  .gal-main img { max-height: 420px; }
  .gal-thumb img { height: 160px; }
  .bnb-head { align-items: flex-start; }
  .book-panel { min-width: 100%; }
}

@media (max-width: 820px) {
  .nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--paper); flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 24px 26px; box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform 0.35s ease; border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .nav.open { transform: translateY(0); }
  .nav a { display: block; padding: 12px 6px; border-bottom: 1px solid var(--cream); }
  .nav .nav-cta { margin-top: 14px; text-align: center; border: 0; }
  .nav-toggle { display: block; }
  .hero { padding: 60px 0 80px; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .list-cta { padding: 26px 24px; }
  section { padding: 60px 0; }
}

@media (max-width: 560px) {
  .search-box { flex-wrap: wrap; border-radius: 22px; padding: 12px; }
  .search-input { flex: 1 1 100%; }
  .search-submit { flex: 1 1 100%; }
  .bnb-grid, .blog-grid, .dest-grid, .area-grid, .tier-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-badges { gap: 8px; }
  .display-title { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .cta-band { padding: 40px 26px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-main img { max-height: 300px; }
  .gal-thumb img { height: 140px; }
  .book-panel { padding: 20px; }
  .tier-inline { padding: 22px; }
  .tier-inline-grid { grid-template-columns: 1fr; }
  .info-card { padding: 22px; }
}

@media (max-width: 380px) {
  .logo { font-size: 1.1rem; }
  .logo-badge { width: 34px; height: 34px; }
  .hero-badge { font-size: 0.78rem; padding: 7px 12px; }
  .bnbs-head h1 { font-size: 1.5rem; }
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.testi-stars { display: flex; gap: 4px; color: var(--amber-500); }
.testi-stars svg { width: 18px; height: 18px; }
.testi-text { font-size: 1.02rem; color: var(--ink); }
.testi-meta { margin-top: auto; border-top: 1px dashed var(--line); padding-top: 14px; }
.testi-meta strong { display: block; font-size: 0.95rem; }
.testi-meta span { font-size: 0.82rem; color: var(--ink-soft); }
.testi-meta span a { color: var(--teal-700); font-weight: 600; }
.testi-meta span a:hover { color: var(--amber-500); }

/* ---------- One-time announcement popup ---------- */
.notif-overlay { position: fixed; inset: 0; background: rgba(11, 43, 38, 0.55); z-index: 400; display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.notif-overlay.show { opacity: 1; pointer-events: auto; }
.notif-modal { background: var(--paper); border-radius: var(--radius-lg); padding: 38px 32px 32px; max-width: 440px; width: 100%; position: relative; text-align: center; box-shadow: var(--shadow-lg); transform: translateY(14px); transition: transform 0.3s ease; }
.notif-overlay.show .notif-modal { transform: translateY(0); }
.notif-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--cream); color: var(--ink-soft); cursor: pointer; display: grid; place-items: center; }
.notif-close:hover { color: var(--amber-500); }
.notif-close svg { width: 16px; height: 16px; }
.notif-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; background: var(--amber-100); color: var(--amber-500); display: grid; place-items: center; }
.notif-icon svg { width: 28px; height: 28px; }
.notif-modal h3 { font-size: 1.35rem; margin-bottom: 10px; }
.notif-modal p { color: var(--ink-soft); margin-bottom: 22px; }
.notif-btn { width: 100%; }

@media (max-width: 480px) {
  .notif-modal { padding: 34px 22px 26px; }
}

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