/* ==========================================================================
   Susana Stethers Photography
   Design tokens → components → layout → utilities
   ========================================================================== */

:root {
  /* Brand palette (powder-blue) */
  --c-accent:  #9FB4C7;
  --c-accent2: #8399AD;
  --c-t1:      #F0F4F8;
  --c-t2:      #F6F3EB;
  --c-t3:      #F2F0F7;
  --c-l1:      #E2E8EE;
  --c-l2:      #D5DEE7;
  --c-l3:      #D8E0E8;
  --c-dot:     #B4C4D3;
  --c-sel:     #E8EEF4;

  /* Ink */
  --ink:      #37322B;
  --ink-2:    #4A443B;
  --body:     #5C554A;
  --muted:    #8A8074;

  --serif: 'Italiana', Georgia, 'Times New Roman', serif;
  --sans:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
::selection { background: var(--c-sel); }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--c-accent2); }

/* Visible keyboard focus — required for accessibility */
:focus-visible {
  outline: 2px solid var(--c-accent2);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: var(--ink);
  padding: 12px 20px;
  border: 1px solid var(--c-accent);
}
.skip-link:focus { left: 8px; top: 8px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------- Type helpers */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: .015em; margin: 0; }

.eyebrow {
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-bottom: 14px;
}

.prose p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
  margin: 0 0 20px;
}
.prose p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- Buttons */
.btn {
  display: inline-block;
  cursor: pointer;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: none;
  text-align: center;
  transition: background .18s ease;
}
.btn:hover, .btn:focus { background: var(--c-accent2); color: #fff; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

.link-more {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-accent2);
  border-bottom: 1px solid var(--c-l2);
  padding-bottom: 5px;
}
.link-more:hover { color: var(--ink); }

/* -------------------------------------------------------------- Header */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: clamp(26px, 5vw, 44px) 20px clamp(20px, 4vw, 30px);
  background: #fff;
}

.brand { text-align: center; }
.brand__name {
  font-family: var(--serif);
  font-size: clamp(29px, 6vw, 38px);
  letter-spacing: .045em;
  color: var(--ink);
}
.brand__sub {
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-top: 4px;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3.5vw, 36px);
  row-gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 8px;
}
.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--c-accent2); }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--c-accent);
}

/* ------------------------------------------------------------- Sections */
.page { animation: fadeUp .5s ease both; }

.section       { padding: clamp(52px, 8vw, 100px) 24px; }
.section--tint { background: var(--c-t1); }
.section--warm { background: var(--c-t2); }
.section--lilac{ background: var(--c-t3); }

.wrap      { max-width: var(--maxw); margin: 0 auto; }
.wrap--mid { max-width: 1050px; margin: 0 auto; }
.wrap--nar { max-width: 680px;  margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(27px, 4vw, 36px); }

/* ---------------------------------------------------------------- Hero */
.hero { position: relative; height: min(82vh, 860px); min-height: 560px; overflow: hidden; background: #d8d0c8; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__slide:first-child .hero__img { object-position: center center; }
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 clamp(28px, 6vw, 88px) clamp(48px, 8vh, 78px);
}
.hero__card {
  background: rgba(252, 250, 247, .90);
  backdrop-filter: blur(7px);
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.5vw, 28px);
  max-width: 385px;
  box-shadow: 0 16px 50px rgba(37, 31, 27, .08);
}
.hero__card h1 {
  font-size: clamp(25px, 2.8vw, 32px);
  line-height: 1.18;
  margin: 0 0 15px;
}
.hero[data-hero-index="1"] .hero__overlay {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 clamp(28px, 6vw, 88px) clamp(48px, 8vh, 78px);
}
.hero[data-hero-index="2"] .hero__overlay {
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(32px, 6vh, 64px) clamp(28px, 6vw, 88px) 0;
}
.hero-intro { max-width: 760px; margin: 0 auto; padding: clamp(52px, 6vw, 72px) 24px clamp(34px, 4vw, 48px); text-align: center; }
.hero-intro h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.14; margin: 14px 0 28px; }
.hero__dots { position: absolute; z-index: 4; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; gap: 11px; }
.hero__dots button { width: 7px; height: 7px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; box-shadow: 0 1px 5px rgba(0,0,0,.25); cursor: pointer; }
.hero__dots button.is-active { background: #fff; }

/* --------------------------------------------------------------- Intro */
.intro {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px) 24px clamp(72px, 8vw, 90px);
  text-align: center;
}
.intro h2 { font-size: clamp(26px, 4vw, 34px); line-height: 1.3; margin: 0 0 28px; }
.intro p  { font-size: 16.5px; line-height: 1.9; color: var(--body); margin: 0 0 22px; }

/* --------------------------------------------------------- Photo story */
.story { max-width: 1240px; margin: 0 auto; padding: 20px 24px clamp(80px, 10vw, 130px); display: grid; grid-template-columns: .72fr 1.55fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.story__copy { max-width: 410px; }
.story__copy h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.2; margin: 0 0 24px; }
.story__copy > p:not(.eyebrow) { color: var(--body); line-height: 1.9; margin: 0 0 28px; }
.story__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: end; }
.story__image { display: block; aspect-ratio: 4 / 5; overflow: hidden; }
.story__image--tall { transform: translateY(-24px); }
.story__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.story__image:hover img { transform: scale(1.02); }

/* ------------------------------------------------------------ Carousel */
.carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 12px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }

.sess-card {
  flex: 0 0 min(250px, 72vw);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.sess-card__media { aspect-ratio: 4 / 5; overflow: hidden; }
.sess-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sess-card__name { font-family: var(--serif); font-size: 21px; }
.sess-card__note { font-size: 13px; line-height: 1.6; color: var(--muted); }

.carousel-btn {
  position: absolute;
  top: 130px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 14px rgba(90, 105, 125, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: 22px;
  color: var(--c-accent2);
  line-height: 1;
}
.carousel-btn:hover { color: var(--ink); }
.carousel-btn--prev { left: -10px; }
.carousel-btn--next { right: -10px; }

@media (min-width: 801px) {
  .carousel { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: visible; }
  .sess-card { max-width: none; }
  .carousel-btn { display: none; }
}

/* ----------------------------------------------------------- Experience */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 60px;
  align-items: center;
}
.split h2 { font-size: clamp(26px, 4vw, 34px); line-height: 1.25; margin: 0 0 24px; }

.stack-media { position: relative; height: clamp(430px, 62vw, 540px); }
.stack-media__back {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}
.stack-media__front {
  position: absolute;
  right: 0; bottom: 0;
  width: 43%;
  aspect-ratio: 2 / 3;
  z-index: 2;
  box-shadow: 0 14px 36px rgba(90, 105, 125, .2);
  border: 6px solid #fff;
  overflow: hidden;
}
.stack-media img { width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------------------------------- Testimonials */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.quote {
  background: #fff;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote__mark { font-family: var(--serif); font-size: 44px; line-height: .5; color: var(--c-l2); }
.quote p { font-family: var(--serif); font-size: 18px; line-height: 1.65; color: var(--ink-2); margin: 0; }
.quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-accent2);
}
.reviews-track { display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; padding:4px 4px 18px; scrollbar-width:thin; scrollbar-color:var(--c-l2) transparent; }
.reviews-track .quote { flex:0 0 min(350px, 84vw); scroll-snap-align:start; min-height:255px; }
.review-stars { color:#b79b67; font-size:13px; letter-spacing:.18em; }
.review-excerpt { display:block; font-family:var(--serif); font-size:22px; line-height:1.35; color:var(--ink); margin-bottom:10px; }
.reviews-source { margin:28px 0 0; text-align:center; font-size:11px; letter-spacing:.18em; text-transform:uppercase; }
.reviews-source a { color:var(--c-accent2); border-bottom:1px solid var(--c-l2); padding-bottom:4px; }

/* ----------------------------------------------------------- Instagram */
.ig {
  padding: clamp(56px, 8vw, 100px) 0 clamp(52px, 8vw, 90px);
  text-align: center;
}
.ig h2 { font-size: 30px; margin: 0 0 40px; }
.ig__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 6px;
}
.ig__grid a { display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.ig__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
}
.ig__grid a:hover img { transform: scale(1.04); opacity: .9; }

/* --------------------------------------------------------------- About */
.about {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 24px 110px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(60px, 8vw, 95px);
  align-items: start;
}
.about__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about > div:last-child { width: min(100%, 760px); margin: 0 auto; }
.about h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.2; margin: 0 0 30px; }

.callout { background: var(--c-t1); padding: 34px 36px; margin-top: 12px; }
.callout p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 22px;
  color: var(--ink-2);
}

/* ---------------------------------------------------------- Experience */
.lede {
  max-width: 680px;
  margin: 0 auto;
  padding: 50px 24px 80px;
}
.lede h1 {
  font-size: clamp(30px, 4.5vw, 42px);
  line-height: 1.2;
  margin: 0 0 30px;
}
.band { width: min(100%, 1200px); aspect-ratio: 3 / 2; margin: 0 auto; overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; }
.band--editorial { position: relative; width: 100%; max-width: none; aspect-ratio: 16 / 8.2; }
.band--editorial::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 32%, rgba(249,247,242,.15) 55%, rgba(249,247,242,.82) 100%); }
.band__caption { position: absolute; z-index: 1; right: clamp(28px, 8vw, 130px); top: 50%; transform: translateY(-50%); width: min(42vw, 510px); color: #4b4a46; text-align: center; text-transform: uppercase; letter-spacing: .22em; font-size: clamp(9px, 1.1vw, 14px); line-height: 1.8; }
.band__caption strong { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 6vw, 82px); line-height: .95; letter-spacing: -.02em; text-transform: none; font-style: italic; margin: 12px 0 18px; }

.experience-editorial { max-width: 1220px; margin: 0 auto; padding: clamp(90px, 12vw, 155px) 30px; }
.experience-editorial__intro { max-width: 680px; margin: 0 auto clamp(85px, 10vw, 135px); text-align: center; }
.experience-editorial__intro h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1.12; margin: 15px 0 0; }
.experience-feature { position: relative; min-height: 770px; margin: 0 0 clamp(120px, 15vw, 190px); padding: 135px 0 100px; }
.experience-feature__main { position: absolute; left: 0; top: 0; width: 52%; height: 650px; overflow: hidden; }
.experience-feature__detail { position: absolute; left: 43%; top: 390px; width: 28%; height: 380px; overflow: hidden; border: 10px solid #fff; }
.experience-feature picture img { width: 100%; height: 100%; object-fit: cover; }
.experience-feature__copy { position: relative; width: 36%; margin-left: auto; padding: 44px 0 44px 55px; background: rgba(255,255,255,.94); }
.experience-feature__copy h3 { font-size: clamp(30px, 4vw, 48px); line-height: 1.14; margin: 13px 0 24px; }
.experience-feature__copy > p:not(.eyebrow) { color: var(--body); font-size: 15.5px; line-height: 1.9; }
.experience-feature__copy .session-details { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--c-l1); font-size: 13.5px; line-height: 1.75; }
.session-details strong { display: block; margin-bottom: 5px; color: var(--ink-2); font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.experience-feature--reverse .experience-feature__main { left: auto; right: 0; }
.experience-feature--reverse .experience-feature__detail { left: auto; right: 43%; }
.experience-feature--reverse .experience-feature__copy { margin-left: 0; margin-right: auto; padding: 44px 55px 44px 0; }

.step { background: #fff; padding: 44px 36px; }
.step__num {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--c-l2);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 24px; margin: 0 0 16px; }
.step p  { font-size: 15px; line-height: 1.85; color: var(--body); margin: 0; }

/* ----------------------------------------------------------------- FAQ */
.faq { max-width: 720px; margin: 0 auto; padding: clamp(56px, 8vw, 100px) 24px; }
.faq > h2 { font-size: clamp(27px, 4vw, 36px); text-align: center; margin: 0 0 50px; }

.faq__item { border-bottom: 1px solid var(--c-l1); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
}
.faq__mark { font-family: var(--sans); font-size: 20px; color: var(--c-accent2); flex: none; }
.faq__a {
  font-size: 15px;
  line-height: 1.85;
  color: var(--body);
  margin: 0;
  padding: 0 4px 26px;
  max-width: 60ch;
}
.faq__a[hidden] { display: none; }

/* ---------------------------------------------------------- Investment */
.pkgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.pkg {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-l1);
  background: #fff;
}
.pkg__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--c-bg); }
.pkg__media img { width: 100%; height: 100%; object-fit: cover; }
.pkg__body {
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.pkg h3 { font-size: 26px; margin: 0 0 8px; }
.pkg__price {
  font-size: 14px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-accent2);
}
.pkg__tagline { font-size: 14.5px; line-height: 1.75; color: var(--body); margin: 0; }
.pkg__includes {
  border-top: 1px solid var(--c-l1);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg__includes-label {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.pkg__includes ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pkg__includes li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}
.pkg__includes li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-dot);
  flex: none;
  transform: translateY(-2px);
}
.pkg .btn { margin-top: auto; }

.offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 58px;
}
.offering {
  padding: clamp(34px, 5vw, 52px);
  background: var(--c-t2);
  border: 1px solid var(--c-l1);
}
.offering--accent { background: var(--c-t1); }
.offering h2 { font-size: clamp(24px, 3vw, 30px); margin: 0 0 16px; }
.offering p:not(.eyebrow) { color: var(--body); line-height: 1.8; margin: 0 0 24px; }

.know-section {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(360px, 1.1fr);
  background: var(--c-t3);
}
.know-section__photo { min-height: 620px; overflow: hidden; }
.know-section__photo img { width: 100%; height: 100%; object-fit: cover; }
.know-section__body {
  max-width: 650px;
  align-self: center;
  padding: clamp(54px, 8vw, 100px);
}
.know-section__body h2 { font-size: clamp(28px, 4vw, 38px); margin: 0 0 34px; }
.know-section__closing {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 40px 0 0;
}

.know { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.know li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--body);
}
.know li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
  flex: none;
  transform: translateY(-3px);
}

/* ------------------------------------------------------------ Portfolio */
.portfolio-lede {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 24px 88px;
  text-align: center;
}
.portfolio-lede h1 { font-size: clamp(34px, 5vw, 48px); line-height: 1.2; margin: 0 0 24px; }
.portfolio-lede > p:not(.eyebrow) { max-width: 650px; margin: 0 auto; color: var(--body); font-size: 17px; line-height: 1.9; }
.portfolio-jump { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 38px; }
.portfolio-jump a { color: var(--c-accent2); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; border-bottom: 1px solid var(--c-l2); padding-bottom: 4px; }
.portfolio-categories { max-width: 1240px; margin: 0 auto; padding: 0 24px clamp(76px, 10vw, 126px); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 34px); }
.portfolio-category { color: inherit; }
.portfolio-category__media { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--c-t1); }
.portfolio-category__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.portfolio-category:hover .portfolio-category__media img { transform: scale(1.02); }
.portfolio-category__copy { padding: 22px 4px 0; }
.portfolio-category__copy h2 { font-size: clamp(25px, 3vw, 32px); margin: 0 0 10px; }
.portfolio-category__copy p { color: var(--body); font-size: 14.5px; line-height: 1.75; margin: 0 0 14px; }
.portfolio-category__link { color: var(--c-accent2); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; border-bottom: 1px solid var(--c-l2); padding-bottom: 4px; }
.portfolio-detail { max-width: 1080px; margin: 0 auto; padding: 54px 24px clamp(58px, 7vw, 86px); display: grid; grid-template-columns: 1.45fr .8fr; gap: clamp(42px, 8vw, 110px); align-items: end; }
.portfolio-detail h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.13; margin: 12px 0 25px; }
.portfolio-detail__intro > p:not(.eyebrow) { max-width: 670px; color: var(--body); font-size: 17px; line-height: 1.9; margin: 0; }
.portfolio-detail__facts { border-top: 1px solid var(--c-l2); padding-top: 20px; }
.portfolio-detail__facts p { color: var(--body); font-size: 13.5px; line-height: 1.7; margin: 0; padding: 11px 0; border-bottom: 1px solid var(--c-l2); }
.portfolio-detail__facts strong { display: block; color: var(--text); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 2px; }
.portfolio-subnav { max-width: 1080px; margin: 0 auto; padding: 0 24px 28px; display: flex; flex-wrap: wrap; gap: 13px 26px; border-bottom: 1px solid var(--c-l2); }
.portfolio-subnav a { color: var(--c-accent2); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.portfolio-subnav a[aria-current="page"] { color: var(--text); border-bottom: 1px solid var(--text); }
.gallery-section { padding: clamp(72px, 9vw, 118px) clamp(10px, 3vw, 38px); scroll-margin-top: 20px; background: #fff; }
.gallery-section--tint, .gallery-section--warm { background: #fff; }
.gallery-section__head { text-align: center; margin-bottom: clamp(44px, 7vw, 76px); }
.gallery-section__head h2 { font-size: clamp(34px, 5vw, 54px); }
.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  columns: 3 300px;
  column-gap: 8px;
}
.gallery-grid picture {
  display: inline-block;
  width: 100%;
  margin: 0 0 8px;
  break-inside: avoid;
  overflow: visible;
}
.gallery-grid picture.gallery-wide { column-span: all; display: block; }
.gallery-grid img { display: block; width: 100%; height: auto; object-fit: contain; }
.gallery-grid--single { max-width: 720px; columns: 1; }
.portfolio-cta { max-width: 700px; margin: 0 auto; padding: clamp(70px, 10vw, 120px) 24px; text-align: center; }
.portfolio-cta h2 { font-size: clamp(28px, 4vw, 38px); margin: 0 0 18px; }
.portfolio-cta p:not(.eyebrow) { color: var(--body); margin: 0 0 28px; }

/* ------------------------------------------------------------- Contact */
.contact {
  max-width: 1060px;
  margin: 0 auto;
  padding: 50px 24px 110px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 60px;
  align-items: start;
}
.contact h1 { font-size: clamp(30px, 4.5vw, 42px); line-height: 1.2; margin: 0 0 24px; }
.contact__media { aspect-ratio: 3 / 2; overflow: hidden; }
.contact__media img { width: 100%; height: 100%; object-fit: cover; }
.contact__meta { font-size: 14px; line-height: 1.8; color: var(--muted); margin: 24px 0 0; }
.contact__meta a { color: var(--c-accent2); }

.form {
  background: var(--c-t1);
  padding: 40px clamp(20px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--c-l3);
  background: #fff;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
}
.field textarea { line-height: 1.7; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--c-accent); }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #A96F6F; }

/* Honeypot — hidden from humans, visible to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__error {
  font-size: 13.5px;
  color: #A96F6F;
  margin: 0;
}
.form__error[hidden] { display: none; }

.form-success {
  background: var(--c-t1);
  padding: 70px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  min-height: 400px;
}
.form-success[hidden] { display: none; }
.form-success h2 { font-size: 34px; }
.form-success p { font-size: 15.5px; line-height: 1.8; color: var(--body); margin: 0; }

.btn-text {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-top: 8px;
}
.btn-text:hover { color: var(--ink); }

/* -------------------------------------------------------------- Footer */
.site-footer {
  border-top: 1px solid var(--c-l1);
  padding: 60px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.site-footer__name { font-family: var(--serif); font-size: 22px; }
.site-footer__loc {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-accent2);
}
.site-footer nav { display: flex; gap: 24px; font-size: 13px; }
.site-footer nav a { color: var(--muted); }
.site-footer nav a:hover { color: var(--c-accent2); }
.site-footer__legal { font-size: 12px; color: var(--c-l2); margin-top: 6px; }

/* --------------------------------------------------------------- Utils */
.center { text-align: center; }
.note   { font-size: 14.5px; line-height: 1.8; color: var(--muted); }

@media (max-width: 800px) {
  .portfolio-categories { grid-template-columns: repeat(2, 1fr); }
  .portfolio-detail { grid-template-columns: 1fr; align-items: start; }
  .story { grid-template-columns: 1fr; }
  .story__copy { max-width: 620px; text-align: center; margin: 22px auto 0; order: 2; }
  .story__gallery { width: min(100%, 620px); margin: 0 auto; order: 1; }
  .story__image--tall { transform: none; }
  .stack-media { width: min(100%, 560px); margin: 0 auto; }
  .know-section { grid-template-columns: 1fr; }
  .know-section__photo { min-height: 430px; max-height: 68vh; }
  .gallery-grid { columns: 2 240px; }
  .band--editorial { aspect-ratio: 4 / 5; }
  .band--editorial img { object-position: 38% center; }
  .band--editorial::after { background: linear-gradient(0deg, rgba(249,247,242,.86), transparent 60%); }
  .band__caption { right: 7%; bottom: 7%; top: auto; transform: none; width: 86%; }
  .experience-editorial { padding-left: 20px; padding-right: 20px; }
  .experience-feature { min-height: 0; padding: 0; }
  .experience-feature__main, .experience-feature--reverse .experience-feature__main { position: relative; left: 0; right: auto; width: 82%; height: 560px; }
  .experience-feature__detail, .experience-feature--reverse .experience-feature__detail { left: auto; right: 0; top: 390px; width: 45%; height: 330px; }
  .experience-feature__copy, .experience-feature--reverse .experience-feature__copy { position: relative; left: 0; right: auto; top: auto; width: 78%; margin-top: 105px; padding: 35px 30px 35px 0; }
}

@media (max-width: 520px) {
  .portfolio-categories { grid-template-columns: 1fr; gap: 46px; }
  .portfolio-category__media { aspect-ratio: 5 / 6; }
  .portfolio-detail { padding-top: 42px; }
  .hero { min-height: 600px; }
  .hero__overlay { align-items: center; justify-content: flex-end; text-align: center; padding: 0 18px 58px; }
  .hero[data-hero-index] .hero__overlay { align-items: center; justify-content: flex-end; padding: 0 18px 58px; }
  .hero__card { max-width: 340px; padding: 18px 20px; }
  .story__gallery { gap: 7px; }
  .story__image--tall { transform: none; }
  .site-nav { gap: 10px 16px; }
  .site-nav a { font-size: 10.5px; letter-spacing: .2em; }
  .gallery-section { padding-left: 5px; padding-right: 5px; }
  .gallery-grid { columns: 1; column-gap: 0; }
  .gallery-grid picture { margin-bottom: 5px; }
  .experience-feature__copy, .experience-feature--reverse .experience-feature__copy { width: 92%; }
}
