:root {
  --ink: #4b1530;
  --muted: #9a5f78;
  --paper: #fff1f7;
  --mist: #ffddea;
  --sage: #b24573;
  --clay: #d94f8c;
  --gold: #f08ab7;
  --line: rgba(117, 35, 75, 0.16);
  --shadow: 0 24px 60px rgba(117, 35, 75, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(31, 38, 48, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--ink);
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.menu-toggle span[aria-hidden="true"],
.menu-toggle span[aria-hidden="true"]::before,
.menu-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.menu-toggle span[aria-hidden="true"]::before {
  transform: translateY(-6px);
}

.menu-toggle span[aria-hidden="true"]::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 54px;
  background: #f0dfc5;
}

.page-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  filter: saturate(0.92);
  transform: scale(1.16);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(75, 21, 48, 0.74), rgba(75, 21, 48, 0.38) 46%, rgba(75, 21, 48, 0.12)),
    linear-gradient(to top, rgba(75, 21, 48, 0.68), transparent 44%);
  content: "";
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(255, 241, 247, 0.98), transparent);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.hero-content .eyebrow {
  color: #fff;
  text-shadow: 0 4px 14px rgba(75, 21, 48, 0.62);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(4.6rem, 14vw, 12rem);
  font-weight: 700;
  line-height: 0.78;
  color: #ffd7e4;
  text-shadow:
    0 2px 0 #fff7fb,
    0 8px 18px rgba(110, 40, 64, 0.52),
    0 18px 42px rgba(34, 26, 21, 0.42);
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.8vw, 4.9rem);
  font-weight: 500;
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 241, 247, 0.92);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.hero-links a {
  color: #fff1f7;
  border-bottom: 1px solid rgba(255, 241, 247, 0.66);
  font-weight: 800;
  text-shadow: 0 6px 16px rgba(75, 21, 48, 0.46);
}

.hero-links a:hover {
  border-color: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  color: #fff1f7;
  background: rgba(255, 241, 247, 0.1);
  border-color: rgba(255, 241, 247, 0.72);
}

.button.secondary.light {
  color: var(--ink);
  background: rgba(255, 241, 247, 0.7);
  border-color: rgba(117, 35, 75, 0.22);
}

.hero-art {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  z-index: 2;
  width: min(340px, calc(100vw - 40px));
  margin: 0;
  padding: 12px;
  background: rgba(255, 248, 237, 0.86);
  border: 1px solid rgba(27, 29, 35, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-art img {
  display: block;
  width: 100%;
  max-height: min(58vh, 560px);
  object-fit: contain;
  background: linear-gradient(135deg, rgba(163, 72, 44, 0.18), rgba(201, 135, 47, 0.2));
  border-radius: 6px;
}

.hero-art img:not([src]) {
  display: none;
}

.hero-art figcaption {
  margin: 12px 4px 2px;
  color: #504237;
  font-size: 0.95rem;
}

.intro,
.section,
.approach,
.contact {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
}

.intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.intro a {
  color: var(--clay);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.listen {
  background: linear-gradient(135deg, #ffddea, #fff1f7);
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.listen-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 241, 247, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(117, 35, 75, 0.1);
}

.listen-card.featured {
  color: #fff1f7;
  background: #7a2750;
}

.listen-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.listen-card.featured p {
  color: rgba(255, 241, 247, 0.78);
}

.listen-label {
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.listen-card.featured .listen-label {
  color: #ffb8d2;
}

.listen-card .button {
  margin-top: auto;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-card {
  min-height: 310px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
}

.project-number {
  display: block;
  margin-bottom: 86px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.project-card p,
.approach-list p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.approach {
  color: #fff;
  background: #6b1f43;
}

.approach .eyebrow {
  color: #ffb8d2;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  padding-top: 10px;
}

.approach-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 24px;
}

.approach-list p {
  color: rgba(255, 255, 255, 0.72);
}

.notes {
  background: var(--mist);
}

.photos {
  background: #fff1f7;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-tile {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.photo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.note-list {
  display: grid;
  gap: 1px;
  background: rgba(27, 29, 35, 0.16);
  border: 1px solid rgba(27, 29, 35, 0.16);
}

.note-list a {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  background: var(--mist);
  transition: background 180ms ease;
}

.note-list a:hover {
  background: #fff;
}

.note-list time {
  color: var(--sage);
  font-weight: 800;
}

.note-list span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(31, 38, 48, 0.1);
}

.contact-card .button {
  margin-top: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 860px) {
  .menu-toggle {
    position: relative;
    z-index: 25;
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 16px;
    background: rgba(251, 250, 247, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 96svh;
    align-items: center;
    padding-top: 112px;
  }

  .hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .listen-grid,
  .project-grid,
  .approach-list,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: auto;
  }

  .project-number {
    margin-bottom: 42px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 148px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.6rem);
    max-width: 9ch;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .note-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
  }
}
