/* ============================================================
   Voyara — Travel Agency
   Layout study based on modern booking-site patterns.
   ============================================================ */

:root {
  --ink: #131417;
  --muted: #6d7178;
  --faint: #9a9ea6;
  --line: #e8e8e5;
  --bg: #ffffff;
  --soft: #f6f6f3;
  --soft-2: #efefeb;
  --sky: #bfdcf2;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --shadow-card: 0 1px 2px rgba(19, 20, 23, 0.04), 0 12px 32px -16px rgba(19, 20, 23, 0.12);
  --shadow-pop: 0 20px 50px -20px rgba(19, 20, 23, 0.35);
}

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(1280px, 100% - 48px); margin-inline: auto; }

/* ---------- Type ---------- */
.h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.h2 em, .hero-title em, .newsletter em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.sub { color: var(--muted); font-size: 16px; max-width: 52ch; }
.sub.wide { max-width: 44ch; }
.side-note { color: var(--muted); font-size: 15px; }
.side-note strong { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-outline { border: 1px solid var(--line); background: var(--bg); }
.btn-outline:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); }

.circle-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s, color .25s;
}
.circle-btn svg { width: 18px; height: 18px; }
.circle-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 500;
}
.text-link svg { width: 15px; height: 15px; transition: transform .25s; }
.text-link:hover svg { transform: translateX(3px); }
.inline-link { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line); }

.header-inner {
  width: min(1380px, 100% - 40px);
  margin-inline: auto;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.logo { font-size: 25px; font-weight: 700; letter-spacing: -0.02em; }
.logo em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 1.06em; }

.nav-pill {
  display: flex; align-items: center; gap: 4px;
  background: var(--soft); border-radius: 999px; padding: 5px;
}
.nav-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-item .chev { width: 13px; height: 13px; }
.nav-item:hover { color: var(--ink); }
.nav-item.active { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(19,20,23,.08); }

.header-right { display: flex; align-items: center; gap: 10px; }
.header-link { font-size: 14.5px; font-weight: 500; margin-right: 6px; white-space: nowrap; }
.header-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s;
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover { border-color: var(--ink); }
.menu-toggle { display: none; }

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: 12px 24px 20px;
  background: #fff;
}
.mobile-menu a { padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--soft-2); }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 6px 14px 0; }

.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 88vh;
  background:
    linear-gradient(180deg, rgba(10, 40, 70, 0.38) 0%, rgba(10, 40, 70, 0.05) 45%, rgba(10, 30, 55, 0.25) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2400&auto=format&fit=crop") center 65% / cover no-repeat,
    var(--sky);
  display: flex;
}

.hero-content {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) 0 60px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; color: #fff;
}

/* Tabs */
.hero-tabs { display: flex; gap: clamp(14px, 3vw, 34px); margin-bottom: 30px; flex-wrap: wrap; justify-content: center; }
.hero-tab {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.82);
  font-size: 15px; font-weight: 500;
  padding: 8px 2px 12px;
  border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}
.hero-tab svg { width: 20px; height: 20px; }
.hero-tab:hover { color: #fff; }
.hero-tab.active { color: #fff; border-bottom-color: #fff; }

/* Search bar */
.search-bar {
  width: min(860px, 100%);
  background: #fff;
  border-radius: 999px;
  padding: 10px 10px 10px 28px;
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 0.9fr auto;
  align-items: center;
  color: var(--ink);
  box-shadow: var(--shadow-pop);
  text-align: left;
}
.search-seg {
  display: flex; align-items: center; gap: 13px;
  padding: 6px 20px 6px 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  min-width: 0;
}
.search-seg + .search-seg { padding-left: 20px; }
.search-seg.no-border { border-right: 0; }
.seg-icon { width: 21px; height: 21px; flex: none; color: var(--ink); }
.seg-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.seg-label { font-weight: 600; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.seg-sub { font-size: 12.5px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.search-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  justify-self: end;
  transition: transform .25s ease;
}
.search-btn svg { width: 21px; height: 21px; }
.search-btn:hover { transform: scale(1.06); }

/* Headline */
.hero-title {
  margin-top: clamp(40px, 8vh, 84px);
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(10, 40, 70, 0.25);
}

.rating-pill {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--ink);
  font-size: 13.5px; font-weight: 500;
  padding: 9px 18px; border-radius: 999px;
  box-shadow: var(--shadow-card);
}
.star { width: 15px; height: 15px; fill: var(--ink); stroke: none; }
.rating-pill .star, .mini-pill .star { flex: none; }

.hero-social { margin-top: 16px; display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff; object-fit: cover;
}
.avatar-stack img + img { margin-left: -10px; }

/* ============================================================
   PARTNER LOGO STRIP
   ============================================================ */
.logo-strip { padding: 44px 0 10px; overflow: hidden; }
.logo-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.logo-row { display: flex; align-items: center; gap: clamp(48px, 7vw, 96px); padding-right: clamp(48px, 7vw, 96px); }
.p-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 600; color: #b9bcc1;
  white-space: nowrap;
}
.p-logo svg { width: 22px; height: 22px; }

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

/* ============================================================
   SECTION SHELLS
   ============================================================ */
.section { padding: clamp(56px, 9vh, 104px) 0 0; }

.split-head, .row-head, .feature-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 44px; flex-wrap: wrap;
}
.split-side { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 6px; }
.row-head { align-items: center; }
.row-nav { display: flex; gap: 10px; }
.center-head { text-align: center; margin-bottom: 48px; }
.center-head .sub { margin: 14px auto 0; }

.mini-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 500;
  margin-bottom: 18px;
}
.feature-head .sub { margin-top: 14px; }
.feature-side { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; padding-bottom: 6px; }

/* ============================================================
   ARCH TRIO
   ============================================================ */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: end;
}
.arch { text-align: center; }
.arch img {
  width: 100%; aspect-ratio: 3 / 3.7; object-fit: cover;
  border-radius: 999px 999px var(--radius-md) var(--radius-md);
  transition: transform .5s ease;
}
.arch:hover img { transform: scale(1.02); }
.arch-tall img { aspect-ratio: 3 / 4.3; }
.arch figcaption { margin-top: 16px; font-size: 15px; font-weight: 500; }
.up-arrow { color: var(--faint); margin-left: 4px; }

/* ============================================================
   CHIPS MARQUEE
   ============================================================ */
.chips-marquee { padding: clamp(56px, 8vh, 90px) 0 0; overflow: hidden; display: grid; gap: 14px; }
.chips-row { display: flex; width: max-content; gap: 14px; }
.chips-left  { animation: marquee 38s linear infinite; }
.chips-right { animation: marquee 38s linear infinite reverse; }

.cat-chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 13px 24px; font-size: 15px; font-weight: 500;
  white-space: nowrap; background: #fff;
  transition: background .25s, border-color .25s;
}
.cat-chip svg { width: 19px; height: 19px; color: var(--muted); }
.cat-chip:hover { background: var(--soft); border-color: transparent; }

/* ============================================================
   STAY CARDS
   ============================================================ */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stay-card { min-width: 0; }
.stay-media {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4 / 3.4; background: var(--soft-2);
}
.stay-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.stay-card:hover .stay-media img { transform: scale(1.05); }

.badge {
  position: absolute; top: 12px; left: 12px;
  background: #fff; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  padding: 6px 12px;
}
.heart-btn {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.heart-btn svg { width: 17px; height: 17px; }
.heart-btn:hover { transform: scale(1.1); }
.heart-btn.liked svg { fill: #ff385c; stroke: #ff385c; }

.stay-body { padding: 14px 4px 0; }
.stay-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.stay-name { font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.stay-rating { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.stay-rating .star { width: 13px; height: 13px; }
.stay-rating span { color: var(--faint); font-weight: 400; }
.stay-desc { color: var(--muted); font-size: 14px; margin-top: 3px; }

.amenities { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.amenity {
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; color: var(--muted);
  padding: 4.5px 11px; white-space: nowrap;
}
.stay-price { margin-top: 13px; font-size: 14.5px; color: var(--muted); }
.stay-price strong { color: var(--ink); font-size: 15.5px; text-decoration: underline; text-underline-offset: 3px; }

/* Horizontal tracks */
.hs-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.hs-track::-webkit-scrollbar { display: none; }
.hs-track > * { scroll-snap-align: start; flex: none; }
.stay-track .stay-card { width: clamp(240px, 23vw, 302px); }

/* ============================================================
   ABOUT + STATS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 7vh, 80px);
}
.quote-card {
  background: var(--soft); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 22px;
}
.quote-mark { width: 36px; height: 36px; fill: var(--ink); stroke: none; opacity: .9; }
.quote-card p { font-size: clamp(18px, 2vw, 23px); line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; }
.quote-card footer { display: flex; align-items: center; gap: 14px; }
.quote-card footer img, .person-card img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote-card footer strong, .person-card strong { display: block; font-size: 15px; }
.quote-card footer span, .person-card span { color: var(--muted); font-size: 13.5px; }

.people-cards { display: flex; flex-direction: column; gap: 24px; }
.person-card {
  flex: 1;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; display: flex; align-items: center; gap: 14px;
}

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { border-top: 1px solid var(--line); padding-top: 22px; }
.stat-num { font-size: clamp(34px, 3.6vw, 52px); font-weight: 600; letter-spacing: -0.03em; display: block; line-height: 1.1; }
.stat-cap { color: var(--muted); font-size: 14.5px; margin-top: 6px; display: block; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.chip-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-size: 14px; font-weight: 500;
  transition: background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.dest-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  width: clamp(230px, 22vw, 296px); aspect-ratio: 4 / 4.6;
  background: var(--soft-2);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover img { transform: scale(1.05); }
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 20, 35, 0.42));
}
.dest-label {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.dest-name {
  background: #fff; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  padding: 9px 16px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dest-go {
  width: 36px; height: 36px; flex: none; border-radius: 50%;
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.step-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: border-color .3s, transform .3s;
}
.step-card:hover { border-color: var(--ink); transform: translateY(-4px); }
.step-num { color: var(--faint); font-size: 14px; margin-bottom: 10px; }
.step-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.step-icon { width: 46px; height: 46px; margin: auto; stroke-width: 1.4; }
.step-card p { color: var(--muted); font-size: 14.5px; margin-top: auto; }

/* ============================================================
   NEARBY
   ============================================================ */
.nearby-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
}
.nearby-card {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 14px;
  transition: border-color .3s, transform .3s;
}
.nearby-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.nearby-card img {
  width: 74px; height: 74px; border-radius: var(--radius-sm);
  object-fit: cover; flex: none; background: var(--soft-2);
}
.nearby-card strong { display: block; font-size: 15.5px; letter-spacing: -0.01em; }
.nearby-card .nb-meta { color: var(--muted); font-size: 13px; display: block; margin-top: 2px; }
.nearby-card .nb-count { color: var(--faint); font-size: 12.5px; display: block; }

/* ============================================================
   EXPERTS
   ============================================================ */
.expert-track { gap: 20px; }
.expert-card {
  width: 236px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: border-color .3s, transform .3s;
}
.expert-card:hover { border-color: var(--ink); transform: translateY(-4px); }
.expert-ava {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 600; color: #fff;
  margin-bottom: 16px;
}
.expert-card h3 { font-size: 17px; font-weight: 600; }
.expert-card .loc { color: var(--muted); font-size: 13.5px; display: block; margin-top: 2px; }
.expert-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  margin-top: 18px; padding-top: 14px; gap: 8px;
}
.expert-stats b { font-size: 17px; display: block; }
.expert-stats i { font-style: normal; color: var(--faint); font-size: 12px; }

/* ============================================================
   WHY GRID
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--soft); border-radius: var(--radius-lg);
  padding: 28px 26px;
  min-height: 190px;
  display: flex; flex-direction: column;
  transition: background .3s, transform .3s;
}
.why-card:hover { background: var(--soft-2); transform: translateY(-3px); }
.why-card.big { grid-row: span 2; min-height: 0; background: var(--ink); color: #fff; }
.why-card.big:hover { background: #24262b; }
.why-card svg { width: 30px; height: 30px; stroke-width: 1.5; margin-bottom: auto; }
.why-card.big svg { width: 38px; height: 38px; }
.why-card h3 { font-size: 18px; font-weight: 600; margin-top: 26px; letter-spacing: -0.01em; }
.why-card p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.why-card.big p { color: rgba(255,255,255,.72); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: clamp(32px, 5vw, 80px);
}
.faq-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-list summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0;
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-x {
  position: relative; width: 30px; height: 30px; flex: none;
  border: 1px solid var(--line); border-radius: 50%;
  transition: transform .3s ease, background .3s, border-color .3s;
}
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: currentColor; border-radius: 2px;
}
.faq-x::before { width: 12px; height: 1.6px; }
.faq-x::after { width: 1.6px; height: 12px; transition: transform .3s; }
details[open] .faq-x { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); color: #fff; }
.faq-list details p { color: var(--muted); font-size: 15px; padding: 0 44px 22px 0; max-width: 60ch; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.blog-img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 3; background: var(--soft-2); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-meta { display: flex; align-items: center; gap: 10px; margin: 16px 0 8px; font-size: 13px; color: var(--muted); }
.blog-meta .tag { border: 1px solid var(--line); border-radius: 999px; padding: 3.5px 11px; font-weight: 500; color: var(--ink); }
.blog-card h3 { font-size: 17px; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 12px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  margin-top: clamp(64px, 10vh, 110px);
  background: var(--soft); border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.newsletter .sub { margin-top: 14px; }
.news-form { display: flex; gap: 12px; flex: 1; min-width: 300px; max-width: 460px; }
.news-form input {
  flex: 1; min-width: 0;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 14px 22px; font: inherit; font-size: 15px;
  background: #fff; outline: none;
  transition: border-color .25s;
}
.news-form input:focus { border-color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: clamp(64px, 10vh, 110px);
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: clamp(48px, 7vh, 80px) 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: 56px;
}
.logo-light { color: #fff; font-size: 28px; }
.footer-brand p { color: rgba(255,255,255,.62); font-size: 14.5px; max-width: 34ch; margin: 18px 0 24px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s;
}
.socials a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.socials svg { width: 17px; height: 17px; }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.f-col { display: flex; flex-direction: column; gap: 12px; }
.f-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,.9); }
.f-col a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; }
.f-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 24px 0 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,.55); font-size: 13.5px;
}
.legal-links { display: flex; gap: 22px; }
.legal-links a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .logo-track, .chips-row { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-pill { display: none; }
  .stay-grid, .steps-grid, .why-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card.big { grid-row: auto; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .people-cards { flex-direction: row; }
  .people-cards .person-card { flex: 1; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(1280px, 100% - 32px); }
  .header-link { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero { padding: 4px 8px 0; }
  .hero-panel { min-height: 0; }
  .hero-content { padding-bottom: 48px; }
  .search-bar {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    padding: 8px 18px;
    gap: 0;
  }
  .search-seg {
    border-right: 0; border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .search-seg + .search-seg { padding-left: 0; }
  .search-seg.no-border { border-bottom: 0; }
  .search-btn { width: 100%; border-radius: 999px; height: 52px; margin: 6px 0 8px; justify-self: stretch; }

  .arch-grid { grid-template-columns: 1fr; gap: 32px; }
  .arch img, .arch-tall img { aspect-ratio: 4 / 4.2; }

  .stay-grid, .steps-grid, .blog-grid, .nearby-grid, .why-grid, .stats-row { grid-template-columns: 1fr; }
  .people-cards { flex-direction: column; }
  .feature-side { align-items: flex-start; }
  .newsletter { flex-direction: column; align-items: stretch; }
  .news-form { max-width: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
