/* ===========================================================
   BEAUPRÉ AVOCATS — Cabinet d'avocats
   Style : corporate sobre premium, ivoire & navy, accent or
   =========================================================== */

:root {
  --bg: #f8f6f1;
  --bg-surface: #ffffff;
  --bg-navy: #0c1e3d;
  --bg-navy-soft: #14294c;
  --fg: #0c1e3d;
  --fg-muted: #4a5874;
  --fg-dim: #8a93a6;
  --fg-on-navy: #f3f1ea;
  --fg-on-navy-muted: #9aa6bd;
  --accent: #b88a4d;
  --accent-dark: #9c7339;
  --accent-soft: #b88a4d1f;
  --border: #e3ddd0;
  --border-strong: #cabfa8;
  --border-navy: #24375c;
  --shadow-sm: 0 2px 14px rgba(12, 30, 61, 0.06);
  --shadow-md: 0 18px 50px -16px rgba(12, 30, 61, 0.18);

  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(72px, 11vw, 132px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--bg-navy); color: var(--fg-on-navy);
  padding: 12px 20px; font-weight: 600; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(248, 246, 241, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px var(--gutter);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex; align-items: center; gap: 14px;
}
.brand__monogram {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--bg-navy);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 3px;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.brand__sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}
.brand--lg .brand__monogram { width: 50px; height: 50px; font-size: 2rem; }
.brand--lg .brand__word { font-size: 1.8rem; }

.primary-nav { display: none; }
@media (min-width: 1000px) { .primary-nav { display: block; } }
.primary-nav ul {
  display: flex; gap: 38px;
  list-style: none; padding: 0; margin: 0;
}
.primary-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.primary-nav a:hover { color: var(--fg); }
.primary-nav a:hover::after { transform: scaleX(1); }

.cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1.5px solid var(--bg-navy);
  background: transparent;
  color: var(--fg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.cta:hover {
  background: var(--bg-navy);
  color: var(--fg-on-navy);
}
.cta--primary {
  background: var(--bg-navy);
  color: var(--fg-on-navy);
  border-color: var(--bg-navy);
}
.cta--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-navy);
}
.cta--ghost {
  border-color: var(--border-strong);
  color: var(--fg-muted);
}
.cta--ghost:hover {
  background: transparent;
  border-color: var(--bg-navy);
  color: var(--fg);
}
.cta--lg { padding: 17px 34px; }
.cta--full { width: 100%; }
.cta__icon { display: inline-flex; width: 16px; height: 16px; }
.cta__icon svg { width: 100%; height: 100%; }

.header-cta { display: none; }
@media (min-width: 1000px) { .header-cta { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: var(--bg-navy);
  border: 0;
  border-radius: 3px;
}
.burger span {
  display: block; height: 2px; width: 18px;
  background: var(--accent);
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 1000px) { .burger { display: none; } }

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 90;
  background: var(--bg-navy);
  padding: 110px var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu:not([hidden]) { opacity: 1; pointer-events: auto; }
.mobile-menu nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.mobile-menu nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg-on-navy);
  transform: translateX(-20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: calc(0.05s * var(--i, 0));
}
.mobile-menu:not([hidden]) nav a { transform: none; opacity: 1; }
.mobile-menu__foot {
  display: flex; flex-direction: column; gap: 18px;
  padding-top: 32px;
  border-top: 1px solid var(--border-navy);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(0.05s * var(--i, 0));
}
.mobile-menu:not([hidden]) .mobile-menu__foot { opacity: 1; transform: none; }
.mobile-menu__foot .cta { border-color: var(--accent); background: var(--accent); color: var(--bg-navy); }
.mobile-menu__addr {
  font-size: 13px;
  color: var(--fg-on-navy-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: clamp(130px, 18vw, 200px) var(--gutter) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__inner {
  display: grid; gap: 56px;
  align-items: center;
}
@media (min-width: 940px) {
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
  }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 28px;
}
.eyebrow__rule {
  display: inline-block;
  width: 40px; height: 1.5px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--fg);
}
.hero__title em {
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 500;
}
.hero__lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__proofs {
  display: flex; flex-wrap: wrap; gap: 24px;
  list-style: none; padding: 0; margin: 0;
}
.hero__proofs li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}
.hero__proofs svg {
  width: 15px; height: 15px;
  color: var(--accent);
}

.hero__visual {
  position: relative;
}
.hero__visual-frame {
  position: relative;
  aspect-ratio: 9/11;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.hero__visual-frame::before {
  content: '';
  position: absolute; inset: 0;
  border: 8px solid var(--bg-surface);
  z-index: 2;
  pointer-events: none;
}
.hero__visual-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3) contrast(1.05);
}
.hero__visual-badge {
  position: absolute; bottom: -28px; left: -28px;
  z-index: 3;
  background: var(--bg-navy);
  color: var(--fg-on-navy);
  padding: 22px 26px;
  max-width: 200px;
  box-shadow: var(--shadow-md);
}
.hero__visual-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__visual-badge-cap {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-on-navy-muted);
}
@media (max-width: 939px) {
  .hero__visual-badge { left: auto; right: 0; bottom: -24px; }
}

.hero__band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: clamp(72px, 12vw, 120px);
}
@media (min-width: 720px) {
  .hero__band { grid-template-columns: repeat(4, 1fr); }
}
.hero__band-item {
  background: var(--bg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero__band-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}
.hero__band-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}

/* ===========================================================
   SECTIONS — base
   =========================================================== */
.section {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section__head {
  max-width: 680px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  text-align: center;
}
.section__head--left {
  text-align: left;
  margin-left: 0;
}
.section__head .eyebrow,
.section__head--left .eyebrow { margin-bottom: 20px; }
.section__head:not(.section__head--left) .eyebrow {
  justify-content: center;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--fg);
}
.section__title em {
  font-style: italic;
  color: var(--accent-dark);
}
.section__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.6, 0.3, 1),
              transform 0.85s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===========================================================
   EXPERTISES — bento
   =========================================================== */
.expertises {
  display: grid; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 760px) {
  .expertises { grid-template-columns: 1fr 1fr; }
}
.expertise {
  background: var(--bg-surface);
  padding: clamp(32px, 4vw, 52px);
  display: flex; flex-direction: column;
  transition: background 0.3s ease;
}
.expertise:hover { background: #fffdf8; }
.expertise--lg { grid-row: span 1; }
@media (min-width: 760px) {
  .expertise--lg { grid-row: span 2; }
}
.expertise--accent {
  background: var(--bg-navy);
  color: var(--fg-on-navy);
}
.expertise--accent:hover { background: var(--bg-navy-soft); }
.expertise__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.expertise__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
}
.expertise--accent .expertise__title { color: var(--fg-on-navy); }
.expertise__desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0 0 24px;
}
.expertise--accent .expertise__desc { color: var(--fg-on-navy-muted); }
.expertise__list {
  list-style: none; padding: 0; margin: auto 0 0;
  display: grid; gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.expertise--accent .expertise__list { border-top-color: var(--border-navy); }
.expertise__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--fg);
}
.expertise--accent .expertise__list li { color: var(--fg-on-navy); }
.expertise__list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 1.5px;
  background: var(--accent);
}

/* ===========================================================
   MÉTHODE
   =========================================================== */
.section--methode-wrap {
  background: var(--bg-navy);
  color: var(--fg-on-navy);
}
.section--methode {
  display: grid; gap: 56px;
}
@media (min-width: 940px) {
  .section--methode {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
  }
}
.section--methode .section__head {
  margin: 0;
  text-align: left;
}
.section--methode .section__title { color: var(--fg-on-navy); }
.section--methode .section__title em { color: var(--accent); }
.section--methode .section__lede { color: var(--fg-on-navy-muted); }
.section--methode .eyebrow { color: var(--accent); }

.methode {
  list-style: none; padding: 0; margin: 0;
  counter-reset: none;
}
.methode__step {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-navy);
}
.methode__step:last-child { border-bottom: 0; padding-bottom: 0; }
.methode__step:first-child { padding-top: 0; }
.methode__step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  width: 48px;
  line-height: 1.4;
}
.methode__step-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--fg-on-navy);
}
.methode__step-body p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--fg-on-navy-muted);
}

/* ===========================================================
   ÉQUIPE
   =========================================================== */
.equipe {
  display: grid; gap: 28px;
}
@media (min-width: 600px) { .equipe { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .equipe { grid-template-columns: repeat(4, 1fr); } }
.avocat {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.avocat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.avocat__photo {
  aspect-ratio: 6/7;
  overflow: hidden;
  background: var(--border);
}
.avocat__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.avocat:hover .avocat__photo img {
  filter: grayscale(0.15) contrast(1.05);
  transform: scale(1.03);
}
.avocat__body { padding: 24px 24px 28px; }
.avocat__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--fg);
}
.avocat__name sup { font-size: 0.55em; }
.avocat__role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0 0 14px;
}
.avocat__bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-muted);
  margin: 0;
}

/* ===========================================================
   RÉFÉRENCES
   =========================================================== */
.section--references-wrap { background: #fffdf8; }
.references {
  display: grid; gap: 24px;
}
@media (min-width: 760px) { .references { grid-template-columns: 1fr 1fr; } }
.reference {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: clamp(28px, 3.5vw, 40px);
}
.reference__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.reference__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--fg);
}
.reference__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0 0 18px;
}
.reference__result {
  font-size: 0.9rem;
  color: var(--fg);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.reference__result strong {
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ===========================================================
   CABINET
   =========================================================== */
.cabinet {
  display: grid; gap: 56px;
  align-items: center;
}
@media (min-width: 940px) {
  .cabinet {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}
.cabinet__visual {
  aspect-ratio: 11/8;
  overflow: hidden;
  border: 1px solid var(--border);
}
.cabinet__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
  transition: transform 0.8s ease;
}
.cabinet__visual:hover img { transform: scale(1.03); }
.cabinet__body p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin: 0 0 16px;
}
.cabinet__facts {
  margin: 32px 0 0;
  display: grid; gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.cabinet__facts div { display: grid; gap: 4px; }
.cabinet__facts dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 600;
}
.cabinet__facts dd {
  margin: 0;
  font-size: 1rem;
  color: var(--fg);
}
.cabinet__facts dd a:hover { color: var(--accent-dark); }

/* ===========================================================
   FAQ
   =========================================================== */
.section--faq-wrap { background: var(--bg-navy); }
.section--faq .section__head .eyebrow { color: var(--accent); }
.section--faq .section__title { color: var(--fg-on-navy); }
.section--faq .section__title em { color: var(--accent); }

.faq {
  max-width: 800px; margin: 0 auto;
  display: grid; gap: 2px;
  background: var(--border-navy);
  border: 1px solid var(--border-navy);
}
.faq__item {
  background: var(--bg-navy);
  transition: background 0.3s ease;
}
.faq__item[open] { background: var(--bg-navy-soft); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg-on-navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq__chev svg { width: 100%; height: 100%; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__body {
  padding: 0 28px 26px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--fg-on-navy-muted);
}
.faq__body p { margin: 0; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact {
  display: grid; gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 940px) {
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
  }
}
.contact__intro .section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: left;
}
.contact__intro .eyebrow { margin-bottom: 20px; }
.contact__intro .section__lede { margin-bottom: 0; }
.contact__info {
  margin: 36px 0 0;
  list-style: none; padding: 0;
  display: grid; gap: 18px;
}
.contact__info li {
  display: grid; gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 600;
}
.contact__info a,
.contact__info span:not(.contact__label) {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.55;
}
.contact__info a:hover { color: var(--accent-dark); }

.contact__form {
  display: grid; gap: 18px;
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.field-row { display: grid; gap: 18px; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--bg-navy);
  background: var(--bg-surface);
}
.field textarea { resize: vertical; min-height: 110px; }
.field__error {
  font-size: 12px;
  color: #b3261e;
  min-height: 1em;
  margin: 0;
}
.field-check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--fg-muted);
  cursor: pointer;
}
.field-check input {
  margin-top: 3px;
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--bg-navy);
}
.form__success {
  padding: 16px 18px;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  color: var(--fg);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.contact__map {
  max-width: var(--max-w);
  margin: clamp(48px, 7vw, 80px) auto 0;
  aspect-ratio: 21/9;
  border: 1px solid var(--border);
  background: var(--border);
}
.contact__map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--bg-navy);
  color: var(--fg-on-navy);
  padding: clamp(64px, 9vw, 100px) var(--gutter) 32px;
}
.site-footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid; gap: 48px;
}
@media (min-width: 940px) {
  .site-footer__top { grid-template-columns: 1.3fr 2fr; }
}
.site-footer .brand__word { color: var(--fg-on-navy); }
.site-footer .brand__monogram { background: var(--accent); color: var(--bg-navy); }
.site-footer__brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--fg-on-navy-muted);
  max-width: 380px;
  margin: 22px 0 0;
}
.site-footer__nav {
  display: grid; gap: 36px;
  grid-template-columns: repeat(3, 1fr);
}
.site-footer__nav h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
}
.site-footer__nav ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 11px;
}
.site-footer__nav a {
  font-size: 0.88rem;
  color: var(--fg-on-navy-muted);
  transition: color 0.2s ease;
}
.site-footer__nav a:hover { color: var(--accent); }
.site-footer__bottom {
  max-width: var(--max-w);
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border-navy);
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--fg-on-navy-muted);
}
.site-footer__bottom ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 24px;
}
.site-footer__bottom a {
  font-size: 0.78rem;
  color: var(--fg-on-navy-muted);
}
.site-footer__bottom a:hover { color: var(--accent); }

/* ===========================================================
   STICKY CTA mobile
   =========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 80;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--bg-navy);
  color: var(--fg-on-navy);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--accent);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta svg { width: 14px; height: 14px; color: var(--accent); }
@media (min-width: 1000px) { .sticky-cta { display: none; } }
