@font-face {
  font-family: 'Sonanta';
  src: url('../assets/fonts/Sonanta-Regular.woff2') format('woff2'),
       url('../assets/fonts/Sonanta-Regular.woff') format('woff'),
       url('../assets/fonts/Sonanta-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #191919;
  --ink: #F4F6F6;
  --body-ink: #d2d8d9;
  --dim: #a2abae;
  --teal-lt: #9dc2c9;
  --ice: #6DB3CA;
  --ice-bright: #8ecbdd;
  --line: rgba(233, 233, 233, 0.14);

  --display: 'Sonanta', Georgia, 'Times New Roman', serif;
  --body: 'Spectral', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ---- One fixed artwork behind the whole page, washed darker ---- */
body {
  color: var(--ink);
  font: 400 1rem/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: var(--bg);
}

/* Fixed backdrop layer: reliable on mobile, where
   background-attachment: fixed is ignored or broken. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(25, 25, 25, 0.82) 0,
      rgba(25, 25, 25, 0.955) 36rem,
      rgba(25, 25, 25, 0.985) 100%
    ),
    url('../assets/hero-art.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

img { max-width: 100%; }

.wrap {
  max-width: 62rem;
  margin-inline: auto;
  padding: 6rem clamp(1.5rem, 5vw, 2.5rem) 3rem;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: rgba(109, 179, 202, 0.35); }

/* ---- Seamless rhythm ---- */
.block + .block { margin-top: 5rem; }

/* ---- Intro ---- */
.intro { text-align: center; }

h1 {
  font: 400 clamp(3.4rem, 9vw, 6rem)/1.02 var(--display);
  letter-spacing: -0.015em;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(10, 12, 13, 0.5);
}

.tagline {
  margin-top: 1rem;
  text-wrap: balance;
  font: 300 clamp(0.8rem, 1.5vw, 0.95rem)/1.6 var(--body);
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  color: var(--teal-lt);
}

#music { margin-top: 3rem; }

/* ---- Reel ---- */
.reel {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.reel iframe { display: block; width: 100%; border: 0; }

/* ---- Headings ---- */
h2 {
  font: 400 clamp(2.1rem, 4.2vw, 2.9rem)/1.08 var(--display);
  color: var(--ink);
  margin-bottom: 2rem;
}

/* ---- About: photo first, equal columns ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: start;
}

.portrait { width: 100%; max-width: 420px; }
.portrait img { display: block; width: 100%; border-radius: 4px; }

.bio p {
  color: var(--body-ink);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}
.bio p + p { margin-top: 1.5rem; }

.bio .award {
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--ice);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--dim);
}

/* ---- Contact: equal columns, matching About ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: start;
}

.section-lede {
  max-width: 30rem;
  color: var(--body-ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.loc {
  margin-top: 1rem;
  color: var(--dim);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.email {
  font: 400 clamp(1.6rem, 3.6vw, 2.4rem)/1.2 var(--display);
  color: var(--ice);
  text-decoration: none;
  border-bottom: 1px solid rgba(109, 179, 202, 0.4);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
  overflow-wrap: anywhere;
}
.email:hover { color: var(--ice-bright); border-color: var(--ice-bright); }

.copy {
  font: 500 0.75rem/1 var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}
.copy:hover { color: var(--ice); border-color: rgba(109, 179, 202, 0.5); }
.copy.is-copied { color: var(--ice); border-color: var(--ice); }

/* ---- Credit ---- */
.credit {
  margin-top: 5rem;
  color: rgba(162, 171, 174, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .wrap { padding-top: 3.5rem; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .portrait { max-width: none; }

}

@media (max-width: 560px) {
  .block + .block { margin-top: 4rem; }
  .tagline { letter-spacing: 0.22em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


/* ---- Page frame + corner ornaments ---- */
.page-frame {
  position: fixed;
  inset: 10px;
  border: 1px solid rgba(157, 194, 201, 0.16);
  pointer-events: none;
  z-index: 60;
}

.corner {
  position: absolute;
  width: 64px;
  height: 64px;
  color: var(--ice);
  opacity: 0.4;
}

.corner.tl { top: -1px; left: -1px; }
.corner.tr { top: -1px; right: -1px; transform: rotate(90deg); }
.corner.br { bottom: -1px; right: -1px; transform: rotate(180deg); }
.corner.bl { bottom: -1px; left: -1px; transform: rotate(270deg); }

@media (max-width: 560px) {
  .page-frame { inset: 6px; }
  .corner { width: 40px; height: 40px; }
}
