/* =========================================================
   Ambassador International Education — stylesheet
   ========================================================= */

:root {
  --navy: #123a70;
  --navy-dark: #0c2a52;
  --navy-darker: #081d3b;
  --purple: #5c1657;
  --purple-dark: #430f3f;
  --orange: #f5821f;
  --orange-dark: #e06f0d;
  --bg: #ffffff;
  --bg-muted: #f4f7fb;
  --text: #1c2333;
  --text-body: #4b5468;
  --text-light: #eef2f9;
  --border: #e3e8f0;
  --shadow-sm: 0 4px 14px rgba(18, 58, 112, 0.08);
  --shadow-md: 0 12px 30px rgba(18, 58, 112, 0.12);
  --shadow-lg: 0 25px 60px rgba(8, 29, 59, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex-shrink: 0; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--text); line-height: 1.25; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal animation ----------
   Progressive enhancement: elements are fully visible by default.
   JS only adds `.reveal-init` to below-the-fold elements at load time,
   then adds `.in-view` back once they scroll into view. If JS never
   runs, nothing is ever hidden. */
/* Opacity-only: several revealed elements (e.g. .cv-item) already use
   `transform` for their own layout positioning, so the reveal effect
   intentionally never touches `transform` — that would silently win
   the cascade over an element's positional transform and misplace it. */
.reveal-init {
  opacity: 0;
  transition: opacity .7s ease;
}
.reveal-init.in-view {
  opacity: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--orange); color: #fff; }
.btn--accent:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,130,31,.35); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Tag / section head ---------- */
.tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--purple), var(--navy));
  color: #fff;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.tag--light { background: rgba(255,255,255,.15); backdrop-filter: blur(4px); }
.section { padding: 96px 0; }
.section--muted { background: var(--bg-muted); }
.section-head { max-width: 760px; margin: 0 0 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
.section-head--light h2, .section-head--light .section-sub { color: #fff; }
.section-sub { color: var(--text-body); font-size: 1.05rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 500; transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 24px rgba(8,29,59,.12); }
.topbar { background: var(--navy-darker); color: #cfe0ff; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; flex-wrap: wrap; gap: 6px; }
.topbar__contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contacts a:hover { color: var(--orange); }
.topbar__meta { display: flex; align-items: center; gap: 18px; }
.topbar__est { background: var(--orange); color: #fff; padding: 2px 12px; border-radius: 50px; font-weight: 600; }
.topbar .icon { margin-right: 6px; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  padding: 12px 24px;
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__logo { width: 52px; height: 52px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.brand__text em { font-style: normal; font-size: .72rem; color: var(--purple); font-weight: 600; letter-spacing: .03em; white-space: nowrap; }

.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
  display: block;
  padding: 10px 12px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  border-radius: 50px;
  white-space: nowrap;
  transition: all .2s ease;
}
.main-nav a:hover, .main-nav a.active { background: var(--bg-muted); color: var(--navy); }
.nav-cta { flex-shrink: 0; padding: 11px 22px; font-size: .88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 55%, var(--purple-dark) 100%);
  padding: 84px 0 70px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(245,130,31,.25), transparent 45%),
                     radial-gradient(circle at 10% 90%, rgba(92,22,87,.4), transparent 50%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero__content .eyebrow {
  display: inline-block;
  color: #ffd7a8;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.hero__content h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero__content h1 span { color: var(--orange); }
.hero__content p { color: #cfd9ec; font-size: 1.08rem; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 40px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: #fff; }
.hero__stats span { color: #a9bade; font-size: .85rem; }

.hero__gallery { position: relative; height: 460px; }
.hex-photo {
  position: absolute;
  width: 280px; height: 242px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.15);
}
.hex-photo img { width: 100%; height: 100%; object-fit: cover; }
.hex-photo--1 { top: 0; right: 40px; width: 250px; height: 216px; z-index: 3; }
.hex-photo--2 { top: 195px; left: 0; width: 250px; height: 216px; z-index: 2; }
.hex-photo--3 { bottom: 0; right: 90px; width: 280px; height: 242px; z-index: 1; }
.hero__shape--triangle {
  position: absolute;
  bottom: 30px; right: -10px;
  width: 0; height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 78px solid var(--orange);
  opacity: .9;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.about__text p { font-size: 1.02rem; }
.about__figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.destinations-strip {
  margin-top: 48px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.destinations-strip > span { font-family: var(--font-head); font-weight: 700; color: var(--navy); white-space: nowrap; }
.destinations-strip ul { display: flex; gap: 10px; flex-wrap: wrap; }
.destinations-strip li {
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why { position: relative; background: var(--navy-darker); overflow: hidden; }
.why__media { position: absolute; inset: 0; }
.why__media img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.why__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--navy-darker) 25%, rgba(12,42,82,.75) 70%, var(--purple-dark) 130%);
}
.why .container { position: relative; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .3s ease, background .3s ease;
}
.why__card:hover { transform: translateY(-6px); background: rgba(255,255,255,.11); }
.why__card .icon { font-size: 1.8rem; color: var(--orange); margin-bottom: 14px; }
.why__card h3 { color: #fff; font-size: 1.1rem; }
.why__card p { color: #c3cfe6; font-size: .95rem; margin-bottom: 0; }

/* =========================================================
   VISION / MISSION
   ========================================================= */
.vm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 90px; }
.vm__card {
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.vm__card--vision { background: linear-gradient(145deg, var(--navy), var(--navy-dark)); }
.vm__card--mission { background: linear-gradient(145deg, var(--purple), var(--purple-dark)); }
.vm__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.vm__card h3 { color: #fff; font-size: 1.5rem; }
.vm__card p { color: rgba(255,255,255,.9); margin-bottom: 14px; }

.core-values__title { text-align: center; font-size: 1.7rem; margin-bottom: 48px; }

.cv-wheel {
  position: relative;
  width: 560px;
  height: 560px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--navy) 0%, var(--navy) 62%, transparent 63%);
}
.cv-hub {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 170px; height: 170px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--purple), var(--purple-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .04em;
  box-shadow: 0 0 0 10px rgba(255,255,255,1), var(--shadow-md);
  z-index: 3;
}
.cv-item {
  position: absolute;
  top: 50%; left: 50%;
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  z-index: 2;
}
.cv-badge {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--purple), var(--purple-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  border: 4px solid #fff;
  flex-shrink: 0;
}
.cv-item span {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: .82rem;
  white-space: nowrap;
  background: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* six badge-centers positioned at radius ~190px around the wheel;
   translate = (radius*cos/sin - half item width, radius*sin - half badge) */
.cv-item--1 { transform: translate(-190px, -198px); }
.cv-item--2 { transform: translate(0px, -198px); }
.cv-item--3 { transform: translate(95px, -33px); }
.cv-item--4 { transform: translate(0px, 132px); }
.cv-item--5 { transform: translate(-190px, 132px); }
.cv-item--6 { transform: translate(-285px, -33px); }

/* =========================================================
   FOUNDER
   ========================================================= */
.founder__grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 56px; align-items: start; }
.founder__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 6px solid #fff;
  outline: 1px solid var(--border);
}
.founder__text p { font-size: 1.02rem; }
.founder__sign {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder__sign strong { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); }
.founder__role { color: var(--purple); font-weight: 600; }
.founder__tagline { font-size: .88rem; color: var(--orange); font-weight: 600; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { display: flex; flex-direction: column; gap: 64px; }
.service-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.service-row--reverse .service-row__media { order: 2; }
.service-row--reverse .service-row__body { order: 1; }
.service-row__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-row__num {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  width: 46px; height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 14px;
}
.service-row__body h3 { font-size: 1.45rem; margin-bottom: 18px; }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: .97rem;
  color: var(--text-body);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 3px; top: 4px;
  width: 7px; height: 12px;
  border: solid var(--navy);
  border-width: 0 2px 2px 0;
  transform: rotate(43deg);
}
.check-list--sm li { font-size: .88rem; margin-bottom: 7px; }

/* =========================================================
   STUDY TOURS
   ========================================================= */
.tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.tour-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.tour-card__img { aspect-ratio: 4/3; overflow: hidden; }
.tour-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tour-card:hover .tour-card__img img { transform: scale(1.08); }
.tour-card__body { padding: 22px; flex: 1; }
.tour-card__body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.tour-card__body h3 span { color: var(--orange); font-weight: 600; font-size: .85em; }
.tour-card__subtitle { font-size: .82rem; color: var(--purple); font-weight: 600; margin-bottom: 12px; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--purple-dark), var(--navy-darker));
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band__inner { display: grid; grid-template-columns: .4fr 1fr; gap: 48px; align-items: center; }
.cta-band__photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  border: 4px solid rgba(255,255,255,.2);
}
.cta-band__text h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band__text p { color: #cfd9ec; max-width: 560px; }
.cta-band__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.contact__card {
  display: flex;
  gap: 18px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.contact__card .icon { font-size: 1.3rem; color: #fff; background: var(--navy); width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__card h4 { font-size: 1rem; margin-bottom: 6px; }
.contact__card div { display: flex; flex-direction: column; }
.contact__card a { font-size: .92rem; color: var(--text-body); }
.contact__card a:hover { color: var(--navy); text-decoration: underline; }

.contact__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
}
.contact__form h3 { font-size: 1.3rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-field label { font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-field label span { color: var(--orange); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-field textarea { resize: vertical; }
.form-error { display: none; color: #d84343; font-size: .8rem; margin-top: 4px; }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: #d84343; }
.form-field.invalid .form-error { display: block; }
.form-note { margin-top: 14px; font-size: .9rem; font-weight: 600; text-align: center; }
.form-note.success { color: #1e8a4c; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-darker); color: #b7c4dd; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 72px 0 48px;
}
.footer__brand img { margin-bottom: 16px; }
.footer__brand p { font-size: .92rem; }
.footer__brand strong { color: #fff; font-family: var(--font-head); }
.footer__col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col li { font-size: .9rem; }
.footer__col a:hover { color: var(--orange); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer__contact .icon { color: var(--orange); margin-top: 3px; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { margin: 0; font-size: .85rem; }
.back-to-top {
  background: var(--orange);
  color: #fff;
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.back-to-top:hover { transform: translateY(-4px); }

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 400;
  transition: transform .25s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-wheel { width: 480px; height: 480px; }
  .cv-item--1 { transform: translate(-163px, -170px); }
  .cv-item--2 { transform: translate(0px, -170px); }
  .cv-item--3 { transform: translate(81px, -28px); }
  .cv-item--4 { transform: translate(0px, 113px); }
  .cv-item--5 { transform: translate(-163px, 113px); }
  .cv-item--6 { transform: translate(-244px, -28px); }
}

@media (max-width: 1220px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    box-shadow: var(--shadow-md);
    padding: 10px 24px 20px;
  }
  .main-nav.open ul { flex-direction: column; gap: 2px; }
  .main-nav.open a { padding: 12px 10px; }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__gallery { height: 340px; margin-top: 20px; }
  .hex-photo--1, .hex-photo--2, .hex-photo--3 { width: 210px; height: 182px; }
  .hex-photo--1 { right: 10px; }
  .hex-photo--2 { left: 10px; top: 150px; }
  .hex-photo--3 { right: 60px; }

  .about__grid, .founder__grid, .cta-band__inner, .contact__grid { grid-template-columns: 1fr; }
  .founder__photo { max-width: 260px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .vm__grid { grid-template-columns: 1fr; }
  .service-row, .service-row--reverse { grid-template-columns: 1fr; }
  .service-row--reverse .service-row__media, .service-row--reverse .service-row__body { order: initial; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .cv-wheel { width: auto; height: auto; background: none; padding: 0; }
  .cv-wheel, .cv-hub { border-radius: 0; }
  .cv-hub { display: none; }
  .cv-wheel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .cv-item { position: static; transform: none !important; width: auto; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .topbar__contacts a:nth-child(2) { display: none; }
  .why__grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; padding: 56px 0 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cv-wheel { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 24px; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .cta-band__photo { max-width: 220px; margin: 0 auto; }
}
