:root {
  --navy: #0a2647;
  --navy-dark: #071a34;
  --navy-darker: #040f22;
  --gold: #c69a3d;
  --gold-light: #e6c273;
  --gold-deep: #a9781f;
  --text-body: #4c5568;
  --text-muted: #838fa3;
  --bg-light: #f6f4ef;
  --bg-cream: #fbfaf7;
  --border-soft: #e9e6dd;
  --radius: 12px;
  --container-w: 1240px;
  --shadow-soft: 0 14px 40px rgba(10, 38, 71, 0.08);
  --shadow-strong: 0 24px 60px rgba(4, 15, 34, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--text-body);
  background: var(--bg-cream);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3 { margin: 0; font-family: "Poppins", sans-serif; color: var(--navy); font-weight: 700; }
.font-serif { font-family: "Playfair Display", serif; }

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.script-accent {
  font-family: "Dancing Script", cursive;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,38,71,.2); }
.btn-navy { background: linear-gradient(135deg, #123a68, var(--navy)); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); color: var(--navy-darker); }
.btn-gold:hover { box-shadow: 0 10px 26px rgba(198,154,61,.4); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.link-arrow { color: var(--navy); font-weight: 600; font-size: 0.95rem; position: relative; }
.link-arrow.light { color: var(--gold-light); }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
  position: relative;
  box-shadow: 0 2px 24px rgba(10,38,71,.05);
}
.header-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  max-width: 1440px;
}
.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand-mark { flex-shrink: 0; }
.brand-mark svg { width: 36px; height: 36px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; white-space: nowrap; }
.brand-name { font-weight: 700; color: var(--navy); font-size: 0.98rem; letter-spacing: .2px; }
.brand-name.light { color: #fff; }
.brand-name strong { color: var(--navy); }
.brand-name.light strong { color: #fff; }
.brand-tag { font-size: 0.63rem; color: var(--text-muted); }
.brand-tag.light { color: #b9c4d6; }
.brand-est { font-size: 0.58rem; color: var(--gold); letter-spacing: 1px; font-weight: 600; }

.primary-nav { flex: 1; min-width: 0; }
.primary-nav ul { list-style: none; display: flex; flex-wrap: nowrap; gap: 14px; margin: 0; padding: 0; justify-content: center; }
.primary-nav a { font-size: 0.82rem; font-weight: 500; color: var(--navy); letter-spacing: 0; position: relative; padding-bottom: 4px; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold); transition: right .25s ease; }
.primary-nav a:hover { color: var(--gold-deep); }
.primary-nav a:hover::after { right: 0; }

.header-cta { flex-shrink: 0; padding: 10px 20px; font-size: 0.85rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 26px;
  overflow: hidden;
  min-height: clamp(480px, calc(100vh - 78px), 700px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(4,15,34,.75) 0%, rgba(4,15,34,.42) 40%, rgba(4,15,34,.12) 68%, rgba(4,15,34,.05) 100%),
    linear-gradient(0deg, rgba(4,15,34,.7) 0%, rgba(4,15,34,0) 34%);
}
.hero-content { position: relative; padding-top: 4px; margin-bottom: 28px; }
.hero-eyebrow { letter-spacing: 3px; font-size: 0.72rem; font-weight: 600; color: #fff; margin-bottom: 14px; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.16;
  max-width: 600px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero h1 span { color: var(--gold-light); }
.hero-sub { margin-top: 14px; font-size: 0.95rem; color: #eef1f6; max-width: 460px; line-height: 1.55; text-shadow: 0 1px 8px rgba(0,0,0,.4); }

.hero-bottom { position: relative; display: flex; align-items: flex-end; gap: 28px; }

.hero-side { flex: 0 0 auto; text-align: right; padding-bottom: 34px; }
.hero-script { font-size: 1.4rem; color: #fff; line-height: 1.1; margin-bottom: 12px; text-shadow: 0 2px 10px rgba(0,0,0,.45); position: relative; }
.hero-location { display: flex; align-items: center; gap: 8px; justify-content: flex-end; font-weight: 700; letter-spacing: 1px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero-location svg { color: var(--gold-light); }
.hero-location small { display: block; font-weight: 500; letter-spacing: .3px; font-size: 0.6rem; color: #e7ecf3; max-width: 170px; }

.hero-cards {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-width: 0;
}
.hero-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 0;
  box-shadow: var(--shadow-strong);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,.6);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
  opacity: 0;
  transition: opacity .25s ease;
}
.hero-card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px rgba(4,15,34,.42); }
.hero-card:hover::before { opacity: 1; }
.hero-card img { width: 66px; height: 66px; object-fit: cover; flex-shrink: 0; margin: 8px; border-radius: 12px; box-shadow: 0 6px 16px rgba(4,15,34,.25); }
.hero-card-body { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.hero-card-body strong { font-size: 0.95rem; font-weight: 700; letter-spacing: .1px; display: flex; align-items: center; gap: 7px; }
.hero-card-body span { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }
.hero-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 7px;
  color: var(--gold-deep);
  background: linear-gradient(135deg, #fbeed2, #f3dba8);
  flex-shrink: 0;
}
.hero-card-icon svg { width: 13px; height: 13px; }
.hero-card-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-right: 4px; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(169,120,32,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-card:hover .hero-card-arrow { transform: scale(1.1) rotate(8deg); box-shadow: 0 10px 22px rgba(169,120,32,.6); }

/* ---------- Stats ---------- */
.stats {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: var(--navy-darker);
}
.stats-plane { position: absolute; top: 8px; right: 4%; width: 210px; height: auto; pointer-events: none; opacity: .85; }

.stats .container { max-width: 1500px; }

.stats-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: 34px 40px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  box-shadow: 0 30px 60px rgba(1,6,16,.4);
}
.stats-grid { display: flex; align-items: stretch; }
.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 0;
  padding: 4px 26px;
  position: relative;
}
.stat:last-child { flex: 1.25 1 0; }
.stat:not(:first-child)::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 64%;
  background: rgba(255,255,255,.12);
}
.stat:first-child { padding-left: 0; }
.stat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  border: 1px solid rgba(255,255,255,.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
}
.stat svg { display: block; width: 21px; height: 21px; color: #12203a; flex-shrink: 0; }
.stat strong { display: block; color: #fff; font-size: 1.22rem; font-weight: 700; letter-spacing: -.2px; margin-bottom: 3px; }
.stat-desc { display: block; font-size: 0.8rem; color: #aab7cd; line-height: 1.5; }

/* ---------- Section head ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head h2 { font-size: 2rem; margin-bottom: 8px; }
.section-head p { color: var(--text-muted); max-width: 560px; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: #b9c4d6; }

.section-head-inline { align-items: center; margin-bottom: 34px; flex-wrap: wrap; row-gap: 10px; }
.section-head-inline h2 { font-size: 1.7rem; margin: 0 20px 0 0; flex-shrink: 0; }
.section-head-inline p { margin: 0; font-size: 0.9rem; flex: 0 1 380px; }
.section-head-inline .link-arrow { flex-shrink: 0; margin-left: auto; }

/* ---------- Brands ---------- */
.brands {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background: linear-gradient(165deg, #d3f2ec 0%, #cdeee8 55%, #d6f0e9 100%);
}
.brands-icons-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 190px;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 65%, transparent 97%);
  mask-image: linear-gradient(180deg, #000 0%, #000 65%, transparent 97%);
}
.travel-icon {
  position: absolute;
  display: block;
  color: #0a6b5c;
  opacity: .3;
}
.travel-icon svg { width: 100%; height: 100%; }

.brands-container { max-width: 100%; padding-left: clamp(24px, 4vw, 64px); padding-right: clamp(24px, 4vw, 64px); position: relative; }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.brand-grid-row { grid-template-columns: repeat(6, 1fr); gap: 18px; }
.brand-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--border-soft);
}
.brand-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(10,38,71,.16); border-color: #f0dfb8; }

.brand-card-head { display: flex; flex-direction: column; gap: 5px; min-height: 76px; }
.brand-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.brand-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
}
.brand-icon svg { width: 16px; height: 16px; }
.brand-logo-name { font-size: 0.86rem; color: var(--navy); line-height: 1.2; }
.brand-card-tag { font-size: 0.68rem; color: var(--text-muted); padding-left: 38px; }
.brand-accent-line { display: block; width: 26px; height: 3px; border-radius: 2px; margin: 1px 0 0 38px; opacity: .85; }

.brand-card-media { border-radius: 10px; overflow: hidden; height: 110px; }
.brand-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.brand-card:hover .brand-card-media img { transform: scale(1.06); }

.brand-card-desc { font-size: 0.74rem; color: var(--text-body); line-height: 1.45; flex: 1; }
.brand-card-cta { align-self: flex-start; margin-top: 2px; padding: 7px 14px; font-size: 0.72rem; }

/* ---------- About ---------- */
.about {
  position: relative;
  background: var(--bg-light);
  color: var(--text-body);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 440px;
}
.about-copy {
  position: relative;
  display: flex;
  align-items: center;
  padding: 48px 24px 48px max(24px, calc((100vw - 1240px) / 2 + 24px));
}
.about-copy::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,38,71,.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle at 20% 30%, #000 0%, rgba(0,0,0,.5) 40%, transparent 72%);
  mask-image: radial-gradient(circle at 20% 30%, #000 0%, rgba(0,0,0,.5) 40%, transparent 72%);
  pointer-events: none;
}
.about-copy-inner { position: relative; z-index: 1; max-width: 420px; }
.about .eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; color: var(--gold-deep); font-weight: 700; }
.about-copy h2 { color: var(--navy); font-size: 1.9rem; margin: 8px 0 16px; }
.about-copy p { color: var(--text-body); line-height: 1.7; margin-bottom: 26px; }

.about-visual {
  position: relative;
  overflow: hidden;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}
.about-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02); }
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,26,52,.55) 0%, rgba(7,26,52,.1) 35%, rgba(7,26,52,0) 55%),
              linear-gradient(0deg, rgba(4,15,34,.5) 0%, rgba(4,15,34,0) 40%);
}
.about-script-wrap { position: absolute; left: 7%; bottom: 12%; z-index: 1; }
.about-script {
  display: block;
  font-size: 2rem;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.about-brush { width: 130px; height: auto; margin-top: 4px; }

.about-stack {
  position: absolute; right: 6%; top: 10%; z-index: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.about-stack span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 2px 10px rgba(0,0,0,.5);
  text-align: right;
}

/* ---------- Leadership ---------- */
.leadership { background: #fff; padding: 80px 0; border-top: 1px solid var(--border-soft); }
.leader-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.leader-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.leader-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(10,38,71,.12); border-color: #f0dfb8; }
.leader-card img { width: 84px; height: 84px; object-fit: cover; border-radius: 50%; margin-bottom: 10px; border: 2px solid var(--gold); box-shadow: 0 8px 20px rgba(10,38,71,.15); }
.leader-card strong { font-size: 0.92rem; color: var(--navy); }
.leader-role { font-size: 0.72rem; color: var(--gold-deep); font-weight: 600; }
.leader-focus { font-size: 0.7rem; color: var(--text-muted); }
.leader-years { font-size: 0.7rem; color: var(--navy); font-weight: 600; margin-top: 4px; }
.leader-sub { font-size: 0.68rem; color: var(--text-muted); }
.leader-quote {
  margin-top: 22px;
  background: linear-gradient(135deg, var(--gold), #a97a20);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 20px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}

/* ---------- Destinations ---------- */
.destinations { padding: 80px 0; }
.destination-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.destination-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 190px;
  box-shadow: var(--shadow-soft);
}
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.destination-card:hover img { transform: scale(1.08); }
.destination-card span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(0deg, rgba(5,15,31,.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- Hotel partners strip ---------- */
.partners-strip { padding: 44px 0 84px; }
.partners-caption { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 26px; }
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 20px; }

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 190px;
  padding: 22px 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: #f0dfb8;
}

.partner-logo {
  --brand-color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .3px;
  line-height: 1.2;
  color: #b7bec9;
  transition: color .25s ease;
}
.partner-card:hover .partner-logo { color: var(--brand-color); }
.partner-sub { font-size: 0.6rem; font-weight: 600; letter-spacing: 1.4px; color: var(--text-muted); margin-top: 2px; }

.partner-logo-script { font-family: "Dancing Script", cursive; font-size: 1.7rem; font-weight: 700; }
.partner-logo-condensed { text-transform: uppercase; letter-spacing: 1px; font-weight: 800; }
.partner-logo-geo { font-weight: 800; }
.partner-logo-bold-dots { text-transform: uppercase; font-weight: 800; letter-spacing: 1px; }
.partner-accent { color: #d8cba3; transition: color .25s ease; }
.partner-card:hover .partner-accent { color: var(--gold-deep); }
.partner-logo-serif-italic { font-family: "Playfair Display", serif; font-style: italic; font-weight: 700; font-size: 1.35rem; }
.partner-logo-gold-serif { --brand-color: var(--gold-deep); font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.25rem; }
.partner-logo-modern { font-weight: 800; letter-spacing: .5px; }

.partner-card-more { background: transparent; border: 1px dashed var(--border-soft); }
.partner-card-more:hover { transform: none; box-shadow: none; border-color: var(--border-soft); }
.partner-more { color: var(--text-muted); font-size: 0.85rem; text-align: center; line-height: 1.4; }

/* ---------- Footer CTA ---------- */
.site-footer { background: var(--navy-darker); color: #fff; }
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 24px;
  border-bottom: 1px solid #ffffff14;
}
.footer-cta-title .script-accent { font-size: 1.8rem; color: var(--gold-light); }
.footer-cta-items { display: flex; gap: 34px; flex-wrap: wrap; }
.footer-cta-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: #c3ccdb; }
.footer-cta-icon { width: 34px; height: 34px; border-radius: 50%; background: #ffffff14; display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex-shrink: 0; }
.footer-cta-icon svg { width: 18px; height: 18px; }
.footer-cta-item strong { color: #fff; font-size: 0.85rem; }

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 32px 24px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.82rem; color: #c3ccdb; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; background: #ffffff14; display: flex; align-items: center; justify-content: center; color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-script { text-align: right; font-size: 1rem; color: var(--gold-light); line-height: 1.2; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 24px 26px;
  font-size: 0.75rem;
  color: #8ea0bc;
}
.footer-legal a:hover { color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1300px) {
  .brand-grid-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
  .hero-bottom { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero-side { text-align: left; }
  .hero-script { text-align: left; }
  .hero-location { justify-content: flex-start; }
  .hero-cards { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1fr; min-height: 0; }
  .about-copy { padding: 56px 24px; }
  .about-visual { height: 380px; clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .destination-scroll { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 760px) {
  .brand-grid-row { grid-template-columns: repeat(2, 1fr); }
  .destination-scroll { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .brands-icons-wrap { display: none; }
  .brand-grid-row { margin-top: 0; }
}

@media (max-width: 1100px) {
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 12px 24px rgba(0,0,0,.08); display: none; }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; padding: 16px 24px; gap: 14px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 1024px) {
  .stats .container { max-width: 100%; }
  .stats-panel { padding: 28px 26px; }
  .stat { padding: 4px 16px; }
  .stat strong { font-size: 1.1rem; }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 2.1rem; }
  .stats-panel { padding: 24px 20px; border-radius: 20px; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 16px; row-gap: 24px; }
  .stat { padding: 0 0 0 16px; min-width: 0; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(1)::before, .stat:nth-child(3)::before { display: none; }
  .stats-plane { display: none; }
  .leader-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-social { justify-content: center; }
  .footer-script { text-align: center; }
}

@media (max-width: 560px) {
  .header-row { gap: 10px; }
  .brand-tag, .brand-est { display: none; }
  .brand-name { font-size: 0.82rem; }
  .brand-mark svg { width: 30px; height: 30px; }
  .header-cta { padding: 8px 14px; font-size: 0.78rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .leader-quote { font-size: 1.05rem; white-space: normal; padding: 20px 16px; }
  .destination-scroll { grid-template-columns: repeat(2, 1fr); }
  .about-visual { height: 300px; }
  .about-script { font-size: 1.7rem; }
  .about-script-wrap { left: 6%; bottom: 10%; }
  .about-brush { width: 110px; }
  .about-stack { top: 8%; right: 5%; gap: 6px; }
  .about-stack span { font-size: 0.68rem; letter-spacing: 2px; }
  .stats-panel { padding: 20px 16px; }
  .stats-grid { column-gap: 10px; row-gap: 18px; }
  .stat { gap: 10px; padding-left: 12px; }
  .stat-icon { width: 38px; height: 38px; }
  .stat svg { width: 18px; height: 18px; }
  .stat strong { font-size: 0.95rem; }
  .stat span { font-size: 0.72rem; }
  .footer-cta { justify-content: center; text-align: center; }
}
