/* ============================================================
   AUTRAVEL – Main Stylesheet
   assets/style.css
   ============================================================ */

/* ── Reset & root ─────────────────────────────────────────── */
:root {
  --sand:   #f5f0e8;
  --deep:   #1a2332;
  --coral:  #e05c3a;
  --sky:    #5b9cbf;
  --sage:   #7a9e7e;
  --warm:   #f9f5ef;
  --white:  #ffffff;
  --text:   #2c2c2c;
  --muted:  #6b6b6b;
  --border: #e0d9ce;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.13);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Source Sans 3', system-ui, sans-serif; background: var(--warm); color: var(--text); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ── Skip link ────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -40px; left: 1rem; background: var(--coral); color: #fff;
  padding: .4rem .9rem; border-radius: 0 0 8px 8px; font-weight: 600; font-size: .85rem;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Navigation ───────────────────────────────────────────── */
/* ── Navigation ──────────────────────────────────────────── */
#site-nav {
  background: var(--deep);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 1rem; min-height: 58px;
}
/* Logo */
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900;
  letter-spacing: .06em; text-decoration: none; flex-shrink: 0; line-height: 1;
}
.nav-logo-au { color: #fff; }
.nav-logo-travel { color: var(--coral); }
.nav-logo:hover { text-decoration: none; opacity: .9; }
/* Nav links */
.nav-menu {
  display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0;
}
.nav-links {
  display: flex; gap: .2rem; align-items: center; flex: 1; list-style: none;
  flex-wrap: nowrap; overflow: hidden; min-width: 0;
}
.nav-links li { flex-shrink: 0; }
.nav-desktop-tools { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.nav-mobile-tools { display: none; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: capitalize; transition: color .2s;
  white-space: nowrap; padding: .3rem .55rem; border-radius: 6px; display: block;
  text-decoration: none;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.nav-links a.active { color: var(--coral); background: rgba(224,92,58,.12); }
/* CTA */
.nav-cta {
  background: var(--coral); color: #fff; padding: .42rem 1rem; border-radius: 20px;
  font-size: .78rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
  transition: background .2s, transform .15s; display: inline-block; text-decoration: none;
}
.nav-cta:hover { background: #c44f30; transform: translateY(-1px); text-decoration: none; }
/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; flex-direction: column; gap: 5px; flex-shrink: 0;
  order: 3;
}
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { background: var(--sand); border-bottom: 1px solid var(--border); padding: .65rem 2rem; }
.breadcrumb ol { max-width: 1280px; margin: 0 auto; display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb li { font-size: .8rem; color: var(--muted); }
.breadcrumb a { color: var(--coral); }
.breadcrumb .bc-sep { color: var(--border); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ── Page wrapper ─────────────────────────────────────────── */
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.page-wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 2rem; }
main { min-height: 60vh; }

/* ── Section shared ───────────────────────────────────────── */
section { padding: 4.5rem 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.sec-eye { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--coral); margin-bottom: .5rem; }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 700; color: var(--deep); line-height: 1.2; margin-bottom: .35rem; }
.sec-sub { color: var(--muted); font-size: .97rem; font-weight: 300; line-height: 1.75; max-width: 56ch; margin-bottom: 2.5rem; }
.sec-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.2rem; gap: 1rem; flex-wrap: wrap; }
.see-all { color: var(--coral); font-size: .88rem; font-weight: 600; border-bottom: 1px solid var(--coral); padding-bottom: 1px; white-space: nowrap; }
.see-all:hover { opacity: .7; text-decoration: none; }

/* ── Home hero ────────────────────────────────────────────── */
.home-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; overflow: hidden;
}
.hero-text {
  padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center;
  background: var(--deep); position: relative; overflow: hidden;
}
.hero-text::before {
  content: 'AUSTRALIA'; position: absolute; top: .5rem; left: 1rem;
  font-family: 'Playfair Display', serif; font-size: 7rem; font-weight: 900;
  color: rgba(255,255,255,.03); letter-spacing: .1em; pointer-events: none; line-height: 1;
}
.hero-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--coral); margin-bottom: 1.2rem; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 1.3rem; }
.hero-text h1 em { font-style: italic; color: var(--sky); }
.hero-desc { color: rgba(255,255,255,.65); font-size: 1rem; font-weight: 300; max-width: 42ch; margin-bottom: 2.2rem; line-height: 1.8; }
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-primary { background: var(--coral); color: #fff; padding: .75rem 1.75rem; border-radius: 30px; font-weight: 600; font-size: .9rem; border: none; cursor: pointer; display: inline-block; transition: all .2s; }
.btn-primary:hover { background: #c44f30; transform: translateY(-1px); text-decoration: none; }
.btn-outline { border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); padding: .75rem 1.75rem; border-radius: 30px; font-weight: 600; font-size: .9rem; cursor: pointer; background: none; transition: all .2s; display: inline-block; }
.btn-outline:hover { border-color: #fff; color: #fff; text-decoration: none; }
.btn-muted { border: 1.5px solid var(--border); color: var(--deep); padding: .65rem 1.4rem; border-radius: 24px; font-weight: 600; font-size: .85rem; background: #fff; display: inline-block; transition: all .2s; }
.btn-muted:hover { border-color: var(--coral); color: var(--coral); text-decoration: none; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12); }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; color: #fff; line-height: 1; margin-bottom: .2rem; }
.stat span { font-size: .7rem; color: rgba(255,255,255,.5); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.hero-image { position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,35,50,.3), transparent); }
.hero-tag { position: absolute; bottom: 1.75rem; right: 1.75rem; background: rgba(26,35,50,.85); backdrop-filter: blur(8px); color: #fff; padding: .65rem 1.1rem; border-radius: 10px; font-size: .8rem; font-weight: 600; }

/* ── Philosophy band ──────────────────────────────────────── */
.philosophy { background: var(--deep); padding: 4rem 2rem; text-align: center; }
.philosophy p { font-family: 'Playfair Display', serif; font-size: clamp(1.05rem, 1.8vw, 1.45rem); color: rgba(255,255,255,.75); font-style: italic; max-width: 62ch; margin: 0 auto; line-height: 1.75; }
.philosophy strong { color: #fff; font-style: normal; }

/* ── Quick links ──────────────────────────────────────────── */
.quicklinks { background: var(--sand); border-bottom: 1px solid var(--border); padding: .9rem 2rem; }
.quicklinks-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.ql-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: .3rem; }
.ql-btn { background: #fff; color: var(--deep); font-size: .8rem; font-weight: 600; padding: .28rem .9rem; border-radius: 20px; border: 1px solid var(--border); transition: all .2s; display: inline-block; }
.ql-btn:hover { border-color: var(--coral); color: var(--coral); text-decoration: none; }

/* ── State cards grid ─────────────────────────────────────── */
.states-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.state-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.state-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-img-link { display: block; overflow: hidden; }
.sc-img { height: 200px; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.state-card:hover .sc-img img { transform: scale(1.05); }
.sc-badge { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: .4rem; }
.sc-body { padding: 1.3rem; }
.sc-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep); margin-bottom: .45rem; }
.sc-body h3 a { color: inherit; }
.sc-body h3 a:hover { color: var(--coral); text-decoration: none; }
.sc-body p { font-size: .87rem; color: var(--muted); margin-bottom: .9rem; line-height: 1.6; }
.tags { display: flex; gap: .3rem; flex-wrap: wrap; }
.tag { background: var(--sand); color: var(--deep); font-size: .68rem; font-weight: 600; padding: .18rem .55rem; border-radius: 8px; }

/* ── City cards grid ──────────────────────────────────────── */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cities-grid-4 { grid-template-columns: repeat(4, 1fr); }
.city-card { border-radius: 13px; overflow: hidden; position: relative; height: 260px; }
.city-card a { display: block; height: 100%; position: relative; }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.city-card:hover img { transform: scale(1.05); }
.cc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,35,50,.88) 0%, rgba(26,35,50,.08) 55%); }
.cc-body { position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; color: #fff; }
.cc-state { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--sky); margin-bottom: .2rem; }
.cc-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.cc-body p { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: .3rem; line-height: 1.5; }
.city-card a:hover { text-decoration: none; }

/* ── Steps ────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.step-n { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 900; color: var(--sand); line-height: 1; margin-bottom: -.35rem; }
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep); margin-bottom: .55rem; }
.step p { color: var(--muted); font-size: .92rem; line-height: 1.75; font-weight: 300; }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero { background: var(--deep); padding: 4rem 2rem; overflow: hidden; position: relative; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(91,156,191,.15), transparent 65%); pointer-events: none; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: center; position: relative; }
.page-hero-content .sec-eye { color: var(--coral); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.8vw, 2.7rem); font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: .9rem; }
.page-hero h1 em { font-style: italic; color: var(--sky); }
.page-hero .sub { color: rgba(255,255,255,.65); font-size: .97rem; font-weight: 300; line-height: 1.8; max-width: 46ch; margin-bottom: 1.4rem; }
.page-hero-meta { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.4rem; }
.meta-pill { display: flex; gap: .65rem; align-items: flex-start; }
.meta-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); width: 90px; flex-shrink: 0; padding-top: .1rem; }
.meta-val { font-size: .87rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.ph-btns { display: flex; gap: .65rem; flex-wrap: wrap; }
.page-hero-img { border-radius: var(--radius); overflow: hidden; }
.page-hero-img img { width: 100%; height: 240px; object-fit: cover; }

/* ── Guide layout ─────────────────────────────────────────── */
.guide-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; padding: 3rem 0; }
.guide-main h2 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--deep); margin: 2rem 0 .75rem; }
.guide-main h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--deep); margin: 1.5rem 0 .5rem; }
.guide-main p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.guide-main ul, .guide-main ol { color: var(--muted); font-size: .93rem; line-height: 1.8; padding-left: 1.4rem; margin-bottom: 1rem; }
.guide-main ul { list-style: disc; }
.guide-main ol { list-style: decimal; }
.guide-sidebar { position: sticky; top: 80px; align-self: start; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.35rem; margin-bottom: 1.2rem; }
.sidebar-box h4 { font-family: 'Playfair Display', serif; font-size: .97rem; font-weight: 700; color: var(--deep); margin-bottom: .8rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.sidebar-box p, .sidebar-box li { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.sidebar-box ul { list-style: none; }
.sidebar-box li { padding: .3rem 0; border-bottom: 1px solid var(--sand); }
.sidebar-box li:last-child { border-bottom: none; }
.info-pill { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .65rem; }
.ip-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); width: 80px; flex-shrink: 0; padding-top: .12rem; }
.ip-val { font-size: .86rem; color: var(--deep); }
.related-link { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--coral); margin-top: .5rem; }
.related-link::before { content: '→'; }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-section { max-width: 780px; }
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--deep); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--coral); display: inline-block; }
.faq-item { border: 1px solid var(--border); border-radius: 11px; margin-bottom: .6rem; overflow: hidden; background: #fff; }
.faq-q { padding: 1rem 1.25rem; font-weight: 600; font-size: .92rem; color: var(--deep); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; }
.faq-q:hover { color: var(--coral); }
.faq-q::marker, .faq-q::-webkit-details-marker { display: none; }
.faq-icon { font-size: 1.1rem; color: var(--coral); flex-shrink: 0; transition: transform .2s; }
details.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 1.25rem 1.1rem; font-size: .9rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── Slang dictionary ─────────────────────────────────────── */
.slang-controls { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.slang-search { flex: 1; min-width: 200px; border: 1.5px solid var(--border); border-radius: 10px; padding: .65rem 1rem; font-family: inherit; font-size: .9rem; color: var(--deep); outline: none; background: #fff; }
.slang-search:focus { border-color: var(--coral); }
.filter-btns { display: flex; gap: .4rem; flex-wrap: wrap; }
.filter-btn { background: #fff; border: 1px solid var(--border); color: var(--deep); font-size: .78rem; font-weight: 600; padding: .28rem .75rem; border-radius: 20px; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--coral); border-color: var(--coral); color: #fff; }
.slang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.slang-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem; }
.slang-card.hidden { display: none; }
.slang-word { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--deep); }
.slang-pron { font-size: .73rem; color: var(--coral); font-weight: 600; letter-spacing: .06em; margin: .2rem 0 .45rem; }
.slang-cat { display: inline-block; background: var(--sand); color: var(--deep); font-size: .63rem; font-weight: 700; padding: .15rem .5rem; border-radius: 8px; margin-bottom: .55rem; letter-spacing: .05em; text-transform: uppercase; }
.slang-meaning { font-size: .87rem; color: var(--text); font-weight: 600; margin-bottom: .35rem; }
.slang-eg { font-size: .82rem; color: var(--muted); font-style: italic; line-height: 1.55; }
.slang-note { font-size: .76rem; color: var(--sky); margin-top: .4rem; line-height: 1.5; }

/* ── Search page ──────────────────────────────────────────── */
.search-hero-wrap { background: var(--deep); padding: 3rem 2rem; text-align: center; }
.search-hero-wrap h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.5rem); color: #fff; margin-bottom: .4rem; }
.search-hero-wrap p { color: rgba(255,255,255,.65); font-size: .97rem; margin-bottom: 1.5rem; }
.search-bar-wrap { display: flex; max-width: 580px; margin: 0 auto; border-radius: 30px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.2); }
.search-bar-wrap input { flex: 1; border: none; padding: .9rem 1.4rem; font-family: inherit; font-size: 1rem; outline: none; }
.search-bar-wrap button { background: var(--coral); border: none; color: #fff; padding: .9rem 1.5rem; font-weight: 600; cursor: pointer; font-size: .9rem; transition: background .2s; }
.search-bar-wrap button:hover { background: #c44f30; }
.search-filters { display: flex; gap: .5rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.search-result { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: .8rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: all .2s; }
.search-result:hover { border-color: var(--coral); box-shadow: var(--shadow); }
.sr-type { font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); margin-bottom: .2rem; }
.sr-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--deep); }
.sr-title a { color: inherit; }
.sr-desc { font-size: .84rem; color: var(--muted); margin-top: .2rem; }
.sr-arrow { color: var(--coral); font-size: 1.2rem; flex-shrink: 0; }
.no-results { text-align: center; padding: 3rem; color: var(--muted); }
.no-results h3 { font-family: 'Playfair Display', serif; color: var(--deep); font-size: 1.3rem; margin-bottom: .5rem; }

/* ── Contact form ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; }
.contact-form-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--deep); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: .65rem 1rem; font-family: inherit; font-size: .9rem; color: var(--deep); outline: none; background: #fff; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--coral); }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit { width: 100%; background: var(--coral); color: #fff; border: none; padding: .85rem; border-radius: 30px; font-weight: 600; font-size: .95rem; cursor: pointer; transition: background .2s; }
.form-submit:hover { background: #c44f30; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: 12px; padding: 1.5rem; text-align: center; color: #2e7d32; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: .35rem; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--deep); margin-bottom: 1rem; }
.contact-info p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.ci-item { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .9rem; padding: .9rem; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; }
.ci-text strong { display: block; font-size: .84rem; font-weight: 700; color: var(--deep); margin-bottom: .15rem; }
.ci-text span { font-size: .82rem; color: var(--muted); }

/* ── History page ─────────────────────────────────────────── */
.history-timeline { position: relative; padding-left: 2rem; }
.history-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--coral), var(--sky)); border-radius: 3px; }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.45rem; top: .4rem; width: 12px; height: 12px; border-radius: 50%; background: var(--coral); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--coral); }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--coral); margin-bottom: .25rem; }
.timeline-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--deep); margin-bottom: .4rem; }
.timeline-item p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ── Utility ──────────────────────────────────────────────── */
.bg-warm { background: var(--warm); }
.bg-sand { background: var(--sand); }
.bg-white { background: #fff; }
.bg-deep { background: var(--deep); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }

/* ── Footer ───────────────────────────────────────────────── */
#site-footer { background: var(--deep); color: rgba(255,255,255,.7); padding: 3.5rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 900; color: #fff; letter-spacing: .08em; margin-bottom: .65rem; }
.footer-logo span { color: var(--coral); }
.footer-brand p { font-size: .86rem; line-height: 1.7; font-weight: 300; max-width: 26ch; }
.footer-col h3 { color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.55); font-size: .88rem; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--coral); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; max-width: 1280px; margin: 0 auto; font-size: .76rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cities-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; }
  .hero-image { height: 55vw; }
  .hero-text { padding: 3rem 2rem; }
  .hero-text::before { font-size: 4rem; }
  .states-grid, .cities-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid-4 { grid-template-columns: 1fr 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .guide-wrap { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .slang-grid { grid-template-columns: 1fr 1fr; }
  #site-nav { position: sticky; top: 0; }
  .nav-inner { position: relative; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-desktop-tools { display: none; }
  .nav-menu {
    display: none; position: absolute; top: calc(100% + 8px); right: 1rem; left: auto;
    width: min(320px, calc(100vw - 2rem)); background: var(--deep); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,.35); padding: .8rem;
    max-height: min(70vh, calc(100dvh - 84px)); overflow-y: auto; overscroll-behavior: contain; z-index: 400;
  }
  .nav-menu.open { display: block; }
  .nav-links { display: flex; flex-direction: column; gap: .25rem; overflow: visible; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: .7rem .8rem; font-size: .95rem; width: 100%; }
  .nav-mobile-tools {
    display: grid; gap: .75rem; margin-top: .8rem; padding-top: .8rem;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-mobile-tools .lang-switcher { width: max-content; }
  .nav-mobile-tools .nav-cta { display: inline-block; text-align: center; }
}
@media (max-width: 600px) {
  .states-grid, .cities-grid, .cities-grid-4, .steps-grid, .slang-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .page-wrap, .page-wrap-narrow, .section-inner { padding: 0 1.25rem; }
  section { padding: 3rem 0; }
  .hero-text { padding: 2.5rem 1.5rem; }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  #site-nav, .nav-toggle, .skip-link, .nav-cta { display: none; }
  body { background: #fff; color: #000; }
  .page-hero { background: #f0f0f0; }
}

/* ── Language Switcher ──────────────────────────────────── */
.lang-switcher {
  display: flex; gap: .2rem; background: rgba(255,255,255,.1);
  border-radius: 20px; padding: .18rem; flex-shrink: 0;
}
.lang-btn {
  background: none; border: none; color: rgba(255,255,255,.6);
  font-family: 'Source Sans 3', sans-serif; font-size: .74rem; font-weight: 700;
  letter-spacing: .05em; padding: .22rem .58rem; border-radius: 14px;
  cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.lang-btn.active { background: var(--coral); color: #fff; }
.lang-btn:hover:not(.active) { color: #fff; text-decoration: none; }

/* ── Page transitions ────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
main { animation: fadeIn .25s ease; }

/* ── Social Share Bar ─────────────────────────────────────── */
.share-bar {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  padding: 1.2rem 0; margin: 2rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  max-width: 100%; overflow: hidden;
}
.share-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-right: .25rem; flex-shrink: 0;
}
.share-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .38rem .9rem; border-radius: 22px; font-size: .8rem; font-weight: 600;
  text-decoration: none; transition: all .18s; border: none; cursor: pointer;
  white-space: nowrap; line-height: 1; max-width: 160px; overflow: hidden;
}
.share-btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.share-btn svg {
  width: 15px; height: 15px; min-width: 15px; min-height: 15px;
  flex-shrink: 0; overflow: hidden; display: block;
}

/* CSS icon placeholders (no inline SVG needed) */
.share-icon {
  display: inline-block; width: 15px; height: 15px; border-radius: 3px;
  flex-shrink: 0; font-style: normal; font-size: 12px; line-height: 15px;
  text-align: center; font-weight: 900;
}
.share-icon::before { content: '↗'; font-size: 11px; }
.share-icon-fb::before  { content: 'f'; font-family: Georgia, serif; font-size: 13px; font-weight: 700; }
.share-icon-tw::before  { content: '✕'; font-size: 10px; font-weight: 900; }
.share-icon-wa::before  { content: '✆'; font-size: 12px; }
.share-icon-li::before  { content: 'in'; font-size: 8px; font-weight: 900; letter-spacing: -1px; }
.share-icon-em::before  { content: '✉'; font-size: 11px; }
.share-icon-cp::before  { content: '⧉'; font-size: 11px; }
.share-btn.fb    { background: #1877f2; color: #fff; }
.share-btn.tw    { background: #000;    color: #fff; }
.share-btn.wa    { background: #25d366; color: #fff; }
.share-btn.li    { background: #0a66c2; color: #fff; }
.share-btn.em    { background: var(--sand); color: var(--deep); border: 1px solid var(--border); }
.share-btn.cp    { background: var(--sand); color: var(--deep); border: 1px solid var(--border); }
.share-btn.cp.copied { background: #e8f5e9; color: #2e7d32; border-color: #a5d6a7; }

/* ── Emergency FAQ section ────────────────────────────────── */
.emergency-section {
  background: #fff8f0; border: 2px solid #ffb74d;
  border-radius: 16px; padding: 1.75rem 2rem; margin: 2.5rem 0;
}
.emergency-section h2 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: #c62828; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem;
}
.emergency-section p.intro {
  color: var(--muted); font-size: .92rem; margin-bottom: 1.5rem; line-height: 1.65;
}
.emergency-number-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem;
}
.en-card {
  background: #fff; border: 1px solid #ffcc80; border-radius: 12px; padding: 1rem 1.1rem;
}
.en-card h4 { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--deep); margin-bottom: .5rem; }
.en-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .3rem; }
.en-service { font-size: .82rem; color: var(--muted); }
.en-num { font-size: .95rem; font-weight: 700; color: #c62828; letter-spacing: .04em; }
.en-num a { color: #c62828; text-decoration: none; }
.en-num a:hover { text-decoration: underline; }
.en-note { font-size: .74rem; color: var(--muted); margin-top: .4rem; font-style: italic; }
.emergency-national {
  background: #fff; border: 1px solid #ffcc80; border-radius: 12px;
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.en-national-num { font-size: 1.5rem; font-weight: 900; color: #c62828; font-family: 'Playfair Display', serif; }
.en-national-num a { color: #c62828; text-decoration: none; }
.en-national-label { font-size: .82rem; color: var(--muted); }

@media (max-width: 768px) {
  .emergency-number-grid { grid-template-columns: 1fr 1fr; }
  .emergency-national { gap: 1rem; }
}
@media (max-width: 480px) {
  .emergency-number-grid { grid-template-columns: 1fr; }
  .share-bar { gap: .4rem; }
}

/* ── Emergency Section (v4) ───────────────────────────────── */
.emergency-section {
  background: #fff8f0; border: 2px solid #ffb74d;
  border-radius: 16px; padding: 1.75rem 2rem; margin: 2.5rem 0 0;
}
.emergency-section h2 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  color: #b71c1c; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .5rem;
}
/* 3 national numbers bar */
.en-national-bar {
  display: flex; align-items: stretch; gap: 0;
  background: #fff; border: 1px solid #ffcc80; border-radius: 12px;
  overflow: hidden; margin-bottom: 1.1rem;
}
.en-nat-item {
  flex: 1; padding: .9rem 1rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: .25rem;
}
.en-nat-sep { width: 1px; background: #ffcc80; flex-shrink: 0; }
.en-num-big {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900;
  color: #b71c1c; text-decoration: none; line-height: 1;
}
.en-num-big:hover { text-decoration: underline; }
.en-num-sm { font-size: 1.1rem; }
.en-nat-label { font-size: .72rem; color: #6b6b6b; line-height: 1.35; max-width: 18ch; }
/* Local card */
.en-local-card {
  background: #fff; border: 1px solid #ffcc80; border-radius: 12px; padding: 1.1rem 1.25rem;
}
.en-local-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--deep); margin-bottom: .75rem; }
.en-rows { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .65rem; }
.en-row { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.en-service { font-size: .8rem; color: #6b6b6b; }
.en-num { font-size: .95rem; font-weight: 700; color: #b71c1c; text-decoration: none; }
.en-num:hover { text-decoration: underline; }
.en-num-text { font-size: .82rem; font-weight: 600; color: var(--deep); text-align: right; }
.en-note { font-size: .73rem; color: #888; font-style: italic; margin-top: .5rem; line-height: 1.5; }
/* FAQ state grid */
.en-state-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: .85rem; margin-bottom: 1.2rem;
}
.en-state-card { background: #fff; border: 1px solid #ffcc80; border-radius: 11px; padding: .9rem 1rem; }
.en-state-name { font-family: 'Playfair Display', serif; font-size: .92rem; font-weight: 700; color: var(--deep); margin-bottom: .6rem; border-bottom: 1px solid #fff3e0; padding-bottom: .4rem; }
.en-extras { background: #fff; border: 1px solid #ffcc80; border-radius: 11px; padding: 1rem 1.25rem; }
.en-extras h4 { font-family: 'Playfair Display', serif; font-size: .9rem; color: var(--deep); margin-bottom: .65rem; }
.en-extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; }

@media (max-width: 900px) {
  .en-national-bar { flex-direction: column; }
  .en-nat-sep { width: auto; height: 1px; }
  .en-state-grid { grid-template-columns: 1fr 1fr; }
  .en-extras-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .en-state-grid { grid-template-columns: 1fr; }
  .emergency-section { padding: 1.25rem; }
}

/* ── Campervan Section ────────────────────────────────────── */
.cv-tips-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1.5rem;
}
.cv-tip-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem; }
.cv-tip-icon { font-size: 1.8rem; margin-bottom: .65rem; }
.cv-tip-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--deep); margin-bottom: .5rem; }
.cv-tip-card p  { font-size: .87rem; color: var(--muted); line-height: 1.7; }

.cv-route-card {
  background: #fff; border-left: 3px solid var(--coral);
  border-radius: 0 12px 12px 0; padding: 1rem 1.25rem; margin-bottom: .85rem;
}
.cv-route-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--deep); font-size: 1rem; margin-bottom: .35rem; }
.cv-route-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* Starlink banner */
.starlink-banner {
  display: grid; grid-template-columns: 1fr 240px; gap: 2.5rem; align-items: center; padding: 2rem 0;
}
.starlink-btns { display: flex; gap: .85rem; flex-wrap: wrap; }
.starlink-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .75rem 1.4rem; border-radius: 30px; font-weight: 700; font-size: .88rem;
  text-decoration: none; transition: all .2s; position: relative; white-space: nowrap;
}
.starlink-btn-primary { background: var(--coral); color: #fff; }
.starlink-btn-primary:hover { background: #c44f30; text-decoration: none; transform: translateY(-1px); }
.starlink-btn-secondary { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.starlink-btn-secondary:hover { background: rgba(255,255,255,.2); text-decoration: none; }
.starlink-btn-sm { background: var(--coral); color: #fff; padding: .55rem 1.1rem; border-radius: 22px; font-size: .82rem; font-weight: 600; text-decoration: none; transition: all .2s; display: inline-flex; align-items: center; gap: .4rem; }
.starlink-btn-sm:hover { background: #c44f30; text-decoration: none; }
.starlink-btn-alt { background: #fff; color: var(--deep); border: 1.5px solid var(--border); }
.starlink-btn-alt:hover { border-color: var(--deep); text-decoration: none; }
.sl-badge {
  background: rgba(255,255,255,.2); color: #fff; font-size: .68rem; font-weight: 700;
  padding: .15rem .55rem; border-radius: 10px; letter-spacing: .05em; text-transform: uppercase;
}
.starlink-btn-alt .sl-badge { background: var(--sand); color: var(--deep); }

/* Starlink graphic */
.starlink-graphic { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.sl-orbit-ring {
  width: 140px; height: 140px; border: 2px dashed rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: orbit 8s linear infinite;
}
.sl-satellite { font-size: 1.8rem; }
.sl-beam { width: 2px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); }
.sl-ground { font-size: 1.5rem; }
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Campervan Starlink inline box */
.cv-starlink-box {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--deep); color: #fff; border-radius: 14px;
  padding: 1.5rem; margin: 2rem 0;
}
.cv-sl-icon { font-size: 2rem; flex-shrink: 0; padding-top: .1rem; }
.cv-sl-content h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.cv-sl-content p { font-size: .87rem; color: rgba(255,255,255,.72); line-height: 1.7; }

@media (max-width: 900px) {
  .cv-tips-grid { grid-template-columns: 1fr 1fr; }
  .starlink-banner { grid-template-columns: 1fr; }
  .starlink-graphic { display: none; }
}
@media (max-width: 600px) {
  .cv-tips-grid { grid-template-columns: 1fr; }
}
