/* Kayse Ray Photography — portfolio stylesheet */

:root {
  --bg: #0e0d0b;
  --bg-raised: #171512;
  --ink: #ece7df;
  --ink-dim: #a89f92;
  --gold: #c9a15f;
  --gold-bright: #e0bc7e;
  --line: rgba(236, 231, 223, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
  color-scheme: dark; /* native selects, scrollbars and autofill follow the theme */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 4vw, 2.5rem); /* wordmark and nav can never touch */
  padding: 1rem var(--pad);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(14, 13, 11, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: clamp(0.4rem, 1.2vw, 0.7rem); }

/* Over the hero the links sit on a photograph, so each one carries its own
   smoked-glass chip. That is what makes them legible against any frame, and it
   reads as a control rather than as text scattered over the picture. */
.site-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(236, 231, 223, 0.18);
  border-radius: 999px;
  background: rgba(14, 13, 11, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover, .site-nav a:focus-visible {
  color: var(--gold-bright);
  border-color: rgba(201, 161, 95, 0.6);
  background: rgba(14, 13, 11, 0.68);
}

/* Once the header has its own backdrop, a second dark layer on top of it looks
   muddy — so the chips flip to a light tint and float on the bar instead. */
.site-header.scrolled .site-nav a {
  background: rgba(236, 231, 223, 0.07);
  border-color: rgba(236, 231, 223, 0.14);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible {
  background: rgba(236, 231, 223, 0.14);
  border-color: rgba(201, 161, 95, 0.6);
}

/* Book is deliberately the odd one out: the only solid fill in the header,
   matching the hero's primary button so the booking path stays one colour. */
.site-nav a.nav-cta,
.site-header.scrolled .site-nav a.nav-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201, 161, 95, 0.3);
}

.site-nav a.nav-cta:hover, .site-nav a.nav-cta:focus-visible,
.site-header.scrolled .site-nav a.nav-cta:hover,
.site-header.scrolled .site-nav a.nav-cta:focus-visible {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #1a1508;
  box-shadow: 0 6px 20px rgba(224, 188, 126, 0.42);
}

/* Phones: the one-line wordmark plus four nav items overflow the viewport,
   so stack the wordmark into a lockup and tighten the nav. */
@media (max-width: 599px) {
  .site-header {
    padding: 0.7rem var(--pad);
    gap: clamp(0.75rem, 4vw, 2.5rem);
  }

  .wordmark {
    font-size: 1.1rem;
    line-height: 1.05;
  }

  .wordmark span { display: block; }

  .site-nav { gap: clamp(0.25rem, 1.4vw, 0.45rem); align-items: center; }

  /* Four chips plus the wordmark is a tight fit on a 360px screen, so the
     padding shrinks with the viewport rather than wrapping the nav. */
  .site-nav a {
    font-size: clamp(0.6rem, 2.6vw, 0.72rem);
    letter-spacing: 0.06em;
    padding: 0.4rem clamp(0.4rem, 2vw, 0.7rem);
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

.hero-media, .hero-media img, .hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img { object-fit: cover; object-position: center 38%; }

/* on narrow screens bias the crop toward the subject (right of frame) */
@media (max-width: 767px) {
  .hero-media img { object-position: 66% 40%; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14, 13, 11, 0.92) 0%, rgba(14, 13, 11, 0.35) 34%, rgba(14, 13, 11, 0.12) 60%, rgba(14, 13, 11, 0.45) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(3rem, 9vh, 6rem);
  max-width: 60rem;
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-sub {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(236, 231, 223, 0.85);
}

.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(236, 231, 223, 0.6);
  font-size: 1.4rem;
  animation: drift 2.6s ease-in-out infinite;
  text-decoration: none;
}

@keyframes drift {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  min-height: 48px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:hover, .btn:focus-visible {
  background: var(--gold);
  color: #1a1508;
  transform: translateY(-1px);
}

.btn--solid { background: var(--gold); color: #1a1508; }

.btn--solid:hover, .btn--solid:focus-visible { background: var(--gold-bright); border-color: var(--gold-bright); }

/* ---------- Sections ---------- */

.section { padding: clamp(4rem, 10vh, 7rem) var(--pad); }

.section-head { max-width: 72rem; margin: 0 auto clamp(2rem, 5vh, 3.5rem); }

.section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.1;
  text-wrap: balance;
}

/* ---------- Gallery ---------- */

#work { padding-top: clamp(4rem, 10vh, 7rem); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 72rem;
  margin: 0 auto 2rem;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.filter-btn:hover { color: var(--ink); border-color: var(--ink-dim); }

.filter-btn[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1508;
}

.gallery {
  max-width: 72rem;
  margin: 0 auto;
  columns: 3;
  column-gap: 1.1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  position: relative;
  border: 0;
  padding: 0;
  background: var(--bg-raised);
  width: 100%;
  cursor: zoom-in;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

.gallery-item.hidden { display: none; }

.gallery-item img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.6s ease;
}

.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.03); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 13, 11, 0.35), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1023px) { .gallery { columns: 2; } }
@media (max-width: 599px)  { .gallery { columns: 1; } .gallery-item { border-radius: 3px; } }

/* fade-in on scroll */
.gallery-item { opacity: 0; transform: translateY(14px); }
.gallery-item.revealed { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.gallery-item.revealed img { transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }
@media (prefers-reduced-motion: reduce) {
  .gallery-item { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .scroll-hint { animation: none; }
}

/* ---------- Services ---------- */

.services-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

@media (max-width: 1023px) { .services-grid { grid-template-columns: 1fr; max-width: 34rem; } }

.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-raised);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
}

.service-card p {
  color: var(--ink-dim);
  font-size: 0.98rem;
  flex: 1;
}

.service-card a {
  color: var(--gold-bright);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.service-card a:hover, .service-card a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- About ---------- */

.about { background: var(--bg-raised); }

.about-inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.about-inner p {
  color: var(--ink-dim);
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.85;
}

.about-inner p + p { margin-top: 1.2rem; }

.about-sig {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-bright);
}

/* ---------- Contact ---------- */

.contact { text-align: center; padding-bottom: clamp(5rem, 12vh, 8rem); }

.contact .section-head { margin-bottom: 1.5rem; }

.contact-lede {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  color: var(--ink-dim);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.email-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
  overflow-wrap: anywhere;
}

.email-link:hover, .email-link:focus-visible { color: var(--gold-bright); border-color: var(--gold-bright); }

.contact-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.copy-note {
  margin-top: 1rem;
  min-height: 1.5em;
  color: var(--gold-bright);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 6vh, 4rem) var(--pad) 2rem;
  color: var(--ink-dim);
  font-size: 0.85rem;
}

.site-footer a { color: var(--ink-dim); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--gold-bright); }

.footer-cols {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}

@media (max-width: 767px) { .footer-cols { grid-template-columns: 1fr; gap: 2rem; } }

.footer-col { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}

.footer-meta { max-width: 26rem; line-height: 1.7; }

.footer-head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-socials { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.footer-socials span { display: none; }

.footer-bar {
  max-width: 72rem;
  margin: clamp(2rem, 5vh, 3rem) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 7, 6, 0.96);
}

.lightbox.open { display: flex; }

.lightbox-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 2rem);
}

.lightbox-stage picture { display: contents; }

.lightbox-stage img {
  max-width: min(96vw, 1600px);
  max-height: 94svh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  -webkit-user-select: none;
  user-select: none;
}

.lb-btn {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(23, 21, 18, 0.65);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lb-btn:hover, .lb-btn:focus-visible { background: var(--gold); color: #1a1508; }

.lb-close { top: max(0.9rem, env(safe-area-inset-top)); right: 0.9rem; }
.lb-prev { left: 0.6rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 0.6rem; top: 50%; transform: translateY(-50%); }

.lb-count {
  position: absolute;
  z-index: 3;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-dim);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

@media (max-width: 640px) {
  .lb-prev, .lb-next { display: none; } /* swipe instead */
}

body.lb-lock { overflow: hidden; }

/* ---------- Service pages ---------- */

.hero--compact { min-height: min(68svh, 40rem); }

.hero--compact h1 { font-size: clamp(2.1rem, 6vw, 4rem); }

.hero--compact .hero-sub { max-width: 40rem; }

.breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--gold-bright); }
.breadcrumb span[aria-hidden] { margin: 0 0.4rem; opacity: 0.5; }
.breadcrumb [aria-current] { color: var(--ink); }

.page-intro { padding-bottom: 0; }

.page-intro-inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.page-intro-inner p {
  color: var(--ink-dim);
  font-size: clamp(1.02rem, 2.2vw, 1.15rem);
  line-height: 1.85;
}

.page-intro-inner p + p { margin-top: 1.2rem; }

.page-price {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-bright) !important;
}

/* ---------- Cross-links between service pages ---------- */

.cross-links-row {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

@media (max-width: 767px) { .cross-links-row { grid-template-columns: 1fr; } }

.cross-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-raised);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cross-link:hover, .cross-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

/* ---------- Service card extras ---------- */

.service-card h3 a { text-decoration: none; color: inherit; }
.service-card h3 a:hover, .service-card h3 a:focus-visible { color: var(--gold-bright); }

.price-line {
  color: var(--gold-bright) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex: 0 !important;
}

.service-more { margin-top: auto; }

/* ---------- Testimonials ---------- */

.quotes { background: var(--bg-raised); }

.quotes-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.1rem;
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-card blockquote {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink);
}

.quote-card blockquote::before { content: "\201C"; color: var(--gold); }
.quote-card blockquote::after { content: "\201D"; color: var(--gold); }

.quote-card figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.quote-card figcaption span {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-dim);
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 46rem; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item summary:focus-visible { color: var(--gold-bright); }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-answer { padding: 0 2.5rem 1.5rem 0; color: var(--ink-dim); line-height: 1.8; }

/* ---------- Contact form ---------- */

.reply-promise {
  margin: -1.5rem auto 2.5rem;
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.contact-form {
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

@media (max-width: 599px) { .contact-form { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--wide { grid-column: 1 / -1; }

.field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-raised);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease;
}

.contact-form textarea { resize: vertical; min-height: 8rem; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(168, 159, 146, 0.65); }

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 95, 0.18);
}

/* honeypot — off-screen rather than display:none so bots still fill it */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-turnstile { grid-column: 1 / -1; }

.form-actions { grid-column: 1 / -1; display: flex; justify-content: center; }

.form-note {
  grid-column: 1 / -1;
  min-height: 1.5em;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

.form-note--warn { color: var(--gold-bright); }
.form-note a { color: var(--gold-bright); }

.form-sent {
  grid-column: 1 / -1;
  padding: 2.5rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--gold-bright);
}

.contact-or {
  margin: clamp(2.5rem, 6vh, 4rem) 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.contact .email-link { font-size: clamp(1.1rem, 3.6vw, 1.8rem); }

.contact-actions { margin-top: 1.75rem; }

/* ---------- Social links ---------- */

.contact-socials {
  margin-top: clamp(2.5rem, 6vh, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.contact-socials a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.contact-socials a span {
  display: block;
  margin-top: 0.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-dim);
}

.contact-socials a:hover span, .contact-socials a:focus-visible span { color: var(--ink); }

/* ---------- 404 ---------- */

.notfound { padding-top: clamp(8rem, 20vh, 12rem); }

.notfound .section-kicker { font-size: 1rem; letter-spacing: 0.4em; }

.notfound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}
