@font-face { font-family:'Manrope'; font-style:normal; font-weight:500; font-display:swap; src:url('assets/manrope-500.woff2') format('woff2'); }
@font-face { font-family:'Manrope'; font-style:normal; font-weight:700; font-display:swap; src:url('assets/manrope-700.woff2') format('woff2'); }
@font-face { font-family:'Manrope'; font-style:normal; font-weight:800; font-display:swap; src:url('assets/manrope-800.woff2') format('woff2'); }
@font-face { font-family:'Cinzel'; font-style:normal; font-weight:700; font-display:swap; src:url('assets/cinzel-700.woff') format('woff'); }
@font-face { font-family:'Cinzel'; font-style:normal; font-weight:500; font-display:swap; src:url('assets/cinzel-500.woff') format('woff'); }
@font-face { font-family:'Cinzel'; font-style:normal; font-weight:400; font-display:swap; src:url('assets/cinzel-400.woff') format('woff'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:400; font-display:swap; src:url('assets/cormorant-400.woff') format('woff'); }
@font-face { font-family:'Cormorant Garamond'; font-style:italic; font-weight:400; font-display:swap; src:url('assets/cormorant-400i.woff') format('woff'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:500; font-display:swap; src:url('assets/cormorant-500.woff') format('woff'); }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:600; font-display:swap; src:url('assets/cormorant-600.woff') format('woff'); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* native cross-fade between pages, progressively enhanced, no-op where unsupported */
@view-transition { navigation: auto; }

:root {
  /* the actual brand palette: gold, white, silver, black — nothing else */
  --paper: #ffffff;
  --paper-2: #f4f4f6;
  --paper-3: #e9e9ed;
  --ink: #101012;
  --gold: #9c7527;
  --gold-bright: #c2933a;
  --gold-dim: rgba(156,117,39,0.38);
  --gold-dim-soft: rgba(156,117,39,0.18);
  --silver: #9a9da5;
  --silver-bright: #c7cad1;
  --silver-dim: rgba(154,157,165,0.35);
  --silver-soft: rgba(154,157,165,0.14);
  --stone: #5c5e64;
  --stone-dim: #86888e;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pentelic-marble veining — real quarried stone, not a flat color field. Thin, irregular, diagonal — the actual material Greek temples were cut from. */
body {
  background:
    linear-gradient(106deg, transparent 31%, rgba(154,157,165,0.05) 31.4%, rgba(154,157,165,0.09) 31.7%, rgba(154,157,165,0.02) 32.2%, transparent 33%),
    linear-gradient(71deg, transparent 58%, rgba(156,117,39,0.04) 58.5%, transparent 59.5%),
    linear-gradient(123deg, transparent 17%, rgba(154,157,165,0.06) 17.5%, rgba(154,157,165,0.02) 18.4%, transparent 19%),
    linear-gradient(96deg, transparent 77%, rgba(156,117,39,0.03) 77.6%, rgba(154,157,165,0.05) 78.3%, transparent 79%),
    linear-gradient(65deg, transparent 8%, rgba(154,157,165,0.04) 8.6%, transparent 9.4%),
    var(--paper);
  background-attachment: fixed;
  color: var(--stone);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 700px) { body { background-attachment: scroll; } }

/* a slow patch of light drifting across the marble — the way sun moves across a stone floor over hours, compressed and barely perceptible */
body::before {
  content: "";
  position: fixed; inset: -15%; z-index: 299; pointer-events: none;
  background: radial-gradient(ellipse 45% 32% at 30% 25%, rgba(255,255,255,0.55), transparent 62%);
  opacity: 0.35; mix-blend-mode: soft-light;
  animation: marbleLight 46s ease-in-out infinite alternate;
}
@keyframes marbleLight { from { transform: translate(-8%, -5%); } to { transform: translate(16%, 12%); } }
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

/* subtle paper grain, sits over everything, never blocks interaction */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 300; pointer-events: none;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.serif-i { font-family: 'Cormorant Garamond', serif; font-style: italic; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 1px; }

::selection { background: var(--gold); color: var(--paper); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border: 2px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 6vw; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--gold); }

h1, h2, h3 { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink); text-wrap: balance; }
h2 { font-size: clamp(30px, 3.6vw, 42px); }
h3 { font-size: clamp(19px, 2vw, 23px); font-weight: 500; letter-spacing: 0.02em; }

/* ---------- greek key divider, real meander motif ---------- */
.key-divider { display: flex; align-items: center; justify-content: center; gap: 18px; color: var(--gold); opacity: 0.85; }
.key-divider .ln { width: clamp(40px, 8vw, 90px); height: 1px; background: var(--gold-dim); }
.key-divider svg { width: 92px; height: 12px; flex-shrink: 0; }
.section-divider { padding: 46px 6vw; }

/* ---------- buttons ---------- */
.btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); border-bottom: 1px solid var(--gold-dim);
  padding: 4px 0 6px; transition: border-color 200ms ease, color 200ms ease, letter-spacing 200ms ease;
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); letter-spacing: 0.07em; }
@media (prefers-reduced-motion: reduce) { .btn-line:hover { letter-spacing: 0.04em; } }

.btn-solid {
  position: relative; overflow: hidden;
  display: inline-block; background-color: var(--gold); color: var(--paper);
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  padding: 16px 34px; border-radius: 7px; border: 2px solid var(--gold);
  box-shadow: 0 8px 20px -8px rgba(156,117,39,0.5);
  transition: background-color 260ms var(--ease), color 260ms var(--ease), box-shadow 260ms var(--ease), transform 380ms var(--ease);
  transform: translate(var(--mx, 0px), var(--my, 0px)) scale(1);
}
/* gold-leaf sheen — a fixed diagonal highlight, not a flat fill; real gilding catches light unevenly */
.btn-solid::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0) 15%, rgba(255,255,255,0.32) 42%, rgba(255,255,255,0) 62%);
}
.btn-solid:hover { background-color: var(--ink); border-color: var(--ink); box-shadow: 0 10px 26px -8px rgba(16,16,18,0.4); transform: translate(var(--mx, 0px), var(--my, 0px)) scale(1.02); }

.btn-frame {
  display: inline-block; border: 2px solid var(--ink); color: var(--ink);
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  padding: 14px 26px; border-radius: 7px;
  transition: background-color 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease), transform 380ms var(--ease);
  transform: translate(var(--mx, 0px), var(--my, 0px)) scale(1);
}
.btn-frame:hover { background: var(--ink); color: var(--paper); transform: translate(var(--mx, 0px), var(--my, 0px)) scale(1.02); }
@media (prefers-reduced-motion: reduce) { .btn-solid, .btn-frame { transform: none !important; } }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 6vw;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim-soft);
  transition: padding 300ms ease, background-color 300ms ease;
  view-transition-name: site-header;
}
header.is-scrolled { padding-top: 15px; padding-bottom: 15px; background: rgba(255,255,255,0.97); box-shadow: 0 30px 60px -34px rgba(16,16,18,0.18); }
.brand { display: flex; align-items: center; gap: 14px; position: relative; }
.brand-word { display: flex; flex-direction: column; line-height: 1.1; }
.brand-word b { font-family: 'Cinzel', serif; font-weight: 700; font-size: 19px; letter-spacing: 0.04em; color: var(--ink); }
.brand-word span { font-family: 'Cinzel', serif; font-weight: 500; font-size: 8.5px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-top: 3px; }
.brand:hover .mark { border-color: var(--gold-bright); }

/* ---------- monogram mark: a column reduced to its essence — thick capital/base, thin fluted shaft ---------- */
.mark {
  --mark-size: 34px;
  width: var(--mark-size); height: var(--mark-size);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: calc(var(--mark-size) * 0.44);
  color: var(--gold);
  border-left: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  border-top: calc(var(--mark-size) * 0.13) solid var(--gold);
  border-bottom: calc(var(--mark-size) * 0.13) solid var(--gold);
  transition: box-shadow 260ms ease, border-color 260ms ease;
}
.mark::before {
  content: ""; position: absolute; left: 25%; right: 25%; top: 16%; bottom: 16%;
  border-left: 1px solid var(--gold-dim-soft); border-right: 1px solid var(--gold-dim-soft);
  pointer-events: none;
}
.mark-lg { --mark-size: 40px; margin-bottom: 14px; opacity: 0.92; }

/* ---------- meander band: structural framing, not a hairline — a real register border like on the pot itself ---------- */
.meander-strip {
  height: 16px;
  background-color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='20' viewBox='0 0 40 20'%3E%3Cpath d='M0 10 H10 V0 H20 V10 H30 V20 H40' fill='none' stroke='%239c7527' stroke-width='3.2'/%3E%3C/svg%3E");
  background-repeat: repeat-x; background-position: center; background-size: auto 16px;
}

nav { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-link { display: inline-block; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.01em; color: var(--stone); position: relative; padding-bottom: 4px; transition: color 300ms var(--ease), transform 300ms var(--ease); }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right 360ms var(--ease); }
.nav-link:hover, .nav-link.is-active { color: var(--gold); transform: translateY(-1px); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
@media (prefers-reduced-motion: reduce) { .nav-link:hover { transform: none; } }
.nav-cta-mobile { display: none; }
.nav-phone-mobile { display: none; }
.nav-toggle { display: none; }

/* ---------- hero: asymmetric two-register split, flat silhouette instead of a soft gradient glow ---------- */
.hero { position: relative; border-bottom: none; overflow: hidden; }
.hero-split { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: stretch; min-height: 620px; }

/* layered overlap: a physical card straddling the seam between the two panels — real asymmetric depth, not just a 2-column split */
.hero-badge {
  position: absolute; z-index: 3; left: calc(53% - 26px); bottom: 64px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid rgba(16,16,18,0.1); border-radius: 8px;
  padding: 15px 20px; box-shadow: 0 26px 50px -18px rgba(16,16,18,0.28);
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px; color: var(--ink);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}
.hero-badge:hover { transform: translateY(-2px) scale(1.015); border-color: var(--gold-bright); box-shadow: 0 32px 60px -18px rgba(16,16,18,0.32); }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .hero-badge:hover { transform: none; } }
@media (max-width: 860px) { .hero-badge { display: none; } }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px 5vw 70px 6vw; text-align: left; }
.hero-copy .eyebrow { justify-content: flex-start; }
.hero .mark { margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 72px); font-weight: 800; line-height: 1.02; letter-spacing: -0.025em; margin-top: 16px; }
.hero .tagline { margin-top: 20px; font-size: clamp(17px, 1.6vw, 19px); color: var(--stone); max-width: 46ch; }
.hero-ctas { margin-top: 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink);
}
.hero-phone svg { color: var(--gold); }
.hero-phone:hover { color: var(--gold); }

/* the figure block: a metallic gold/silver/black mesh gradient — the actual brand palette, no purple-blue default, no flat block */
.hero-figure { position: relative; background: var(--paper-2); overflow: hidden; }
.hero-figure::before {
  content: ""; position: absolute; inset: -25%;
  background:
    radial-gradient(circle at 22% 28%, var(--gold-bright) 0%, transparent 42%),
    radial-gradient(circle at 78% 18%, var(--silver-bright) 0%, transparent 40%),
    radial-gradient(circle at 60% 78%, var(--ink) 0%, transparent 48%),
    radial-gradient(circle at 88% 88%, var(--silver) 0%, transparent 38%),
    radial-gradient(circle at 15% 85%, var(--gold) 0%, transparent 36%);
  filter: blur(70px);
  animation: meshDrift 16s ease-in-out infinite alternate;
}
.hero-figure::after {
  content: ""; position: absolute; inset: -8%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay; pointer-events: none;
  transform: translate(var(--px, 0px), var(--py, 0px));
  transition: transform 250ms ease-out;
}
@keyframes meshDrift { from { transform: translate(0, 0) scale(1); } to { transform: translate(-3%, 2%) scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .hero-figure::before { animation: none; } }
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 64px 6vw 48px; text-align: center; align-items: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero .tagline { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-figure { min-height: 260px; }
}

/* ---------- section shell ---------- */
section.block { padding: 110px 6vw; border-bottom: 1px solid var(--gold-dim-soft); position: relative; }
section.block:last-of-type { border-bottom: none; }
.block-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.block-head .eyebrow { justify-content: center; }
.block-head h2 { margin-top: 16px; }
.block-head p { margin-top: 16px; font-style: italic; font-size: 19px; color: var(--stone); }

/* ---------- services: clean minimal cards ---------- */
.services-grid-simple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
.service-card-simple {
  position: relative;
  padding: 32px 28px 28px; text-align: left;
  background: var(--paper-2); border: 1px solid rgba(16,16,18,0.1); border-radius: 8px;
  box-shadow: 0 2px 8px rgba(16,16,18,0.04);
  transition: background-color 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease), transform 320ms var(--ease);
}
.service-icon { width: 34px; height: 34px; margin-bottom: 18px; color: var(--gold); transition: color 320ms var(--ease); }
.service-card-simple:hover { background: var(--ink); border-color: var(--gold-bright); box-shadow: 0 16px 32px -12px rgba(16,16,18,0.35); transform: translateY(-3px) scale(1.01); }
.service-card-simple:hover h3, .service-card-simple:hover p { color: var(--paper); }
.service-card-simple:hover .service-icon { color: var(--gold-bright); }
@media (prefers-reduced-motion: reduce) { .service-card-simple { transition: none; transform: none !important; } }
.service-card-simple h3 { color: var(--ink); transition: color 220ms ease; }
.service-card-simple p { margin-top: 10px; font-size: 17px; color: var(--stone); transition: color 220ms ease; }
@media (max-width: 760px) { .services-grid-simple { grid-template-columns: 1fr; } }

/* ---------- services, editorial list (used on /services) ---------- */
.services-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--gold-dim-soft); }
.service-row {
  display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 28px;
  padding: 36px 6px; border-bottom: 1px solid var(--gold-dim-soft);
  transition: padding-left 320ms cubic-bezier(.22,.61,.36,1);
}
.service-row:hover { padding-left: 18px; }
.service-row .n { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; color: var(--gold); letter-spacing: 0.08em; }
.service-row .t h3 { color: var(--ink); }
.service-row .t p { margin-top: 8px; font-size: 17px; color: var(--stone); max-width: 46ch; }
.service-row .arrow { color: var(--gold); opacity: 0.55; font-size: 20px; transition: opacity 320ms ease, transform 320ms ease; }
.service-row:hover .arrow { opacity: 1; transform: translateX(6px); }
@media (max-width: 640px) {
  .service-row { grid-template-columns: 40px 1fr; }
  .service-row .arrow { display: none; }
}

/* ---------- pending-content notice (internal, remove once real copy lands) ---------- */
.tbd {
  margin-top: 22px; padding: 15px 20px;
  border: 1px dashed var(--gold-dim);
  font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--stone-dim); text-align: center;
}

/* ---------- about / split ---------- */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 7vw; align-items: start; max-width: 1080px; margin: 0 auto; }
/* sticky: the media panel pins while copy scrolls past it — a real layered-depth scroll, not just a static side-by-side split */
.split-media {
  position: sticky; top: 110px;
  aspect-ratio: 4/5; border: 1px solid rgba(16,16,18,0.1); border-radius: 8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2);
  box-shadow: 0 24px 48px -24px rgba(16,16,18,0.18);
  transition: box-shadow 300ms var(--ease), transform 400ms var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.split-media::before {
  content: ""; position: absolute; width: 220px; height: 220px; right: -80px; top: -80px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--silver-bright) 0%, transparent 60%),
    radial-gradient(circle at 65% 65%, var(--gold-bright) 0%, transparent 60%);
  filter: blur(30px); opacity: 0.55; pointer-events: none; z-index: 0;
}
.split-media:hover { box-shadow: 0 32px 64px -24px rgba(156,117,39,0.28); }
@media (prefers-reduced-motion: reduce) { .split-media { transform: none !important; } }
@media (max-width: 860px) { .split-media { position: static; } }
.split-copy p { margin-top: 18px; font-size: 19px; color: var(--stone); }
.split-copy p:first-of-type { margin-top: 0; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- seal (typographic mark, used inside split-media panels) ---------- */
.seal { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; padding: 12%; }
.seal-logo { position: relative; z-index: 1; width: 62%; }
.seal-word { display: flex; flex-direction: column; line-height: 1.05; }
.seal-word b { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: clamp(21px, 2.6vw, 28px); letter-spacing: 0.06em; color: var(--ink); }
.seal-word span { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 10.5px; letter-spacing: 0.5em; color: var(--gold); text-transform: uppercase; margin-top: 7px; }
.seal-rule { width: 60px; height: 1px; background: var(--gold-dim); }
.seal-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; color: var(--stone); line-height: 1.5; }
.seal-lic { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-dim); }

/* ---------- trust bar: a flat register band, not a soft neutral shelf ---------- */
/* Nero Marquina — black marble, quarried and prized since antiquity, veined not flat */
.trust-bar {
  padding: 20px 6vw;
  background:
    linear-gradient(112deg, transparent 24%, rgba(255,255,255,0.05) 24.5%, rgba(255,255,255,0.015) 25.4%, transparent 26%),
    linear-gradient(76deg, transparent 66%, rgba(194,147,58,0.06) 66.6%, transparent 67.8%),
    linear-gradient(130deg, transparent 84%, rgba(255,255,255,0.04) 84.6%, transparent 85.6%),
    var(--ink);
}
.trust-bar-row { display: flex; justify-content: center; align-items: center; gap: 34px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; color: var(--paper);
}
.trust-item svg { color: var(--gold-bright); flex-shrink: 0; }
@media (max-width: 700px) { .trust-bar-row { gap: 16px 26px; justify-content: flex-start; } }

/* ---------- CTA band: one deliberate full-bleed dark beat against an otherwise-cream page ---------- */
.cta-band {
  position: relative; overflow: hidden;
  padding: 110px 6vw;
  background:
    linear-gradient(108deg, transparent 20%, rgba(255,255,255,0.045) 20.5%, rgba(255,255,255,0.012) 21.4%, transparent 22%),
    linear-gradient(74deg, transparent 55%, rgba(194,147,58,0.05) 55.6%, transparent 57%),
    linear-gradient(126deg, transparent 78%, rgba(255,255,255,0.035) 78.6%, transparent 79.6%),
    var(--ink);
}
.cta-band::before {
  content: ""; position: absolute; width: 480px; height: 480px; right: -160px; top: -180px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--silver-bright) 0%, transparent 55%),
    radial-gradient(circle at 65% 60%, var(--gold) 0%, transparent 55%);
  filter: blur(70px); opacity: 0.85; pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band .eyebrow { color: var(--gold-bright); }
.cta-band .eyebrow::before { background: var(--gold-bright); }
.cta-band h2 { color: var(--paper); font-size: clamp(32px, 4.4vw, 50px); }
.cta-band-copy p { color: rgba(255,255,255,0.66); }
.cta-band-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-band-actions .btn-frame { border-color: var(--gold-bright); color: var(--paper); }
.cta-band-actions .btn-frame:hover { background: var(--gold-bright); color: var(--ink); }
.cta-band-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 18px;
}
.cta-band-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright);
  animation: livePulse 2000ms ease-in-out infinite;
}
@keyframes livePulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(194,147,58,0.5); } 50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(194,147,58,0); } }
@media (prefers-reduced-motion: reduce) { .cta-band-live::before { animation: none; } }
@media (max-width: 700px) { .cta-band-inner { text-align: center; justify-content: center; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; max-width: 1080px; margin: 0 auto; }
.contact-info h3 { margin-bottom: 14px; }
.contact-info p { font-size: 18px; color: var(--stone); margin-top: 10px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: 'Manrope', sans-serif; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.field input, .field textarea, .field select {
  background: var(--paper-2); border: 1px solid rgba(16,16,18,0.14); border-radius: 7px; color: var(--ink);
  font-family: 'Manrope', sans-serif; font-size: 16px; padding: 14px 15px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim-soft); }
.field textarea { resize: vertical; min-height: 110px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- name plaque: an inscribed cornerstone, not a decoration — the real etymology, carved not painted ---------- */
.plaque {
  position: relative; max-width: 640px; margin: 0 auto; padding: 64px 48px; text-align: center;
  border: 1px solid rgba(16,16,18,0.12); border-radius: 4px;
  background:
    linear-gradient(115deg, transparent 30%, rgba(154,157,165,0.07) 31%, rgba(154,157,165,0.02) 32%, transparent 33%),
    linear-gradient(80deg, transparent 61%, rgba(156,117,39,0.05) 61.6%, transparent 63%),
    var(--paper-2);
}
.plaque::before, .plaque::after { content: ""; position: absolute; width: 28px; height: 28px; border: 2px solid var(--gold); }
.plaque::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.plaque::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.plaque-eyebrow { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.plaque-greek { margin-top: 24px; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: clamp(32px, 4.6vw, 46px); letter-spacing: 0.13em; color: var(--ink); }
.plaque-en { margin-top: 8px; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.5em; color: var(--stone-dim); text-transform: uppercase; }
.plaque-rule { width: 48px; height: 2px; background: var(--gold); margin: 28px auto; }
.plaque-body { font-size: 17px; line-height: 1.7; color: var(--stone); max-width: 46ch; margin: 0 auto; }

/* ---------- footer ---------- */
footer { padding: 64px 6vw 32px; }
.foot-top { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--gold-dim-soft); }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand .mark { --mark-size: 30px; }
.foot-brand b { font-family: 'Cinzel', serif; font-weight: 700; font-size: 17px; color: var(--ink); display: block; }
.foot-brand span { font-family: 'Cinzel', serif; font-weight: 500; font-size: 8px; letter-spacing: 0.36em; color: var(--gold); }
.foot-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col { display: flex; flex-direction: column; gap: 11px; }
.foot-head { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-dim); margin-bottom: 4px; }
.foot-col a { font-size: 15px; color: var(--stone); transition: color 180ms ease; }
.foot-col a:hover { color: var(--gold); }
.foot-bar { max-width: 1160px; margin: 26px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--stone-dim); }
.foot-copy { display: inline-flex; align-items: center; gap: 8px; }
.column-glyph { color: var(--gold); opacity: 0.85; flex-shrink: 0; }

/* ---------- secondary-page hero ---------- */
.page-hero { position: relative; padding: 150px 6vw 70px; border-bottom: 1px solid rgba(16,16,18,0.08); text-align: center; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; width: 420px; height: 420px; left: -160px; top: -160px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--silver-bright) 0%, transparent 55%),
    radial-gradient(circle at 70% 65%, var(--gold-bright) 0%, transparent 55%);
  filter: blur(70px); opacity: 0.4; pointer-events: none;
}
.page-hero h1 { margin-top: 18px; font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.01em; max-width: 850px; margin-left: auto; margin-right: auto; }
.page-hero p { margin-top: 18px; font-style: italic; color: var(--stone); max-width: 56ch; margin-left: auto; margin-right: auto; }
.hero-glow { display: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 900ms cubic-bezier(.22,.61,.36,1), transform 900ms cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal.d1.is-in { transition-delay: 90ms; }
.reveal.d2.is-in { transition-delay: 180ms; }
.reveal.d3.is-in { transition-delay: 270ms; }
.reveal.d4.is-in { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- staggered groups (grids/lists whose children cascade in) ---------- */
.stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.22,.61,.36,1), transform 700ms cubic-bezier(.22,.61,.36,1);
}
.stagger.is-in > * { opacity: 1; transform: translateY(0); }
.stagger.is-in > *:nth-child(1), .stagger.is-in > *:nth-child(1) .draw-path { transition-delay: 0ms; }
.stagger.is-in > *:nth-child(2), .stagger.is-in > *:nth-child(2) .draw-path { transition-delay: 90ms; }
.stagger.is-in > *:nth-child(3), .stagger.is-in > *:nth-child(3) .draw-path { transition-delay: 180ms; }
.stagger.is-in > *:nth-child(4), .stagger.is-in > *:nth-child(4) .draw-path { transition-delay: 270ms; }
.stagger.is-in > *:nth-child(5), .stagger.is-in > *:nth-child(5) .draw-path { transition-delay: 360ms; }
.stagger.is-in > *:nth-child(6), .stagger.is-in > *:nth-child(6) .draw-path { transition-delay: 450ms; }
@media (prefers-reduced-motion: reduce) { .stagger > * { opacity: 1; transform: none; transition: none; } }

/* ---------- word-split heading reveal (built by script.js, degrades to plain text) ---------- */
[data-split] .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.1em; margin-bottom: -0.1em; }
[data-split] .word-in {
  display: inline-block; transform: translateY(115%);
  transition: transform 720ms cubic-bezier(.16,.84,.2,1);
}
[data-split].is-in .word-in { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-split] .word-in { transform: none; transition: none; } }

/* ---------- checkmark / line draw-in, paired with .stagger or .reveal ---------- */
.draw-path { stroke-dasharray: 26; stroke-dashoffset: 26; transition: stroke-dashoffset 550ms ease; }
.stagger.is-in .draw-path, .reveal.is-in .draw-path { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) { .draw-path { stroke-dashoffset: 0; } }

/* eyebrow's leading dash draws in alongside its own reveal */
.js .eyebrow::before { width: 0; transition: width 500ms cubic-bezier(.22,.61,.36,1) 140ms; }
.js .eyebrow.is-in::before, .js .stagger.is-in .eyebrow::before { width: 18px; }
@media (prefers-reduced-motion: reduce) { .js .eyebrow::before { width: 18px; transition: none; } }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 250; pointer-events: none;
}

/* ---------- scroll cue (hero only) ---------- */
.scroll-cue {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  width: 22px; height: 34px; border: 1.5px solid var(--gold-dim); border-radius: 12px;
  opacity: 0; animation: cueFadeIn 600ms ease forwards; animation-delay: 1000ms;
  transition: opacity 400ms ease;
}
.scroll-cue::before {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px;
  background: var(--gold); border-radius: 2px; animation: cueDrop 1900ms ease-in-out infinite;
}
.hero.is-scrolled-past .scroll-cue { opacity: 0 !important; animation-play-state: paused; }
@keyframes cueFadeIn { to { opacity: 0.8; } }
@keyframes cueDrop { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue { display: none; } }

/* ---------- no-js safety net: never leave content invisible if script.js fails ---------- */
html:not(.js) .reveal,
html:not(.js) .stagger > *,
html:not(.js) [data-split] .word-in,
html:not(.js) .draw-path { opacity: 1 !important; transform: none !important; stroke-dashoffset: 0 !important; }
html:not(.js) .js\:hide { display: none !important; }

/* ---------- oracle ---------- */
.oracle-stage { max-width: 640px; margin: 0 auto; text-align: center; }
.oracle-progress { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; }
.oracle-progress .dot { width: 7px; height: 7px; border: 1px solid var(--gold-dim); transform: rotate(45deg); transition: background 260ms ease, border-color 260ms ease; }
.oracle-progress .dot.is-done { background: var(--gold); border-color: var(--gold); }
.oracle-progress .dot.is-active { border-color: var(--gold); }

.oracle-card { display: none; }
.oracle-card.is-active { display: block; animation: oraclein 520ms cubic-bezier(.22,.61,.36,1); }
@keyframes oraclein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .oracle-card.is-active { animation: none; } }
.oracle-q { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: clamp(22px, 3vw, 30px); color: var(--ink); margin-top: 18px; text-wrap: balance; }
.oracle-choices { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; max-width: 460px; margin-left: auto; margin-right: auto; }
.oracle-choice {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: var(--paper-2); border: 1px solid rgba(16,16,18,0.12); border-radius: 7px; color: var(--ink);
  font-family: 'Manrope', sans-serif; font-size: 17px; padding: 16px 22px;
  box-shadow: 0 2px 8px rgba(16,16,18,0.04);
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.oracle-choice:hover { border-color: var(--gold); background-color: var(--ink); color: var(--paper); transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) { .oracle-choice:hover { transform: none; } }

.oracle-verdict-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: clamp(24px,3.2vw,32px); color: var(--gold); }
.oracle-verdict-body { margin-top: 20px; font-style: italic; font-size: 20px; line-height: 1.7; color: var(--stone); max-width: 52ch; margin-left: auto; margin-right: auto; }
.oracle-verdict-cta { margin-top: 38px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.oracle-restart { margin-top: 26px; }
.oracle-restart button { background: none; border: none; cursor: pointer; }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gold-dim-soft); border: 1px solid var(--gold-dim-soft); max-width: 1000px; margin: 0 auto; }
.blog-card { background: var(--paper); padding: 40px; display: flex; flex-direction: column; position: relative; transition: background-color 260ms ease; overflow: hidden; }
.blog-card::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--silver);
  transform: scaleY(0); transform-origin: top; transition: transform 360ms cubic-bezier(.22,.61,.36,1);
}
.blog-card:hover { background: var(--paper-2); }
.blog-card:hover::before { transform: scaleY(1); }
@media (prefers-reduced-motion: reduce) { .blog-card::before { transition: none; } }
.blog-card .eyebrow { font-size: 10.5px; }
.blog-card h3 { margin-top: 14px; font-size: clamp(19px,2.2vw,24px); }
.blog-card p { margin-top: 12px; font-size: 17px; color: var(--stone); flex: 1; }
.blog-card .btn-line { margin-top: 22px; align-self: flex-start; }
@media (max-width: 760px) { .blog-grid { grid-template-columns: 1fr; } }

.post-body { max-width: 680px; margin: 0 auto; text-align: left; }
.post-body p { margin-top: 20px; font-size: 19px; color: var(--stone); }
.post-body h2 { margin-top: 50px; font-size: clamp(24px,2.8vw,32px); }
.post-meta { font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-dim); margin-top: 16px; }

/* ---------- mobile nav ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); height: 100vh;
    background: var(--paper-2); border-left: 1px solid var(--gold-dim);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 30px;
    padding: 40px; transform: translateX(100%); transition: transform 340ms ease; z-index: 70;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-phone-mobile {
    display: inline-flex; align-items: center; gap: 9px; margin-top: 6px;
    font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink);
  }
  .nav-phone-mobile svg { color: var(--gold); flex-shrink: 0; }
  .nav-cta-mobile { display: inline-block; margin-top: 10px; }
  nav > a.nav-link, nav > a.btn-frame { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: stretch;
    gap: 5px; width: 24px; height: 20px; z-index: 80; flex-shrink: 0;
    background: none; border: none; cursor: pointer; padding: 0;
  }
  .nav-toggle span { width: 100%; height: 1.5px; background: var(--gold); transform-origin: center; transition: transform 260ms cubic-bezier(.22,.61,.36,1), opacity 200ms ease; }
  .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); }
  @media (prefers-reduced-motion: reduce) { .nav-toggle span { transition: opacity 200ms ease; } }
  .nav-scrim { position: fixed; inset: 0; background: rgba(16,16,18,0.45); opacity: 0; pointer-events: none; transition: opacity 260ms ease; z-index: 65; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}
