:root {
  --pink: #efb3a8;
  --peach: #f4bd79;
  --gold: #f6c982;
  --coral: #e9a496;
  --olive: #8d9b55;
  --orange: #ef7d35;
  --ink: #0a0708;
  --cream: #fff8ed;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}
img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.peach { background: var(--peach); }
.coral { background: var(--coral); }
.gold { background: var(--gold); }
.blush { background: #efb1a4; }
.black { background: #080607; color: white; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
.mini-logo {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none; border: 1px solid currentColor;
  font-family: "Italiana", serif; font-size: 20px;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a { text-decoration: none; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }

.hero {
  min-height: 92vh;
  background: #f4c5bb;
  overflow: hidden;
}
.hero-grid {
  min-height: calc(92vh - 70px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
  padding: 60px 0 90px;
}
.hero-copy { text-align: center; }
.hero h1, h2 {
  font-family: "Italiana", serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.hero h1 { font-size: clamp(62px, 9vw, 126px); line-height: .82; letter-spacing: -.03em; }
.hero .eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--olive);
}
.waveform { letter-spacing: -.35em; margin: 26px 0 34px; }
.text-link { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; text-decoration: none; }
.sun-mark {
  width: 150px; height: 75px; margin: 0 auto 15px;
  border-radius: 150px 150px 0 0;
  border: 1px solid var(--orange); border-bottom: 0;
  position: relative; display: grid; place-items: center;
  color: var(--orange); font-size: 30px;
}
.sun-mark:before {
  content: ""; position: absolute; inset: -25px -28px -10px;
  background: repeating-conic-gradient(from -48deg at 50% 100%, transparent 0 7deg, var(--orange) 7.5deg 8deg, transparent 8.5deg 14deg);
  mask: linear-gradient(#000 0 0);
  opacity: .7;
}
.polaroid-stack { position: relative; min-height: 560px; }
.polaroid {
  position: absolute; margin: 0; padding: 14px 14px 42px;
  background: #8f9f53; box-shadow: 0 18px 40px rgba(0,0,0,.15);
}
.polaroid img { aspect-ratio: 4/3; }
.polaroid-one { width: 72%; top: 10px; right: 20px; transform: rotate(7deg); }
.polaroid-two { width: 78%; bottom: 10px; left: 0; transform: rotate(-4deg); }

.bio-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.bio-collage { display: grid; grid-template-columns: 1fr 1.1fr; gap: 16px; }
.bio-main { grid-row: span 2; height: 600px; }
.bio-small { height: 292px; }
.bio h2, .split h2, .achievements h2, .contact h2 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: .95; color: var(--olive); margin-bottom: 28px;
}
.bio-copy p:not(.section-label) { max-width: 650px; }

.gallery { background: #111; padding: 0; }
.gallery-grid {
  width: 100%; max-width: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 235px;
  gap: 5px;
}
.gallery-grid .tall { grid-row: span 2; }
.art-card { display: grid; place-items: center; font-family: "Italiana", serif; font-size: 34px; text-transform: uppercase; }
.sky { background: linear-gradient(#b6dcf2 0 62%, #8bb11e 62%); }
.hills { background: linear-gradient(#b6dcf2 0 55%, #73a80a 55%); }
.gallery img { height: 100%; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; }
.split article + article { border-left: 1px solid rgba(255,255,255,.65); padding-left: 55px; }
.feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; align-items: start; }
.feature img { height: 360px; filter: grayscale(1); }
.feature p { margin-top: 0; }

.quote { min-height: 480px; display: grid; place-items: center; }
.quote-inner { display: flex; justify-content: flex-end; }
.quote p { max-width: 570px; font-family: "Italiana", serif; font-size: clamp(30px, 4vw, 56px); line-height: 1.2; }

.achievement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 46px; }
.achievement-grid img { height: 240px; }
.achievement-grid h3 { margin: 14px 0 2px; text-transform: uppercase; font-size: 14px; }
.achievement-grid p { margin: 0; font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.contact-copy { padding: 72px 70px 72px 0; }
.contact-grid > img { min-height: 620px; filter: grayscale(1); }
dl { margin-top: 50px; }
dl div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; margin-bottom: 18px; }
dt { color: var(--olive); text-transform: uppercase; font-size: 13px; }
dd { margin: 0; }
dd a { text-decoration: none; }

footer { background: #080607; color: white; padding: 28px 0; }
footer .wrap { display: flex; justify-content: space-between; }
footer p { margin: 0; }

@media (max-width: 850px) {
  .nav-links { display: none; }
  .hero-grid, .bio-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 10px; padding-top: 40px; }
  .polaroid-stack { min-height: 480px; }
  .bio-main { height: 460px; }
  .split article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.65); padding: 45px 0 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-copy { padding-right: 0; }
}

@media (max-width: 560px) {
  .section { padding: 62px 0; }
  .wrap { width: min(100% - 24px, var(--max)); }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; }
  .hero h1 { font-size: 62px; }
  .polaroid-stack { min-height: 360px; }
  .bio-collage { gap: 8px; }
  .bio-main { height: 360px; }
  .bio-small { height: 176px; }
  .feature { grid-template-columns: 1fr; }
  .feature img { height: 330px; }
  .achievement-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
  .quote { min-height: 360px; }
  dl div { grid-template-columns: 1fr; gap: 4px; }
  .contact-grid > img { min-height: 420px; }
}

/* Curated positioning for Lottie’s supplied photographs */
.polaroid-one img { object-position: 50% 35%; }
.polaroid-two img { object-position: 52% 42%; }
.bio-main { object-position: 52% 44%; }
.bio-small.top { object-position: center; }
.bio-small.bottom { object-position: 50% 65%; }
.gallery-grid img { object-position: center; }
.feature img { object-position: 50% 35%; }
.contact-grid > img { object-position: center; }


/* Corrected musician / engineer section formatting */
.split-grid {
  align-items: start;
}

.split article {
  min-width: 0;
}

.feature {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
}

.feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.feature-copy {
  min-width: 0;
}

.feature-copy p {
  margin: 0 0 18px;
}

.feature-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1050px) {
  .split-grid {
    gap: 36px;
  }

  .split article + article {
    padding-left: 36px;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature img {
    height: 390px;
  }
}

@media (max-width: 850px) {
  .split article + article {
    padding-left: 0;
  }

  .feature img {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .feature img {
    height: 340px;
  }
}
