/* =============================================================================
   Kopek — Shared chrome styles
   Header + announcement bar + mega menus + footer + search overlay + utility
   ============================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 100000;
  padding: 10px 14px; background: #fff; color: var(--brand-primary);
  border: 2px solid var(--brand-primary); box-shadow: var(--shadow-focus);
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  transform: translateY(-160%); transition: transform 160ms var(--ease-standard);
}
.skip-link:focus-visible { transform: translateY(0); outline: 0; }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announcement-bar {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 24px;
}

/* ============================================================
   HEADER + NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 220ms var(--ease-standard), box-shadow 220ms var(--ease-standard);
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(11,78,82,0.08);
  backdrop-filter: blur(8px);
}
.announcement-bar-wrap { transition: height 220ms var(--ease-standard), opacity 220ms; }
.site-header.scrolled .announcement-bar-wrap {
  height: 0; overflow: hidden; opacity: 0;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  padding: 0 40px;
  max-width: 1600px;
  margin: 0 auto;
}
.nav-left { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
  transition: color 160ms;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--brand-accent);
  transition: right 220ms var(--ease-standard);
}
.nav-link:hover::after,
.nav-link.active::after { right: 0; }

.nav-logo { display: flex; align-items: center; justify-content: center; cursor: pointer; }
.nav-logo img { height: 42px; width: auto; object-fit: contain; }

.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }

.nav-icon-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 160ms;
  padding: 0;
}
.nav-icon-btn:hover { color: var(--brand-accent-hover); }
.nav-icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px 10px 18px;
  border: 1px solid var(--brand-primary);
  transition: background 160ms, color 160ms, gap 220ms var(--ease-standard);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--brand-primary-hover); border-color: var(--brand-primary-hover); gap: 12px; }
.nav-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-contact { padding: 0; }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-btn svg { width: 22px; height: 22px; stroke: var(--text-primary); fill: none; stroke-width: 1.5; }

/* ============================================================
   MEGA MENU
============================================================ */
.mega-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 220ms var(--ease-standard), transform 220ms var(--ease-standard);
  padding-top: 68px;
}
.mega-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }

.mega-menu-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 40px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 280px;
  gap: 48px;
}

.mega-col h4 {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mega-col ul li a {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: color 160ms;
}
.mega-col ul li a:hover { color: var(--brand-accent-hover); }

.mega-feature { position: relative; overflow: hidden; }
.mega-feature-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-alt);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; text-align: center; gap: 10px;
}
.mega-feature-img-placeholder .tp-ref {
  font-family: var(--font-heading);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand-primary);
  opacity: 0.55;
}
.mega-feature-img-placeholder .tp-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--brand-primary);
}
.mega-feature-img-placeholder .tp-rule {
  width: 24px; height: 1px;
  background: var(--brand-primary);
  opacity: 0.4;
}
.mega-feature-label {
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-primary);
}
.mega-feature-sub {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 300;
  color: var(--text-muted);
}

/* ============================================================
   TYPOGRAPHIC PLACEHOLDER — reused everywhere
============================================================ */
.tp-stage {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px 24px; text-align: center;
  transition: transform 480ms var(--ease-standard);
}
.tp-ref {
  font-family: var(--font-heading);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand-primary);
  opacity: 0.5;
  margin-bottom: 16px;
}
.tp-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 300; font-style: italic;
  line-height: 1; letter-spacing: -0.02em;
  color: var(--brand-primary);
  margin-bottom: 14px;
}
.tp-rule {
  width: 28px; height: 1px;
  background: var(--brand-primary);
  opacity: 0.4;
  margin-bottom: 14px;
}
.tp-meta {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  max-width: 220px; line-height: 1.5;
}
.tp-large .tp-name { font-size: clamp(2rem, 3.5vw, 3.25rem); }

/* ============================================================
   SECTION COMMONS
============================================================ */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
}
.section-title em { font-style: italic; font-weight: 200; }

.section-num {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-primary);
  opacity: 0.75;
  margin-bottom: 18px;
}
.section-num::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--brand-primary);
  opacity: 0.4;
}

.divider {
  width: 40px; height: 1px;
  background: var(--brand-primary);
  margin: 24px 0;
}

/* Generic CTA link with arrow */
.btn-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-primary);
  border-bottom: 1px solid var(--brand-primary);
  padding-bottom: 4px;
  transition: gap 220ms var(--ease-standard), color 160ms;
  width: fit-content;
}
.btn-link:hover { gap: 16px; color: var(--brand-accent-hover); border-color: var(--brand-accent-hover); }
.btn-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.btn-solid {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px;
  transition: background 180ms, gap 220ms;
}
.btn-solid:hover { background: var(--brand-primary-hover); gap: 16px; }
.btn-solid svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--brand-primary);
  transition: background 180ms, color 180ms, gap 220ms;
}
.btn-outline:hover { background: var(--brand-primary); color: #fff; gap: 16px; }
.btn-outline svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ============================================================
   PAGE SUB-HERO — for non-home pages
============================================================ */
.page-hero {
  padding: 168px 40px 88px;
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: end;
}
.page-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--brand-primary);
  margin-bottom: 24px;
}
.page-hero-title em { font-style: italic; font-weight: 200; }
.page-hero-lead {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .here { color: var(--brand-primary); }

/* Right rail — section number / metadata in page hero */
.page-hero-meta {
  display: flex; flex-direction: column;
  gap: 18px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-primary);
  opacity: 0.85;
  padding-left: 32px;
  border-left: 1px solid var(--border);
}
.page-hero-meta .meta-row { display: flex; flex-direction: column; gap: 6px; }
.page-hero-meta .meta-label { font-size: 9px; opacity: 0.55; }
.page-hero-meta .meta-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; font-style: italic; font-weight: 300; text-transform: none; letter-spacing: -0.01em; line-height: 1; }

/* ============================================================
   BANNER BLOCK (CTA strip)
============================================================ */
.full-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 96px 0 88px;
}
.full-banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, #0b4e52 0%, #0e6065 100%);
}
.full-banner-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 120px 100%;
}
.full-banner-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.full-banner-eyebrow {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.full-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #fff;
  max-width: 760px;
  margin-bottom: 36px;
}
.full-banner-title em { font-style: italic; }
.full-banner-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px;
  transition: background 180ms, gap 220ms;
}
.full-banner-cta:hover { background: var(--surface-alt); gap: 16px; }
.full-banner-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 80px 40px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 40px;
}
.footer-brand img {
  height: 38px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.accent-word { color: var(--brand-accent); }
.footer-brand p {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 260px;
}
.footer-tagline {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  margin-top: 16px;
}
.footer-col h2 {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.78);
  transition: color 160ms;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 22px;
}
.footer-legal a,
.footer-legal button {
  border: 0; padding: 0; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.78); text-decoration: underline;
  text-underline-offset: 3px; transition: color 160ms;
}
.footer-legal a:hover,
.footer-legal button:hover { color: #fff; }
.footer-copy {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.03em;
}
.footer-iso {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
}

/* ============================================================
   SEARCH OVERLAY
============================================================ */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(11,78,82,0.45);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 128px 20px 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 220ms;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  background: #fff;
  width: min(760px, 100%);
  border-top: 3px solid var(--brand-accent);
  box-shadow: 0 22px 60px rgba(11, 78, 82, 0.18);
}
.search-input-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.search-icon {
  width: 20px; height: 20px;
  margin-left: 22px;
  stroke: var(--brand-primary);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.search-box input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--brand-primary);
  padding: 22px 16px;
  background: transparent;
}
.search-box input:focus-visible {
  outline: 2px solid var(--brand-accent-hover);
  outline-offset: -4px;
}
.search-box input::placeholder { color: var(--text-subtle); }
.search-close { background: none; border: none; cursor: pointer; padding: 20px 20px; color: var(--text-muted); }
.search-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.search-meta {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}
.search-results {
  max-height: min(500px, calc(100vh - 310px));
  overflow-y: auto;
}
.search-result {
  display: grid;
  grid-template-columns: 116px 1fr 18px;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  color: var(--brand-primary);
  text-decoration: none;
  transition: background 160ms, padding 180ms;
}
.search-result:hover,
.search-result.active {
  background: var(--surface-alt);
  padding-left: 26px;
}
.search-result-code {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-accent-hover);
}
.search-result-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.search-result-copy strong {
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-result-copy span {
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-result svg,
.search-browse svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.search-browse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms;
}
.search-browse:hover { background: var(--brand-primary-hover); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .nav-left { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .nav-logo { justify-content: flex-start; }
  .nav-right { justify-content: flex-end; }
}
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 0 20px; }
  .page-hero { padding: 140px 20px 64px; }
  footer { padding: 60px 20px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .full-banner-content { padding: 0 20px; }
  .nav-contact { display: none; }
  .nav-cta { display: none; }
  .announcement-bar-wrap { display: none; }
  .search-overlay { padding: 76px 12px 16px; }
  .search-icon { margin-left: 16px; }
  .search-box input { font-size: 16px; padding: 18px 12px; }
  .search-close { padding: 17px 16px; }
  .search-meta { padding: 12px 16px; }
  .search-results { max-height: calc(100vh - 250px); }
  .search-result { grid-template-columns: 82px 1fr 14px; gap: 10px; padding: 14px 16px; }
  .search-result:hover,
  .search-result.active { padding-left: 18px; }
  .search-result-code { font-size: 9px; }
  .search-result-copy strong { font-size: 13px; }
  .search-result-copy span { font-size: 11px; }
  .search-browse { padding: 15px 16px; }
}

/* ============================================================
   MOBILE DRAWER — full-height editorial slide-in
============================================================ */
.mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(11, 78, 82, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-standard);
  z-index: 1100;
}
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: all; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: #fff;
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 360ms var(--ease-emphasized);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 64px rgba(11, 78, 82, 0.08);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-drawer-logo img { height: 36px; display: block; }
.mobile-drawer-close {
  background: none; border: none; cursor: pointer;
  padding: 8px; margin: -8px;
  color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
}
.mobile-drawer-close svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.25; }

.mobile-drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 32px 24px 24px;
}

.mobile-drawer-eyebrow {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 18px;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.mobile-drawer-link {
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--brand-primary);
  text-decoration: none;
  transition: padding 200ms var(--ease-standard), color 160ms;
}
.mobile-drawer-link:hover,
.mobile-drawer-link:active { color: var(--brand-accent-hover); padding-left: 8px; }
.mdl-num {
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  padding-top: 6px;
  align-self: start;
}
.mdl-label {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.mdl-label em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05em;
}
.mdl-arrow {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 1.25;
  opacity: 0.45;
  transition: transform 200ms var(--ease-standard), opacity 160ms;
}
.mobile-drawer-link:hover .mdl-arrow,
.mobile-drawer-link:active .mdl-arrow { transform: translateX(4px); opacity: 1; }

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-primary);
  color: #fff;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms;
}
.mobile-drawer-cta:hover { background: var(--brand-primary-hover); }
.mobile-drawer-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.mobile-drawer-secondary {
  display: flex;
  gap: 12px;
  border: 1px solid var(--border);
}
.mobile-drawer-secondary > * {
  flex: 1;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-primary);
  padding: 16px;
  text-align: center;
  text-decoration: none;
  transition: color 160ms;
}
.mobile-drawer-secondary > * + * { border-left: 1px solid var(--border); }
.mobile-drawer-secondary > *:hover { color: var(--brand-accent-hover); }

.mobile-drawer-foot {
  border-top: 1px solid var(--border);
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.mobile-drawer-certs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-primary);
}
.mdl-rule {
  width: 14px; height: 1px;
  background: var(--brand-primary);
  opacity: 0.35;
}
.mobile-drawer-locale {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
