/* ============================================================
   Asel Studio — styles.css
   A printed luxury photo book, brought to the browser.
   Source of truth: foundation/assets/css/styles.css
   ============================================================ */

/* ---- Theme tokens ---- */
:root,
[data-theme="dark"] {
  --bg: #111111;
  --surface: #1a1a1a;
  --text: #f7f3ee;
  --text-2: #ece6df;
  --muted: #9a9088;
  --accent: #d8a7a7;
  --blush: #e7c5c5;
  --line: rgba(247, 243, 238, 0.12);
  --stripe: rgba(247, 243, 238, 0.025);
}

[data-theme="light"] {
  --bg: #f7f3ee;
  --surface: #efe9e1;
  --text: #1a1a1a;
  --text-2: #2c2a27;
  --muted: #655e57;
  --accent: #905c5c;
  --blush: #c89b9b;
  --line: rgba(26, 26, 26, 0.12);
  --stripe: rgba(26, 26, 26, 0.025);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 250ms ease, color 250ms ease;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Type primitives ---- */
.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
}

.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 1.02;
  letter-spacing: 0.005em;
}

.heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.08;
}

.subheading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--text-2);
}

.body {
  max-width: 580px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-2);
}

.label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.italic {
  font-style: italic;
}

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

/* ---- Layout helpers ---- */
.page {
  padding: 0 5%;
}

.wrap {
  width: 100%;
  margin: 0 auto;
}

.silence {
  width: 100%;
}

main {
  display: block;
}

/* spacing tokens */
.gap-s {
  height: 60px;
}
.gap-m {
  height: 80px;
}
.gap-l {
  height: 100px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 5%;
  background: transparent;
  transition: background 300ms ease, padding 300ms ease;
}

.nav--scrolled {
  background: var(--bg);
  padding-top: 18px;
  padding-bottom: 18px;
}

/* The transparent nav only ever sits over full-bleed dark media (home
   hero, portfolio opener), so force light nav text there regardless of
   theme. When scrolled the nav goes solid and reverts to theme colors. */
.nav:not(.nav--scrolled) .brand,
.nav:not(.nav--scrolled) .nav-links a,
.nav:not(.nav--scrolled) .theme-switch,
.nav:not(.nav--scrolled) .theme-switch span[data-mode] {
  color: #f7f3ee;
}
.nav:not(.nav--scrolled) .nav-links a {
  opacity: 0.92;
}
.nav:not(.nav--scrolled) .nav-links a:hover,
.nav:not(.nav--scrolled) .nav-links a:focus-visible,
.nav:not(.nav--scrolled) .nav-links a.is-current {
  color: var(--accent);
}
.nav:not(.nav--scrolled) .ts-dot {
  background: rgba(247, 243, 238, 0.3);
}

/* soft top scrim so the nav stays legible over bright image tops */
.hero::before,
.portfolio-opener::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.brand-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.8;
  transition: opacity 200ms ease, color 200ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: var(--accent);
}

.nav-links a.is-current {
  color: var(--accent);
  opacity: 1;
}

/* theme switch — minimal */
.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.theme-switch span[data-mode] {
  transition: color 200ms ease;
}

[data-theme="dark"] .theme-switch span[data-mode="dark"],
[data-theme="light"] .theme-switch span[data-mode="light"] {
  color: var(--text);
}

.ts-dot {
  position: relative;
  width: 26px;
  height: 9px;
  border-radius: 9999px;
  background: var(--line);
  flex: none;
}

.ts-dot::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: var(--accent);
  transition: left 220ms ease;
}

[data-theme="dark"] .ts-dot::after {
  left: 18px;
}
[data-theme="light"] .ts-dot::after {
  left: 1px;
}

/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */
.photo-placeholder {
  position: relative;
  width: 100%;
  background-color: var(--surface);
  background-image: repeating-linear-gradient(
    -45deg,
    var(--stripe) 0,
    var(--stripe) 1px,
    transparent 1px,
    transparent 11px
  );
  overflow: hidden;
}

.photo-placeholder::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.55;
  white-space: nowrap;
}

.photo-placeholder > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
}

.hero .photo-placeholder {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1400ms ease;
}
.hero-img.is-active {
  opacity: 1;
}

/* Hero slider controls */
.hero-arrow {
  position: absolute;
  bottom: 2.2vh;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 243, 238, 0.45);
  border-radius: 50%;
  background: rgba(20, 18, 16, 0.28);
  color: #f7f3ee;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 240ms ease, border-color 240ms ease, opacity 240ms ease;
}
.hero-arrow:hover {
  background: rgba(20, 18, 16, 0.55);
  border-color: var(--accent);
}
.hero-arrow svg {
  width: 20px;
  height: 20px;
}
.hero-arrow.prev {
  left: 4%;
}
.hero-arrow.next {
  right: 4%;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.2vh;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 238, 0.7);
  background: transparent;
  cursor: pointer;
  transition: background 240ms ease, transform 240ms ease, border-color 240ms ease;
}
.hero-dot:hover {
  background: rgba(247, 243, 238, 0.5);
}
.hero-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .hero-arrow {
    width: 42px;
    height: 42px;
  }
  .hero-arrow svg {
    width: 16px;
    height: 16px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5% 13vh;
  z-index: 2;
}

.hero-overlay .display {
  color: #f7f3ee;
  max-width: 12ch;
}

.hero-tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 26px);
  color: #ece6df;
  margin-top: 18px;
  opacity: 0.92;
}

/* a soft darkening so overlay text stays readable on photos.
   Not a decorative gradient — a legibility scrim only. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0) 55%
  );
  pointer-events: none;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-link {
  display: inline-flex;
  flex-direction: column;
  gap: 18px;
}

.cta-link .serif {
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.12;
  font-style: italic;
  max-width: 16ch;
}

.cta-go {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  width: fit-content;
  padding-bottom: 4px;
}

.cta-go::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform-origin: left;
  transition: transform 280ms ease;
}

.cta-link:hover .cta-go::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* a plain inline accent link */
.link-underline {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: opacity 200ms ease;
}
.link-underline:hover {
  opacity: 0.7;
}

/* ============================================================
   PHOTO CYCLE (Pacing Engine output)
   ============================================================ */
.photo-cycle {
  width: 100%;
}

.photo-cycle .figure {
  width: 100%;
}

/* layout widths — desktop */
.figure.l0,
.figure.l3 {
  /* full-bleed: break out of 5% page padding */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.figure.l0 .photo-placeholder {
  aspect-ratio: 16 / 9;
}
.figure.l3 .photo-placeholder {
  aspect-ratio: 21 / 9;
}

.figure.l1 {
  width: 65%;
  margin-right: auto;
}
.figure.l1 .photo-placeholder {
  aspect-ratio: 4 / 5;
}

.figure.l2 {
  width: 55%;
  margin-left: 22%;
}
.figure.l2 .photo-placeholder {
  aspect-ratio: 3 / 2;
}

.figure.l4 {
  width: 60%;
  margin-left: auto;
}
.figure.l4 .photo-placeholder {
  aspect-ratio: 4 / 5;
}

.figure.l5 {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.figure.l5 .photo-placeholder {
  aspect-ratio: 3 / 2;
}

/* "all sessions include" spec list (pricing) */
.includes {
  max-width: 760px;
  margin: 0 auto;
}
.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5vw;
}
.includes-list li {
  padding: 20px 2px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .includes-list {
    grid-template-columns: 1fr;
  }
}

/* full-bleed portfolio opener slider */
.portfolio-opener {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.portfolio-opener .slider-track,
.portfolio-opener .slider-slide,
.portfolio-opener .photo-placeholder {
  height: 100vh;
  min-height: 600px;
}
.portfolio-opener::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 48%);
  pointer-events: none;
}
.opener-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 5% 9vh;
  pointer-events: none;
}
.opener-line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  color: #f7f3ee;
  margin-top: 14px;
  max-width: 16ch;
}

/* clean masonry gallery (portfolio category pages) */
.gallery-grid {
  columns: 2;
  column-gap: 28px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-grid > * {
  break-inside: avoid;
  margin: 0 0 28px;
  width: 100%;
  display: block;
}
.gallery-grid-img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-grid .photo-placeholder {
  aspect-ratio: 4 / 5;
}
@media (max-width: 768px) {
  .gallery-grid {
    columns: 1;
    column-gap: 0;
  }
  .gallery-grid > * {
    margin-bottom: 18px;
  }
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms ease, transform 900ms ease;
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   EDITORIAL SECTIONS
   ============================================================ */
.section {
  padding-top: 120px;
}
.section--lg {
  padding-top: 160px;
}

.pull {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.12;
  max-width: 16ch;
  color: var(--text);
}

/* two-column (about teaser / about page) */
.two-col {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 6vw;
  align-items: center;
}
.two-col .col-text {
  max-width: 580px;
}
.two-col .photo-placeholder {
  aspect-ratio: 4 / 5;
}
.about-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.service-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* quotes */
.quotes {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
  text-align: center;
}
.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 42px);
  line-height: 1.25;
  max-width: 42ch;
  text-wrap: balance;
  color: var(--text);
}
.quote cite {
  display: block;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   PORTFOLIO INDEX — category rows
   ============================================================ */
.cat-row {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 5vw;
  align-items: center;
}
.cat-row.flip {
  grid-template-columns: 30% 70%;
}
.cat-row.flip .cat-photo {
  order: 2;
}
.cat-row .photo-placeholder {
  aspect-ratio: 4 / 3;
}
.cat-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  transition: color 220ms ease;
}
.cat-link:hover .cat-name {
  color: var(--accent);
}
.cat-index {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 14px;
}

/* category slider */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  transition: transform 650ms cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-slide {
  flex: 0 0 100%;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 9999px;
  background: rgba(17, 17, 17, 0.42);
  color: #f7f3ee;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1;
  z-index: 3;
  transition: background 220ms ease, color 220ms ease;
}
.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: var(--accent);
  color: var(--bg);
}
.slider-arrow.prev {
  left: 16px;
}
.slider-arrow.next {
  right: 16px;
}
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 3;
}
.slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(247, 243, 238, 0.45);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================================
   SERVICES
   ============================================================ */
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}
.service.flip .service-photo {
  order: 2;
}
.service .photo-placeholder {
  aspect-ratio: 3 / 2;
}
.service-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.service-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.08;
  margin: 14px 0 12px;
}
.service-cat {
  margin-bottom: 22px;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-list {
  max-width: 880px;
  margin: 0 auto;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 5vw;
  align-items: baseline;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.price-row:first-child {
  border-top: 1px solid var(--line);
}
.price-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 24px;
}
.price-desc {
  grid-column: 1 / 2;
  color: var(--muted);
  font-size: 13px;
  max-width: 42ch;
}
.price-figure {
  grid-row: 1 / 3;
  grid-column: 2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--accent);
  white-space: nowrap;
  text-align: right;
}
.price-note {
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text-2);
  max-width: 26ch;
  margin: 80px auto 0;
}
.price-subhead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 24px;
  text-align: center;
  margin: 44px 0 6px;
}

/* pricing — card format */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 5vw;
  max-width: 900px;
  margin: 0 auto;
}
.price-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 22px;
}
.price-card-price {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
}
.price-card-opts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.price-card-opts li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
}
.price-card-incl {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

/* ============================================================
   CONTACT (split-screen)
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 45% 1fr;
  min-height: 100vh;
}
.contact-photo .photo-placeholder {
  position: sticky;
  top: 0;
  height: 100vh;
}
.contact-img {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.contact-form-wrap {
  display: flex;
  align-items: center;
  padding: 140px 7% 100px;
}
.contact-form {
  width: 100%;
  max-width: 520px;
}
.form-field {
  margin-bottom: 38px;
}
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 8px 0;
  transition: border-color 220ms ease;
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.7;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field select {
  cursor: pointer;
}
.form-field select option {
  background: var(--surface);
  color: var(--text);
}
.form-submit {
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 40px;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease;
  min-height: 44px;
}
.form-submit:hover {
  background: var(--accent);
  color: var(--bg);
}
.contact-meta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.contact-meta a {
  color: var(--accent);
}

/* contact — direct (no form) */
.contact-direct {
  width: 100%;
  max-width: 560px;
}
.contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.contact-link-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.contact-link-row:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-link {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  color: var(--text);
  width: fit-content;
  position: relative;
  transition: color 220ms ease;
}
.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent);
}
.contact-link:hover::after,
.contact-link:focus-visible::after {
  transform: scaleX(1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 160px;
  padding: 100px 5% 70px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}
.footer-brand .name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-brand .loc {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.footer-cols {
  display: flex;
  gap: 80px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color 200ms ease;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  margin-top: 70px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ============================================================
   FOCUS
   ============================================================ */
:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

/* ============================================================
   RESPONSIVE — mobile rhythm (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav {
    padding: 18px 6%;
    gap: 14px;
    flex-wrap: wrap;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  /* engine: all photos full width, stacked, no offsets */
  .figure.l0,
  .figure.l1,
  .figure.l2,
  .figure.l3,
  .figure.l4,
  .figure.l5 {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .figure .photo-placeholder {
    aspect-ratio: 4 / 5 !important;
  }
  .figure.l0 .photo-placeholder,
  .figure.l3 .photo-placeholder {
    aspect-ratio: 3 / 4 !important;
  }

  .two-col,
  .cat-row,
  .cat-row.flip,
  .service,
  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .price-cards {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cat-row.flip .cat-photo,
  .service.flip .service-photo {
    order: 0;
  }
  .two-col .photo-placeholder {
    aspect-ratio: 3 / 4;
  }
  .contact-photo .photo-placeholder {
    position: relative;
    height: 70vh;
  }
  .contact-form-wrap {
    padding: 80px 8%;
  }
  .price-figure {
    grid-row: auto;
    grid-column: 1;
    text-align: left;
  }
  .price-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 50px;
  }
  .footer-cols {
    gap: 56px;
  }
}

/* large desktop */
@media (min-width: 1200px) {
  .body,
  .price-list {
    /* keep editorial measure even on wide screens */
  }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
