/* ========================================================
   David Griso — Wedding Photographer
   Shared stylesheet
   ======================================================== */

:root {
  --bg: #0a0908;
  --bg-2: #0e0c0a;
  --cream: #f0ede6;
  --cream-dim: #d9d4c6;
  --cream-mute: #a8a293;
  --accent: #d6cf72;
  --line: rgba(240, 237, 230, 0.16);
  --line-strong: rgba(240, 237, 230, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }
body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

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

/* Tiny utility */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 400;
}

.italic { font-style: italic; }
.serif { font-family: "Playfair Display", serif; }
.wulkan { font-family: "Wulkan Display", "Playfair Display", serif; }

/* ========================================================
   PRELOADER
   ======================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  overflow: hidden;
}

.pre-percent {
  position: absolute;
  top: 22px;
  left: 28px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.pre-label {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--cream-mute);
  text-transform: uppercase;
}

.pre-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.pre-name h1 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 6rem);
  letter-spacing: -0.02em;
  color: var(--cream);
  white-space: nowrap;
}

.pre-name h1 .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

.pre-flash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32vw;
  height: 22vw;
  transform: translate(-50%, -50%) scale(0.92);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
}

.pre-flash .pf-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  opacity: 0;
}

.pre-bar {
  position: absolute;
  bottom: 22px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(240, 237, 230, 0.12);
  overflow: hidden;
}

.pre-bar-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--accent);
  transform-origin: left;
}

/* ========================================================
   FIXED CHROME — logo + hamburger
   ======================================================== */
.top-logo {
  position: fixed;
  top: 22px;
  left: 28px;
  z-index: 500;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--cream);
  letter-spacing: 0.01em;
  mix-blend-mode: difference;
}

.top-logo span { font-style: italic; color: var(--accent); }

.hamburger {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  mix-blend-mode: difference;
}

.hamburger .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
}

.hamburger .lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}

.hamburger .lines span {
  display: block;
  height: 1px;
  background: var(--cream);
  width: 100%;
  transform-origin: center;
  transition: width 0.3s ease, transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
}

.hamburger:hover .lines span:nth-child(2) { width: 60%; align-self: flex-end; }

.hamburger.is-open .lines span:nth-child(1) {
  transform: translateY(2.5px) rotate(45deg);
}
.hamburger.is-open .lines span:nth-child(2) {
  transform: translateY(-2.5px) rotate(-45deg);
  width: 100%;
}

/* Back link (wedding pages) */
.top-back {
  position: fixed;
  top: 22px;
  left: 28px;
  z-index: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  mix-blend-mode: difference;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.top-back:hover { color: var(--accent); }
.top-back::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* ========================================================
   MENU OVERLAY
   ======================================================== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  padding: 110px 4vw 50px;
}

.menu.is-open { transform: translateY(0); }

.menu-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
}

.menu-col h4 {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 30px;
  font-weight: 400;
}

.menu-primary { display: flex; flex-direction: column; gap: 4px; }

.menu-primary a {
  display: inline-block;
  align-self: flex-start;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  color: var(--cream);
  padding: 6px 0;
  position: relative;
  transition: color 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), letter-spacing 0.45s ease;
}

.menu-primary a:hover {
  color: var(--accent);
  font-style: italic;
  transform: translateX(14px);
  letter-spacing: -0.01em;
}

.menu-primary a .num {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--cream-mute);
  vertical-align: top;
  margin-right: 10px;
  font-style: normal;
}

.menu-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 28px;
}

.menu-cats a {
  font-family: "Wulkan Display", "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--cream-dim);
  padding: 5px 0;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.menu-cats a:hover { color: var(--accent); letter-spacing: 0.02em; }

.menu-side-info {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-side-info a, .menu-side-info span {
  font-family: "Wulkan Display", serif;
  font-size: 1.05rem;
  color: var(--cream-dim);
}
.menu-side-info a:hover { color: var(--accent); }

.menu-foot {
  margin-top: 90px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.menu-foot .group { display: flex; gap: 24px; flex-wrap: wrap; }
.menu-foot a:hover { color: var(--accent); }

@media (max-width: 800px) {
  .menu-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ========================================================
   HERO — homepage
   ======================================================== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero-name {
  position: absolute;
  top: 78px;
  left: 28px;
  z-index: 5;
}

.hero-name h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 9.5vw, 8.6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.hero-name h1 .acc { font-style: italic; color: var(--accent); }
.hero-name .tag {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.hero-name .tag .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-meta {
  position: absolute;
  bottom: 32px;
  left: 28px;
  right: 28px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.hero-meta .quote {
  max-width: 360px;
  font-family: "Wulkan Display", serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--cream-dim);
}
.hero-meta .scroll-cue {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-meta .scroll-cue::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  animation: scrollCue 2s ease-in-out infinite;
  transform-origin: left;
}
@keyframes scrollCue {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.4); opacity: 0.4; }
}

/* ========================================================
   PORTFOLIO GRID
   ======================================================== */
.portfolio {
  position: relative;
  padding: 90px 4vw 80px;
}

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 30px;
}

.portfolio-head h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.portfolio-head h2 em { color: var(--accent); }

.portfolio-head .count {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 60px 30px;
}

.tile {
  position: relative;
  display: block;
  cursor: pointer;
  transition: filter 0.5s ease;
}

.tile-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1816;
}

.tile-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
}

.tile-stack img.is-active { opacity: 1; }

.tile:hover .tile-stack img.is-active { transform: scale(1.04); }

.tile-meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.tile-meta .couple {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--cream);
  transition: color 0.3s ease;
}
.tile-meta .couple em { color: var(--cream-mute); font-style: italic; }
.tile:hover .tile-meta .couple { color: var(--accent); }

.tile-meta .place {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
  text-align: right;
}

/* Layout patterns */
.tile.lg { grid-column: span 7; }
.tile.md { grid-column: span 5; margin-top: 14vh; }
.tile.sm { grid-column: span 4; }
.tile.wd { grid-column: span 8; margin-top: 4vh; }
.tile.ce { grid-column: 4 / span 6; margin-top: 6vh; }

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .tile.lg, .tile.md, .tile.sm, .tile.wd, .tile.ce {
    grid-column: span 1;
    margin-top: 0;
  }
}

/* Footer */
.site-foot {
  padding: 80px 4vw 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.site-foot h3 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.site-foot h3 a:hover { color: var(--accent); }
.site-foot .col h5 {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 400;
  margin-bottom: 16px;
}
.site-foot .col a, .site-foot .col span {
  display: block;
  font-family: "Wulkan Display", serif;
  font-size: 1rem;
  color: var(--cream-dim);
  padding: 3px 0;
}
.site-foot .col a:hover { color: var(--accent); }

.site-foot .copy {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 22px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-mute);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 800px) {
  .site-foot { grid-template-columns: 1fr; }
}

/* ========================================================
   WEDDING GALLERY (horizontal)
   ======================================================== */
body.gallery-page { overflow: hidden; height: 100vh; }

.gallery-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}
.gallery-loader .num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(4rem, 14vw, 12rem);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.gallery-loader .label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

.gallery-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  cursor: grab;
}
.gallery-stage.dragging { cursor: grabbing; }

.gallery-track {
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 0 8vw;
  gap: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  will-change: scroll-position;
}
.gallery-track::-webkit-scrollbar { display: none; }

.g-item {
  position: relative;
  flex: 0 0 auto;
  height: 72vh;
  overflow: hidden;
}
.g-item img {
  height: 100%;
  width: auto;
  filter: grayscale(100%);
  user-select: none;
  pointer-events: none;
}
.g-item.h { height: 64vh; }
.g-item.t { height: 78vh; }

.g-intro {
  flex: 0 0 auto;
  width: 60vw;
  height: 72vh;
  padding-right: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  margin-right: 20px;
}
.g-intro .place {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 20px;
}
.g-intro .place span { color: var(--accent); }
.g-intro h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--cream);
}
.g-intro h1 em { font-family: "Wulkan Display", serif; }
.g-intro h1 .amp { color: var(--accent); font-style: italic; padding: 0 6px; }
.g-intro .blurb {
  margin-top: 30px;
  max-width: 420px;
  font-family: "Wulkan Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cream-dim);
}

.g-counter {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 50;
  display: flex;
  align-items: baseline;
  gap: 10px;
  mix-blend-mode: difference;
  font-variant-numeric: tabular-nums;
}
.g-counter .cur {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}
.g-counter .div { color: var(--cream-mute); font-size: 0.9rem; }
.g-counter .tot { font-size: 0.9rem; color: var(--cream-mute); letter-spacing: 0.18em; }

.g-progress {
  position: fixed;
  bottom: 28px;
  left: 130px;
  right: 28px;
  height: 1px;
  background: rgba(240, 237, 230, 0.12);
  z-index: 50;
  mix-blend-mode: difference;
}
.g-progress-bar {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--accent);
  transition: width 0.18s ease;
}

.g-hint {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-mute);
  mix-blend-mode: difference;
  transition: opacity 0.6s ease;
}
.g-hint.hide { opacity: 0; pointer-events: none; }

.g-credits-btn {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  mix-blend-mode: difference;
  transition: color 0.3s ease;
}
.g-credits-btn:hover { color: var(--accent); }

/* hide hamburger on gallery page (use credits + back instead)
   you can still open menu via 'M' key or back button */

.g-credits-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 90vw);
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--line);
  z-index: 600;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 100px 40px 40px;
  overflow-y: auto;
}
.g-credits-panel.is-open { transform: translateX(0); }
.g-credits-panel h3 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.g-credits-panel .row {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  font-size: 0.95rem;
}
.g-credits-panel .row .k {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
  padding-top: 4px;
}
.g-credits-panel .row .v { color: var(--cream-dim); font-family: "Wulkan Display", serif; }
.g-credits-panel .close-x {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
}
.g-credits-panel .close-x:hover { color: var(--accent); }

.g-end {
  flex: 0 0 auto;
  width: 60vw;
  height: 72vh;
  padding-left: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  margin-left: 20px;
}
.g-end .label {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 20px;
}
.g-end h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--cream);
}
.g-end h2 em { color: var(--accent); }
.g-end .next-link {
  margin-top: 30px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
}
.g-end .next-link::after {
  content: "→";
  transition: transform 0.3s ease;
}
.g-end .next-link:hover { color: var(--accent); }
.g-end .next-link:hover::after { transform: translateX(8px); }

/* ========================================================
   ABOUT PAGE
   ======================================================== */
.about-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}
.about-hero .scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: floatY 2.4s ease-in-out infinite;
}
.about-hero .scroll::after { content: "↓"; }
@keyframes floatY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.about-intro {
  padding: 120px 4vw 80px;
  text-align: center;
}
.about-intro .eyebrow { margin-bottom: 24px; display: block; }
.about-intro h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 1200px;
  margin: 0 auto;
}
.about-intro h2 em { color: var(--accent); }

.about-collage {
  padding: 60px 4vw 100px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.about-collage .word { display: inline-block; vertical-align: middle; padding: 0 8px; }
.about-collage .word em { color: var(--accent); }
.about-collage .inline-img {
  display: inline-block;
  vertical-align: middle;
  width: clamp(120px, 14vw, 200px);
  aspect-ratio: 4 / 3;
  margin: 0 12px;
  overflow: hidden;
  border-radius: 2px;
}
.about-collage .inline-img.tall { aspect-ratio: 3 / 4; width: clamp(90px, 11vw, 160px); }
.about-collage .inline-img.round { border-radius: 50%; aspect-ratio: 1; width: clamp(80px, 9vw, 130px); }
.about-collage .inline-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }

.about-bio {
  padding: 80px 4vw;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
}
.about-bio .photo { aspect-ratio: 3 / 4; overflow: hidden; }
.about-bio .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.about-bio .text .role {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 14px;
}
.about-bio .text h3 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 28px;
}
.about-bio .text h3 em { color: var(--accent); font-style: italic; }
.about-bio .text p {
  font-family: "Wulkan Display", serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--cream-dim);
  margin-bottom: 16px;
}
.about-bio .text .signed {
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.about-bio.reverse { direction: rtl; }
.about-bio.reverse > * { direction: ltr; }

@media (max-width: 800px) {
  .about-bio { grid-template-columns: 1fr; gap: 30px; }
}

.about-quote {
  padding: 120px 4vw;
  text-align: center;
  border-top: 1px solid var(--line);
}
.about-quote h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin: 0 auto;
}
.about-quote h2 em { color: var(--accent); font-family: "Wulkan Display", serif; }

.about-press {
  padding: 80px 4vw 100px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.about-press .eyebrow { display: block; margin-bottom: 40px; }
.about-press .strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.about-press .strip span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream-mute);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}
.about-press .strip span:hover { color: var(--accent); }
.about-press .strip .b { font-style: normal; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; font-size: 0.95rem; font-family: "Inter", sans-serif; }

.about-cta {
  padding: 100px 4vw;
  text-align: center;
  border-top: 1px solid var(--line);
}
.about-cta a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color 0.4s ease, gap 0.4s ease;
}
.about-cta a:hover { color: var(--accent); gap: 36px; }
.about-cta a::after {
  content: "→";
  font-style: normal;
}

/* ========================================================
   CONTACT PAGE
   ======================================================== */
.contact-wrap {
  min-height: 100vh;
  padding: 110px 4vw 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.contact-left h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.contact-left h1 em { font-style: italic; color: var(--accent); }
.contact-left .info {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-left .info a, .contact-left .info span {
  font-family: "Wulkan Display", serif;
  font-size: 1.15rem;
  color: var(--cream-dim);
}
.contact-left .info a:hover { color: var(--accent); }
.contact-left .blurb {
  margin-top: 50px;
  max-width: 460px;
  font-family: "Wulkan Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream-dim);
}

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.form .field {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 22px 4px 14px;
}

.form .field.full { grid-column: 1 / -1; }

.form .field label {
  position: absolute;
  top: 28px;
  left: 4px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-mute);
  transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
  pointer-events: none;
}

.form .field input,
.form .field textarea,
.form .field select {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: "Wulkan Display", serif;
  font-size: 1.1rem;
  color: var(--cream);
  padding: 0;
  resize: none;
}

.form .field select {
  font-family: "Wulkan Display", serif;
  background: transparent;
  color: var(--cream);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form .field select option { background: var(--bg); color: var(--cream); }

.form .field textarea { min-height: 100px; }

.form .field input:focus + label,
.form .field input:not(:placeholder-shown) + label,
.form .field textarea:focus + label,
.form .field textarea:not(:placeholder-shown) + label,
.form .field.has-value label,
.form .field.is-focused label {
  top: 4px;
  font-size: 9px;
  color: var(--accent);
}

.form .consent {
  grid-column: 1 / -1;
  margin-top: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--cream-mute);
  font-family: "Inter", sans-serif;
}

.form .consent input { margin-top: 4px; accent-color: var(--accent); }

.form .submit {
  grid-column: 1 / -1;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--cream);
  background: transparent;
  border: 0;
  padding: 0;
  align-self: start;
  transition: color 0.3s ease, gap 0.3s ease;
  cursor: pointer;
}
.form .submit::after {
  content: "→";
  font-style: normal;
}
.form .submit:hover { color: var(--accent); gap: 28px; }

@media (max-width: 700px) {
  .form { grid-template-columns: 1fr; }
}

/* ========================================================
   ENTRANCE ANIM (post-preloader)
   ======================================================== */
.fade-up { opacity: 0; transform: translateY(20px); }
.fade-up.in { opacity: 1; transform: translateY(0); transition: opacity 1s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* SR-only */
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
