/* Kemson, shared design system
   Palette : navy #0d1b3d · ivory #f5f1ea · brass #b58c4a · charcoal #1a1a1a
   Type    : Cormorant Garamond (display) · Manrope (body) · JetBrains Mono (labels)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #060a38;
  --navy-deep: #03061f;
  --ivory: #fef9f5;
  --ivory-warm: #f5ede2;
  --brass: #b58c4a;
  --brass-light: #c9a86a;
  --charcoal: #1a1a1a;
  --slate: #5a5a5a;
  --line: rgba(6, 10, 56, 0.14);
  --line-on-dark: rgba(254, 249, 245, 0.18);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --gutter: clamp(20px, 5vw, 80px);
  --container: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga';
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ TYPE SCALE ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow--light { color: var(--brass-light); }
.eyebrow--mute { color: var(--slate); }

.display-xl {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.display-l {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.018em;
}

.display-m {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.display-s {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.italic { font-style: italic; font-weight: 300; }

.lede {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.6;
  font-weight: 400;
  color: var(--charcoal);
  max-width: 56ch;
}

.body { font-size: 16px; line-height: 1.65; color: var(--slate); }
.body--dark { color: var(--charcoal); }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(80px, 10vw, 160px) 0; }
.section--tight { padding: clamp(60px, 6vw, 90px) 0; }

.divider {
  height: 1px;
  background: var(--line);
  border: none;
}
.divider--dark { background: var(--line-on-dark); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav--dark {
  background: rgba(3, 6, 31, 0.96);
  border-bottom-color: var(--line-on-dark);
  color: var(--ivory);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo { display: flex; align-items: center; gap: 14px; }
.nav__logo img { height: 34px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__links a { position: relative; padding: 4px 0; opacity: 0.8; transition: opacity 0.2s; }
.nav__links a:hover, .nav__links a.is-active { opacity: 1; }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--brass);
}

.nav__cta {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 13px 22px;
  background: var(--brass);
  border: 1px solid var(--brass);
  color: var(--navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--brass-light); border-color: var(--brass-light); color: var(--navy); }

.nav--dark .nav__cta { background: var(--brass); border-color: var(--brass); color: var(--navy); }
.nav--dark .nav__cta:hover { background: var(--brass-light); border-color: var(--brass-light); color: var(--navy); }

/* MOBILE MENU BUTTON */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.nav--dark .nav__toggle { border-color: var(--ivory); }
.nav--dark .nav__toggle span { background: var(--ivory); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 28px;
  border: 1px solid currentColor;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--solid {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.btn--solid:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.btn--ghost { color: var(--navy); background: transparent; }
.btn--ghost:hover { background: var(--navy); color: var(--ivory); }

.btn--light { color: var(--ivory); border-color: var(--ivory); }
.btn--light:hover { background: var(--ivory); color: var(--navy); }

.btn--brass {
  background: var(--brass);
  color: var(--navy);
  border-color: var(--brass);
}
.btn--brass:hover { background: var(--brass-light); border-color: var(--brass-light); }

.btn__arrow {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.btn__arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ============ SPLASH (logo on first paint) ============ */
.splash {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
  animation: splash-out 0.7s cubic-bezier(0.6, 0, 0.3, 1) 1.4s forwards;
}
.splash__logo {
  width: clamp(220px, 32vw, 420px);
  opacity: 0;
  transform: translateY(8px);
  animation: splash-logo-in 0.7s cubic-bezier(0.2, 0.6, 0.2, 1) 0.1s forwards;
}
@keyframes splash-logo-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes splash-out {
  0%   { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
/* Respect reduced motion, show logo but skip animation */
@media (prefers-reduced-motion: reduce) {
  .splash { animation: splash-out 0.3s ease 0.6s forwards; }
  .splash__logo { animation: none; opacity: 1; transform: none; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 80px 0 32px;
}

.footer__strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__strip img.footer__logo {
  height: 72px;
  width: auto;
  display: block;
}
.footer__strip-right {
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 32px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: rgba(254, 249, 245, 0.85);
  text-align: right;
  max-width: 26ch;
}
.footer__strip-right em { font-style: normal; color: var(--brass-light); }

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 56px 0;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}

.footer__col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 500;
  margin-bottom: 22px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15.5px;
}
.footer__col a {
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.005em;
}
.footer__col a:hover { opacity: 1; color: var(--brass-light); }
.footer__col li.muted {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(254, 249, 245, 0.7);
  line-height: 1.55;
}
.footer__col li.muted strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(254, 249, 245, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: var(--brass-light);
  color: var(--brass-light);
}
.footer__social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer__accred {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line-on-dark);
  flex-wrap: wrap;
}
.footer__accred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.footer__accred-item__mark {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1;
}
.footer__accred-item__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(254, 249, 245, 0.55);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  align-items: baseline;
  padding: 28px 0 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(254, 249, 245, 0.7);
}
.footer__legal a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(254, 249, 245, 0.35);
  text-underline-offset: 4px;
  transition: color 0.2s, text-decoration-color 0.2s;
  padding: 0 14px;
  display: inline-block;
}
.footer__legal a:first-child { padding-left: 0; }
.footer__legal a:hover {
  color: var(--brass-light);
  text-decoration-color: var(--brass-light);
}
.footer__legal .sep {
  color: rgba(254, 249, 245, 0.3);
  user-select: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254, 249, 245, 0.5);
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom a {
  color: inherit;
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--brass-light); }

/* ============ SHARED COMPONENTS ============ */

/* Image placeholders / real images with caption */
.figure {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.figure__caption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 249, 245, 0.85);
  background: rgba(3, 6, 31, 0.55);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
}

/* Stat block */
.stat { display: flex; flex-direction: column; gap: 10px; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.stat__num sup { font-size: 0.5em; vertical-align: super; }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Index number (01. 02. etc) */
.idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brass);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav__inner { gap: 16px; padding: 14px var(--gutter); }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
    box-shadow: 0 24px 40px rgba(3, 6, 31, 0.08);
  }
  .nav { position: sticky; }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 14px var(--gutter);
    font-size: 13px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__links a.is-active::after { display: none; }
  .nav__links a.is-active { color: var(--brass); }

  .nav--dark .nav__links { background: var(--navy-deep); border-bottom-color: var(--line-on-dark); }
  .nav--dark .nav__links a { border-bottom-color: var(--line-on-dark); color: var(--ivory); }

  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .footer__strip { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__strip-right { text-align: left; }
  .footer__accred { gap: 40px; padding: 32px 0; }
}

@media (max-width: 600px) {
  :root {
    --gutter: 20px;
  }
  body { font-size: 15px; }
  .footer__top { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section--tight { padding: 40px 0; }
  .btn { padding: 14px 20px; font-size: 11px; }
  .nav__logo img { height: 26px; }
  .footer__strip img.footer__logo { height: 56px; }
  .footer__strip-right { font-size: 18px; }
  .footer__legal { font-size: 13px; flex-wrap: wrap; }
  .footer__legal a { padding: 0 8px; }

  /* Mobile type, tame the huge headlines */
  .display-xl { font-size: 44px !important; line-height: 0.98 !important; }
  .display-l { font-size: 36px !important; line-height: 1 !important; }
  .display-m { font-size: 30px !important; }
  .display-s { font-size: 22px !important; }
  .lede { font-size: 15px !important; }

  .stat__num { font-size: 44px !important; }
  .stat__num em { font-size: inherit !important; }

  /* Hero, much smaller on phones */
  .hero { min-height: auto !important; }
  .hero__inner { padding: 32px 20px 48px !important; gap: 40px; }
  .hero__headline h1 { font-size: 40px !important; line-height: 0.98 !important; }
  .hero__headline { margin-bottom: 32px !important; }
  .hero__meta { gap: 16px; }
  .hero__lede { font-size: 15px !important; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }

  /* Section heads */
  .sec-head__title { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sec-head__title h2 { font-size: 36px !important; }

  /* Stats band */
  .stats-band__head h2 { font-size: 30px !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 8px; }

  /* Coverage */
  .coverage__head h2 { font-size: 32px !important; }

  /* Testimonial */
  .testimonial { padding: 70px 0 !important; }
  .testimonial__quote { font-size: 24px !important; padding: 0 8px; }
  .testimonial__mark { font-size: 80px !important; }

  /* CTA */
  .cta h2 { font-size: 38px !important; }
  .cta__contact { gap: 24px; padding-top: 24px; }
  .cta__contact-item strong { font-size: 18px; }

  /* Borough grid */
  .borough { padding: 16px 12px; font-size: 16px; }
  .borough span { font-size: 9px; }

  /* Service cards */
  .service-card { padding: 32px 24px 40px; min-height: auto; }
  .service-card h3 { font-size: 24px; }
}


/* ============ COOKIE MODAL ============ */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal.is-on { display: flex; }

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 31, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: cookie-fade 0.25s ease;
}

.cookie-modal__panel {
  position: relative;
  background: var(--ivory);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(3, 6, 31, 0.3);
  animation: cookie-up 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  border: 1px solid var(--navy);
}

@keyframes cookie-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cookie-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: var(--navy);
  color: var(--ivory);
  flex-shrink: 0;
}
.cookie-modal__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.cookie-modal__close {
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  font-family: var(--mono);
  transition: color 0.2s;
}
.cookie-modal__close:hover { color: var(--brass-light); }

.cookie-modal__body {
  padding: 36px 36px 28px;
  overflow-y: auto;
  flex: 1;
}

.cookie-modal__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin-bottom: 18px;
}
.cookie-modal__title em { font-style: italic; color: var(--brass); }

.cookie-modal__lede {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cookie-modal__readlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  margin-bottom: 28px;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-modal__readlink:hover { color: var(--navy); border-color: var(--navy); }

.ck-arrow {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.ck-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.cookie-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.cookie-row__main { flex: 1; }
.cookie-row__title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.cookie-row__body {
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.55;
}
.cookie-row__locked {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 8px 12px;
  border: 1px solid var(--brass);
  flex-shrink: 0;
  align-self: flex-start;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--line);
  border: 1px solid var(--line);
  transition: background 0.25s;
  border-radius: 24px;
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--ivory);
  transition: transform 0.25s;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(3, 6, 31, 0.2);
}
.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--brass);
  border-color: var(--brass);
}
.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}

.cookie-modal__foot {
  display: flex;
  gap: 10px;
  padding: 20px 36px 28px;
  border-top: 1px solid var(--line);
  background: var(--ivory-warm);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-btn {
  flex: 1;
  min-width: 130px;
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}
.cookie-btn:hover { background: var(--navy); color: var(--ivory); }
.cookie-btn--solid {
  background: var(--navy);
  color: var(--ivory);
}
.cookie-btn--solid:hover { background: var(--navy-deep); }

@media (max-width: 600px) {
  .cookie-modal { padding: 0; align-items: flex-end; }
  .cookie-modal__panel {
    max-height: 92vh;
    max-width: 100%;
    border: none;
    border-top: 1px solid var(--navy);
  }
  .cookie-modal__body { padding: 28px 22px 22px; }
  .cookie-modal__foot { padding: 16px 22px 22px; flex-direction: column; }
  .cookie-btn { width: 100%; flex: none; }
  .cookie-row { flex-direction: column; gap: 14px; }
  .cookie-row__locked, .cookie-toggle { align-self: flex-start; }
}
