/* ==========================================================================
   PT Twilight Ember Order — corporate site
   Brand palette: Twilight indigo + Ember orange + warm cream
   ========================================================================== */

:root {
  --c-twilight: #1e2749;
  --c-twilight-deep: #0f1428;
  --c-twilight-soft: #2a3358;
  --c-ember: #e85d2c;
  --c-ember-dark: #c44a1e;
  --c-gold: #f5a623;
  --c-gold-soft: #f7b733;
  --c-plum: #4b2c6b;
  --c-rose: #9e2a5b;

  --c-cream: #faf4e8;
  --c-cream-deep: #f4e3ca;
  --c-paper: #ffffff;
  --c-ink: #1a1d2e;
  --c-ink-soft: #4a4e63;
  --c-muted: #6b6b78;
  --c-line: #e8ddc8;
  --c-line-strong: #d4c5a8;

  --shadow-sm: 0 1px 2px rgba(15, 20, 40, 0.06), 0 2px 6px rgba(15, 20, 40, 0.04);
  --shadow-md: 0 6px 18px rgba(15, 20, 40, 0.08), 0 2px 4px rgba(15, 20, 40, 0.04);
  --shadow-lg: 0 18px 48px rgba(15, 20, 40, 0.14), 0 4px 12px rgba(15, 20, 40, 0.06);
  --shadow-ember: 0 12px 32px rgba(232, 93, 44, 0.25);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --font-heading: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'Fraunces', 'Georgia', serif;

  --container: 1200px;
  --container-narrow: 920px;
  --nav-height: 82px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-ember); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-ember-dark); }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--c-twilight); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4vw + 1rem, 3.6rem); }
h2 { font-size: clamp(1.65rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1vw + .9rem, 1.5rem); }
p { margin: 0 0 1em; color: var(--c-ink-soft); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .4em; color: var(--c-ink-soft); }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 3px;
  font-size: 12px; font-weight: 700; color: var(--c-ember);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--c-ember), var(--c-gold));
}
.section { padding: clamp(56px, 8vw, 112px) 0; }
.section--cream { background: var(--c-cream); }
.section--paper { background: var(--c-paper); }
.section--twilight { background: var(--c-twilight); color: #f5ecd9; }
.section--twilight h1, .section--twilight h2, .section--twilight h3 { color: #fff; }
.section--twilight p, .section--twilight li { color: #cfc9e0; }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--c-twilight-deep);
  color: #e2d9c1;
  font-size: 13px;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 24px; max-width: var(--container); margin: 0 auto;
  gap: 16px; flex-wrap: wrap;
}
.topbar a { color: #f7b733; font-weight: 600; }
.topbar__contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__contacts span { display: inline-flex; gap: 6px; align-items: center; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: var(--nav-height);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 52px; width: auto; }
.nav__menu {
  display: flex; gap: 28px; list-style: none; padding: 0; margin: 0;
  align-items: center;
}
.nav__menu a {
  color: var(--c-twilight); font-weight: 600; font-size: 14.5px;
  letter-spacing: .01em; padding: 10px 0; position: relative;
}
.nav__menu a.is-active,
.nav__menu a:hover { color: var(--c-ember); }
.nav__menu a.is-active::after {
  content: ""; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--c-ember), var(--c-gold));
}
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__toggle {
  display: none; background: none; border: 0;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  color: var(--c-twilight); cursor: pointer;
}
.nav__toggle svg { width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; font-weight: 700; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  font-family: var(--font-heading);
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-ember) 0%, var(--c-rose) 100%);
  color: #fff; box-shadow: var(--shadow-ember);
}
.btn--primary:hover { transform: translateY(-2px); color: #fff; }
.btn--ghost {
  background: transparent; border-color: var(--c-twilight); color: var(--c-twilight);
}
.btn--ghost:hover { background: var(--c-twilight); color: #fff; }
.btn--whatsapp {
  background: #25D366; color: #fff;
}
.btn--whatsapp:hover { background: #1fb855; color: #fff; transform: translateY(-2px); }
.btn--outline-gold {
  background: transparent; color: var(--c-gold); border-color: var(--c-gold);
}
.btn--outline-gold:hover { background: var(--c-gold); color: var(--c-twilight-deep); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1a1233 0%, #4b2c6b 45%, #e85d2c 95%);
  color: #fff;
  padding: clamp(72px, 10vw, 140px) 0 clamp(80px, 10vw, 160px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../images/hero-bali.png") center/cover no-repeat;
  opacity: .5;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,20,40,0) 60%, rgba(15,20,40,0.6) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
.hero__brand {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 24px; margin-bottom: 28px;
}
.hero__brand img { height: 132px; width: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.hero__brand-text {
  font-family: var(--font-accent); font-style: italic;
  font-size: 1.1rem; color: #f5ecd9; letter-spacing: .02em;
}
.hero h1 {
  color: #fff; text-align: center;
  max-width: 900px; margin: 0 auto 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero__tag {
  text-align: center; color: #f5ecd9; font-size: 1.15rem;
  max-width: 720px; margin: 0 auto 32px;
}
.hero__cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero__meta {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__meta-item {
  text-align: center; color: #f5ecd9;
}
.hero__meta-item strong {
  display: block; font-family: var(--font-heading);
  font-size: 1.6rem; color: #f7b733; font-weight: 700;
}
.hero__meta-item span { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; opacity: .8; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(140deg, var(--c-twilight) 0%, var(--c-plum) 70%, var(--c-ember) 100%);
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background: url("../images/hero-bali.png") center/cover no-repeat;
  opacity: 0.45;
}
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(247,183,51,0.28), transparent 55%),
    linear-gradient(180deg, rgba(15,20,40,0.25) 0%, rgba(15,20,40,0.55) 100%);
  pointer-events: none;
}
.page-header--trade::before {
  background-image: url("../images/hero-trade.png");
  opacity: 0.55;
}
.page-header--it::before {
  background-image: url("../images/hero-it.png");
  opacity: 0.55;
}
.page-header--office::before {
  background-image: url("../images/office.png");
  opacity: 0.35;
}
.page-header--team::before {
  background-image: url("../images/team.png");
  opacity: 0.45;
}
.page-header__inner { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: #e5d9c5; max-width: 720px; font-size: 1.1rem; }
.breadcrumbs {
  display: flex; gap: 8px; font-size: 13px; color: #f7b733;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}
.breadcrumbs a { color: #f5ecd9; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { opacity: .6; }

/* ---------- Service tiles (3 plashki) ---------- */
.tiles {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.tile {
  position: relative; overflow: hidden;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
}
.tile::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(247,183,51,0.15), transparent 70%);
  pointer-events: none;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-ember);
}
.tile__icon { width: 88px; height: 88px; margin-bottom: 20px; }
.tile h3 { margin-bottom: 12px; color: var(--c-twilight); }
.tile p { color: var(--c-ink-soft); flex-grow: 1; }
.tile__link {
  margin-top: 20px; font-weight: 700; color: var(--c-ember);
  font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.tile__link::after {
  content: "→"; transition: transform .25s ease;
}
.tile:hover .tile__link::after { transform: translateX(4px); }

/* ---------- Grid / two-column layouts ---------- */
.split {
  display: grid; gap: 56px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--image-right { grid-template-columns: 1fr 1fr; }
}
.split__image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line);
  background: var(--c-cream-deep);
}
.split__image img { width: 100%; height: auto; display: block; }
.split__body p { font-size: 1.02rem; }
.split__body .btn { margin-top: 14px; }

/* ---------- Director card ---------- */
.director {
  background: linear-gradient(135deg, var(--c-cream-deep), var(--c-cream));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid; gap: 32px; align-items: center;
  grid-template-columns: 1fr;
  border: 1px solid var(--c-line);
}
@media (min-width: 760px) {
  .director { grid-template-columns: 260px 1fr; }
}
.director__portrait {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line-strong);
}
.director__name { margin: 0 0 4px; color: var(--c-twilight); font-size: 1.5rem; }
.director__role {
  color: var(--c-ember); text-transform: uppercase;
  letter-spacing: 2px; font-size: 12px; font-weight: 700; margin-bottom: 16px;
}
.director p:last-child { margin-bottom: 0; }

/* ---------- Value / feature grid ---------- */
.values {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.value {
  background: var(--c-paper);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
}
.value__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-ember), var(--c-rose));
  color: #fff; font-family: var(--font-heading);
  font-weight: 700; font-size: 18px; margin-bottom: 16px;
}
.value h4 { color: var(--c-twilight); margin-bottom: 8px; font-size: 1.1rem; }
.value p { margin: 0; font-size: 14.5px; }

/* ---------- Geography strip ---------- */
.geography {
  background: var(--c-twilight-deep); color: #e5d9c5;
  padding: 48px 0; text-align: center;
  border-top: 4px solid var(--c-ember);
}
.geography__label {
  color: var(--c-gold); text-transform: uppercase;
  letter-spacing: 4px; font-size: 11px; font-weight: 700;
  margin-bottom: 18px;
}
.geography__list {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 0;
}
.geography__list li {
  color: #fff; font-family: var(--font-heading);
  font-weight: 600; font-size: 1.1rem;
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0;
}
.geography__list li::before {
  content: "●"; color: var(--c-ember); font-size: 10px;
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li {
  position: relative; padding-left: 36px;
  color: var(--c-ink-soft); margin: 0;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-ember), var(--c-gold));
  box-shadow: 0 0 0 4px rgba(247,183,51,0.15);
}
.checklist li::after {
  content: ""; position: absolute; left: 6px; top: 11px;
  width: 10px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ---------- Product / service catalog ---------- */
.catalog {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.catalog__item {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-ember);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.catalog__item:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-left-color: var(--c-gold);
}
.catalog__item h4 {
  font-size: 1rem; margin: 0 0 6px; color: var(--c-twilight);
}
.catalog__item p {
  margin: 0; font-size: 13.5px; line-height: 1.5;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-twilight) 0%, var(--c-plum) 60%, var(--c-ember) 130%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid; gap: 24px; align-items: center;
  grid-template-columns: 1fr;
  margin: 40px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,183,51,0.35), transparent 70%);
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; }
.cta-banner p { color: #f5ecd9; margin: 0; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }
@media (min-width: 760px) {
  .cta-banner { grid-template-columns: 1fr auto; padding: 56px; }
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
}
.contact-info {
  background: var(--c-twilight);
  color: #f5ecd9;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative; overflow: hidden;
}
.contact-info::before {
  content: ""; position: absolute; bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,93,44,0.4), transparent 70%);
  border-radius: 50%;
}
.contact-info h2 { color: #fff; position: relative; }
.contact-info__item { margin-bottom: 24px; position: relative; }
.contact-info__label {
  color: var(--c-gold); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 4px;
}
.contact-info__grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 28px;
  position: relative; z-index: 2;
}
.contact-info__value { color: #fff; font-size: 1.05rem; font-weight: 500; }
.contact-info__value a { color: #fff; }
.contact-info__value a:hover { color: var(--c-gold); }

.form {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form h3 { margin-bottom: 8px; }
.form__lead { color: var(--c-muted); font-size: 14.5px; margin-bottom: 28px; }
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width: 620px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--c-twilight);
}
.form__field input,
.form__field textarea {
  padding: 12px 14px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius-sm);
  background: var(--c-cream);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none; border-color: var(--c-ember);
  box-shadow: 0 0 0 4px rgba(232, 93, 44, 0.15);
  background: #fff;
}
.form__field textarea { min-height: 120px; resize: vertical; }
.form__consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--c-muted); margin-bottom: 20px;
}
.form__consent input { margin-top: 3px; }
.form__status {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 14px; margin-top: 16px; display: none;
}
.form__status.is-ok { display: block; background: #e6f7ef; color: #1d7a4b; border: 1px solid #9fdcbd; }
.form__status.is-err { display: block; background: #fde8e4; color: #9e2e1b; border: 1px solid #f3b4a5; }

/* ---------- Footer ---------- */
.footer {
  background: var(--c-twilight-deep);
  color: #bdb7cc;
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand img { height: 60px; margin-bottom: 16px; filter: brightness(1.15); }
.footer__brand p { color: #8e889e; font-size: 14px; }
.footer h5 {
  color: #f5ecd9; font-size: 13px; text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 16px; font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: #bdb7cc; font-size: 14px; transition: color .2s ease;
}
.footer ul a:hover { color: var(--c-gold); }
.footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: #8e889e;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { color: #bdb7cc; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  z-index: 60; transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.prose p { font-size: 1.02rem; }
.prose p + p { margin-top: .9em; }

/* ---------- Responsive nav ---------- */
@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--c-line);
    flex-direction: column; gap: 0; padding: 12px 24px 24px;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { width: 100%; border-bottom: 1px solid var(--c-line); }
  .nav__menu li:last-child { border-bottom: 0; }
  .nav__menu a { display: block; padding: 14px 0; }
  .nav__cta .btn--ghost { display: none; }
}

/* ---------- Small ---------- */
@media (max-width: 520px) {
  .hero__meta { gap: 24px; }
  .hero__meta-item strong { font-size: 1.3rem; }
  .form, .contact-info { padding: 28px; }
  .cta-banner { padding: 32px; }
}
