/* guymichelmore.com — rebuilt from Figma exports.
   Desktop design grid: 1440px. Mobile design: 375px. */

:root {
  /* Core */
  --cream:        #F7F5F1;
  --near-black:   #121212;
  --off-black:    #010101;
  --black:        #000000;
  --white:        #FFFFFF;

  /* Hairlines, borders, card overlays */
  --rule:         rgba(255, 255, 255, 0.08);
  --rule-strong:  rgba(255, 255, 255, 0.12);

  /* Secondary / muted text */
  --cream-95:     rgba(247, 245, 241, 0.95);
  --cream-90:     rgba(247, 245, 241, 0.90);
  --cream-80:     rgba(247, 245, 241, 0.80);
  --cream-60:     rgba(247, 245, 241, 0.60);
  --cream-40:     rgba(247, 245, 241, 0.40);
  --cream-08:     rgba(247, 245, 241, 0.08);

  /* Surfaces / scrims */
  --dark-60:      rgba(18, 18, 18, 0.60);
  --dark-50:      rgba(18, 18, 18, 0.50);
  --dark-40:      rgba(18, 18, 18, 0.40);
  --dark-30:      rgba(18, 18, 18, 0.30);
  --dark-20:      rgba(18, 18, 18, 0.20);
  --dark-10:      rgba(18, 18, 18, 0.10);

  /* The only real accent: Figma colour style "Gradient 1" */
  --gradient-1:   linear-gradient(90deg, #DDA3A4, #98A4CB);

  --serif: "Instrument Serif", Georgia, serif;
  --sans:  "Manrope", "Helvetica Neue", Arial, sans-serif;

  --container: 1440px;   /* the full design frame; 60px gutters inside */
  --gutter: 60px;        /* outer page margin — never collapses */
  --inset: 64px;         /* shallow indent inside the gutter (titles, grids) */
  --inset-lg: 140px;     /* deep indent (tracks, writing rows) */
  --hero-top: 196px;     /* page/contact hero top padding, clears the nav */
}

/* ---------- base ---------- */

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

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

body {
  margin: 0;
  background: var(--near-black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

@media (max-width: 900px) {
  :root { --gutter: 20px; --inset: 0px; --inset-lg: 0px; --hero-top: 116px; }
  body { font-size: 15px; }
}

/* Display type: serif titles with italic initial caps.
   Mark initials/italic spans with <em> (not emphasis — style device from the design). */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.012em currentColor; /* subtle fattening, as in the design */
}
.display em, .italic { font-style: italic; font-synthesis: none; }

.t-hero      { font-size: clamp(64px, 11.8vw, 170px); }  /* home name */
.t-page      { font-size: clamp(70px, 9.7vw, 140px); }   /* Work / Writing / Contact / About Guy */
.t-section-lg{ font-size: clamp(64px, 12.5vw, 180px); }  /* About Guy on home */
.t-quote     { font-size: clamp(36.8px, 4.5vw, 65px); font-style: italic; line-height: 1.15; letter-spacing: 0; -webkit-text-stroke: 0; }
.t-article   { font-size: clamp(32px, 3.6vw, 52px); font-style: italic; line-height: 1.15; }
.t-item      { font-size: clamp(31.5px, 2.9vw, 42px); font-style: italic; line-height: 1.2; }

.kicker {
  font-size: 16px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--cream-60); text-transform: uppercase;
}
.muted { color: var(--cream-60); }

/* ---------- arrow links ---------- */

.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 600; color: var(--cream);
}
.arrow-link svg { width: 18px; height: 14px; flex: none; }
.arrow-link:hover svg { transform: translateX(4px); transition: transform .2s; }

.arrow-link.grad {
  background: var(--gradient-1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- header / nav ---------- */

.sitenav {
  position: absolute; inset: 0 0 auto 0; z-index: 20;
  background: var(--dark-50);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.sitenav .container {
  height: 98px; display: flex; align-items: center;
  max-width: 1440px;
}
.logo {
  font-family: var(--serif); font-size: 35.75px; line-height: 1;
  letter-spacing: 0.01em; white-space: nowrap;
}
.logo em { font-style: italic; }

.navlinks {
  display: flex; gap: 30px; margin-left: 66px;
  font-size: 18px; font-weight: 600;
}
.navlinks .has-menu { position: relative; }
.navlinks .has-menu > a { display: inline-flex; align-items: center; gap: 8px; }
.navlinks svg.chev { width: 10px; height: 6px; }

/* Work dropdown — no design existed for this; kept minimal and on-theme */
.dropdown {
  position: absolute; top: calc(100% + 14px); left: -20px; min-width: 180px;
  background: rgba(18,18,18,.92); border: 1px solid var(--rule);
  border-radius: 12px; padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.dropdown a { display: block; padding: 10px 22px; font-weight: 400; font-size: 16px; }
.dropdown a:hover { background: var(--cream-08); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 50px; }
.socials { display: flex; gap: 9px; }
.socials a {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--near-black); border: 1px solid var(--rule);
  display: grid; place-items: center;
}
.socials img { width: 26px; height: 26px; }

/* CTA pill — bitmap gradient fill per the design (button 1.png) */
.btn-cta {
  position: relative; overflow: hidden;
  height: 58px; border-radius: 29px; border: 0;
  padding: 16px 40px; display: inline-flex; align-items: center;
  justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--cream);
  background: url("../assets/button-texture.webp") center / 100% 100% no-repeat;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  cursor: pointer;
}
.btn-cta::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 22px;
  background: linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,0));
  border-radius: 29px 29px 0 0; pointer-events: none;
}
.btn-cta svg { width: 18px; height: 14px; }
.btn-cta.block { width: 100%; }

.menu-btn { display: none; }

@media (max-width: 900px) {
  .sitenav .container { height: 72px; }
  .logo { font-size: 27.3px; }
  .navlinks, .nav-right { display: none; }
  .menu-btn {
    display: block; margin-left: auto; background: none; border: 0; padding: 8px;
  }
  .menu-btn span {
    display: block; width: 26px; height: 2px; background: var(--white); margin: 6px 0;
  }
  /* mobile menu panel — no design existed; simple on-theme overlay */
  .mobile-menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(18,18,18,.97); border-bottom: 1px solid var(--rule);
    padding: 12px var(--gutter) 28px;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 14px 0; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--rule); }
  .mobile-menu a.sub { padding-left: 18px; font-weight: 400; }
}
@media (min-width: 901px) { .mobile-menu { display: none !important; } }

/* ---------- hero bands ----------
   Band images are pre-rendered from the Figma pattern matrices with the
   design's gradient + scrim overlays baked in (see _ref/build/render-bands.py).
   Every band fades to #121212 at its bottom edge, so pages continue seamlessly. */

.hero {
  position: relative;
  background-color: var(--near-black);
  background-image: var(--band, none);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.about-hero   { --band: url("../assets/bands/about-hero.jpg"); }
.work-hero    { --band: url("../assets/bands/work-hero.jpg"); }
.writing-hero { --band: url("../assets/bands/writing-hero.jpg"); }
.article-hero { --band: url("../assets/bands/article-hero.jpg"); }
@media (max-width: 900px) {
  .about-hero   { --band: url("../assets/bands/m-about-hero.jpg"); }
  .work-hero    { --band: url("../assets/bands/m-work-hero.jpg"); }
  .writing-hero { --band: url("../assets/bands/m-writing-hero.jpg"); }
  .article-hero { --band: url("../assets/bands/m-article-hero.jpg"); }
}
.hero > .container { position: relative; z-index: 2; }

.page-hero { padding: var(--hero-top) 0 60px; }
.page-hero h1 { padding-left: var(--inset); } /* Work / Writing / About pages */

/* ---------- shared contact section ---------- */

.contact-section {
  position: relative;
  background: var(--near-black) url("../assets/bands/contact-cta.jpg") center / 100% 100% no-repeat;
  padding: 130px 0 120px;
}
@media (max-width: 900px) {
  .contact-section { background-image: url("../assets/bands/m-contact-cta.jpg"); }
}
.contact-grid {
  display: grid; grid-template-columns: 1fr clamp(400px, 45.5%, 600px);
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.contact-copy { max-width: 600px; padding-left: var(--inset); }
.contact-copy .display { margin-bottom: 42px; }
.contact-copy p { color: var(--cream-80); }

.form-field {
  width: 100%; border-radius: 8px;
  background: var(--cream-08);
  border: 1.5px solid var(--rule);
  color: var(--cream);
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  padding: 22px 24px;
  margin-bottom: 16px;
  outline: none;
}
.form-field::placeholder { color: var(--cream-60); }
.form-field:focus { border-color: rgba(247,245,241,.35); }
textarea.form-field { height: 240px; resize: vertical; }
.contact-form .btn-cta { margin-top: 24px; }
.contact-form .btn-cta[disabled] { opacity: .6; pointer-events: none; }

/* Spam honeypot — off-canvas rather than display:none, since some bots skip
   fields they can tell are hidden. aria-hidden keeps it off screen readers. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  margin-top: 18px; font-size: 15px; line-height: 1.5;
  color: var(--cream-80);
  opacity: 0; transition: opacity .25s ease;
}
.form-status.visible { opacity: 1; }
.form-status.is-error { color: #e5877a; }

@media (max-width: 900px) {
  .contact-section { padding: 80px 0 200px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-copy { text-align: center; margin: 0 auto; }
  .contact-copy .display { margin-bottom: 18px; }
}

/* ---------- home: hero ---------- */

.home-hero { position: relative; background: var(--off-black); }
.home-hero .bokeh {
  position: absolute; inset: 0;
  background: url("../assets/bands/home-hero.jpg") center / 100% 100% no-repeat;
}
@media (max-width: 900px) {
  .home-hero .bokeh { background-image: url("../assets/bands/m-home-hero.jpg"); }
}
.home-hero .photo {
  position: relative; z-index: 1; height: 728px; margin-top: 98px; overflow: hidden;
  background: url("../assets/frame-71-eff375.webp") center / cover no-repeat;
}
.home-hero .photo video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -1; /* above the fallback photo, below the gradients and text */
  opacity: 0; transition: opacity 0.6s;
}
.home-hero .photo video.playing { opacity: 1; }
.home-hero .photo::before { /* darken top-left for tagline legibility */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(118deg, rgba(1,1,1,.55), rgba(1,1,1,0) 55%);
}
.home-hero .photo::after { /* fade to black at bottom */
  content: ""; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(rgba(1,1,1,0), #010101);
}
.home-hero .photo .container { position: relative; height: 100%; }
.home-hero .tagline {
  position: absolute; top: 127px; left: calc(var(--gutter) + var(--inset));
  max-width: 380px; z-index: 3;
  font-size: 22px; font-weight: 400; line-height: 1.4; color: var(--cream-90);
}
.home-hero .name {
  position: absolute; bottom: 40px; left: calc(var(--gutter) + var(--inset)); z-index: 3;
  color: var(--cream);
}

/* client logo strip */
/* solid black so the hero bokeh band doesn't clip mid-glow behind the logos
   (deviation from the design, agreed with Guy) */
.clients { position: relative; z-index: 1; padding: 60px 0 90px; background: var(--off-black); }
.clients .container {
  display: flex; align-items: center; justify-content: center; gap: 84px;
}
.clients img { height: 37px; width: auto; }
.clients img.disney { height: 42px; }
.clients img.netflix { height: 32px; }
.clients img.lionsgate { height: 23px; }
.clients img.marvel { height: 36px; }

.home-hero .tagline-mobile { display: none; }
@media (max-width: 900px) {
  .home-hero .photo {
    height: auto; aspect-ratio: 335 / 419;
    margin: 72px 0 0; /* full-bleed — Guy prefers it edge to edge on mobile */
  }
  .home-hero .photo::before { display: none; }
  .home-hero .photo .tagline { display: none; }
  .home-hero .tagline-mobile {
    display: block; position: relative; inset: auto; z-index: 1; max-width: none;
    padding: 20px 20px 6px; font-size: 14px; font-weight: 400;
    line-height: 1.5; color: var(--cream-90);
  }
  .home-hero .name { bottom: 18px; font-size: min(64px, 16.5vw); }
  .clients { padding: 26px 0 40px; }
  .clients .container { gap: 24px; flex-wrap: wrap; }
  .clients img { height: 22px; }
  .clients img.disney { height: 26px; }
  .clients img.netflix { height: 19px; }
  .clients img.lionsgate { display: none; } /* mobile design shows four logos */
}

/* ---------- home: selected tracks ---------- */

.tracks {
  position: relative; background: var(--off-black);
}
.tracks .bokeh {
  position: absolute; inset: 0;
  background: url("../assets/bands/home-tracks.jpg") center / 100% 100% no-repeat;
}
@media (max-width: 900px) {
  .tracks .bokeh { background-image: url("../assets/bands/m-home-tracks.jpg"); }
}
.tracks .container { position: relative; padding-top: 14px; padding-bottom: 92px; }
.tracks-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 34px; padding: 0 10px 0 14px;
}
.tracks .inset { padding-left: var(--inset-lg); padding-right: var(--inset-lg); }
.sc-player iframe {
  display: block; width: 100%; height: 500px;
  border: 1.5px solid var(--rule-strong); border-radius: 8px;
  background: var(--cream-08);
}
.sc-attrib {
  margin-top: 10px; font-size: 12px; color: var(--cream-60);
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.sc-attrib a { color: inherit; text-decoration: none; }
.sc-attrib a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .tracks-head { padding: 0; }
  .kicker { font-size: 12px; }
}

/* ---------- home: work carousel ---------- */

.work-teaser { background: var(--cream); color: var(--near-black); padding: 90px 0 110px; }
.work-teaser .head {
  display: flex; align-items: baseline; justify-content: space-between;
}
.work-teaser .arrow-link { color: var(--near-black); }

.carousel { position: relative; margin-top: 60px; height: 560px; }
.carousel .stage { position: absolute; inset: 0; overflow: hidden; }
.carousel .poster {
  position: absolute; top: 50%; left: 50%;
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--rule-strong);
  box-shadow: 0 24px 60px rgba(18,18,18,.35);
  transition: transform .45s cubic-bezier(.22,.61,.36,1), width .45s, height .45s, opacity .45s;
}
.carousel .poster img { width: 100%; height: 100%; object-fit: cover; }
.carousel .nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--near-black); color: var(--cream);
  border: 1px solid var(--rule); cursor: pointer;
  display: grid; place-items: center;
}
.carousel .nav-btn svg { width: 8px; height: 14px; }
.carousel .nav-btn.prev { left: -16px; }
.carousel .nav-btn.next { right: -16px; }

@media (max-width: 900px) {
  .work-teaser { padding: 48px 0 56px; }
  .carousel { height: 300px; margin-top: 30px; }
  .carousel .nav-btn { display: none; }
}

/* ---------- home: full IMDb credits ---------- */

.imdb-credits { margin-top: 96px; }
.imdb-credits .head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 var(--inset); margin-bottom: 30px;
}
.imdb-credits .kicker { color: var(--dark-40); }
.imdb-credits .arrow-link { color: var(--near-black); }

.credits-scroll {
  max-height: 430px; overflow-y: auto;
  padding: 26px var(--inset) 34px;
  /* soft fade at the scroll edges, like a credits roll */
  -webkit-mask-image: linear-gradient(transparent, #000 26px, #000 calc(100% - 30px), transparent);
          mask-image: linear-gradient(transparent, #000 26px, #000 calc(100% - 30px), transparent);
  scrollbar-width: thin; scrollbar-color: var(--dark-20) transparent;
}
.credits-scroll:focus-visible { outline: 2px solid var(--dark-30); outline-offset: -2px; }
.credits-scroll::-webkit-scrollbar { width: 6px; }
.credits-scroll::-webkit-scrollbar-thumb { background: var(--dark-20); border-radius: 3px; }

.credits-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: clamp(48px, 7vw, 96px); row-gap: 9px;
}
.credits-list li { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.credits-list .t { font-size: 15px; font-weight: 600; letter-spacing: .01em; }
.credits-list .dots { flex: 1; min-width: 24px; border-bottom: 1px dotted var(--dark-30); transform: translateY(-4px); }
.credits-list .m { font-size: 13px; color: var(--dark-40); white-space: nowrap; }

@media (max-width: 900px) {
  .imdb-credits { margin-top: 52px; }
  .imdb-credits .head { margin-bottom: 18px; }
  .credits-scroll { max-height: 350px; padding-top: 20px; padding-bottom: 26px; }
  .credits-list { grid-template-columns: 1fr; }
  .credits-list .t { font-size: 14px; }
  .credits-list .m { font-size: 12px; }
}

/* ---------- home: about teaser ---------- */

.about-teaser { background: var(--near-black); padding: 120px 0 110px; }
.about-teaser .title-row { position: relative; z-index: 2; padding-left: calc(var(--gutter) + var(--inset)); }
.about-teaser .media-quote {
  display: grid; grid-template-columns: clamp(320px, 44.2%, 584px) 1fr; gap: 27px;
  align-items: start; margin-top: -44px;
}
.about-teaser .media-quote img { width: 100%; max-width: 584px; aspect-ratio: 1; height: auto; object-fit: cover; }
.about-teaser .t-quote { margin-top: 190px; max-width: 620px; }
.about-teaser .cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 82px);
  margin-top: 96px; padding: 0 calc(var(--gutter) + var(--inset));
}
.about-teaser .cols p { color: var(--cream-80); }
.about-teaser .cols .arrow-link { float: right; margin-top: 28px; }

@media (max-width: 900px) {
  .about-teaser { padding: 60px 0 56px; }
  .about-teaser .media-quote { grid-template-columns: 1fr; gap: 24px; margin-top: 16px; }
  .about-teaser .t-quote { margin-top: 0; }
  .about-teaser .cols { grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
  .about-teaser .cols .arrow-link { float: none; }
}

/* ---------- work pages ---------- */

.work-hero .head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; row-gap: 16px; }
.work-subnav { text-align: right; font-family: var(--serif); font-size: 45px; line-height: 1.2; }
.work-subnav a { display: block; color: var(--cream-60); font-style: italic; }
.work-subnav a.active { color: var(--cream); display: inline-flex; align-items: center; gap: 16px; }
.work-subnav a.active svg { width: 30px; height: 22px; }
.work-subnav a:hover { color: var(--cream); }

.credits { padding: 60px 0 40px; }
.credits .grid {
  display: grid; column-gap: clamp(40px, 6vw, 76px); row-gap: 64px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
}
.credit {
  display: grid; grid-template-columns: clamp(160px, 47%, 293px) 1fr;
  gap: clamp(20px, 7%, 44px); align-items: center;
}
.credit .poster {
  width: 100%; aspect-ratio: 293 / 414; height: auto; object-fit: cover; border-radius: 6px;
  border: 1px solid var(--rule-strong);
  box-shadow: 0 18px 44px rgba(1,1,1,.5);
}
.credit .kind { font-size: 14px; color: var(--cream-60); }
.credit h3 { font-size: 16px; font-weight: 600; letter-spacing: .02em; margin: 10px 0 8px; }
.credit .studio { font-size: 14px; color: var(--cream-60); }
.credit .award { font-size: 14px; color: var(--cream-60); margin-top: 14px; }
.credit .award b { color: var(--cream-80); font-weight: 400; }

@media (max-width: 900px) {
  .work-hero .head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .work-subnav { text-align: left; font-size: 22.5px; }
  .work-subnav a { display: inline-block; margin-right: 22px; }
  .work-subnav a.active svg { width: 16px; height: 12px; }
  .credits .grid { grid-template-columns: 1fr; row-gap: 48px; }
  .credit { grid-template-columns: 1fr; gap: 18px; text-align: center; justify-items: center; }
  .credit .poster { width: 246px; }
}

/* ---------- writing index ---------- */

.writing-list { padding: 40px 0 60px; }
.writing-row {
  display: grid; grid-template-columns: clamp(180px, 23.4%, 243px) 1fr;
  gap: clamp(32px, 6vw, 80px);
  padding: 56px 0; margin: 0 var(--inset-lg); border-bottom: 1px solid var(--rule);
  align-items: start;
}
.writing-row:last-child { border-bottom: 0; }
.writing-row img { width: 100%; max-width: 243px; aspect-ratio: 243 / 230; height: auto; object-fit: cover; }
.writing-row .excerpt { max-width: 520px; color: var(--cream-60); font-weight: 400; margin: 22px 0 30px; }

@media (max-width: 900px) {
  .writing-row { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .writing-row img { width: 100%; height: auto; aspect-ratio: 335/318; }
  .writing-row .excerpt { margin: 12px 0 16px; }
}

/* ---------- article pages ---------- */

.article-hero { padding: 150px 0 40px; }
.back-link { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; }
.back-link svg { width: 18px; height: 14px; transform: scaleX(-1); }

.article-body { padding: 40px 0 120px; }
.article-grid { display: grid; grid-template-columns: clamp(280px, 34.5%, 456px) 1fr; gap: clamp(48px, 9vw, 120px); }
.article-grid .art { position: sticky; top: 40px; }
.article-grid .art img { width: 100%; max-width: 456px; aspect-ratio: 456 / 344; height: auto; object-fit: cover; }
.article-copy { max-width: 560px; }
.article-copy .t-article { margin-bottom: 34px; }
.article-copy p { color: var(--cream-90); margin-bottom: 28px; }
.pullquote {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 88px 0; margin: 64px 0;
}

@media (max-width: 900px) {
  .article-hero { padding: 104px 0 10px; }
  .article-body { padding: 20px 0 40px; }
  .article-grid { grid-template-columns: 1fr; gap: 28px; }
  .article-grid .art { position: static; }
  .article-grid .art img { width: 100%; height: auto; }
  .pullquote { padding: 44px 0; margin: 36px 0; }
}

/* ---------- about page ---------- */

.about-body { padding: 96px 0 40px; }
.about-grid { display: grid; grid-template-columns: clamp(300px, 44.4%, 586px) 1fr; gap: clamp(40px, 8vw, 116px); }
.about-photos figure { margin: 0 0 56px; max-width: 586px; }
.about-photos img { width: 100%; max-width: 586px; aspect-ratio: 586 / 534; height: auto; object-fit: cover; }
.about-photos figcaption {
  font-size: 16px; font-weight: 600; color: var(--cream-60);
  line-height: 1.5; margin-top: 22px;
}
.about-copy { max-width: 500px; }
.about-copy p { color: var(--cream-90); margin-bottom: 28px; }
.about-copy .lede::first-line { font-weight: 600; }
.about-copy .pullquote { padding: 64px 0; margin: 48px 0; }

@media (max-width: 900px) {
  .about-body { padding: 40px 0 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-photos figcaption { font-size: 12px; margin-top: 12px; }
}

/* ---------- contact page ---------- */

.contact-page {
  position: relative; min-height: 100vh;
  background: var(--near-black);
  padding: var(--hero-top) 0 90px;
}
.contact-page::before { /* bokeh band behind nav + title, fading into the page */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 449px;
  background: url("../assets/bands/contact-hero.jpg") center / 100% 100% no-repeat;
}
.contact-page .container { position: relative; z-index: 2; }
.contact-page .inner { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-page p.intro { color: var(--cream-80); margin: 26px 0 56px; }
.contact-page form { text-align: left; }

@media (max-width: 900px) {
  .contact-page { padding-bottom: 60px; }
  .contact-page::before {
    height: 49vw; /* mobile band is 375x184 in the design */
    background-image: url("../assets/bands/m-contact-hero.jpg");
  }
}
