/* =========================================================
   RIM International — landing styles
   Palette: burgundy / cream / ivory / gold / graphite
   ========================================================= */

:root {
  --c-burgundy:       #5C1B26;
  --c-burgundy-deep:  #3F121A;
  --c-burgundy-darkest: #2A0E13;
  --c-cream:          #F5EFE6;
  --c-ivory:          #FBF7F0;
  --c-gold:           #B6894A;
  --c-gold-soft:      #D9B97A;
  --c-graphite:       #1E1A18;
  --c-line:           rgba(30, 26, 24, 0.12);
  --c-line-light:     rgba(251, 247, 240, 0.18);
  --c-muted:          rgba(30, 26, 24, 0.65);
  --c-muted-light:    rgba(251, 247, 240, 0.72);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-ivory);
  color: var(--c-graphite);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  margin: 0 0 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-gold);
}
.eyebrow--light { color: var(--c-gold-soft); border-bottom-color: rgba(217, 185, 122, 0.5); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.section-title--light { color: var(--c-ivory); }

.section-lede {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--c-muted);
  max-width: 720px;
  margin: 0 0 56px;
  line-height: 1.55;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 24px 0;
  color: var(--c-ivory);
  transition: background 0.4s var(--ease), padding 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: var(--c-graphite);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--c-line);
}
.site-header.is-scrolled .site-nav__cta { border-color: var(--c-burgundy); color: var(--c-burgundy); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}
.brand__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--c-gold-soft);
  opacity: 0.85;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.brand__seal svg { width: 100%; height: 100%; display: block; }
.brand:hover .brand__seal { opacity: 1; transform: rotate(-3deg); }
.site-header.is-scrolled .brand__seal { color: var(--c-burgundy); }

.brand__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav a { opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.site-nav a:hover { opacity: 1; color: var(--c-gold-soft); }
.site-header.is-scrolled .site-nav a:hover { color: var(--c-burgundy); }

.site-nav__cta {
  border: 1px solid rgba(251, 247, 240, 0.55);
  padding: 10px 18px;
  border-radius: var(--radius);
  opacity: 1 !important;
}

.site-nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.site-nav__toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--c-ivory);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -10% -5% -10% -5%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(217, 185, 122, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(42, 14, 19, 0.7), transparent 55%),
    linear-gradient(135deg, var(--c-burgundy-darkest) 0%, var(--c-burgundy) 55%, var(--c-burgundy-deep) 100%);
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 50%, rgba(217, 185, 122, 0.08), transparent 45%),
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

/* Fine film grain — SVG rendered at native pixel size, then tiled */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 320px 320px;
  background-repeat: repeat;
}

/* Architectural monogram seal — dominates the right half */
.hero__mark {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  z-index: 1;
  width: clamp(420px, 56vw, 820px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.95;
  animation: heroMarkFade 1.6s var(--ease) 0.2s both;
}
.hero__mark svg { width: 100%; height: 100%; display: block; }

@keyframes heroMarkFade {
  from { opacity: 0; transform: translateY(-50%) scale(0.96) rotate(-2deg); }
  to   { opacity: 0.95; transform: translateY(-50%) scale(1) rotate(0); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin: 0 0 36px;
  font-weight: 500;
}
.hero__rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--c-gold-soft);
  opacity: 0.7;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 9.5vw, 140px);
  line-height: 0.98;
  margin: 0 0 36px;
  letter-spacing: -0.015em;
  color: var(--c-ivory);
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-gold-soft);
}

.hero__sub {
  font-size: clamp(18px, 1.4vw, 22px);
  max-width: 540px;
  margin: 0 0 48px;
  color: var(--c-muted-light);
  line-height: 1.6;
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(251, 247, 240, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--c-gold-soft);
  border-radius: 1px;
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn--primary { background: var(--c-gold); color: var(--c-graphite); }
.btn--primary:hover { background: var(--c-gold-soft); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--c-ivory);
  border-color: rgba(251, 247, 240, 0.4);
}
.btn--ghost:hover { border-color: var(--c-gold-soft); color: var(--c-gold-soft); }

/* =========================================================
   SECTIONS BASE
   ========================================================= */
section { padding: 120px 0; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--c-ivory); }
.about__inner { max-width: 1100px; }

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.about__card {
  padding: 36px 32px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.about__card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: 0 20px 40px -20px rgba(92, 27, 38, 0.18);
}
.about__card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--c-burgundy);
}
.about__card p { margin: 0; color: var(--c-muted); }

/* =========================================================
   APPROACH
   ========================================================= */
.approach { background: var(--c-cream); }
.approach__inner { max-width: 1000px; }

.approach__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.approach__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--c-line);
  align-items: start;
}
.approach__item:last-child { border-bottom: 1px solid var(--c-line); }
.approach__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--c-gold);
  line-height: 1;
}
.approach__item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--c-graphite);
}
.approach__item p { margin: 0; color: var(--c-muted); max-width: 640px; }

/* =========================================================
   NUMBERS
   ========================================================= */
.numbers {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(182, 137, 74, 0.14), transparent 60%),
    linear-gradient(160deg, var(--c-burgundy-deep) 0%, var(--c-burgundy-darkest) 100%);
  color: var(--c-ivory);
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.number {
  padding: 28px 0;
  border-top: 1px solid var(--c-line-light);
}
.number__value {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  color: var(--c-gold-soft);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.number__label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted-light);
}

/* =========================================================
   GEOGRAPHY
   ========================================================= */
.geography { background: var(--c-ivory); }
.geography__inner { max-width: 1200px; }

/* City cards — pure typography, no icons. */
.cities {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.city {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-cream);
  padding: 72px 36px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  min-height: 320px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.city:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: 0 28px 50px -28px rgba(92, 27, 38, 0.22);
}

.city__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.02;
  margin: 0 0 22px;
  color: var(--c-graphite);
  letter-spacing: -0.01em;
}

.city__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.7;
  margin: 0 0 22px;
}

.city__country {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  margin: 0 0 28px;
}

.city__line {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--c-muted);
  max-width: 260px;
}

@media (max-width: 980px) {
  .cities { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .city { padding: 60px 32px; min-height: 280px; }
}

@media (max-width: 600px) {
  .cities { grid-template-columns: 1fr; gap: 16px; }
  .city { padding: 52px 28px; min-height: 240px; }
  .city__name { font-size: 32px; margin-bottom: 18px; }
  .city__rule { margin-bottom: 18px; }
  .city__country { margin-bottom: 22px; }
}

/* =========================================================
   FORM
   ========================================================= */
.form-section { background: var(--c-cream); }
.form-section__inner { max-width: 760px; }

/* Static contact card — only rendered when printing (see @media print) */
.print-contact { display: none; }

.lead-form {
  display: grid;
  gap: 20px;
  position: relative;
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lead-form__field {
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.lead-form__field input,
.lead-form__field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-graphite);
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}
.lead-form__field input:focus,
.lead-form__field textarea:focus {
  outline: none;
  border-color: var(--c-burgundy);
  box-shadow: 0 0 0 3px rgba(92, 27, 38, 0.1);
  background: #fff;
}
.lead-form__field textarea { resize: vertical; min-height: 120px; }

.lead-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form__consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.55;
}
.lead-form__consent input {
  margin-top: 4px;
  accent-color: var(--c-burgundy);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lead-form__status {
  margin: 8px 0 0;
  font-size: 14px;
  min-height: 1.4em;
  transition: color 0.3s ease;
}
.lead-form__status.is-error { color: var(--c-burgundy); }
.lead-form__status.is-success { color: #2E6B3B; }

.lead-form button[type="submit"] { justify-self: start; margin-top: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--c-graphite); color: var(--c-cream); padding: 64px 0 40px; }

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  font-size: 14px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-footer__seal {
  display: inline-flex;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: var(--c-gold-soft);
}
.site-footer__seal svg { width: 100%; height: 100%; display: block; }
.site-footer__name {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.04em;
}
.site-footer__tag {
  font-size: 12px;
  color: rgba(245, 239, 230, 0.55);
  letter-spacing: 0.08em;
}

.site-footer__contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(245, 239, 230, 0.78);
}
.site-footer__contacts a:hover { color: var(--c-gold-soft); }

.site-footer__legal {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  color: rgba(245, 239, 230, 0.5);
  font-size: 13px;
}
.site-footer__legal a:hover { color: var(--c-gold-soft); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .approach__item { grid-template-columns: 70px 1fr; gap: 20px; }
  .approach__num { font-size: 28px; }
  .container { padding: 0 28px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-nav { display: none; }
  .site-nav__toggle { display: flex; }
  .site-header { padding: 18px 0; }

  .brand { gap: 10px; }
  .brand__seal { width: 38px; height: 38px; }
  .brand__name { font-size: 17px; letter-spacing: 0.03em; }

  .site-nav.is-open {
    display: flex;
    position: fixed;
    inset: 70px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    background: var(--c-ivory);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.2);
  }
  .site-nav.is-open a {
    padding: 14px 24px;
    color: var(--c-graphite);
    border-bottom: 1px solid var(--c-line);
  }
  .site-nav.is-open a:last-child { border-bottom: 0; }
  .site-nav.is-open .site-nav__cta { border: 0; color: var(--c-burgundy); }

  section { padding: 80px 0; }
  .hero__inner { padding-top: 130px; padding-bottom: 110px; }
  .hero__mark {
    width: clamp(320px, 90vw, 520px);
    right: -25%;
    top: auto;
    bottom: -8%;
    transform: none;
    opacity: 0.5;
  }
  @keyframes heroMarkFade {
    from { opacity: 0; }
    to   { opacity: 0.5; }
  }
  .hero__title { font-size: clamp(44px, 12vw, 84px); }

  .lead-form__row { grid-template-columns: 1fr; }

  .numbers__grid { grid-template-columns: 1fr 1fr; }

  .site-footer__inner { grid-template-columns: 1fr; text-align: center; }
  .site-footer__contacts, .site-footer__legal { justify-content: center; }

  .container { padding: 0 20px; }
}

@media (max-width: 420px) {
  .hero__cta .btn { width: 100%; }
  .approach__item { grid-template-columns: 1fr; }
}

/* =========================================================
   PRINT — clean, color-faithful PDF/paper rendering
   ========================================================= */
@media print {
  /* Preserve backgrounds and colors (Chrome/Edge/Safari) */
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Reveal animations would otherwise leave content invisible */
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html, body {
    background: var(--c-ivory) !important;
    color: var(--c-graphite) !important;
    font-size: 11pt;
  }

  /* Page margins */
  @page { size: A4; margin: 14mm 14mm 16mm; }

  /* Strip interactive / decorative chrome that doesn't belong on paper */
  .site-header,
  .site-nav,
  .site-nav__toggle,
  .hero__noise,
  .hero__mark,
  .hero__scroll,
  .hero__cta,
  .lead-form,
  .form-section .section-lede,
  .form-section .eyebrow,
  .form-section .section-title {
    display: none !important;
  }

  /* Disable parallax / animations on print */
  .hero__bg, .hero__mark, .hero__veil {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  /* HERO — flatten the burgundy block, give it print-friendly proportions */
  .hero {
    min-height: auto !important;
    page-break-after: avoid;
    color: var(--c-ivory) !important;
    overflow: visible;
    padding: 24mm 0 18mm;
  }
  .hero__bg {
    position: absolute; inset: 0 !important;
    background: linear-gradient(135deg, var(--c-burgundy-darkest) 0%, var(--c-burgundy) 60%, var(--c-burgundy-deep) 100%) !important;
  }
  .hero__inner { padding: 0 8mm !important; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: 44pt !important; line-height: 1.02; margin-bottom: 6mm; }
  .hero__title em { color: var(--c-gold-soft) !important; }
  .hero__sub { font-size: 12pt !important; max-width: 120mm; }
  .hero__eyebrow { color: var(--c-gold-soft) !important; margin-bottom: 8mm; }

  /* Replace the form section with a static contact card */
  .form-section {
    background: var(--c-cream) !important;
    padding: 14mm 0 !important;
    page-break-before: auto;
  }
  .print-contact { display: block !important; }
  .print-contact__eyebrow {
    font-size: 9pt;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-burgundy) !important;
    margin: 0 0 4mm;
  }
  .print-contact__name {
    font-family: var(--font-serif);
    font-size: 24pt;
    color: var(--c-burgundy) !important;
    margin: 0 0 4mm;
    line-height: 1.1;
  }
  .print-contact p {
    margin: 0 0 1.5mm;
    font-size: 11pt;
    color: var(--c-graphite) !important;
  }
  .print-contact__note {
    margin-top: 4mm !important;
    color: var(--c-muted) !important;
    font-style: italic;
    max-width: 110mm;
  }

  /* General section rhythm — let long sections (Approach) flow across pages */
  section { padding: 14mm 0 !important; }

  /* Headings keep companies on their pages */
  h1, h2, h3 { page-break-after: avoid; }

  /* Keep numbered approach items intact across page breaks. About cards are
     short enough to flow naturally and forcing avoid leaves big gaps. */
  .approach__item,
  .number,
  .city {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .cities { grid-template-columns: repeat(2, 1fr) !important; gap: 8mm !important; }
  .city {
    padding: 14mm 10mm !important;
    min-height: auto !important;
    background: var(--c-cream) !important;
    box-shadow: none !important;
    transform: none !important;
  }
  .city__name { font-size: 22pt !important; }
  .city__line { font-size: 12pt !important; }

  .about__card { box-shadow: none !important; transform: none !important; }

  /* Numbers section — flip to light bg for ink saving but keep gold accents */
  .numbers {
    background: var(--c-cream) !important;
    color: var(--c-graphite) !important;
  }
  .section-title--light,
  .eyebrow--light { color: var(--c-burgundy) !important; }
  .number { border-top-color: var(--c-line) !important; }
  .number__value { color: var(--c-burgundy) !important; }
  .number__label { color: var(--c-muted) !important; }

  /* Footer compact, single-column */
  .site-footer {
    background: var(--c-ivory) !important;
    color: var(--c-graphite) !important;
    border-top: 1px solid var(--c-line);
    padding: 8mm 0 !important;
    page-break-inside: avoid;
  }
  .site-footer__inner {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 4mm !important;
    text-align: left;
  }
  .site-footer__brand { gap: 10px; }
  .site-footer__seal { width: 14mm !important; height: 14mm !important; color: var(--c-burgundy) !important; }
  .site-footer__name { font-size: 14pt; }
  .site-footer__tag { font-size: 9pt; color: var(--c-muted) !important; }
  .site-footer__contacts {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4mm;
    justify-content: flex-start !important;
    color: var(--c-graphite) !important;
  }
  .site-footer__legal {
    display: flex !important;
    flex-direction: row;
    gap: 4mm;
    justify-content: flex-start !important;
    color: var(--c-muted) !important;
    font-size: 9pt;
  }
  .site-footer__contacts a, .site-footer__legal a {
    color: var(--c-burgundy) !important;
    text-decoration: none;
  }

  /* Make sure links are readable, not blue underlines */
  a { color: inherit; text-decoration: none; }

  /* Don't print container shadows */
  .about__card, .lead-form__field input, .lead-form__field textarea {
    box-shadow: none !important;
  }
}
