/* ==========================================================================
   Dillon Rhodes - dillonrhodes.com
   Hand-built. Warm near-black stage, bone text, burnt gold accent.
   ========================================================================== */

/* ---- Fonts (self-hosted, latin subsets) --------------------------------- */
/* Webfont fallback for American Typewriter (Apple devices use the native face) */
@font-face {
  font-family: "Cutive";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cutive-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-var-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
}

/* ---- Design tokens ------------------------------------------------------- */
:root {
  --ink: #131010;
  --ink-2: #1a1512;
  --ink-3: #221a15;
  --bone: #f4ecdf;
  --bone-72: rgba(244, 236, 223, 0.72);
  --bone-55: rgba(244, 236, 223, 0.55);
  --line: rgba(244, 236, 223, 0.16);
  --line-strong: rgba(244, 236, 223, 0.4);
  --gold: #e0a03c;
  --gold-soft: #ecbd6b;
  --ember: #c8502f;
  --cream-ink: #1c1613;
  --cream-ink-70: rgba(28, 22, 19, 0.72);
  --cream-line: rgba(28, 22, 19, 0.16);
  --cream-accent: #8a5716;

  --font-display: "American Typewriter", "Cutive", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-quote: "Instrument Serif", Georgia, serif;

  --container: min(1180px, 92vw);
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
}

/* Film grain over everything, barely there */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

/* ---- Type helpers -------------------------------------------------------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-heading {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--bone-72);
  max-width: 34em;
}

/* ---- Layout -------------------------------------------------------------- */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

.section--cream {
  background: var(--bone);
  color: var(--cream-ink);
}

.split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(244, 236, 223, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

/* ---- Buttons & links ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 0 34px rgba(224, 160, 60, 0.35);
  transform: translateY(-1px);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--bone);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.section--cream .btn--gold {
  background: var(--cream-ink);
  color: var(--bone);
}
.section--cream .btn--gold:hover {
  background: #33261f;
  box-shadow: 0 10px 30px rgba(28, 22, 19, 0.25);
}

.text-link {
  color: var(--gold);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease), color 0.3s var(--ease);
  padding-bottom: 2px;
}
.text-link:hover {
  background-size: 100% 1px;
  color: var(--gold-soft);
}

/* ---- Header -------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header--solid {
  background: rgba(19, 16, 16, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bone);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease);
}
.wordmark:hover {
  color: var(--gold);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
}
.site-nav a:not(.btn) {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone-72);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color 0.3s var(--ease), background-size 0.35s var(--ease);
}
.site-nav a:not(.btn):hover {
  color: var(--bone);
  background-size: 100% 1px;
}
.site-nav a[aria-current="page"] {
  color: var(--gold);
  background-size: 100% 1px;
}
.site-nav .btn {
  padding: 0.62rem 1.4rem;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
  margin-right: -0.6rem;
  cursor: pointer;
  z-index: 120;
}
.nav-toggle__bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 7px;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 0 8vw;
    background: rgba(19, 16, 16, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  .site-nav a:not(.btn) {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 7.5vw, 2.5rem);
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--bone);
  }
  .site-nav .btn {
    margin-top: 1rem;
    padding: 0.95rem 2.1rem;
    font-size: 0.95rem;
  }
  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
  }
  body.nav-open {
    overflow: hidden;
  }
  /* A backdrop-filter would make the header the containing block for the
     fixed-position overlay, collapsing it to header height. */
  body.nav-open .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: transparent;
    border-bottom-color: transparent;
  }
  body.nav-open .wordmark {
    position: relative;
    z-index: 115;
  }
  body.nav-open .nav-toggle__bar:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  body.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .nav-toggle__bar:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 26%;
  transform: scale(1.08);
  will-change: transform;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(19, 16, 16, 0.5) 0%,
      rgba(19, 16, 16, 0.12) 38%,
      rgba(19, 16, 16, 0.55) 74%,
      var(--ink) 99%
    ),
    radial-gradient(
      120% 90% at 70% 10%,
      rgba(224, 160, 60, 0.14) 0%,
      transparent 55%
    );
}
.hero__content {
  width: var(--container);
  margin-inline: auto;
  padding-block: clamp(6rem, 14vh, 9rem) clamp(4.5rem, 10vh, 7rem);
}
.hero__kicker {
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.4rem, 11vw, 9.2rem);
  line-height: 1.04;
  margin-left: -0.04em;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.45);
}
.hero__tagline {
  margin-top: 1.6rem;
  max-width: 36em;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--bone-72);
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: max(4vw, 1.5rem);
  color: var(--bone-55);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.hero__scroll:hover {
  color: var(--gold);
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 0.8rem auto 0;
  background: linear-gradient(var(--gold), transparent);
}

/* ---- Selected work index ------------------------------------------------- */
.work-index {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.work-index__row {
  border-bottom: 1px solid var(--line);
}
.work-index__link {
  display: grid;
  grid-template-columns: 3.4rem 5rem 1fr auto auto;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.5rem 0.4rem;
  text-decoration: none;
  transition: background-color 0.3s var(--ease);
}
.work-index__link:hover {
  background: rgba(244, 236, 223, 0.03);
}
.work-index__num {
  font-size: 0.8rem;
  color: var(--bone-55);
  letter-spacing: 0.1em;
}
.work-index__year {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.work-index__title {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.05vw, 1.4rem);
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.work-index__link:hover .work-index__title {
  color: var(--gold);
}
.work-index__source {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-55);
}
.work-index__arrow {
  color: var(--bone-55);
  transition: transform 0.35s var(--ease), color 0.3s var(--ease);
}
.work-index__link:hover .work-index__arrow {
  transform: translate(4px, -4px);
  color: var(--gold);
}
@media (max-width: 700px) {
  .work-index__link {
    grid-template-columns: 3.5rem 1fr auto;
    grid-template-areas:
      "num title arrow"
      "num meta arrow";
    row-gap: 0.35rem;
  }
  .work-index__num {
    grid-area: num;
  }
  .work-index__title {
    grid-area: title;
  }
  .work-index__year,
  .work-index__source {
    grid-area: meta;
  }
  .work-index__source {
    display: none;
  }
  .work-index__arrow {
    grid-area: arrow;
    align-self: center;
  }
}
.work-more {
  margin-top: 2.2rem;
}

/* ---- Kind Words ---------------------------------------------------------- */
.quote-feature {
  max-width: 46rem;
}
.quote-feature + .quote-feature {
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
  padding-top: clamp(2.4rem, 4vw, 3.5rem);
  border-top: 1px solid var(--cream-line);
}
.quote-feature blockquote p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  line-height: 1.18;
  letter-spacing: 0.002em;
  text-wrap: balance;
}
.quote-feature blockquote p::before {
  content: "\201C";
  font-family: var(--font-display);
  color: var(--gold);
  margin-right: 0.08em;
}
.quote-feature blockquote p::after {
  content: "\201D";
  font-family: var(--font-display);
  color: var(--gold);
  margin-left: 0.05em;
}
.quote-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
  padding-top: clamp(2.4rem, 4vw, 3.5rem);
  border-top: 1px solid var(--cream-line);
}
@media (min-width: 820px) {
  .quote-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: start;
  }
}
.quote-card blockquote p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--cream-ink);
}
.quote-attrib {
  margin-top: 1.3rem;
  font-size: 0.92rem;
  color: var(--cream-ink-70);
}
.quote-attrib strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-ink);
  margin-bottom: 0.15rem;
}
.quote-attrib a {
  color: var(--cream-accent);
  text-decoration: underline;
  text-decoration-color: rgba(138, 87, 22, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s var(--ease), color 0.3s var(--ease);
}
.quote-attrib a:hover {
  color: #a63c1e;
  text-decoration-color: currentColor;
}
.section--cream .eyebrow {
  color: var(--cream-accent);
}

/* ---- Work page ----------------------------------------------------------- */
.page-head {
  padding-top: clamp(8rem, 18vh, 11rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-head__title {
  font-size: clamp(2.6rem, 8vw, 6rem);
  margin-left: -0.03em;
}
.page-head__lede {
  margin-top: 1.4rem;
}

.press-feature {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    var(--ink-2) 0%,
    rgba(34, 26, 21, 0.6) 100%
  );
}
@media (min-width: 880px) {
  .press-feature {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}
.press-feature__quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.22;
}
.press-feature__quote::before {
  content: "\201C";
  color: var(--gold);
}
.press-feature__quote::after {
  content: "\201D";
  color: var(--gold);
}
.press-feature__meta {
  margin-top: 1.6rem;
}

.watch-grid {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.5rem);
}
@media (min-width: 780px) {
  .watch-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.yt-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-2);
  display: block;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
  opacity: 0.85;
}
.yt-facade:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.yt-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19, 16, 16, 0.75));
  pointer-events: none;
}
.yt-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(19, 16, 16, 0.7);
  border: 1px solid rgba(244, 236, 223, 0.35);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.yt-facade:hover .yt-facade__play {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.06);
}
.yt-facade__play svg {
  fill: var(--bone);
  margin-left: 3px;
  transition: fill 0.3s var(--ease);
}
.yt-facade:hover .yt-facade__play svg {
  fill: var(--ink);
}
.yt-facade__label {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--bone);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
}
.yt-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  border-radius: 6px;
}

/* ---- About page ---------------------------------------------------------- */
.bio {
  max-width: 62ch;
}
.bio p {
  margin-bottom: 1.4em;
  color: var(--bone-72);
}
.bio p:first-of-type {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: var(--bone);
}
.about-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
}
@media (min-width: 920px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
  .about-grid__media {
    position: sticky;
    top: 6.5rem;
  }
}
.fact-strip {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.6rem;
}
.fact-strip dt {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.fact-strip dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.35;
}

/* ---- CTA band ------------------------------------------------------------ */
.cta-band {
  text-align: center;
}
.cta-band__title {
  font-size: clamp(2.1rem, 5.5vw, 3.9rem);
  margin-bottom: 1.2rem;
}
.cta-band .lede {
  margin-inline: auto;
}
.cta-band .btn {
  margin-top: 2.2rem;
}

/* ---- Contact page -------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
}
@media (min-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}
.contact-form {
  display: grid;
  gap: 1.4rem;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-72);
  margin-bottom: 0.55rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e0a03c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.6rem;
}
.field textarea {
  min-height: 9.5rem;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 160, 60, 0.18);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--bone-55);
}
.contact-aside__block {
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
}
.contact-aside__block:first-child {
  border-top: 0;
  padding-top: 0;
}
.contact-aside__label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-aside__block a {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}
.site-footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 6.5rem);
  line-height: 1;
  color: var(--bone);
  text-decoration: none;
  display: inline-block;
  margin-left: -0.03em;
  transition: color 0.4s var(--ease);
}
.site-footer__wordmark:hover {
  color: var(--gold);
}
.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.site-footer__note {
  max-width: 30em;
  color: var(--bone-72);
}
.site-footer__nav {
  display: flex;
  gap: 1.8rem;
}
.site-footer__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone-72);
  transition: color 0.3s var(--ease);
}
.site-footer__nav a:hover {
  color: var(--gold);
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone-72);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.site-footer__legal {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--bone-55);
}

/* ---- Reveal motion ------------------------------------------------------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__media img {
    transform: none;
    will-change: auto;
  }
}
