/* ============================================================
   Ilayanar Home Stay — stylesheet
   Palette & fonts per the owner's brief (Section 3).
   Mobile-first. One shared sheet across all pages.
   ============================================================ */

:root {
  /* Brand palette (from brief) */
  --saffron: #E2711D;
  --saffron-dark: #C25C12;
  --maroon: #7A1F1F;
  --maroon-deep: #561212;
  --gold: #C9A227;
  --gold-soft: #E7D6A0;
  --cream: #FFF6EC;
  --cream-2: #FBEAD6;
  --surface: #FFFCF7;
  --charcoal: #2B2B2B;
  --ink-soft: #6A5F55;
  --line: rgba(122, 31, 31, 0.16);

  /* Fonts */
  --display: "Marcellus", "Noto Serif", Georgia, serif;
  --body: "Noto Sans", "Noto Sans Tamil", "Noto Sans Telugu", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gut: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 14px;
  --shadow: 0 14px 40px -22px rgba(86, 18, 18, 0.55);
  --shadow-sm: 0 6px 20px -14px rgba(86, 18, 18, 0.5);
  --nav-h: 66px;
}

/* Language-specific body fonts (set on <html lang>) */
html[lang="ta"] { --body: "Noto Sans Tamil", "Noto Sans", system-ui, sans-serif; --display: "Noto Sans Tamil", "Marcellus", serif; }
html[lang="te"] { --body: "Noto Sans Telugu", "Noto Sans", system-ui, sans-serif; --display: "Noto Sans Telugu", "Marcellus", serif; }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--maroon); text-decoration-color: var(--gold); text-underline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; color: var(--maroon); line-height: 1.14; margin: 0 0 .5em; letter-spacing: .2px; }
h1 { font-size: clamp(2.1rem, 6.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
p { margin: 0 0 1rem; }

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tint { background: var(--cream-2); }
.section--maroon { background: var(--maroon); color: var(--cream); }
.section--maroon h1, .section--maroon h2, .section--maroon h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }
.center .lead { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--body); font-size: .76rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--saffron-dark);
  margin: 0 0 .9rem;
}
.eyebrow svg { width: 16px; height: 16px; flex: none; }
.section--maroon .eyebrow { color: var(--gold-soft); }

/* Ornamental hill+flame divider */
.ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto 1.2rem; max-width: 320px; }
.ornament::before, .ornament::after { content: ""; height: 1px; flex: 1; background: linear-gradient(to var(--d, right), transparent, var(--gold)); }
.ornament::before { --d: left; }
.ornament svg { width: 34px; height: 34px; color: var(--saffron); flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .92em 1.4em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  min-height: 48px;
}
.btn svg { width: 1.2em; height: 1.2em; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--saffron); color: #fff; box-shadow: 0 10px 22px -12px rgba(226,113,29,.9); }
.btn--primary:hover { background: var(--saffron-dark); }
.btn--wa { background: #25D366; color: #08321a; }
.btn--wa:hover { background: #1ebe5a; }
.btn--ghost { background: transparent; color: var(--maroon); border-color: var(--gold); }
.btn--ghost:hover { background: rgba(201,162,39,.14); }
.section--maroon .btn--ghost, .hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.section--maroon .btn--ghost:hover, .hero .btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 246, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { max-width: 1400px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: .9rem; min-height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--maroon); min-width: 0; }
.brand svg, .brand img { width: 38px; height: 38px; flex: none; color: var(--saffron); }
.brand b { font-family: var(--display); font-size: 1.18rem; font-weight: 400; letter-spacing: .3px; line-height: 1.25; display: block; }
/* Outer text wrapper: block only. Inner tag span: full styling. */
.brand > span { display: block; min-width: 0; overflow: hidden; }
.brand > span > span { display: block; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: .5rem .55rem; border-radius: 8px; text-decoration: none;
  color: var(--charcoal); font-size: .92rem; font-weight: 500; white-space: nowrap;
}
.nav-links a:hover { background: rgba(201,162,39,.16); color: var(--maroon); }
.nav-links a[aria-current="page"] { color: var(--saffron-dark); font-weight: 600; }

.nav-tools { display: flex; align-items: center; gap: .6rem; }

/* Language toggle */
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--surface); }
.lang button {
  font-family: var(--body); border: 0; background: transparent; cursor: pointer;
  padding: .42rem .62rem; font-size: .82rem; color: var(--ink-soft); line-height: 1;
}
.lang button[aria-pressed="true"] { background: var(--saffron); color: #fff; font-weight: 600; }

/* The in-bar "Book" button is hidden: booking is always one tap away via the
   floating WhatsApp button and the in-menu button. This keeps the trilingual
   navigation from overflowing on narrower screens. */
.nav-cta { display: none; }
.nav-toggle { display: none; }
.nav-cta-mobile { display: none; }

/* Shared collapsed (hamburger) navigation */
.nav-toggle {
  align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); cursor: pointer; color: var(--maroon);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* English collapses below 1100px. Tamil & Telugu run wider, so they collapse
   below 1420px (handled in the second block). */
@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gut) 1.2rem; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .28s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links .nav-cta-mobile { display: block; margin-top: 1rem; }
  .nav-links .nav-cta-mobile a { border: 0; }
}

/* Tamil / Telugu: wider scripts — collapse up to 1420px */
@media (min-width: 1101px) and (max-width: 1420px) {
  html[lang="ta"] .nav-toggle,
  html[lang="te"] .nav-toggle { display: inline-flex; }
  html[lang="ta"] .nav-links,
  html[lang="te"] .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gut) 1.2rem; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .28s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  html[lang="ta"] .nav-links.open,
  html[lang="te"] .nav-links.open { transform: translateY(0); }
  html[lang="ta"] .nav-links a,
  html[lang="te"] .nav-links a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  html[lang="ta"] .nav-links .nav-cta-mobile,
  html[lang="te"] .nav-links .nav-cta-mobile { display: block; margin-top: 1rem; }
  html[lang="ta"] .nav-links .nav-cta-mobile a,
  html[lang="te"] .nav-links .nav-cta-mobile a { border: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(86vh, 720px); display: grid; align-items: center; color: #fff; isolation: isolate; }
.hero--short { min-height: min(54vh, 460px); }
.hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(40,8,8,.42) 0%, rgba(40,8,8,.32) 45%, rgba(60,14,14,.78) 100%);
}
.hero-inner { padding-block: clamp(2.4rem, 6vw, 4.6rem); max-width: 760px; }
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.4); margin-bottom: .35em; }
.hero .eyebrow { color: var(--gold-soft); }
.hero p { font-size: clamp(1.02rem, 2.3vw, 1.28rem); max-width: 56ch; color: #fdf3e6; text-shadow: 0 1px 14px rgba(0,0,0,.45); }
.hero .btn-row { margin-top: 1.6rem; }

/* ---------- USP band ---------- */
.usps { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); }
.usp { text-align: center; padding: 1.4rem 1rem; }
.usp .usp-ic { width: 62px; height: 62px; margin: 0 auto 1rem; color: var(--saffron);
  background: radial-gradient(circle at 50% 40%, rgba(226,113,29,.16), transparent 70%); border-radius: 50%;
  display: grid; place-items: center; }
.usp .usp-ic svg { width: 40px; height: 40px; }
.usp h3 { color: var(--maroon); margin-bottom: .3em; }
.usp p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
@media (max-width: 720px) { .usps { grid-template-columns: 1fr; gap: .6rem; } .usp { padding: 1rem .5rem; } }

/* ---------- Generic grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.card-img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.2rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-body h3 { margin: 0; }
.card-body p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.card-body .btn { margin-top: auto; align-self: flex-start; }

/* Room card price chip */
.price { display: inline-flex; align-items: baseline; gap: .35em; font-family: var(--display); color: var(--maroon); }
.price b { font-size: 1.5rem; }
.price small { font-size: .82rem; color: var(--ink-soft); font-family: var(--body); }
.tag { display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .04em; color: var(--saffron-dark); background: rgba(226,113,29,.12); padding: .25em .7em; border-radius: 999px; }

/* Feature row (image + text) */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3.2rem); align-items: center; }
.feature.reverse .feature-media { order: 2; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } .feature.reverse .feature-media { order: 0; } }

/* Amenity / tick lists */
.ticks { list-style: none; margin: 1rem 0; padding: 0; display: grid; gap: .6rem; }
.ticks li { position: relative; padding-left: 1.9rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 1.25rem; height: 1.25rem;
  background: var(--saffron); border-radius: 50%;
  -webkit-mask: var(--check) center/0.7rem no-repeat; mask: var(--check) center/0.7rem no-repeat;
}
:root { --check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>"); }

.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.amenity { display: flex; gap: .85rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; min-width: 0; }
.amenity svg { width: 30px; height: 30px; color: var(--saffron); flex: none; }
.amenity b { display: block; color: var(--maroon); font-family: var(--display); font-weight: 400; font-size: 1.06rem; line-height: 1.35; overflow-wrap: anywhere; }
.amenity span { display: block; font-size: .88rem; color: var(--ink-soft); line-height: 1.55; overflow-wrap: anywhere; }
@media (max-width: 420px) { .amenity-grid { grid-template-columns: 1fr; } }

/* ---------- Tariff table ---------- */
.tariff { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.tariff th, .tariff td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.tariff thead th { background: var(--maroon); color: #fff; font-family: var(--display); font-weight: 400; letter-spacing: .3px; }
.tariff tbody tr:last-child td { border-bottom: 0; }
.tariff .rate { font-family: var(--display); color: var(--saffron-dark); font-size: 1.25rem; white-space: nowrap; }
.tariff-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Gallery ---------- */
.gallery { columns: 3 260px; column-gap: 1rem; }
.gallery figure { margin: 0 0 1rem; break-inside: avoid; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; position: relative; }
.gallery img { width: 100%; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4rem .9rem .7rem; font-size: .82rem; color: #fff;
  background: linear-gradient(transparent, rgba(40,8,8,.8)); opacity: 0; transition: opacity .3s ease; }
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; }
.gallery button.g-open { position: absolute; inset: 0; background: transparent; border: 0; cursor: zoom-in; width: 100%; height: 100%; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(28,6,6,.94); display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 96vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox .lb-cap { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; color: #f4e3cf; font-size: .92rem; padding-inline: 1rem; }
.lightbox .lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; }
.lightbox .lb-close { top: 1rem; right: 1rem; }
.lightbox .lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .gallery { columns: 2 150px; } .lightbox .lb-prev { left: .4rem; } .lightbox .lb-next { right: .4rem; } }

/* ---------- Reviews ---------- */
.quote { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--saffron); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .9rem; }
.quote p { font-size: 1.06rem; font-style: italic; color: var(--charcoal); margin: 0; }
.quote .stars { color: var(--gold); letter-spacing: 2px; }
.quote footer { font-size: .9rem; color: var(--ink-soft); font-style: normal; }
.quote footer b { color: var(--maroon); font-style: normal; }

/* ---------- Pilgrim guide ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { color: var(--saffron-dark); margin-top: 1.6rem; }
.guide-toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); }
.guide-toc ul { margin: .5rem 0 0; padding-left: 1.1rem; }
.guide-toc li { margin: .35rem 0; }
.callout { background: var(--cream-2); border: 1px solid var(--gold); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.5rem 0; }
.callout b { color: var(--maroon); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list svg { width: 26px; height: 26px; color: var(--saffron); flex: none; margin-top: 3px; }
.info-list b { color: var(--maroon); font-family: var(--display); font-weight: 400; font-size: 1.08rem; }
.info-list a { color: var(--charcoal); }
.map-embed { border: 0; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

form .field { margin-bottom: 1.1rem; }
form label { display: block; font-weight: 600; color: var(--maroon); margin-bottom: .35rem; font-size: .92rem; }
form input, form select, form textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; padding: .8rem .9rem;
  border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--charcoal);
}
form input:focus, form select:focus, form textarea:focus { outline: 2px solid var(--saffron); border-color: var(--saffron); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Floating contact buttons ---------- */
.fab-stack { position: fixed; right: clamp(.8rem, 3vw, 1.4rem); bottom: clamp(.8rem, 3vw, 1.4rem); z-index: 60; display: flex; flex-direction: column; gap: .7rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); color: #fff; text-decoration: none; transition: transform .15s ease; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }
.fab--wa { background: #25D366; }
.fab--call { background: var(--saffron); }
.fab span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon-deep); color: #f3ddc9; padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; }
.site-footer a { color: #f3ddc9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.footer-grid h4 { color: var(--gold-soft); font-family: var(--body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand .brand b { color: #fff; }
.footer-brand .brand span { color: var(--gold-soft); }
.footer-brand p { color: #e7c9af; font-size: .95rem; max-width: 34ch; margin-top: .8rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .96rem; }
.footer-bottom { border-top: 1px solid rgba(231,214,160,.22); margin-top: 2.2rem; padding-top: 1.3rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .82rem; color: #d8b89e; }

/* Placeholder marker (for owner-supplied content) */
.todo { background: #fff6d6; border: 1px dashed #c9a227; color: #6a5200; font-size: .82rem; padding: .15em .55em; border-radius: 6px; display: inline-block; }

/* ---------- Indic script corrections ---------- */
/* Tamil & Telugu need zero letter-spacing on brand text and extra line-height */
html[lang="ta"] .brand b,
html[lang="te"] .brand b { letter-spacing: 0; line-height: 1.45; }
html[lang="ta"] .brand > span > span,
html[lang="te"] .brand > span > span { letter-spacing: 0; text-transform: none; }

/* ---------- Tariff table — mobile ---------- */
.tariff-wrap { max-width: 100%; }
.tariff td, .tariff th { word-break: break-word; overflow-wrap: break-word; }

.tariff-notes { display: none; }

@media (max-width: 620px) {
  .tariff th, .tariff td { padding: .8rem .75rem; }
  .tariff .rate { font-size: 1.1rem; }
}

/* ---------- Nav — small-screen overflow fix ---------- */
@media (max-width: 520px) {
  /* Compact lang buttons so they don't crowd the hamburger */
  .lang button { padding: .38rem .48rem; font-size: .78rem; }
  .nav-toggle { width: 42px; height: 42px; }
  /* Brand: hide location tag, truncate name if still too tight */
  .brand > span > span { display: none; }
  .brand b { font-size: 1rem; white-space: normal; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); 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; } }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--maroon); color: #fff; padding: .7rem 1rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

[hidden] { display: none !important; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--display); font-size: 1.08rem; color: var(--maroon);
  padding: 1.1rem 2.4rem 1.1rem 0; position: relative; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; line-height: 1; color: var(--saffron); font-family: var(--body); font-weight: 300;
  transition: transform .2s ease;
}
.faq-item[open] > summary::after { content: "−"; }
.faq-item p { margin: 0 0 1.1rem; color: var(--ink-soft); padding-right: 1rem; }
