/* BUILD: DIGITAL-NADIA-REBUILD-V1 */
/* byNadiaBlanco Digital — rebuilt design system, mobile-first */

:root {
  --ivory: #FAF8F4;
  --stone: #EEEAE3;
  --ink: #141310;
  --soft: #5A564E;
  --faint: #8C877D;
  --line: #E4DED4;
  --clay: #9C7E63;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --pad: 1.4rem;
  --measure: 34rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.5rem, 9vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 6.5vw, 3.1rem); }
h3 { font-family: var(--sans); font-weight: 400; font-size: 1.02rem; letter-spacing: 0.01em; }
em { font-family: var(--serif); font-style: italic; }
p { font-size: 0.96rem; color: var(--soft); max-width: var(--measure); }

.kicker {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
  margin-bottom: 1.4rem;
}

/* ── Text links & affordance ── */
.tlink {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--clay), var(--clay));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
  transition: background-size 0.3s ease, color 0.25s ease;
}
.tlink::after { content: "\2192"; margin-left: 0.5em; display: inline-block; transition: transform 0.25s ease; }
.tlink:hover, .tlink:focus-visible { color: var(--clay); }
.tlink:hover::after, .tlink:focus-visible::after { transform: translateX(4px); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  transition: background 0.28s, color 0.28s;
  cursor: pointer;
}
.btn:hover, .btn:focus-visible { background: transparent; color: var(--ink); }
.btn--inverse { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--inverse:hover, .btn--inverse:focus-visible { background: transparent; color: var(--ivory); }

/* ── Layout primitives ── */
.wrap { max-width: 1080px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { padding: 4.5rem 0; }
.sec--stone { background: var(--stone); }
.sec--ink { background: var(--ink); color: var(--ivory); }
.sec--ink p { color: rgba(250,248,244,0.62); }
.sec--ink .kicker { color: rgba(250,248,244,0.35); }
.sec--hairline { border-top: 1px solid var(--line); }

/* ── Header ── */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem var(--pad);
  background: rgba(250,248,244,0.9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-logo img { height: 30px; width: auto; }
.site-links { display: none; gap: 2.2rem; }
.site-links a {
  white-space: nowrap;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--soft); transition: color 0.2s;
}
.site-links a:hover, .site-links a[aria-current="page"] { color: var(--ink); }
.site-call { display: none; }
.menu-btn {
  display: flex; flex-direction: column; gap: 5.5px;
  background: none; border: 0; padding: 10px; cursor: pointer; z-index: 220;
}
.menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.3s, background 0.3s; }
.menu-btn[aria-expanded="true"] span { background: var(--ivory); }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Desktop nav only when wide AND mouse-driven — a touch phone in
   "Request Desktop Website" mode still gets the hamburger. */
@media (min-width: 1000px) and (hover: hover) and (pointer: fine) {
  header.site { padding: 1.1rem 3rem; }
  .site-logo img { height: 34px; }
  .site-links { display: flex; }
  .site-call { display: inline-block; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--ink); border: 1px solid var(--ink);
    padding: 0.55rem 1.2rem; transition: background 0.25s, color 0.25s; }
  .site-call:hover { background: var(--ink); color: var(--ivory); }
  .menu-btn { display: none; }
}

/* ── Menu overlay ── */
.menu {
  position: fixed; inset: 0; z-index: 210;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 0 clamp(1.6rem, 8vw, 6rem);
  gap: 0.4rem;
  transform: translateY(-102%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1), visibility 0s 0.45s;
}
.menu.open { transform: translateY(0); visibility: visible; transition: transform 0.45s cubic-bezier(0.77,0,0.175,1), visibility 0s 0s; }
.menu a {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 7.5vw, 3.4rem);
  font-weight: 300;
  color: var(--ivory);
  padding: 0.35rem 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}
.menu.open a { opacity: 1; transform: none; }
.menu.open a:nth-child(1) { transition-delay: 0.10s; }
.menu.open a:nth-child(2) { transition-delay: 0.15s; }
.menu.open a:nth-child(3) { transition-delay: 0.20s; }
.menu.open a:nth-child(4) { transition-delay: 0.25s; }
.menu.open a:nth-child(5) { transition-delay: 0.30s; }
.menu.open a:nth-child(6) { transition-delay: 0.35s; }
.menu.open a:nth-child(7) { transition-delay: 0.40s; }
.menu a:hover, .menu a:focus-visible { color: var(--clay); }
.menu-note { position: absolute; bottom: 2rem; left: clamp(1.6rem, 8vw, 6rem);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,244,0.3); }
body.menu-open { overflow: hidden; }

/* ── Hero ── */
.hero { padding: 8.5rem 0 4.5rem; }
.hero h1 { max-width: 13ch; margin-bottom: 1.6rem; }
.hero p { margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; }

/* ── Statement ── */
.statement p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4.6vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 26em;
}
.statement p + p { margin-top: 1.2rem; }
.statement .small { font-family: var(--sans); font-size: 0.95rem; color: var(--soft); line-height: 1.75; }

/* ── Route cards ── */
.routes { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.route {
  background: var(--ivory);
  padding: 2.6rem var(--pad) 2.8rem;
  display: block;
  transition: background 0.3s ease;
}
.route:hover, .route:focus-visible { background: var(--stone); }
.route .kicker { margin-bottom: 1rem; }
.route h3 { font-family: var(--serif); font-size: clamp(1.6rem, 5.5vw, 2.1rem); font-weight: 400; margin-bottom: 0.7rem; }
.route p { font-size: 0.92rem; margin-bottom: 1.5rem; }
.route-price { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.6rem; }
@media (min-width: 760px) { .routes { grid-template-columns: 1fr 1fr; } .route { padding: 3.2rem 2.4rem; } }
.route-quiet { margin-top: 1.8rem; font-size: 0.9rem; color: var(--soft); }

/* ── Ladder (Presence tiers) ── */
.tier { border-bottom: 1px solid var(--line); padding: 2.2rem 0; }
.tier:first-of-type { border-top: 1px solid var(--line); }
.tier-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; }
.tier h3 { font-family: var(--serif); font-size: clamp(1.45rem, 5vw, 1.9rem); font-weight: 400; }
.tier-price { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.tier-for { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.7rem; display: block; }
.tier p { font-size: 0.92rem; margin-bottom: 1.1rem; }
.tier details { margin: 0.4rem 0 1.1rem; }
.tier summary {
  list-style: none; cursor: pointer;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); display: inline-flex; align-items: center; gap: 0.5em;
  transition: color 0.2s;
}
.tier summary::-webkit-details-marker { display: none; }
.tier summary::after { content: "+"; font-size: 1rem; transition: transform 0.25s; }
.tier details[open] summary::after { transform: rotate(45deg); }
.tier summary:hover { color: var(--ink); }
.tier details ul { list-style: none; margin-top: 1rem; }
.tier details li { font-size: 0.88rem; color: var(--soft); padding: 0.55rem 0 0.55rem 1.1rem; position: relative; border-bottom: 1px solid var(--line); }
.tier details li:last-child { border-bottom: 0; }
.tier details li::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: 3px; height: 3px; border-radius: 50%; background: var(--clay); }
.tier-entry { background: var(--stone); margin: 0 calc(-1 * var(--pad)); padding: 2.2rem var(--pad); border-top: 1px solid var(--line); }
@media (min-width: 760px) { .tier-entry { margin: 0; padding: 2.2rem 2rem; } }

/* ── Quiet service rows ── */
.svc { border-bottom: 1px solid var(--line); padding: 1.9rem 0; }
.svc:first-of-type { border-top: 1px solid var(--line); }
.svc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.4rem; }
.svc h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.svc-price { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; color: var(--ink); }
.svc p { font-size: 0.9rem; margin-bottom: 0.9rem; }
.svc-fit { font-size: 0.72rem; color: var(--faint); letter-spacing: 0.04em; margin-bottom: 1rem; }

/* ── Proof ── */
.proofs { display: grid; grid-template-columns: 1fr; gap: 2.6rem; }
@media (min-width: 760px) { .proofs { grid-template-columns: 1fr 1fr; gap: 3rem 2.4rem; } }
.proof-shot { background: var(--ink); border: 1px solid var(--line); aspect-ratio: 16/10; display: flex; align-items: flex-end; padding: 1.1rem; margin-bottom: 1.3rem; overflow: hidden; }
.proof-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.proof-shot span { font-family: var(--serif); font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(250,248,244,0.4); }
.proof-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); display: block; margin-bottom: 0.5rem; }
.proof h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 0.5rem; }
.proof p { font-size: 0.9rem; margin-bottom: 1rem; }

/* ── Process ── */
.steps { counter-reset: step; }
.step { border-top: 1px solid var(--line); padding: 1.7rem 0; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step h3 { display: flex; gap: 1rem; align-items: baseline; margin-bottom: 0.4rem; }
.step h3::before { counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 0.8rem; color: var(--clay); }
.step p { font-size: 0.9rem; }

/* ── Footer ── */
footer.site {
  background: var(--ink); color: var(--ivory);
  padding: 3.5rem var(--pad) 2rem;
}
.foot-inner { max-width: 1080px; margin: 0 auto; }
.foot-logo { height: 34px; margin-bottom: 1rem; }
.foot-tag { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,244,0.35); margin-bottom: 2.4rem; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-bottom: 2.4rem; }
.foot-nav a { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,244,0.45); transition: color 0.2s; }
.foot-nav a:hover { color: var(--ivory); }
.foot-base { display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; justify-content: space-between; border-top: 1px solid rgba(250,248,244,0.1); padding-top: 1.4rem; }
.foot-base span, .foot-base a { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,248,244,0.25); }
.foot-base a { color: rgba(250,248,244,0.6); }

/* ── Reveal system ── */
.rv { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.rv.in { opacity: 1; transform: none; }
.rv-2.in { transition-delay: 0.08s; }
.rv-3.in { transition-delay: 0.16s; }
.rv-4.in { transition-delay: 0.24s; }
/* Fast scrolling reveals content immediately — comprehension first */
html.scroll-fast .rv { transition-duration: 0.1s; transition-delay: 0s !important; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none !important; }
  .menu, .menu a, .menu-btn span, .tlink, .tlink::after { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Desktop scale-up ── */
@media (min-width: 760px) {
  :root { --pad: 3rem; }
  section { padding: 6.5rem 0; }
  .hero { padding: 11rem 0 6rem; }
}
@media (min-width: 1080px) {
  section { padding: 8rem 0; }
}


/* ── Focus ── */
.menu:focus { outline: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 1.5px solid var(--clay);
  outline-offset: 4px;
}
.menu a:focus-visible { outline-color: rgba(250,248,244,0.6); }
