:root {
  --slate: #22382f;
  --slate-mid: #2e473d;
  --slate-light: #4f6b5e;
  --off-white: #fffaf0;
  --cream: #f7efe1;
  --gold: #b8945e;
  --gold-light: #d8b981;
  --gold-pale: #f5ead4;
  --evergreen: #5f806f;
  --text-light: #fffaf0;
  --ink: #1f332b;
  --muted: #2f463d;
  --text-on-light: #1f332b;
  --muted-on-light: #2f463d;
  --text-on-dark: #fffaf0;
  --muted-on-dark: #f2eadc;
  --line: rgba(184, 148, 94, 0.24);
  --shadow: 0 24px 80px rgba(34, 56, 47, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f5ead4 0%, #dfe9dd 48%, #f7efe1 100%);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; }
a { color: inherit; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 6px 34px; display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  background: rgba(249, 244, 233, 0.97);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  border-bottom: 1px solid rgba(184, 148, 94, 0.22);
  box-shadow: 0 16px 42px rgba(34, 56, 47, 0.12);
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--slate); text-decoration: none; display: flex; gap: 12px; align-items: center;
  margin-right: 16px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 76px;
  height: 76px;
  max-height: none;
  max-width: none;
  object-fit: cover;
  object-position: 26% 50%;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}
.nav-logo .brand-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 0.96;
  min-width: 128px;
}
.nav-logo .brand-primary {
  color: var(--slate);
  font-size: 1.43rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-logo .brand-secondary {
  color: #8d6933;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.nav-links { display: flex; list-style: none; gap: clamp(9px, 0.82vw, 18px); align-items: center; justify-content: center; flex: 1 1 auto; }
.nav-links a {
  color: var(--slate); text-decoration: none; text-transform: uppercase;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.065em;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.25s ease, text-shadow 0.25s ease, background 0.25s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: #8d6933;
  text-shadow: 0 0 18px rgba(184,148,94,0.34);
}
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 13px 22px; border-radius: 6px; background: var(--gold); color: var(--slate);
  text-decoration: none; border: 0; cursor: pointer;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  line-height: 1.3; text-align: center;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.nav-cta {
  min-height: 42px;
  padding: 11px 18px;
  margin-left: 4px;
  font-size: 0.64rem;
  line-height: 1;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 0 1px rgba(255,250,240,0.54), 0 16px 34px rgba(184,148,94,0.28);
  transform: translateY(-1px);
}
.btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 0 1px rgba(255,250,240,0.48), 0 16px 34px rgba(184,148,94,0.28);
  transform: translateY(-1px);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid rgba(141,105,51,0.24);
  border-radius: 6px;
  background: rgba(255,250,240,0.62);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.lang-switch a:hover {
  background: rgba(216,185,129,0.2);
  box-shadow: 0 0 0 1px rgba(184,148,94,0.18), 0 10px 22px rgba(34,56,47,0.08);
}
.lang-switch a.active {
  background: var(--gold);
  color: var(--slate);
}
.footer-lang { margin-top: 18px; }
footer .lang-switch { background: rgba(255,250,240,0.1); border-color: rgba(216,185,129,0.3); }
footer .lang-switch a { color: var(--off-white); }
footer .lang-switch a.active { color: var(--slate); }
footer .nav-logo .brand-mark { width: 60px; height: 60px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(141,105,51,0.28);
  border-radius: 6px;
  background: rgba(255,250,240,0.72);
  color: var(--slate);
  cursor: pointer;
  flex: 0 0 auto;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle:hover {
  border-color: rgba(141,105,51,0.46);
  background: rgba(255,250,240,0.94);
  box-shadow: 0 10px 24px rgba(34,56,47,0.1);
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn.secondary {
  background: rgba(255,250,240,0.42);
  color: #735522;
  border: 1px solid rgba(141,105,51,0.5);
}
.btn.secondary:hover {
  background: rgba(255,250,240,0.62);
  border-color: rgba(184,148,94,0.64);
}
.direct-card .btn.secondary {
  color: var(--slate);
  border-color: rgba(141,105,51,0.48);
  background: rgba(255,250,240,0.44);
}
.deal-spotlight .btn.secondary { color: var(--gold-light); background: transparent; }

.page-hero {
  min-height: 72vh; padding: 150px 60px 90px; display: grid; align-items: end; position: relative;
  background-size: cover; background-position: center; color: var(--off-white);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,56,47,0.54), rgba(34,56,47,0.84));
}
.hero-inner { position: relative; max-width: 920px; text-shadow: 0 2px 18px rgba(0,0,0,0.26); }
.eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  color: #735522; text-transform: uppercase; letter-spacing: 0.25em;
  font-size: 0.65rem; font-weight: 700;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: #8d6933; }
.page-hero .eyebrow,
.band .eyebrow,
.deal-spotlight .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before,
.band .eyebrow::before,
.deal-spotlight .eyebrow::before { background: var(--gold-light); }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.12; }
h1 { font-size: clamp(2.25rem, 5.25vw, 4.5rem); max-width: 980px; }

@media (min-width: 900px) {
  .page-hero h1 {
    font-size: clamp(1.8rem, 3.95vw, 3.6rem);
    line-height: 1.08;
    max-width: 900px;
  }
}
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); color: var(--slate); margin-bottom: 18px; }
h3 { font-size: 1.55rem; color: var(--slate); }
.hero-copy, .section-copy { font-size: 0.97rem; line-height: 1.82; max-width: 680px; color: var(--off-white); margin-top: 22px; }
.section-copy { color: var(--muted-on-light); margin-top: 0; }

section { padding: 105px 60px; }
.split-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 54px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card, .offer, .service-card, .contact-card {
  background: rgba(255,250,240,0.86); border: 1px solid rgba(184,148,94,0.28);
  border-radius: 8px; box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.card:hover,
.offer:hover,
.service-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184,148,94,0.52);
  background: rgba(255,250,240,0.94);
  box-shadow: 0 0 0 1px rgba(216,185,129,0.18), 0 28px 78px rgba(34,56,47,0.24);
}
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.card-body, .offer, .service-card, .contact-card { padding: 30px; }
.tag {
  display: inline-flex; margin-bottom: 14px; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(141,105,51,0.46); color: #735522; text-transform: uppercase;
  background: rgba(255,255,255,0.34);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
}
.card p, .offer p, .service-card p, .contact-card p, li {
  color: var(--muted); line-height: 1.75; font-size: 0.88rem;
  font-weight: 500;
}
.meta { display: grid; gap: 8px; margin: 18px 0; color: var(--muted); font-size: 0.8rem; line-height: 1.6; font-weight: 500; }
.price { color: var(--slate); font-size: 1.45rem; font-weight: 500; margin: 18px 0 22px; }
.price small { display: block; color: var(--muted); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.section-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(141,105,51,0.34);
  color: #735522;
  background: rgba(255,250,240,0.56);
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.category-nav a:hover {
  background: rgba(216,185,129,0.22);
  border-color: rgba(184,148,94,0.5);
  box-shadow: 0 12px 28px rgba(34,56,47,0.12), 0 0 0 1px rgba(216,185,129,0.16);
  transform: translateY(-1px);
}
.content-note {
  padding: 22px 24px;
  border-radius: 8px;
  border: 1px solid rgba(184,148,94,0.28);
  background: rgba(255,250,240,0.72);
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.88rem;
  box-shadow: 0 16px 42px rgba(34,56,47,0.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.content-note:hover {
  border-color: rgba(184,148,94,0.48);
  background: rgba(255,250,240,0.86);
  box-shadow: 0 0 0 1px rgba(216,185,129,0.14), 0 20px 52px rgba(34,56,47,0.16);
}
.section-divider {
  padding-top: 54px;
  border-top: 1px solid rgba(184,148,94,0.22);
  margin-top: 58px;
}

.band {
  padding: 52px 60px; background: linear-gradient(135deg, var(--slate), var(--evergreen));
  color: var(--off-white); display: flex; justify-content: space-between; align-items: center; gap: 30px;
}
.band h2 { color: var(--off-white); margin-bottom: 8px; }
.band p { color: var(--off-white); max-width: 720px; line-height: 1.8; font-weight: 500; }
.band .btn.secondary,
.deal-spotlight .btn.secondary,
footer .btn.secondary { color: var(--gold-light); background: transparent; border-color: rgba(216,185,129,0.55); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.stat {
  padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,250,240,0.65);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.stat:hover {
  transform: translateY(-2px);
  border-color: rgba(184,148,94,0.46);
  background: rgba(255,250,240,0.82);
  box-shadow: 0 0 0 1px rgba(216,185,129,0.14), 0 18px 42px rgba(34,56,47,0.14);
}
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--slate); margin-bottom: 8px; }

.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 12px; }
.form-label {
  color: #4f3512;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%; padding: 17px 18px; border-radius: 6px; border: 1.5px solid rgba(141,105,51,0.74);
  background: linear-gradient(180deg, #fffdf8, #fff9ef); font-family: inherit; color: var(--slate); outline: none;
  font-size: 0.92rem; font-weight: 600; cursor: text;
  min-height: 56px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 8px 24px rgba(34,56,47,0.08);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
select { cursor: pointer; }
textarea { min-height: 160px; resize: vertical; line-height: 1.7; }
input::placeholder, textarea::placeholder { color: #53675e; opacity: 1; }
input:hover, select:hover, textarea:hover {
  border-color: rgba(141,105,51,0.9);
  background: #fffdf7;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(216,185,129,0.16), 0 14px 32px rgba(34,56,47,0.11);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: #fffdf7;
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(184,148,94,0.22), 0 18px 38px rgba(34,56,47,0.14);
}

.map-card {
  background: rgba(255,250,240,0.78);
  border: 1px solid rgba(184,148,94,0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.map-card:hover {
  border-color: rgba(184,148,94,0.48);
  box-shadow: 0 0 0 1px rgba(216,185,129,0.14), 0 28px 78px rgba(34,56,47,0.24);
}
.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.03);
}
.map-content {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.map-content p { color: var(--muted); line-height: 1.75; font-size: 0.86rem; }

.direct-card {
  background: linear-gradient(180deg, rgba(255,250,240,0.9), rgba(245,234,212,0.74));
}
.contact-methods { display: grid; gap: 12px; margin: 24px 0; }
.contact-method {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(184,148,94,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.52);
}
.contact-method svg { width: 20px; height: 20px; color: var(--gold); justify-self: center; }
.contact-method span {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-method > div { min-width: 0; }
.contact-method a, .contact-method strong { color: var(--slate); text-decoration: none; font-size: 0.92rem; overflow-wrap: anywhere; }
.contact-method a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 4px; }
.contact-social {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(184,148,94,0.3);
  border-radius: 8px;
  color: var(--gold);
  text-decoration: none;
  background: rgba(255,255,255,0.42);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-social:hover {
  background: var(--gold);
  color: var(--slate);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,250,240,0.36), 0 12px 28px rgba(184,148,94,0.24);
}
.contact-social svg { width: 18px; height: 18px; }

.deal-spotlight {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 8px;
  border: 1px solid rgba(184,148,94,0.28);
  background: linear-gradient(135deg, rgba(34,56,47,0.96), rgba(95,128,111,0.92));
  color: var(--off-white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.deal-spotlight:hover {
  transform: translateY(-2px);
  border-color: rgba(216,185,129,0.44);
  box-shadow: 0 0 0 1px rgba(216,185,129,0.18), 0 28px 82px rgba(34,56,47,0.28);
}
.deal-spotlight h2, .deal-spotlight h3 { color: var(--off-white); }
.deal-spotlight p, .deal-spotlight li { color: var(--off-white); }
.deal-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(216,185,129,0.18);
  border: 1px solid rgba(216,185,129,0.42);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.deal-panel {
  border: 1px solid rgba(216,185,129,0.28);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255,250,240,0.09);
}
.deal-percent {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  line-height: 0.9;
  color: var(--gold-light);
}

footer { padding: 70px 60px 34px; background: var(--slate-mid); color: var(--text-light); }
footer .nav-logo { gap: 15px; align-items: center; }
footer .brand-mark { max-height: 68px; max-width: none; }
footer .nav-logo .brand-primary { color: var(--off-white); }
footer .nav-logo .brand-secondary { color: var(--gold-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 42px; margin-bottom: 42px; }
.footer-heading { color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.62rem; font-weight: 700; margin-bottom: 18px; }
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.82rem;
  border-radius: 6px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.footer-links a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(216,185,129,0.38);
}
footer p,
footer li,
footer .section-copy,
footer .footer-note { color: var(--off-white); }
footer a { color: var(--text-light); }
.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: -18px 0 30px;
}
.footer-social {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216,185,129,0.38);
  border-radius: 8px;
  color: var(--gold-light);
  background: rgba(255,250,240,0.06);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.footer-social:hover {
  background: var(--gold);
  color: var(--slate);
  box-shadow: 0 10px 26px rgba(216,185,129,0.22);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; display: block; }
.footer-note { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; font-size: 0.72rem; }

@media (max-width: 1180px) {
  nav { padding: 8px 22px; gap: 12px; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    background: rgba(255,253,247,0.98);
    border: 1px solid rgba(184,148,94,0.22);
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(34,56,47,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    flex: initial;
  }
  nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
  .nav-links a:hover,
  .nav-links a.active { background: rgba(184,148,94,0.1); }
  .nav-toggle { display: inline-flex; }
  .page-hero { padding: 130px 24px 72px; min-height: 64vh; }
  section { padding: 78px 24px; }
  .grid, .grid.two, .stats, .footer-grid { grid-template-columns: 1fr; }
  .deal-spotlight { grid-template-columns: 1fr; padding: 26px; }
  .split-head, .band { align-items: flex-start; flex-direction: column; }
  .map-content { align-items: flex-start; flex-direction: column; }
  .map-frame { min-height: 320px; }
  .band { padding: 42px 24px; }
  footer { padding: 58px 24px 30px; }
}

@media (max-width: 640px) {
  nav { padding: 8px max(12px, env(safe-area-inset-right)) 8px max(12px, env(safe-area-inset-left)); gap: 8px; justify-content: flex-start; }
  .nav-links {
    top: calc(100% + 52px);
    max-height: calc(100svh - 124px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-logo { flex: 1 1 auto; font-size: 0.95rem; line-height: 1.2; gap: 10px; margin-right: 0; min-width: 0; max-width: calc(100% - 122px); overflow: hidden; }
  .nav-logo .brand-lines { min-width: 104px; max-width: 124px; }
  .brand-mark { flex: 0 0 auto; width: 56px; height: 56px; padding: 0; }
  footer .brand-mark, footer .nav-logo .brand-mark { width: 52px; height: 52px; }
  .nav-logo .brand-primary,
  .nav-logo .brand-secondary { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-logo .brand-primary { font-size: 1.08rem; letter-spacing: 0.035em; }
  .nav-logo .brand-secondary { font-size: 0.54rem; letter-spacing: 0.09em; }
  .nav-cta {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    z-index: 1001;
    min-height: 42px;
    padding: 11px 14px;
    margin-left: 0;
    font-size: 0.62rem;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  nav.nav-open .nav-cta { display: inline-flex; }
  .lang-switch { margin-left: auto; padding: 3px; gap: 2px; flex: 0 0 auto; }
  .lang-switch a { min-height: 28px; padding: 0 7px; font-size: 0.62rem; letter-spacing: 0.01em; }
  .nav-toggle { width: 42px; height: 42px; margin-left: 0; flex: 0 0 42px; }
  h1 { font-size: 1.99rem; }
  h1, h2, h3, .btn, .nav-cta { overflow-wrap: anywhere; }
  .btn, .nav-cta { max-width: 100%; white-space: normal; }
  .category-nav { gap: 8px; }
  .category-nav a { width: 100%; justify-content: center; min-height: 44px; text-align: center; }
  .form-label { font-size: 0.74rem; line-height: 1.45; }
  input, select, textarea { min-height: 52px; }
  .card img { aspect-ratio: 4 / 3; }
  .split-head { margin-bottom: 36px; }
  .band .btn, .section-actions .btn { width: 100%; }
  .content-note { padding: 20px; }
  .card-body, .offer, .service-card, .contact-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .form,
  .form-grid,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .form-field,
  .form-group {
    width: 100%;
    min-width: 0;
  }

  .form-label,
  .form-group label {
    color: #3f2a0f;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.45;
  }

  input,
  select,
  textarea,
  .form-group input,
  .form-group select {
    width: 100%;
    min-height: 56px;
    padding: 14px 15px;
    font-size: 1rem;
  }

  textarea {
    min-height: 140px;
  }

  .contact-card,
  .service-card,
  .offer {
    overflow: hidden;
  }

  .tirtaFloat,
  .tirtha-float,
  .pilgrimage-badge {
    display: none !important;
  }
}

html[lang="ne"] body,
html[lang="ne"] input,
html[lang="ne"] select,
html[lang="ne"] textarea,
html[lang="ne"] button {
  font-family: 'Noto Sans Devanagari', 'Nirmala UI', 'Mangal', sans-serif;
  font-feature-settings: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  text-transform: none;
}
html[lang="ne"] h1,
html[lang="ne"] h2,
html[lang="ne"] h3,
html[lang="ne"] .brand-primary {
  font-family: 'Noto Sans Devanagari', 'Nirmala UI', 'Mangal', serif;
}
html[lang="ne"] * {
  letter-spacing: normal !important;
  word-spacing: normal !important;
  text-transform: none !important;
}
html[lang="ne"] .nav-links a,
html[lang="ne"] .nav-cta,
html[lang="ne"] .btn,
html[lang="ne"] .tag,
html[lang="ne"] .eyebrow,
html[lang="ne"] .footer-heading {
  letter-spacing: normal !important;
  word-spacing: normal !important;
  text-transform: none !important;
}
html[lang="ne"] .nav-links {
  gap: clamp(10px, 0.92vw, 18px);
}
html[lang="ne"] .nav-links a {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}
html[lang="ne"] .nav-cta,
html[lang="ne"] .lang-switch a {
  font-size: 0.9rem;
  font-weight: 800;
}
html[lang="ne"] .form-label {
  color: #3f2a0f;
  font-size: 0.86rem;
  font-weight: 800;
}
html[lang="ne"] p,
html[lang="ne"] li,
html[lang="ne"] .section-copy,
html[lang="ne"] .hero-copy,
html[lang="ne"] .meta {
  line-height: 1.95;
}

@media (max-width: 1180px) {
  html[lang="ne"] .nav-links {
    gap: 0;
  }
  html[lang="ne"] .nav-links a {
    font-size: 0.98rem;
    min-height: 50px;
  }
}

@media (max-width: 640px) {
  html[lang="ne"] .lang-switch a {
    font-size: 0.74rem;
  }
  html[lang="ne"] .nav-logo .brand-lines {
    min-width: 104px;
  }
}

@media (max-width: 520px) {
  .nav-cta { display: none; }
  nav.nav-open .nav-cta { display: inline-flex; }
}
