/* ============================================================
   LUX VIDIGAL — styles.css
   Design tokens + components. Single source of truth.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Color */
  --c-ink: #0f0f0e;
  --c-cream: #f5efe4;
  --c-sand: #e8dcc4;
  --c-fog: #8a8479;
  --c-terracotta: #d4502a;
  --c-ember: #e87a3e;
  --c-ocean: #0d3b47;
  --c-ocean-deep: #072831;
  --c-lime: #d4e04a;
  --c-pink: #f2648c;

  /* Type */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-ui: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --f-hand: "Caveat", "Comic Sans MS", cursive;

  --size-mono: clamp(0.75rem, 0.68rem + 0.3vw, 0.85rem);
  --size-body: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --size-lede: clamp(1.25rem, 1.1rem + 0.75vw, 1.65rem);
  --size-h3: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --size-h2: clamp(2rem, 1.4rem + 3vw, 3.75rem);
  --size-h1: clamp(3rem, 1.6rem + 7vw, 7rem);
  --size-mega: clamp(4rem, 2rem + 12vw, 12rem);

  /* Space */
  --space-section: clamp(5rem, 10vw, 12rem);
  --space-pad: clamp(1.25rem, 4vw, 4rem);
  --max-content: 1440px;

  /* Motion */
  --ease-cine: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast: 120ms;
  --dur: 280ms;
  --dur-slow: 700ms;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-ui);
  font-size: var(--size-body);
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; padding: 0; }
h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- PAGE GRAIN ---------- */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.06  0 0 0 0 0.055  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.35;
  z-index: 1;
}

/* ---------- TYPE ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 900;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 60;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.display.italic { font-style: italic; font-variation-settings: "SOFT" 100; }
.serif { font-family: var(--f-display); font-optical-sizing: auto; }
.hand { font-family: var(--f-hand); font-weight: 700; line-height: 1; display: inline-block; }
.mono-label {
  font-family: var(--f-ui);
  font-size: var(--size-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--c-fog);
}
.kicker {
  font-family: var(--f-hand);
  font-size: 1.4rem;
  color: var(--c-terracotta);
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 1;
}
.lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--size-lede);
  line-height: 1.35;
  max-width: 32em;
  color: var(--c-ink);
}

/* ---------- LAYOUT ATOMS ---------- */
.wrap { width: 100%; max-width: var(--max-content); margin: 0 auto; padding: 0 var(--space-pad); }
.section { padding: var(--space-section) 0; position: relative; z-index: 2; }
.section--dark { background: var(--c-ocean); color: var(--c-cream); }
.section--dark .mono-label { color: #8aaab2; }
.section--terra { background: var(--c-terracotta); color: var(--c-cream); }
.section--sand { background: var(--c-sand); }

.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-12 { grid-template-columns: repeat(6, 1fr); gap: 16px; } }

.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .span-4, .span-5, .span-6, .span-7, .span-8 { grid-column: 1 / -1; }
}

.stack > * + * { margin-top: var(--stack-gap, 1.2rem); }
.stack-lg { --stack-gap: 2rem; }
.stack-sm { --stack-gap: 0.6rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center; gap: 0.6em;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  background: var(--c-terracotta);
  color: var(--c-cream);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur) var(--ease-out);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.btn:hover { background: var(--c-ember); transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-cream); }
.section--dark .btn--ghost { color: var(--c-cream); border-color: var(--c-cream); }
.section--dark .btn--ghost:hover { background: var(--c-cream); color: var(--c-ocean); }

.btn .arrow { display: inline-block; transition: transform var(--dur) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* text link */
.tlink { color: var(--c-terracotta); border-bottom: 1px dotted currentColor; padding-bottom: 2px; transition: color var(--dur); }
.tlink:hover { color: var(--c-ember); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--space-pad);
  display: flex; align-items: center; justify-content: space-between;
  mix-blend-mode: difference;
  color: var(--c-cream);
  font-family: var(--f-ui);
  font-weight: 500;
}
.site-header__logo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--c-cream);
}
.site-header__logo em { font-style: italic; font-weight: 400; }
.site-nav {
  display: flex; gap: 2.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.site-nav a { position: relative; padding: 0.25rem 0; }
.site-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor;
  transition: right var(--dur) var(--ease-out);
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }

.header-cta {
  font-family: var(--f-ui);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  border: 1px solid currentColor;
}

.mobile-menu-toggle { display: none; }
@media (max-width: 900px) {
  .site-nav, .header-cta { display: none; }
  .mobile-menu-toggle {
    display: block;
    width: 36px; height: 36px;
    position: relative;
  }
  .mobile-menu-toggle span {
    position: absolute; left: 6px; right: 6px; height: 1px; background: currentColor;
  }
  .mobile-menu-toggle span:nth-child(1) { top: 13px; }
  .mobile-menu-toggle span:nth-child(2) { top: 18px; }
  .mobile-menu-toggle span:nth-child(3) { top: 23px; }
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--c-ocean);
  color: var(--c-cream);
  z-index: 99;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: var(--space-pad);
  font-family: var(--f-display);
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 900;
  line-height: 1;
  gap: 1rem;
  transform: translateY(-100%);
  transition: transform 500ms var(--ease-cine);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { color: currentColor; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
  color: var(--c-cream);
}
.hero__bg {
  position: absolute; inset: -10% 0 -10% 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,14,0.25) 0%, rgba(15,15,14,0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--space-pad) clamp(2rem, 6vw, 5rem);
  max-width: var(--max-content); margin: 0 auto;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--size-mega);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin-bottom: 0.5em;
}
.hero__title .w { display: inline-block; overflow: hidden; }
.hero__title .w > span { display: inline-block; transform: translateY(120%) skewY(6deg); will-change: transform; }
.hero__sub {
  font-family: var(--f-hand);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--c-lime);
  transform: rotate(-2deg);
  margin-bottom: 1rem;
}
.hero__meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  font-family: var(--f-ui);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.85);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245, 239, 228, 0.25);
}

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 1.5rem; right: var(--space-pad);
  color: var(--c-cream);
  font-family: var(--f-hand);
  font-size: 1.25rem;
  z-index: 3;
  display: flex; align-items: center; gap: 0.6rem;
  opacity: 0.75;
}
.scroll-cue .line {
  display: inline-block;
  width: 48px; height: 1px; background: currentColor;
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.4); opacity: 0.4; }
}

/* ---------- SECTION HEADERS ---------- */
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head .num {
  font-family: var(--f-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--c-terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.sec-head h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--size-h1);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 14em;
}
.sec-head h2 em { font-style: italic; font-weight: 400; }

.sec-head .hand-note {
  display: block;
  font-family: var(--f-hand);
  color: var(--c-terracotta);
  font-size: 1.5rem;
  transform: rotate(-3deg);
  margin-top: 1rem;
}

/* ---------- CARDS / TILES ---------- */
.tile {
  background: var(--c-sand);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  position: relative;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.tile:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -15px rgba(15,15,14,0.18); }
.section--dark .tile { background: var(--c-ocean-deep); color: var(--c-cream); }
.tile h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--size-h3);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.tile p { color: var(--c-ink); }
.section--dark .tile p { color: #c8cecc; }
.tile .tile__tag {
  font-family: var(--f-hand);
  color: var(--c-terracotta);
  font-size: 1.2rem;
  position: absolute;
  top: 1rem; right: 1.25rem;
  transform: rotate(4deg);
}

/* ---------- GALLERY MOSAIC ---------- */
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic a { display: block; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.mosaic a img { transition: transform 900ms var(--ease-cine); }
.mosaic a:hover img { transform: scale(1.04); }
.mosaic .m1 { grid-column: span 5; aspect-ratio: auto; }
.mosaic .m1 a { aspect-ratio: 5/6; }
.mosaic .m2 { grid-column: span 7; }
.mosaic .m2 a { aspect-ratio: 7/6; }
.mosaic .m3 { grid-column: span 4; }
.mosaic .m3 a { aspect-ratio: 1/1; }
.mosaic .m4 { grid-column: span 4; }
.mosaic .m4 a { aspect-ratio: 1/1; }
.mosaic .m5 { grid-column: span 4; }
.mosaic .m5 a { aspect-ratio: 1/1; }
.mosaic .m6 { grid-column: span 6; }
.mosaic .m6 a { aspect-ratio: 6/5; }
.mosaic .m7 { grid-column: span 6; }
.mosaic .m7 a { aspect-ratio: 6/5; }

@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(6, 1fr); }
  .mosaic > * { grid-column: span 6 !important; }
  .mosaic > *:nth-child(even) { grid-column: span 3 !important; }
  .mosaic > *:nth-child(odd):not(:first-child) { grid-column: span 3 !important; }
  .mosaic a { aspect-ratio: 1/1 !important; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  background: var(--c-ocean);
  color: var(--c-cream);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245,239,228,0.15);
  border-bottom: 1px solid rgba(245,239,228,0.15);
}
.marquee__track {
  display: flex; gap: 3rem;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  will-change: transform;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after {
  content: "★"; color: var(--c-lime);
}

/* ---------- REVIEWS ---------- */
.review-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.review {
  grid-column: span 4;
  background: var(--c-cream);
  padding: 1.75rem;
  border-top: 3px solid var(--c-terracotta);
  position: relative;
  break-inside: avoid;
}
.section--dark .review { background: var(--c-ocean-deep); color: var(--c-cream); border-top-color: var(--c-lime); }
.review__stars { color: var(--c-terracotta); letter-spacing: 2px; margin-bottom: 0.75rem; }
.section--dark .review__stars { color: var(--c-lime); }
.review__text {
  font-family: var(--f-display);
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 1.2rem;
}
.review__meta {
  font-family: var(--f-ui);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-fog);
}
.section--dark .review__meta { color: #8aaab2; }
.review .pin {
  position: absolute; top: -10px; right: 16px;
  font-family: var(--f-hand);
  color: var(--c-terracotta);
  font-size: 1rem;
  transform: rotate(8deg);
}
@media (max-width: 900px) {
  .review { grid-column: span 6; }
}
@media (max-width: 600px) {
  .review { grid-column: span 12; }
}

/* ---------- STATS BAND ---------- */
.stat-band { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.stat {
  grid-column: span 3;
  padding: 1rem 0;
}
.stat .n {
  font-family: var(--f-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--c-terracotta);
  display: block;
}
.section--dark .stat .n { color: var(--c-lime); }
.stat .lbl {
  font-family: var(--f-hand);
  font-size: 1.2rem;
  display: inline-block;
  transform: rotate(-1.5deg);
  margin-top: 0.4rem;
}
@media (max-width: 900px) { .stat { grid-column: span 6; } }

/* ---------- AMENITIES ---------- */
.amen-list { column-count: 3; column-gap: 2rem; font-family: var(--f-ui); }
.amen-list li {
  break-inside: avoid;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(15,15,14,0.1);
  display: flex; align-items: baseline; gap: 0.6rem;
}
.amen-list li::before {
  content: "→";
  color: var(--c-terracotta);
  font-weight: 700;
}
@media (max-width: 900px) { .amen-list { column-count: 2; } }
@media (max-width: 600px) { .amen-list { column-count: 1; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--c-ink); }
.faq details {
  border-bottom: 1px solid var(--c-ink);
  padding: 1.5rem 0;
  transition: background var(--dur);
}
.faq summary {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--size-h3);
  line-height: 1.1;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--c-terracotta);
  transition: transform var(--dur) var(--ease-out);
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] { background: var(--c-sand); padding-left: 1rem; padding-right: 1rem; }
.faq p {
  font-family: var(--f-display);
  font-size: var(--size-body);
  margin-top: 1rem;
  max-width: 60em;
  color: var(--c-ink);
  line-height: 1.55;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--c-terracotta);
  color: var(--c-cream);
  padding: clamp(5rem, 10vw, 9rem) var(--space-pad);
  text-align: left;
  position: relative; z-index: 2;
}
.cta-band h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--size-h1);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 14em;
  margin-bottom: 1.5rem;
}
.cta-band h2 em { font-style: italic; font-weight: 400; }
.cta-band .hand-note {
  font-family: var(--f-hand);
  color: var(--c-lime);
  font-size: 1.6rem;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 1.25rem;
}
.cta-band .btn {
  background: var(--c-cream);
  color: var(--c-ink);
}
.cta-band .btn:hover { background: var(--c-ink); color: var(--c-cream); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-ocean-deep);
  color: var(--c-cream);
  padding: clamp(4rem, 8vw, 7rem) var(--space-pad) 2rem;
  position: relative; z-index: 2;
}
.site-footer__inner {
  max-width: var(--max-content); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
}
.site-footer__brand .lg {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
}
.site-footer__brand .lg em { font-style: italic; font-weight: 400; }
.site-footer__brand p { color: #8aaab2; margin-top: 1rem; max-width: 26em; }
.site-footer__col h4 {
  font-family: var(--f-ui);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #8aaab2;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.site-footer__col a { display: block; padding: 0.35rem 0; color: var(--c-cream); }
.site-footer__col a:hover { color: var(--c-lime); }
.site-footer__meta {
  border-top: 1px solid rgba(245,239,228,0.15);
  margin-top: 3rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  font-family: var(--f-ui); font-size: 0.8rem; color: #8aaab2;
}
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--c-cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid var(--c-cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 200ms var(--ease-out), height 200ms var(--ease-out), background 200ms var(--ease-out);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-hand); color: transparent; font-size: 14px;
}
.cursor-ring.is-link { width: 64px; height: 64px; background: var(--c-terracotta); border-color: var(--c-terracotta); color: var(--c-cream); }
.cursor-ring.is-image { width: 80px; height: 80px; background: var(--c-ocean); border-color: var(--c-ocean); color: var(--c-cream); }
.cursor-ring.is-link::after, .cursor-ring.is-image::after { content: attr(data-label); }
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
  html { cursor: auto; }
}
@media (hover: hover) {
  html { cursor: none; }
  a, button, [role="button"] { cursor: none; }
}

/* ---------- FADE-IN ON SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- SQUIGGLE DIVIDER ---------- */
.squiggle {
  width: 100px; height: 24px;
  color: var(--c-terracotta);
  display: block;
  margin: 2rem 0;
}
.section--dark .squiggle { color: var(--c-lime); }

/* ---------- INFO CARDS ON CONDO-LIKE PAGES ---------- */
.info-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.info-row--reverse { grid-template-columns: 1fr 1.2fr; }
@media (max-width: 900px) { .info-row, .info-row--reverse { grid-template-columns: 1fr; } }
.info-row h3 { font-family: var(--f-display); font-weight: 900; font-size: var(--size-h2); line-height: 0.95; margin-bottom: 1rem; }
.info-row h3 em { font-style: italic; font-weight: 400; }
.info-row p + p { margin-top: 1rem; }
.info-row .pill {
  display: inline-block;
  background: var(--c-terracotta); color: var(--c-cream);
  padding: 0.35rem 0.9rem;
  font-family: var(--f-ui); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  font-family: var(--f-ui); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-fog);
  padding-top: 8rem;
  padding-bottom: 1rem;
}
.breadcrumb a { color: var(--c-terracotta); }
.breadcrumb span { color: var(--c-fog); margin: 0 0.5rem; }

/* ---------- BLOG INDEX ---------- */
.post-card {
  grid-column: span 6;
  padding: 2rem 0;
  border-top: 1px solid var(--c-ink);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: start;
}
.post-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--c-sand); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-cine); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card h3 { font-family: var(--f-display); font-weight: 800; font-size: var(--size-h3); line-height: 1.05; margin-bottom: 0.75rem; }
.post-card .num { font-family: var(--f-hand); color: var(--c-terracotta); font-size: 1.2rem; transform: rotate(-2deg); display: inline-block; margin-bottom: 0.5rem; }
@media (max-width: 900px) { .post-card { grid-column: span 12; grid-template-columns: 1fr; } }

/* ---------- BLOG POST PAGE (shell) ---------- */
.post-hero {
  padding: 9rem var(--space-pad) clamp(3rem, 6vw, 6rem);
  background: var(--c-sand);
}
.post-hero .wrap { max-width: 1100px; }
.post-hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--size-h1);
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 16em;
  margin-top: 1rem;
}
.post-hero h1 em { font-style: italic; font-weight: 400; }
.post-hero .mono-label { color: var(--c-terracotta); }

.post-body {
  max-width: 780px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) var(--space-pad);
  font-family: var(--f-display);
  font-size: var(--size-body);
  line-height: 1.7;
}
.post-body p + p { margin-top: 1.25rem; }
.post-body h2 { font-family: var(--f-display); font-weight: 800; font-size: var(--size-h2); margin: 2.5rem 0 1rem; line-height: 1; }
.post-body h2 em { font-style: italic; font-weight: 400; }
.post-body .placeholder {
  background: var(--c-sand);
  border: 1px dashed var(--c-fog);
  padding: 2rem;
  font-family: var(--f-hand);
  font-size: 1.5rem;
  text-align: center;
  color: var(--c-fog);
  transform: rotate(-0.5deg);
  margin: 2rem 0;
}

/* ---------- CONTACT ---------- */
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.5rem;
}
.contact-form .full { grid-column: 1 / -1; }
.field {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.field label {
  font-family: var(--f-ui); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-fog); font-weight: 600;
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-ink);
  padding: 0.75rem 0;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-ink);
  outline: none;
  transition: border-color var(--dur);
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-width: 2px; border-color: var(--c-terracotta); }
.field textarea { resize: vertical; min-height: 120px; }
@media (max-width: 700px) { .contact-form { grid-template-columns: 1fr; } }

/* ---------- UTILS ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: 1rem;
  background: var(--c-ink); color: var(--c-cream);
  padding: 0.75rem 1.25rem;
  transform: translateY(-200%);
  transition: transform 200ms var(--ease-out);
  z-index: 200;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 15, 14, 0.95);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}
.lightbox.is-open { opacity: 1; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 48px; height: 48px;
  color: var(--c-cream);
  font-size: 2rem; line-height: 1;
  font-family: var(--f-display);
  font-weight: 400;
}

/* ---------- PAGE LOAD FADE ---------- */
html:not(.is-loaded) body { opacity: 0; }
body { opacity: 1; transition: opacity 300ms var(--ease-out); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .w > span { transform: none; }
  .cursor { display: none; }
  html { cursor: auto; }
}
