/*
 * styles.css — SkyVault Climate Storage
 * "Apple Store meets private banking facility" — a lit-vitrine vault wall.
 * Navy architecture, one live-blue seam of light, warmth reserved for the objects.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #17324D;
  --color-primary-dark: #0D1F30;
  --color-primary-light: #35557A;
  --color-secondary: #6E7781;
  --color-accent: #2F80ED;
  --color-accent-ink: #1E63C4;
  --color-bg: #FFFFFF;
  --color-surface: #D8DDE3;
  --color-text: #17324D;
  --color-text-secondary: #565E68;
  --color-border: #C4CCD6;

  --font-primary: 'Gravitas One', Georgia, serif;      /* display */
  --font-secondary: 'Noto Sans', system-ui, sans-serif; /* body */
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;

  --font-size-base: 16px;
  --spacing-base: 8px;
  --motion-duration: 280ms;
  --motion-duration-slow: 520ms;
  --motion-ease: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 118px;
  --wrap: 1240px;
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base, 16px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  padding-bottom: 42px; /* required */
  padding-top: var(--nav-h);
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: var(--color-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

p { line-height: 1.65; }

::selection { background: var(--color-accent); color: #fff; }

/* Focus states — WCAG AA required */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Skip navigation link — WCAG 2.4.1 (managed by fix_ada_safe.py) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface, #ffffff);
  color: var(--color-accent, #005fcc);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-accent, #005fcc);
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Reveal-gating (visible without JS; hidden state only under html.js)
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              transform var(--motion-duration-slow) var(--motion-ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

/* Gallery-lights-warm-on-in-sequence (luminance warm-up, not translate) */
.warm { opacity: 1; filter: none; }
html.js .warm {
  opacity: 0.5;
  filter: brightness(0.5);
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              filter var(--motion-duration-slow) var(--motion-ease);
}
html.js .warm.is-in { opacity: 1; filter: brightness(1); }
html.js .warm[style*="--i"] { transition-delay: calc(90ms * var(--i, 0)); }

/* Light-catch: no hidden base state, only an accent catch on reveal */
.lightcatch { }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal, html.js .reveal.is-in { opacity: 1; transform: none; transition: none; }
  html.js .warm, html.js .warm.is-in { opacity: 1; filter: none; transition: none; }
}

/* ============================================================
   Utilities
   ============================================================ */
.wrap { max-width: var(--wrap); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 5vw, 5rem); }
.section--light { background: var(--color-bg); color: var(--color-text); }
.section--surface { background: var(--color-surface); color: var(--color-text); }
.section--navy { background: var(--color-primary); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy-dark { background: var(--color-primary-dark); color: #fff; }

.lead {
  font-family: var(--font-secondary);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 62ch;
}
.section--navy .lead, .section--navy-dark .lead { color: var(--color-surface); }

.eyebrow {
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-ink);
}
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em; padding: 0.9rem 1.7rem; text-decoration: none;
  cursor: pointer; border: 1px solid transparent;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease),
              border-color var(--motion-duration) var(--motion-ease);
}
.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary-light); }
.btn--primary:hover { background: #1d3f60; border-color: var(--color-accent); }
.btn--light { background: #fff; color: var(--color-primary); }
.btn--light:hover { background: var(--color-surface); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.95rem;
  color: var(--color-primary); text-decoration: none;
}
.arrow-link .arrow { color: var(--color-accent); transition: transform var(--motion-duration) var(--motion-ease); }
.arrow-link:hover .arrow { transform: translateX(5px); }
.arrow-link--light { color: #fff; }

/* ============================================================
   Masthead / Navigation
   ============================================================ */
.masthead {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--motion-duration) var(--motion-ease);
}
.masthead.is-condensed { box-shadow: 0 6px 24px rgba(13, 31, 48, 0.10); }

.masthead__utility {
  display: flex; justify-content: center; gap: 2rem;
  background: var(--color-surface); color: var(--color-text-secondary);
  font-family: var(--font-secondary); font-size: 0.8125rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.45rem 1rem; overflow: hidden; max-height: 3rem;
  transition: max-height var(--motion-duration) var(--motion-ease),
              opacity var(--motion-duration) var(--motion-ease),
              padding var(--motion-duration) var(--motion-ease);
}
.masthead__util-item { display: inline-flex; align-items: center; gap: 0.45rem; color: inherit; text-decoration: none; }
.masthead__util-item i { color: var(--color-accent); }
.masthead__util-item:hover { color: var(--color-primary); }

.masthead__bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
  padding: 1.15rem clamp(1.25rem, 4vw, 3rem);
  transition: padding var(--motion-duration) var(--motion-ease);
}
.masthead__menu { display: flex; gap: clamp(1.25rem, 3vw, 2.4rem); align-items: center; }
.masthead__menu--right { justify-content: flex-end; }
.masthead__menu a {
  font-family: var(--font-secondary); font-size: 0.9375rem; /* 15px floor */
  color: var(--color-text); text-decoration: none; position: relative;
  padding: 0.4rem 0; letter-spacing: 0.01em;
  transition: color var(--motion-duration) var(--motion-ease);
}
.masthead__menu a:hover { color: var(--color-accent); }
.masthead__menu a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--color-accent);
}
.masthead__logo { justify-self: center; display: block; line-height: 0; }
.masthead__logo img { height: 40px; width: auto; max-width: 180px; transition: height var(--motion-duration) var(--motion-ease); }

.masthead.is-condensed .masthead__utility { max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0; }
.masthead.is-condensed .masthead__bar { padding-top: 0.6rem; padding-bottom: 0.6rem; }
.masthead.is-condensed .masthead__logo img { height: 29px; }

.masthead__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  color: var(--color-primary); font-size: 1.6rem; padding: 0.25rem; line-height: 1;
  justify-self: end;
}
.masthead__drawer { display: none; }

@media (prefers-reduced-motion: reduce) {
  .masthead__utility, .masthead__bar, .masthead__logo img { transition: none; }
}

/* ============================================================
   Home — Hero (the Vitrine Wall)
   ============================================================ */
.hero {
  position: relative; background: var(--color-primary);
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "title title wine  auto  art   heir"
    "lead  lead  inst  arch  dial  dark";
  gap: 1px;
}
.hero__cell {
  position: relative; background: var(--color-primary); min-width: 0; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(53, 85, 122, 0.55);
}
.hero__cell::after { /* museum-glass inner highlight */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(158deg, rgba(255,255,255,0.09), rgba(255,255,255,0) 42%);
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero__cell--title { grid-area: title; display: flex; flex-direction: column; justify-content: center; padding: clamp(1.4rem, 3vw, 3rem); }
.hero__cell--lead  { grid-area: lead;  display: flex; flex-direction: column; justify-content: flex-end; gap: 1.3rem; padding: clamp(1.4rem, 3vw, 3rem); }
.hero__cell--wine { grid-area: wine; } .hero__cell--auto { grid-area: auto; }
.hero__cell--art  { grid-area: art; }  .hero__cell--heir { grid-area: heir; }
.hero__cell--inst { grid-area: inst; } .hero__cell--arch { grid-area: arch; }
.hero__cell--dial { grid-area: dial; } .hero__cell--dark { grid-area: dark; }

.hero__wordmark { font-family: var(--font-primary); color: #fff; font-size: clamp(3.25rem, 8vw, 6.5rem); line-height: 0.9; letter-spacing: -0.015em; }
.hero__tag { font-family: var(--font-secondary); color: var(--color-surface); font-size: 0.8125rem; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 1.1rem; }
.hero__lead { font-family: var(--font-secondary); color: #EAEEF3; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.55; max-width: 34ch; }

.hero__dial { position: absolute; inset: 0; display: grid; place-items: center; }
.hero__dial img { width: 58%; height: auto; opacity: 0.5; }

.hero__seam {
  position: absolute; top: 0; bottom: 0; left: 33.333%; width: 2px; z-index: 3;
  background: var(--color-accent); box-shadow: 0 0 14px rgba(47, 128, 237, 0.75); transform-origin: top;
}
html.js .hero__seam { transform: scaleY(0); animation: seam-draw 1.1s var(--motion-ease) 0.85s forwards; }
@keyframes seam-draw { to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { html.js .hero__seam { transform: none; animation: none; } }

/* ============================================================
   Home — Vault Promise
   ============================================================ */
.promise { text-align: center; padding: clamp(6rem, 15vw, 12rem) clamp(1.5rem, 5vw, 5rem); }
.promise__line { font-family: var(--font-primary); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.06; max-width: 20ch; margin-inline: auto; color: var(--color-text); }
.promise__support { margin: 1.6rem auto 0; max-width: 46ch; color: var(--color-text-secondary); font-size: 1.1rem; }

/* ============================================================
   Home — Storage Domains (four lit doors)
   ============================================================ */
.domains-intro { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.domains-intro h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.domains { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--color-primary-light); }
.domain {
  position: relative; background: var(--color-primary); display: flex; flex-direction: column;
  min-width: 0; text-decoration: none; color: #fff;
  transition: background var(--motion-duration) var(--motion-ease);
}
.domain__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.domain__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: filter var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
.domain:hover .domain__media img, .domain:focus-visible .domain__media img { filter: brightness(1.14); transform: scale(1.03); }
.domain__body { padding: clamp(1.1rem, 2vw, 1.6rem); flex: 1; display: flex; flex-direction: column; }
.domain__name { font-family: var(--font-primary); font-size: clamp(1.35rem, 2vw, 1.6rem); color: #fff; position: relative; display: inline-block; align-self: flex-start; }
.domain__name::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--color-accent); transition: width var(--motion-duration) var(--motion-ease); }
.domain:hover .domain__name::after, .domain:focus-visible .domain__name::after { width: 100%; }
.domain__plaque { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.03em; color: var(--color-surface); margin-top: 0.9rem; text-transform: uppercase; }
.domain__desc { font-family: var(--font-secondary); font-size: 0.9rem; color: #C6CFDA; margin-top: 0.7rem; line-height: 1.55; }

/* ============================================================
   Numbered process (How Entry Works / Security)
   ============================================================ */
.proc { display: grid; grid-template-columns: 45fr 55fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.proc__media { position: relative; min-height: 340px; overflow: hidden; }
.proc__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proc__body { min-width: 0; }
.proc__heading { font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: #fff; margin-bottom: 1.6rem; }
.proc__intro { color: var(--color-surface); max-width: 52ch; margin-bottom: 1rem; }
.proc__step { display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 1.75rem); align-items: baseline; padding: 1.7rem 0; border-top: 1px solid var(--color-primary-light); }
.proc__num { font-family: var(--font-primary); font-size: clamp(2.4rem, 5vw, 3.7rem); line-height: 1; color: var(--color-primary-light); transition: color var(--motion-duration-slow) var(--motion-ease); }
.proc__step.is-in .proc__num { color: var(--color-accent); }
.proc__title { font-family: var(--font-secondary); font-weight: 700; color: #fff; font-size: 1.1rem; }
.proc__desc { font-family: var(--font-secondary); color: var(--color-surface); font-size: 0.95rem; margin-top: 0.4rem; max-width: 54ch; }
.proc__foot { margin-top: 2rem; }

/* ============================================================
   Home — Rooted in the Desert (dusk establishing)
   ============================================================ */
.rooted { position: relative; min-height: 72vh; overflow: hidden; }
.rooted__img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; object-position: center 42%; will-change: transform; }
.rooted__plate {
  position: absolute; left: clamp(1.25rem, 5vw, 4rem); bottom: clamp(1.25rem, 5vw, 4rem);
  background: var(--color-surface); color: var(--color-primary);
  padding: 0.95rem 1.35rem; font-family: var(--font-secondary);
  font-size: 0.78rem; letter-spacing: 0.17em; text-transform: uppercase;
  max-width: calc(100% - 3rem);
}
.rooted__plate strong { display: block; font-weight: 700; letter-spacing: 0.13em; }

/* ============================================================
   Section divider (vault-dial watermark)
   ============================================================ */
.divider { background: var(--color-primary-dark); padding: clamp(2.5rem, 6vw, 4rem) 1.5rem; display: grid; place-items: center; }
.divider img { width: 68px; height: auto; opacity: 0.55; }

/* ============================================================
   Footer (Reserve)
   ============================================================ */
.reserve {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  background: var(--color-primary); padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}
.reserve__heading { font-family: var(--font-primary); font-size: clamp(2.5rem, 7vw, 5rem); line-height: 0.95; color: #fff; }
.reserve__lead { color: var(--color-surface); margin-top: 1.3rem; max-width: 36ch; }
.reserve__form { min-width: 0; }

.contact-form { min-width: 0; }
.contact-form .field { margin-bottom: 1.2rem; }
.contact-form label { display: block; font-family: var(--font-secondary); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-surface); margin-bottom: 0.5rem; }
.contact-form input, .contact-form textarea {
  width: 100%; background: #fff; border: 1px solid var(--color-border); color: var(--color-text);
  font-family: var(--font-secondary); font-size: 1rem; padding: 0.78rem 0.85rem;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 2px; border-color: var(--color-accent); }
.contact-form button { margin-top: 0.4rem; }
.contact-form--light label { color: var(--color-primary); }

.directory {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center; background: var(--color-primary-dark);
  border-top: 1px solid var(--color-primary-light);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 5rem);
}
.directory__logo { height: 34px; width: auto; max-width: 150px; }
.directory__office { font-style: normal; }
.directory__city { font-family: var(--font-primary); color: #fff; font-size: 1.35rem; margin-bottom: 0.55rem; }
.directory__mono { font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.8; color: var(--color-surface); font-variant-numeric: tabular-nums; }
.directory__mono a { color: var(--color-surface); text-decoration: none; }
.directory__mono a:hover { color: var(--color-accent); }
.directory__copy { font-family: var(--font-secondary); font-size: 0.75rem; color: #8FA0B3; text-align: right; align-self: end; }

/* ============================================================
   Page header (Services / generic)
   ============================================================ */
.page-head { padding: clamp(4.5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 5rem) clamp(2.5rem, 6vw, 4rem); }
.page-head__title { font-family: var(--font-primary); font-size: clamp(2.6rem, 8vw, 5.5rem); line-height: 0.98; }
.page-head__lead { margin-top: 1.5rem; }
.page-head__rule { height: 1px; background: var(--color-border); margin-top: 2.4rem; }
.page-head--navy .page-head__title { color: #fff; }

/* seam rule (security header) */
.seam-rule { width: 92px; height: 3px; background: var(--color-accent); margin-top: 1.6rem; transform-origin: left; }
html.js .seam-rule { transform: scaleX(0); }
html.js .seam-rule.is-in { transform: scaleX(1); transition: transform 0.9s var(--motion-ease); }
@media (prefers-reduced-motion: reduce) { html.js .seam-rule { transform: none; } }

/* ============================================================
   Services — Five Domain Catalogue
   ============================================================ */
.cat-entry {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--color-bg);
}
.cat-entry--alt { background: var(--color-surface); }
.cat-entry__text { min-width: 0; }
.cat-entry__index { font-family: var(--font-mono); font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--color-primary-light); letter-spacing: 0.05em; }
.cat-entry__name { font-family: var(--font-primary); font-size: clamp(2rem, 4vw, 3rem); margin: 0.4rem 0 1.6rem; line-height: 1.0; }
.cat-entry__list { list-style: none; }
.cat-entry__list li { font-family: var(--font-secondary); padding: 0.72rem 0; border-top: 1px solid var(--color-border); color: var(--color-text); display: flex; align-items: baseline; gap: 0.7rem; }
.cat-entry__list li i { color: var(--color-accent); font-size: 0.85em; transform: translateY(1px); }
.cat-entry--alt .cat-entry__list li { border-top-color: #C0C7D1; }
.cat-entry__foot { margin-top: 1.6rem; }
.cat-entry__media { min-width: 0; align-self: stretch; }
.cat-entry__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.cat-entry--reverse .cat-entry__text { order: 2; }
.cat-entry--reverse .cat-entry__media { order: 1; }

/* Concierge manifest line */
.manifest { display: flex; flex-wrap: wrap; gap: 0.6rem 0; font-family: var(--font-mono); color: var(--color-surface); font-size: 0.95rem; margin-top: 1.6rem; }
.manifest span { display: inline-flex; align-items: center; }
.manifest span:not(:last-child)::after { content: "·"; color: var(--color-primary-light); margin: 0 1rem; }
.concierge { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.concierge__media { min-width: 0; }
.concierge__media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.concierge__body { min-width: 0; }
.concierge__body h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }

/* ============================================================
   Security — Spec Plaque
   ============================================================ */
.plaque-wrap { display: grid; grid-template-columns: 12px 1fr; max-width: 780px; margin-inline: auto; }
.plaque-rail { background: var(--color-primary); position: relative; overflow: hidden; }
.plaque-rail img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.plaque { font-family: var(--font-mono); background: #fff; border: 1px solid var(--color-border); border-left: 0; }
.plaque__row { display: flex; align-items: baseline; padding: 1rem 1.4rem; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }
.plaque__row:last-child { border-bottom: 0; }
.plaque__label { color: var(--color-text-secondary); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem; }
.plaque__dots { flex: 1; border-bottom: 1px dotted var(--color-border); margin: 0 0.85rem; position: relative; top: -0.28em; }
.plaque__value { color: var(--color-primary); font-weight: 600; text-align: right; }

/* Vault-doors architectural band */
.arch-band { position: relative; height: clamp(240px, 40vh, 420px); overflow: hidden; }
.arch-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   About
   ============================================================ */
.founder { max-width: 760px; margin-inline: auto; }
.founder__body { font-family: var(--font-secondary); font-size: 1.12rem; line-height: 1.72; color: var(--color-text); }
.founder__body p { margin-bottom: 1.3rem; }
.founder__body > p:first-of-type::first-letter {
  font-family: var(--font-primary); font-size: clamp(4.6rem, 12vw, 7rem); float: left;
  line-height: 0.72; margin: 0.06em 0.14em 0 0; color: var(--color-primary);
  padding-bottom: 0.04em; border-bottom: 3px solid var(--color-accent);
}
.founder__attr { font-family: var(--font-mono); font-size: 0.82rem; color: var(--color-text-secondary); margin-top: 1.4rem; letter-spacing: 0.02em; }

.philosophy { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.philosophy__text { padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem); background: var(--color-bg); min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.philosophy__text h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1.4rem; line-height: 1.03; }
.philosophy__media { position: relative; overflow: hidden; min-height: 360px; }
.philosophy__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ============================================================
   Contact — Book a Private Tour
   ============================================================ */
.tour { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.tour__panel { background: var(--color-surface); padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem); min-width: 0; }
.tour__panel h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.4rem; }
.tour__panel .lead { margin-bottom: 2rem; }
.tour__media { position: relative; overflow: hidden; min-height: 420px; }
.tour__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.tour__plate {
  position: absolute; left: clamp(1.25rem, 4vw, 2.5rem); bottom: clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(13, 31, 48, 0.86); color: #fff; padding: 1.1rem 1.4rem;
  font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.8; backdrop-filter: blur(2px);
  max-width: calc(100% - 3rem);
}
.tour__plate a { color: var(--color-surface); text-decoration: none; }
.tour__plate a:hover { color: var(--color-accent); }
.tour__plate .lbl { color: var(--color-surface); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.68rem; display: block; margin-bottom: 0.15rem; }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: clamp(4rem, 10vw, 8rem) 1.5rem; background: var(--color-primary); color: #fff; }
.notfound__code { font-family: var(--font-primary); font-size: clamp(4rem, 16vw, 9rem); line-height: 1; color: #fff; }
.notfound__msg { color: var(--color-surface); margin: 1rem 0 2rem; max-width: 40ch; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "title title wine  auto"
      "lead  lead  art   heir"
      "inst  arch  dial  dark";
    min-height: calc(100svh - var(--nav-h));
  }
  .hero__seam { left: 50%; }
  .domains { grid-template-columns: repeat(2, 1fr); }
  .concierge { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --nav-h: 62px; }
  .masthead__utility { display: none; }
  .masthead__menu { display: none; }
  .masthead__toggle { display: inline-flex; align-items: center; }
  .masthead__bar { grid-template-columns: 1fr auto 1fr; padding: 0.7rem clamp(1rem, 4vw, 2rem); }
  .masthead__logo { grid-column: 2; }
  .masthead__toggle { grid-column: 3; }
  .masthead__logo img, .masthead.is-condensed .masthead__logo img { height: 32px; }
  .masthead.is-condensed .masthead__bar { padding-top: 0.6rem; padding-bottom: 0.6rem; }

  .masthead__drawer[data-open] { display: block; }
  .masthead__drawer {
    border-top: 1px solid var(--color-border); background: var(--color-bg);
    padding: 0.5rem clamp(1rem, 4vw, 2rem) 1.25rem;
  }
  .masthead__drawer a { display: block; font-family: var(--font-secondary); font-size: 1.05rem; color: var(--color-text); text-decoration: none; padding: 0.85rem 0; border-bottom: 1px solid var(--color-border); }
  .masthead__drawer a[aria-current="page"] { color: var(--color-accent); }
  .masthead__drawer-util { margin-top: 1rem; font-family: var(--font-mono); font-size: 0.85rem; color: var(--color-text-secondary); line-height: 1.8; }
  .masthead__drawer-util a { border: 0; padding: 0; display: inline; color: var(--color-primary); }
}

@media (max-width: 720px) {
  .proc { grid-template-columns: 1fr; }
  .proc__media { min-height: 240px; order: -1; }
  .cat-entry { grid-template-columns: 1fr; }
  .cat-entry--reverse .cat-entry__text, .cat-entry--reverse .cat-entry__media { order: 0; }
  .cat-entry__media { order: -1; }
  .cat-entry__media img { min-height: 240px; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy__media { min-height: 260px; order: -1; }
  .tour { grid-template-columns: 1fr; }
  .tour__media { min-height: 300px; order: -1; }
  .reserve { grid-template-columns: 1fr; }
  .directory { grid-template-columns: 1fr; text-align: left; }
  .directory__copy { text-align: left; }
  .concierge__media { order: -1; }
}

@media (max-width: 560px) {
  .hero {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "title title"
      "lead  lead"
      "wine  auto"
      "art   heir"
      "inst  arch"
      "dial  dark";
  }
  .hero__seam { left: 50%; }
  .hero__cell--wine, .hero__cell--auto, .hero__cell--art, .hero__cell--heir,
  .hero__cell--inst, .hero__cell--arch, .hero__cell--dial, .hero__cell--dark { aspect-ratio: 4 / 3; }
  .domains { grid-template-columns: 1fr; }
  .domain__media { aspect-ratio: 16 / 10; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* latin */
@font-face {
  font-family: 'Gravitas One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/5h1diZ4hJ3cblKy3LWakKQmqCm5MjXPjbA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aPdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5ardu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* devanagari */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a_du3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* greek-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aLdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a3du3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aHdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aDdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7du3mhPy0.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aPdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5ardu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* devanagari */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a_du3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* greek-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aLdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a3du3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aHdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aDdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7du3mhPy0.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aPdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5ardu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* devanagari */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a_du3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* greek-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aLdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a3du3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aHdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aDdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7du3mhPy0.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aPdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5ardu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* devanagari */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a_du3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* greek-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aLdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a3du3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aHdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aDdu3mhPy1Fig.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7du3mhPy0.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
