@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --cream: #F7F4EE;
  --cream-dark: #EDE8DF;
  --ink: #1A1814;
  --ink-mid: #3D3A34;
  --ink-light: #6B6760;
  --gold: #B8985A;
  --gold-light: #D4B878;
  --white: #FFFFFF;
  --rule: rgba(26,24,20,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p { color: var(--ink-mid); max-width: 66ch; }
a { color: inherit; text-decoration: none; }

/* CONTAINER */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(247,244,238,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--rule);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.03em;
  transition: color 0.4s;
}
nav.scrolled .nav__logo { color: var(--ink); }
.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__links a {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
  color: rgba(255,255,255,0.75); transition: color 0.3s;
}
nav.scrolled .nav__links a { color: var(--ink-light); }
.nav__links a:hover, .nav__links a.active { color: var(--white) !important; }
nav.scrolled .nav__links a:hover, nav.scrolled .nav__links a.active { color: var(--ink) !important; }
.nav__cta {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.5); color: var(--white);
  transition: all 0.3s;
}
nav.scrolled .nav__cta { border-color: var(--ink); color: var(--ink); }
.nav__cta:hover { background: var(--white); color: var(--ink); }
nav.scrolled .nav__cta:hover { background: var(--ink); color: var(--cream); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { width: 22px; height: 1px; background: var(--white); display: block; transition: all 0.3s; }
nav.scrolled .nav__hamburger span { background: var(--ink); }

/* Mobile nav */
.nav__mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--ink);
  z-index: 199; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--white);
  transition: color 0.2s;
}
.nav__mobile-menu a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute; top: 2rem; right: 2.5rem;
  font-size: 2rem; color: var(--white); cursor: pointer; background: none; border: none;
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,7,0.85) 0%,
    rgba(10,9,7,0.45) 40%,
    rgba(10,9,7,0.15) 70%,
    transparent 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 2.5rem 5rem;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero__label {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero__label::before { content: ''; width: 3rem; height: 1px; background: var(--gold); }
.hero__content h1 { color: var(--white); max-width: 15ch; margin-bottom: 1.6rem; }
.hero__content > p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 50ch; margin-bottom: 2.5rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero__stats {
  display: flex; gap: 3.5rem; flex-wrap: wrap;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat .val { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); display: block; }
.hero__stat .lbl { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; cursor: pointer; transition: all 0.25s;
}
.btn--gold { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--white { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn--white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--dark { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: var(--cream); }
.btn--dark-fill { background: var(--ink); border: 1px solid var(--ink); color: var(--white); }
.btn--dark-fill:hover { background: var(--ink-mid); }

/* ─── SECTION BASE ─── */
.section { padding: 7rem 0; }
.section--sm { padding: 4rem 0; }
.section--dark { background: var(--ink); }
.section--dark p { color: rgba(255,255,255,0.6); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--mid { background: var(--cream-dark); }

.section-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
.section--dark .section-label { color: var(--gold-light); }
.section--dark .section-label::before { background: var(--gold-light); }

hr { border: none; border-top: 1px solid var(--rule); }

/* ─── INVESTMENT SECTION ─── */
.invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.invest-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin-top: 3rem; }
.istat .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.istat .lbl { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-top: 0.2rem; }
.invest-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.invest-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2a2720, #3d3428);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── PATHWAY CARDS ─── */
.pathway-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 3.5rem; }
.pathway-card { background: var(--white); padding: 2.5rem; border-top: 2px solid transparent; transition: border-color 0.3s; }
.pathway-card:hover { border-top-color: var(--gold); }
.pathway-card .pnum { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; font-weight: 300; }
.pathway-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.pathway-card p { font-size: 0.9rem; max-width: none; }

/* ─── VISA SECTION ─── */
.visa-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.visa-table { margin-top: 2.5rem; }
.visa-table .vrow { display: flex; justify-content: space-between; align-items: baseline; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.88rem; }
.visa-table .vrow:last-child { border-bottom: none; }
.visa-table .vlabel { color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.visa-table .vval { color: var(--white); text-align: right; max-width: 55%; }
.visa-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 4rem; }
.visa-cat { background: rgba(255,255,255,0.04); padding: 2.5rem; border-top: 2px solid rgba(255,255,255,0.1); }
.visa-cat--gold { border-top-color: var(--gold); }
.visa-cat .cat-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.visa-cat .cat-min { font-family: var(--font-display); font-size: 2.8rem; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.visa-cat .cat-min-lbl { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }
.visa-cat .cat-row { display: flex; justify-content: space-between; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; }
.visa-cat .cat-row:last-child { border-bottom: none; }
.visa-cat .cat-row .ck { color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.visa-cat .cat-row .cv { color: rgba(255,255,255,0.8); text-align: right; max-width: 60%; }
.visa-cat .qual { display: inline-block; margin-top: 1.5rem; background: rgba(184,152,90,0.15); color: var(--gold); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.9rem; }
.visa-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 4rem; }
.visa-stat { background: rgba(255,255,255,0.04); padding: 2rem; }
.visa-stat .vsnum { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.visa-stat .vslbl { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 0.4rem; }

/* ─── WHY QUEENSTOWN ─── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 3rem; }
.why-card { background: var(--white); padding: 2.5rem; border-left: 2px solid var(--gold); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.why-card p { font-size: 0.9rem; max-width: none; }

/* ─── WHY ROONEY ─── */
.rooney-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.rooney-points { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2.5rem; }
.rooney-point h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.rooney-point p { font-size: 0.9rem; }
.rooney-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.rooney-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-light); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ─── PARTNERS ─── */
.partners-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 2.5rem; }
.partner { background: var(--cream-dark); padding: 2rem; }
.partner .pname { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-bottom: 0.3rem; }
.partner .prole { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 3rem; }
.testi { background: var(--white); padding: 3rem; }
.testi__stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.testi blockquote { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; line-height: 1.6; color: var(--ink); margin-bottom: 1.5rem; }
.testi__who { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); }

/* ─── CTA BAND ─── */
.cta-band { background: var(--ink); padding: 8rem 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band .sub { color: rgba(255,255,255,0.45); margin: 0 auto 2.5rem; max-width: 50ch; }
.cta-band .fine { color: rgba(255,255,255,0.25); font-size: 0.8rem; margin-top: 1.5rem; letter-spacing: 0.05em; }

/* ─── FOOTER ─── */
footer { background: var(--ink); color: var(--white); padding: 5rem 0 3rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand .tag { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-col h5 { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li span { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-bottom { padding-top: 2rem; }
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.2); line-height: 1.7; max-width: 80ch; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(150deg, #1a1814 0%, #2d2920 60%, #1a1814 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,152,90,0.06) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero p { color: rgba(255,255,255,0.55); margin-top: 1.2rem; max-width: 52ch; font-size: 1.05rem; }

/* ─── PATHWAY PAGE ─── */
.steps { display: flex; flex-direction: column; }
.step-row { display: grid; grid-template-columns: 100px 1fr 1fr; gap: 4rem; padding: 5rem 0; border-bottom: 1px solid var(--rule); align-items: start; }
.step-row:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.step-body .slabel { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.step-body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.step-body p { font-size: 0.92rem; margin-bottom: 0.8rem; }
.step-note { margin-top: 1.5rem; border-left: 2px solid var(--gold); padding: 1rem 1.2rem; background: rgba(184,152,90,0.05); font-size: 0.82rem; font-style: italic; color: var(--ink-mid); }
.step-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.step-img-ph { width: 100%; aspect-ratio: 4/5; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; color: var(--ink-light); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── QUEENSTOWN PAGE ─── */
.ql-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ql-imgs { display: flex; flex-direction: column; gap: 2px; }
.ql-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.ql-img-ph { width: 100%; aspect-ratio: 16/9; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; color: var(--ink-light); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.lifestyle-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 3rem; }
.lifestyle-item .li-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.lifestyle-item .li-ph { width: 100%; aspect-ratio: 3/4; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; color: var(--ink-light); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }
.lifestyle-item p { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-light); padding: 0.8rem 0; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2.5rem; }
.area { background: var(--white); padding: 2.5rem; border-top: 2px solid var(--gold); }
.area h3 { margin-bottom: 0.5rem; }
.area p { font-size: 0.9rem; max-width: none; }
.market-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 3rem; }
.mstat { background: rgba(255,255,255,0.05); padding: 2rem; }
.mstat .mn { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.mstat .ml { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 0.4rem; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 2rem; }
.c-office { margin-bottom: 2rem; }
.c-office .city { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin-bottom: 0.3rem; }
.c-office p { font-size: 0.88rem; color: var(--ink-light); margin: 0; max-width: none; }
.c-note { font-size: 0.78rem; font-style: italic; color: var(--ink-light); border-top: 1px solid var(--rule); padding-top: 1.5rem; margin-top: 1.5rem; }

label { display: block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 0.5rem; }
input, select, textarea {
  width: 100%; padding: 0.9rem 1rem;
  background: var(--white); border: 1px solid var(--rule);
  color: var(--ink); font-family: var(--font-body); font-weight: 300; font-size: 0.95rem;
  appearance: none; -webkit-appearance: none; outline: none;
  transition: border-color 0.25s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6760'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-group { margin-bottom: 1.4rem; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.phone-row { display: grid; grid-template-columns: 90px 1fr; gap: 0.6rem; }
.form-success { display: none; background: rgba(184,152,90,0.1); border: 1px solid var(--gold); padding: 1.5rem; font-size: 0.9rem; font-style: italic; color: var(--ink); margin-top: 1.5rem; }
.form-success.show { display: block; }

/* ─── DISCLAIMER ─── */
.disclaimer { font-size: 0.8rem; font-style: italic; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.08); padding: 1.5rem; margin-top: 3rem; }

/* ─── KEY FACTS LIST ─── */
.kf-list { list-style: none; margin-top: 2rem; }
.kf-list li { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.kf-list li::before { content: '—'; color: var(--gold); }

/* ─── FADE ANIMATIONS ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fu { animation: fadeUp 0.75s ease both; }
.fu-1 { animation-delay: 0.1s; }
.fu-2 { animation-delay: 0.25s; }
.fu-3 { animation-delay: 0.4s; }
.fu-4 { animation-delay: 0.55s; }
.fu-5 { animation-delay: 0.7s; }

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .pathway-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .visa-stats { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .invest-grid, .rooney-grid, .visa-intro-grid, .ql-intro, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .visa-cats { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 70px 1fr; }
  .step-row .step-img, .step-row .step-img-ph { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .market-stats { grid-template-columns: 1fr 1fr; }
  .form-2col { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.4rem; }
  .section { padding: 4.5rem 0; }
  nav { padding: 1.2rem 1.4rem; }
  .hero__content { padding: 0 1.4rem 3.5rem; }
  .hero__stats { gap: 2rem; }
  .pathway-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .visa-stats { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
}
