/*
Theme Name: RSW Travel House
Theme URI: https://rswtravelhouse.com/
Author: RSW Travel House
Author URI: https://rswtravelhouse.com/
Description: A premium, animated, mobile-first WordPress theme for Ram Shobha World Travel House, focused on pilgrimage and senior citizen 50+ tours with personalised quote enquiries.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rsw-travel-house
*/

:root {
  --navy-950: #031b3d;
  --navy-900: #062c63;
  --navy-800: #0a3b7a;
  --navy-700: #124c93;
  --blue-100: #eaf2ff;
  --gold-600: #d88b00;
  --gold-500: #f1a900;
  --gold-400: #ffc338;
  --gold-100: #fff5d9;
  --cream: #fffaf0;
  --paper: #ffffff;
  --ink: #14233b;
  --muted: #607089;
  --line: #dce5f1;
  --green: #118a55;
  --shadow-sm: 0 10px 30px rgba(3, 27, 61, .08);
  --shadow-md: 0 22px 55px rgba(3, 27, 61, .14);
  --shadow-lg: 0 34px 90px rgba(3, 27, 61, .22);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open,
body.nav-open, body.modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold-400); color: var(--navy-950); }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .55em;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1.25em; }
ul, ol { margin-top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.content-narrow { max-width: 860px; }
.section { position: relative; padding: 104px 0; }
.section--light { background: linear-gradient(180deg, #f7faff 0%, #fff 100%); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-950);
  box-shadow: var(--shadow-md);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--gold-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; border-radius: 99px; }
.eyebrow--light { color: var(--gold-400); }

.section-heading { margin-bottom: 50px; }
.section-heading h2 { max-width: 760px; }
.section-heading p { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.section-heading--center { text-align: center; }
.section-heading--center h2,
.section-heading--center p { margin-left: auto; margin-right: auto; }
.section-heading--split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: end; }
.section-heading--split > div:last-child { padding-bottom: 10px; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(3, 27, 61, .14);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  overflow: hidden;
}
.button::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -80%;
  width: 42%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transition: left 520ms ease;
}
.button:hover::after { left: 130%; }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(3, 27, 61, .2); }
.button:active { transform: translateY(0); }
.button--gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-950); box-shadow: 0 12px 30px rgba(216,139,0,.28); }
.button--gold:hover { box-shadow: 0 18px 38px rgba(216,139,0,.38); }
.button--navy { background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); }
.button--whatsapp { background: #138b55; }
.button--outline-light { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.07); box-shadow: none; backdrop-filter: blur(12px); }
.button--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.14); }
.button--large { min-height: 56px; padding: 16px 28px; }
.button--small { min-height: 40px; padding: 10px 16px; font-size: .86rem; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-800); font-weight: 800; transition: gap var(--transition), color var(--transition); }
.text-link:hover { gap: 13px; color: var(--gold-600); }
.text-link--large { font-size: 1rem; }
.text-link-button,
.footer-link-button { padding: 0; border: 0; background: none; font-weight: 800; cursor: pointer; text-align: left; }
.text-link-button { color: var(--navy-800); }
.inline-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 26px; }

/* Smart media: fills the visual area with a blurred copy while preserving the entire original image. */
.smart-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}
.smart-media::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -2;
  background-image: linear-gradient(rgba(3,27,61,.2), rgba(3,27,61,.2)), var(--media-image);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(.85);
  transform: scale(1.08);
}
.smart-media::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,27,61,.02), rgba(3,27,61,.18)); }
.smart-media img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; }

/* Header */
.site-topbar { position: relative; z-index: 101; background: var(--navy-950); color: rgba(255,255,255,.84); font-size: .78rem; }
.site-topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-message { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: .03em; }
.topbar-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 5px rgba(255,195,56,.14); }
.topbar-links { display: flex; align-items: center; gap: 20px; }
.topbar-links a { transition: color var(--transition); }
.topbar-links a:hover { color: var(--gold-400); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(6,44,99,.09);
  box-shadow: 0 8px 28px rgba(3,27,61,.06);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { box-shadow: 0 14px 36px rgba(3,27,61,.12); }
.site-header__inner { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; display: block; }
.brand img { width: 150px; max-height: 74px; object-fit: contain; }
.primary-nav { margin-left: auto; }
.primary-menu { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.primary-menu > li > a { display: block; padding: 13px 13px; color: var(--navy-950); font-size: .92rem; font-weight: 800; border-radius: 999px; transition: color var(--transition), background var(--transition); }
.primary-menu > li > a:hover,
.primary-menu > .current-menu-item > a,
.primary-menu > .current_page_item > a { color: var(--navy-900); background: var(--blue-100); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call { display: flex; align-items: center; gap: 9px; color: var(--navy-950); }
.header-call__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--navy-900); background: var(--gold-100); }
.header-call small,
.header-call strong { display: block; line-height: 1.15; }
.header-call small { color: var(--muted); font-size: .68rem; }
.header-call strong { margin-top: 3px; font-size: .82rem; }
.header-quote { font-size: .86rem; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 12px; background: var(--navy-950); cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 99px; background: #fff; transition: transform var(--transition), opacity var(--transition); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero-section {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,195,56,.18), transparent 22%),
    radial-gradient(circle at 12% 90%, rgba(18,76,147,.7), transparent 34%),
    linear-gradient(132deg, var(--navy-950) 0%, var(--navy-900) 54%, #0a468d 100%);
}
.hero-section::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, #000, transparent 80%); }
.hero-section::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 76px; background: #fff; clip-path: polygon(0 70%, 18% 42%, 37% 68%, 58% 30%, 78% 60%, 100% 22%, 100% 100%, 0 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.07fr .93fr; align-items: center; gap: 72px; padding: 84px 0 120px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); color: var(--gold-400); font-weight: 800; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; backdrop-filter: blur(12px); }
.hero-copy h1 { max-width: 760px; color: #fff; text-shadow: 0 16px 45px rgba(0,0,0,.24); }
.hero-lead { max-width: 690px; color: rgba(255,255,255,.8); font-size: clamp(1.05rem, 1.8vw, 1.22rem); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.hero-pills span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.13); font-size: .83rem; font-weight: 700; }
.hero-pills b { color: var(--gold-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-actions--center { justify-content: center; }
.hero-trust { display: flex; gap: 28px; margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-trust div { display: grid; gap: 2px; }
.hero-trust strong { color: var(--gold-400); font-size: 1.45rem; line-height: 1; }
.hero-trust span { color: rgba(255,255,255,.68); font-size: .73rem; }
.hero-visual { position: relative; min-height: 560px; }
.hero-logo-mark { position: absolute; z-index: 4; top: 0; left: -30px; width: 230px; padding: 18px; border: 1px solid rgba(255,255,255,.25); border-radius: 26px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-lg); transform: rotate(-4deg); }
.hero-logo-mark img { width: 100%; }
.hero-photo { position: absolute; top: 74px; right: 0; width: min(100%, 480px); height: 465px; border: 8px solid rgba(255,255,255,.92); border-radius: 42% 18% 38% 18% / 20% 42% 18% 38%; box-shadow: var(--shadow-lg); transform: rotate(2deg); }
.hero-floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; min-width: 225px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(255,255,255,.94); color: var(--navy-950); box-shadow: var(--shadow-md); backdrop-filter: blur(16px); animation: float-card 4.8s ease-in-out infinite; }
.hero-floating-card > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--gold-100); color: var(--gold-600); font-size: 1.15rem; }
.hero-floating-card b,
.hero-floating-card small { display: block; line-height: 1.2; }
.hero-floating-card b { font-size: .84rem; }
.hero-floating-card small { margin-top: 4px; color: var(--muted); font-size: .7rem; }
.hero-floating-card--top { top: 85px; right: -45px; }
.hero-floating-card--bottom { bottom: 22px; left: -25px; animation-delay: -2s; }
.flight-path { position: absolute; inset: 0; pointer-events: none; }
.flight-path svg { width: 100%; height: 100%; overflow: visible; }
.flight-path path { fill: none; stroke: rgba(255,195,56,.72); stroke-width: 2; stroke-dasharray: 7 8; }
.flight-path circle { fill: var(--gold-400); }
.flight-plane { position: absolute; top: 13%; right: 2%; color: var(--gold-400); font-size: 2rem; transform: rotate(-28deg); animation: plane-bob 3s ease-in-out infinite; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; pointer-events: none; }
.hero-orbit--one { width: 620px; height: 620px; right: -210px; top: -220px; }
.hero-orbit--two { width: 360px; height: 360px; left: -180px; bottom: -150px; }

@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes plane-bob { 0%,100% { transform: translate(0,0) rotate(-28deg); } 50% { transform: translate(-8px,8px) rotate(-25deg); } }

/* Trust strip */
.trust-strip { position: relative; z-index: 3; margin-top: -26px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 20px; background: #fff; box-shadow: var(--shadow-md); overflow: hidden; }
.trust-strip__grid > div { display: flex; align-items: center; gap: 14px; min-height: 105px; padding: 22px; border-right: 1px solid var(--line); }
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-icon { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 13px; background: var(--gold-100); color: var(--gold-600); }
.trust-strip p { margin: 0; }
.trust-strip strong,
.trust-strip small { display: block; line-height: 1.25; }
.trust-strip strong { color: var(--navy-950); font-size: .9rem; }
.trust-strip small { margin-top: 5px; color: var(--muted); font-size: .7rem; }

/* Tour cards */
.tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.tour-card { display: flex; flex-direction: column; min-width: 0; border: 1px solid rgba(6,44,99,.1); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease; }
.tour-card:hover { transform: translateY(-8px); border-color: rgba(241,169,0,.5); box-shadow: var(--shadow-md); }
.tour-card__media { display: block; height: 250px; }
.tour-card__media img { transition: transform 500ms ease; }
.tour-card:hover .tour-card__media img { transform: scale(1.025); }
.tour-card__badge { position: absolute; z-index: 3; left: 16px; top: 16px; padding: 7px 11px; border-radius: 999px; background: rgba(3,27,61,.88); color: #fff; font-size: .67rem; font-weight: 800; letter-spacing: .05em; backdrop-filter: blur(12px); }
.tour-card__body { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.tour-card__meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; color: var(--gold-600); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.tour-card h3 { margin-bottom: 10px; font-size: 1.48rem; }
.tour-card h3 a:hover { color: var(--navy-700); }
.tour-card__route { min-height: 42px; margin-bottom: 10px; color: var(--navy-800); font-size: .82rem; font-weight: 700; }
.tour-card__route span { color: var(--gold-500); }
.tour-card__body > p:not(.tour-card__route) { color: var(--muted); font-size: .91rem; }
.tour-card__actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }

/* Senior section */
.senior-section { overflow: hidden; background: var(--cream); }
.senior-section::before { content: ""; position: absolute; top: -110px; right: -110px; width: 360px; height: 360px; border-radius: 50%; border: 75px solid rgba(241,169,0,.08); }
.senior-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.senior-media { position: relative; min-height: 590px; }
.senior-photo { width: 88%; height: 550px; border-radius: 46% 18% 38% 22% / 24% 45% 18% 36%; box-shadow: var(--shadow-lg); }
.senior-stamp { position: absolute; right: 0; bottom: 25px; display: grid; place-items: center; width: 170px; height: 170px; padding: 20px; border: 7px solid #fff; border-radius: 50%; background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); color: #fff; text-align: center; box-shadow: var(--shadow-md); }
.senior-stamp strong { color: var(--gold-400); font-size: 2.25rem; line-height: 1; }
.senior-stamp span { font-size: .75rem; font-weight: 700; line-height: 1.25; }
.senior-copy > p { color: var(--muted); font-size: 1.05rem; }
.comfort-list { display: grid; gap: 16px; margin-top: 26px; }
.comfort-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: start; padding: 15px 0; border-bottom: 1px solid rgba(6,44,99,.11); }
.comfort-list > div > span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--navy-950); color: var(--gold-400); font-size: .72rem; font-weight: 900; }
.comfort-list p { margin: 0; }
.comfort-list b,
.comfort-list small { display: block; }
.comfort-list small { margin-top: 4px; color: var(--muted); }

/* Features */
.why-section { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; min-height: 270px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.feature-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 130px; height: 130px; border-radius: 50%; background: var(--gold-100); transition: transform 420ms ease; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(241,169,0,.55); box-shadow: var(--shadow-md); }
.feature-card:hover::after { transform: scale(1.35); }
.feature-card > span { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 28px; border-radius: 18px; background: var(--navy-950); color: var(--gold-400); font-size: 1.45rem; }
.feature-card h3,
.feature-card p { position: relative; z-index: 1; }
.feature-card p { color: var(--muted); }

/* Process */
.process-section { overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.process-section::before { content: ""; position: absolute; inset: 0; opacity: .22; background: radial-gradient(circle at 20% 20%, var(--gold-400), transparent 17%), radial-gradient(circle at 80% 75%, #2c75c9, transparent 20%); }
.process-section .container { position: relative; z-index: 1; }
.process-section h2,
.process-section h3 { color: #fff; }
.process-section .section-heading > p { color: rgba(255,255,255,.68); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { position: relative; min-height: 285px; padding: 30px 25px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.process-step:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 50%; right: -16px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--gold-400); color: var(--navy-950); font-weight: 900; transform: translateY(-50%); }
.process-step > b { position: absolute; top: 18px; right: 20px; color: rgba(255,255,255,.14); font-family: Georgia, serif; font-size: 3.2rem; line-height: 1; }
.process-step > span { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 60px; border-radius: 17px; background: var(--gold-400); color: var(--navy-950); font-size: 1.35rem; }
.process-step p { color: rgba(255,255,255,.68); }

/* Testimonials */
.testimonial-section { background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { margin: 0; padding: 32px; border: 1px solid rgba(6,44,99,.1); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.stars { margin-bottom: 18px; color: var(--gold-500); letter-spacing: .12em; }
.testimonial-card > p { min-height: 130px; color: #3e4e65; font-family: Georgia, serif; font-size: 1.12rem; line-height: 1.75; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-card footer > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-950); color: var(--gold-400); font-weight: 900; }
.testimonial-card footer b,
.testimonial-card footer small { display: block; line-height: 1.3; }
.testimonial-card footer small { color: var(--muted); }
.testimonial-note { margin: 20px auto 0; color: var(--muted); font-size: .76rem; text-align: center; }

/* FAQ */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 132px; }
.faq-intro > p { color: var(--muted); }
.faq-list { display: grid; gap: 14px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 8px 22px rgba(3,27,61,.04); overflow: hidden; }
.faq-list summary { position: relative; padding: 22px 58px 22px 24px; color: var(--navy-950); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 22px; top: 50%; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); font-size: 1.2rem; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

/* Page heroes */
.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 48px 48px; }
.page-hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border: 80px solid rgba(255,195,56,.11); border-radius: 50%; }
.page-hero__inner { position: relative; z-index: 1; max-width: 930px; padding: 105px 0; text-align: center; }
.page-hero__inner h1,
.page-hero__grid h1 { color: #fff; }
.page-hero__inner p,
.page-hero__grid p { max-width: 760px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.page-hero--simple .page-hero__inner { text-align: left; }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .55fr; gap: 70px; align-items: center; padding: 90px 0; }
.page-hero__logo { padding: 24px; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-lg); background: rgba(255,255,255,.94); box-shadow: var(--shadow-lg); }
.page-hero__logo img { width: 100%; max-height: 260px; object-fit: contain; }

.tour-filter-bar { position: sticky; top: 88px; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(15px); }
.tour-filter-bar__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; min-height: 68px; }
.tour-filter-bar__inner > span { color: var(--muted); font-size: .8rem; font-weight: 800; }
.tour-filter-bar a { padding: 8px 12px; border-radius: 999px; color: var(--navy-800); background: var(--blue-100); font-size: .76rem; font-weight: 800; }

/* About */
.story-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 72px; align-items: center; }
.story-copy > p { color: var(--muted); font-size: 1.03rem; }
.story-card { padding: 38px; border: 1px solid rgba(241,169,0,.35); border-radius: var(--radius-lg); background: linear-gradient(145deg, #fff, var(--gold-100)); box-shadow: var(--shadow-md); }
.story-card__icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 28px; border-radius: 18px; background: var(--navy-950); color: var(--gold-400); font-size: 1.5rem; }
.check-list { display: grid; gap: 12px; margin: 22px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #3d4d65; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }
.story-signature { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(6,44,99,.12); }
.story-signature img { width: 90px; }
.story-signature p { margin: 0; }
.story-signature strong,
.story-signature span { display: block; }
.story-signature span { color: var(--muted); font-size: .76rem; }
.values-section { background: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { min-height: 240px; padding: 30px; border-top: 4px solid var(--gold-500); border-radius: 0 0 var(--radius) var(--radius); background: var(--blue-100); }
.value-card b { display: block; margin-bottom: 35px; color: var(--gold-600); font-size: .8rem; letter-spacing: .12em; }
.value-card p { color: var(--muted); }
.about-focus-section { color: #fff; background: var(--navy-950); }
.about-focus-grid { display: grid; grid-template-columns: 1fr .8fr .8fr; gap: 22px; align-items: stretch; }
.about-focus-grid h2 { color: #fff; }
.focus-panel { display: block; padding: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.07); transition: transform var(--transition), background var(--transition); }
.focus-panel:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.focus-panel > span { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 40px; border-radius: 15px; background: var(--gold-400); color: var(--navy-950); font-size: 1.3rem; }
.focus-panel h3 { color: #fff; }
.focus-panel p { color: rgba(255,255,255,.68); }
.focus-panel b { color: var(--gold-400); }

/* Pilgrimage and senior pages */
.icon-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.icon-list-item { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.icon-list-item > span { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 26px; border-radius: 16px; background: var(--gold-100); color: var(--gold-600); font-size: 1.4rem; }
.icon-list-item p { color: var(--muted); }
.senior-principles { background: var(--cream); }
.senior-principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.senior-principle { padding: 30px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.senior-principle > span { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 32px; border-radius: 50%; background: var(--navy-950); color: var(--gold-400); font-size: 1.3rem; }
.senior-principle p { color: var(--muted); }
.senior-checklist-section { color: #fff; background: linear-gradient(130deg, var(--navy-950), var(--navy-700)); }
.senior-checklist-section h2 { color: #fff; }
.senior-checklist-section p { color: rgba(255,255,255,.72); }
.senior-checklist-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.senior-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.senior-checklist > div { display: flex; align-items: center; gap: 12px; min-height: 72px; padding: 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); }
.senior-checklist span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 50%; background: var(--gold-400); color: var(--navy-950); font-weight: 900; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 55px; align-items: start; }
.contact-info { position: sticky; top: 132px; }
.contact-info > p { color: var(--muted); }
.contact-card-list { display: grid; gap: 12px; margin: 28px 0; }
.contact-card-list > * { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: border-color var(--transition), transform var(--transition); }
.contact-card-list a:hover { transform: translateX(4px); border-color: var(--gold-500); }
.contact-card-list > * > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--gold-100); color: var(--gold-600); }
.contact-card-list small,
.contact-card-list strong { display: block; line-height: 1.35; }
.contact-card-list small { color: var(--muted); }
.contact-card-list strong { font-size: .9rem; }
.contact-quick-actions { display: flex; gap: 12px; margin: 24px 0; }
.office-hours { padding: 24px; border-left: 4px solid var(--gold-500); border-radius: 0 16px 16px 0; background: var(--gold-100); }
.office-hours p { margin-bottom: 0; color: var(--muted); }
.contact-form-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.contact-form-card__head p { color: var(--muted); }

/* Forms */
.quote-form { position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: var(--navy-950); font-size: .76rem; font-weight: 800; }
.form-grid__full { grid-column: 1 / -1; }
.quote-form input,
.quote-form textarea,
.quote-form select { width: 100%; border: 1px solid #cdd8e8; border-radius: 12px; outline: none; background: #fbfdff; color: var(--ink); transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.quote-form input { min-height: 48px; padding: 11px 13px; }
.quote-form textarea { min-height: 112px; padding: 12px 13px; resize: vertical; }
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus { border-color: var(--gold-500); background: #fff; box-shadow: 0 0 0 4px rgba(241,169,0,.13); }
.form-consent { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; margin: 17px 0; color: var(--muted); font-size: .72rem; }
.form-consent input { min-height: 0; width: 16px; height: 16px; margin-top: 3px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .69rem; text-align: center; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-alert { margin-bottom: 18px; padding: 13px 15px; border-radius: 12px; font-size: .83rem; font-weight: 700; }
.form-alert--success { background: #e5f8ef; color: #0a6c42; }
.form-alert--error { background: #fff0f0; color: #a12828; }

/* Tour details */
.tour-detail-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.tour-detail-hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 15% 20%, var(--gold-400), transparent 18%), radial-gradient(circle at 82% 80%, #56a0ff, transparent 22%); }
.tour-detail-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; padding: 80px 0 95px; }
.tour-detail-copy h1 { color: #fff; font-size: clamp(2.7rem, 5vw, 5.1rem); }
.tour-detail-lead { max-width: 700px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; color: rgba(255,255,255,.58); font-size: .72rem; }
.breadcrumbs a:hover { color: var(--gold-400); }
.tour-detail-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0; }
.tour-detail-facts > div { padding: 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.07); }
.tour-detail-facts small,
.tour-detail-facts strong { display: block; line-height: 1.25; }
.tour-detail-facts small { color: rgba(255,255,255,.58); font-size: .67rem; }
.tour-detail-facts strong { margin-top: 5px; color: #fff; font-size: .83rem; }
.no-price-note { display: flex; align-items: flex-start; gap: 8px; max-width: 680px; margin-top: 22px; color: rgba(255,255,255,.63); font-size: .75rem; }
.no-price-note span { color: var(--gold-400); }
.tour-detail-media { height: 570px; border: 8px solid rgba(255,255,255,.95); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.tour-detail-media__tag { position: absolute; z-index: 3; right: 18px; bottom: 18px; padding: 9px 14px; border-radius: 999px; background: var(--gold-400); color: var(--navy-950); font-size: .72rem; font-weight: 900; }
.tour-content-grid { display: grid; grid-template-columns: 1fr 350px; gap: 70px; align-items: start; }
.tour-main-content > p,
.entry-content p { color: #4c5d75; }
.entry-content a { color: var(--navy-700); text-decoration: underline; }
.tour-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; list-style: none; }
.tour-highlights li { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border-radius: 13px; background: var(--blue-100); }
.tour-highlights span { color: var(--green); font-weight: 900; }
.customisation-box { margin-top: 32px; padding: 28px; border: 1px solid rgba(241,169,0,.35); border-radius: var(--radius); background: var(--gold-100); }
.customisation-box > div { display: flex; align-items: center; gap: 12px; }
.customisation-box > div > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--navy-950); color: var(--gold-400); }
.customisation-box h3 { margin: 0; }
.customisation-box p { margin: 14px 0 0; color: var(--muted); }
.tour-sidebar { position: sticky; top: 132px; }
.sidebar-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-md); }
.sidebar-call { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.sidebar-call > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); }
.sidebar-call small,
.sidebar-call strong { display: block; line-height: 1.3; }
.sidebar-call small { color: var(--muted); }
.tour-quote-section { color: #fff; background: var(--navy-950); }
.tour-quote-section h2 { color: #fff; }
.tour-quote-section > .container > div:first-child p { color: rgba(255,255,255,.7); }
.tour-quote-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.tour-inline-form { padding: 34px; border-radius: var(--radius); background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); }

/* Footer */
.footer-cta { position: relative; z-index: 3; margin-bottom: -100px; }
.footer-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 44px 50px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); background: linear-gradient(130deg, var(--navy-800), var(--navy-950)); color: #fff; box-shadow: var(--shadow-lg); }
.footer-cta h2 { color: #fff; font-size: clamp(2rem, 3vw, 3.1rem); }
.footer-cta p { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.7); }
.footer-cta__actions { display: flex; flex-direction: column; gap: 10px; min-width: 205px; }
.site-footer { padding-top: 180px; color: rgba(255,255,255,.72); background: #02142f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .7fr 1fr; gap: 50px; padding-bottom: 62px; }
.footer-brand img { width: 190px; max-height: 112px; margin-bottom: 20px; padding: 10px; border-radius: 14px; background: rgba(255,255,255,.96); object-fit: contain; }
.footer-brand p { max-width: 420px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-badges span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.68); font-size: .67rem; }
.site-footer h3 { color: #fff; font-size: 1.1rem; }
.footer-menu,
.footer-list,
.footer-contact { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-menu a,
.footer-list a,
.footer-link-button { color: rgba(255,255,255,.7); font-size: .84rem; transition: color var(--transition), transform var(--transition); }
.footer-menu a:hover,
.footer-list a:hover,
.footer-link-button:hover { color: var(--gold-400); }
.footer-contact li { display: grid; grid-template-columns: 22px 1fr; gap: 9px; font-size: .82rem; }
.footer-contact li > span:first-child { color: var(--gold-400); }
.footer-map-link { display: inline-flex; margin-top: 18px; color: var(--gold-400); font-size: .82rem; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.47); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 10px; }

/* Floating buttons */
.floating-actions { position: fixed; z-index: 80; right: 18px; bottom: 22px; display: grid; gap: 10px; }
.floating-action { display: flex; align-items: center; gap: 8px; min-width: 118px; padding: 10px 13px; border-radius: 999px; color: #fff; box-shadow: 0 15px 34px rgba(3,27,61,.25); transition: transform var(--transition), box-shadow var(--transition); animation: floating-pulse 3s ease-in-out infinite; }
.floating-action:hover { transform: translateX(-4px); box-shadow: 0 20px 42px rgba(3,27,61,.32); }
.floating-action--call { background: var(--navy-900); }
.floating-action--whatsapp { background: #118a55; animation-delay: -1.5s; }
.floating-action > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.16); }
.floating-action b { font-size: .74rem; }
@keyframes floating-pulse { 0%,100% { box-shadow: 0 15px 34px rgba(3,27,61,.25); } 50% { box-shadow: 0 15px 34px rgba(3,27,61,.25), 0 0 0 7px rgba(255,255,255,.1); } }

/* Quote modal */
.quote-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity var(--transition), visibility var(--transition); }
.quote-modal.is-open { visibility: visible; opacity: 1; }
.quote-modal__backdrop { position: absolute; inset: 0; background: rgba(1,14,34,.76); backdrop-filter: blur(8px); }
.quote-modal__dialog { position: relative; z-index: 1; width: min(820px, 100%); max-height: calc(100vh - 40px); padding: 32px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); overflow-y: auto; transform: translateY(24px) scale(.98); transition: transform var(--transition); }
.quote-modal.is-open .quote-modal__dialog { transform: translateY(0) scale(1); }
.quote-modal__close { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--blue-100); color: var(--navy-950); font-size: 1.5rem; cursor: pointer; }
.quote-modal__header { padding-right: 48px; }
.quote-modal__header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.quote-modal__header p { color: var(--muted); }

.back-to-top { position: fixed; z-index: 79; right: 24px; bottom: 150px; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; color: var(--navy-950); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); cursor: pointer; transition: all var(--transition); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Other templates */
.journal-card { margin-bottom: 20px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.journal-card__date { color: var(--gold-600); font-size: .74rem; font-weight: 800; }
.not-found-section { min-height: 75vh; display: grid; place-items: center; padding: 100px 0 180px; background: linear-gradient(180deg, var(--blue-100), #fff); }
.not-found-card { max-width: 720px; padding: 50px; border-radius: var(--radius-lg); background: #fff; text-align: center; box-shadow: var(--shadow-md); }
.not-found-code { display: block; color: var(--gold-500); font-family: Georgia, serif; font-size: 6rem; font-weight: 800; line-height: 1; }
.not-found-card img { width: 180px; margin: 15px auto; }
.not-found-card .inline-actions { justify-content: center; }
.navigation.pagination { margin-top: 35px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.page-numbers.current { background: var(--navy-950); color: #fff; }

/* Reveal animations */
.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.js-ready .reveal.reveal--delay { transition-delay: 120ms; }
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; }

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-call { display: none; }
  .hero-grid { gap: 38px; }
  .hero-floating-card--top { right: 0; }
  .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .values-grid,
  .icon-list-grid,
  .senior-principle-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .7fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .site-topbar { display: none; }
  .site-header__inner { min-height: 76px; }
  .brand img { width: 132px; max-height: 64px; }
  .primary-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 76px);
    padding: 18px 16px 30px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }
  .nav-open .primary-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-menu { display: grid; gap: 6px; }
  .primary-menu > li > a { padding: 14px 16px; border-radius: 12px; font-size: 1rem; }
  .nav-toggle { display: block; }
  .header-quote { display: none; }
  .hero-section { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { max-width: 830px; }
  .hero-visual { width: min(650px, 100%); margin: 0 auto; }
  .trust-strip { margin-top: 0; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid > div:nth-child(2) { border-right: 0; }
  .trust-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading--split { grid-template-columns: 1fr; gap: 15px; }
  .senior-grid,
  .story-grid,
  .contact-grid,
  .tour-detail-grid,
  .tour-content-grid,
  .tour-quote-grid,
  .faq-grid,
  .senior-checklist-grid { grid-template-columns: 1fr; }
  .senior-media { width: min(650px, 100%); margin: auto; }
  .faq-intro,
  .contact-info,
  .tour-sidebar { position: static; }
  .tour-detail-media { height: 520px; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__logo { width: min(420px, 100%); }
  .about-focus-grid { grid-template-columns: 1fr 1fr; }
  .about-focus-grid > div:first-child { grid-column: 1 / -1; }
  .footer-cta__inner { grid-template-columns: 1fr; }
  .footer-cta__actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 76px 0; }
  h1 { font-size: clamp(2.4rem, 12vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 9vw, 3.2rem); }
  .site-header__inner { min-height: 70px; gap: 12px; }
  .brand img { width: 116px; max-height: 58px; }
  .primary-nav { top: 70px; max-height: calc(100vh - 70px); }
  .hero-grid { padding: 62px 0 110px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 12vw, 4.25rem); }
  .hero-trust { gap: 15px; }
  .hero-trust strong { font-size: 1.2rem; }
  .hero-visual { min-height: 500px; }
  .hero-photo { top: 75px; left: 4%; right: auto; width: 92%; height: 390px; }
  .hero-logo-mark { left: 0; width: 180px; }
  .hero-floating-card { min-width: 196px; }
  .hero-floating-card--top { top: 55px; right: 0; }
  .hero-floating-card--bottom { bottom: 0; left: 0; }
  .tour-grid,
  .feature-grid,
  .testimonial-grid,
  .process-grid,
  .values-grid,
  .icon-list-grid,
  .senior-principle-grid { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .senior-media { min-height: 500px; }
  .senior-photo { width: 94%; height: 470px; }
  .senior-stamp { width: 140px; height: 140px; }
  .senior-stamp strong { font-size: 1.8rem; }
  .page-hero__inner { padding: 78px 0; }
  .page-hero__grid { padding: 75px 0; }
  .tour-filter-bar { top: 70px; }
  .tour-filter-bar__inner { justify-content: flex-start; padding: 12px 0; overflow-x: auto; flex-wrap: nowrap; }
  .tour-filter-bar a { white-space: nowrap; }
  .about-focus-grid { grid-template-columns: 1fr; }
  .about-focus-grid > div:first-child { grid-column: auto; }
  .tour-detail-facts { grid-template-columns: 1fr; }
  .tour-detail-media { height: 430px; }
  .tour-highlights { grid-template-columns: 1fr; }
  .senior-checklist { grid-template-columns: 1fr; }
  .footer-cta { margin-bottom: -75px; }
  .footer-cta__inner { padding: 32px 24px; }
  .footer-cta__actions { flex-direction: column; }
  .site-footer { padding-top: 145px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand,
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .floating-actions { right: 10px; bottom: 10px; }
  .floating-action { min-width: auto; width: 48px; height: 48px; padding: 8px; justify-content: center; }
  .floating-action b { display: none; }
  .floating-action > span { width: 34px; height: 34px; }
  .back-to-top { right: 13px; bottom: 120px; }
  .quote-modal { padding: 8px; }
  .quote-modal__dialog { max-height: calc(100vh - 16px); padding: 26px 18px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
}

@media (max-width: 560px) {
  .hero-actions,
  .inline-actions,
  .contact-quick-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .inline-actions .button,
  .contact-quick-actions .button { width: 100%; }
  .hero-pills { display: grid; grid-template-columns: 1fr; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-trust span { font-size: .62rem; }
  .hero-visual { min-height: 440px; }
  .hero-photo { height: 340px; }
  .hero-logo-mark { width: 142px; padding: 12px; }
  .hero-floating-card { min-width: 175px; padding: 11px; }
  .hero-floating-card--top { top: 48px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip__grid > div:last-child { border-bottom: 0; }
  .tour-card__actions { align-items: stretch; flex-direction: column; }
  .tour-card__actions .button { width: 100%; }
  .senior-media { min-height: 430px; }
  .senior-photo { height: 400px; }
  .senior-stamp { right: -5px; width: 125px; height: 125px; border-width: 5px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-grid > div:last-child { grid-column: auto; }
  .tour-detail-media { height: 360px; }
  .contact-form-card,
  .story-card,
  .tour-inline-form,
  .not-found-card { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-topbar, .site-header, .floating-actions, .footer-cta, .site-footer, .quote-modal, .back-to-top, .button, .nav-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .page-hero__inner { padding: 30px 0; }
  .page-hero, .tour-detail-hero { color: #000; background: #fff; }
  .page-hero h1, .tour-detail-hero h1 { color: #000; }
}
