/* ============================================================
   SOFIA VASIEVA — WEBSITE STYLESHEET
   Palette: Dark atmospheric with warm amber accents
   Fonts: Cormorant Garamond (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:           #09090c;
  --surface:      #111116;
  --surface-2:    #19191f;
  --border:       rgba(210, 190, 160, 0.08);
  --border-hover: rgba(210, 190, 160, 0.22);
  --text:         #ddd7cb;
  --text-muted:   #c4bdb6;
  --text-faint:   #8c8680;
  --accent:       #c89050;
  --accent-glow:  rgba(200, 144, 80, 0.18);
  --nav-height:   68px;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(9, 9, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── FULL-HEIGHT HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,12,0.5) 0%,
    rgba(9,9,12,0.25) 40%,
    rgba(9,9,12,0.5) 75%,
    rgba(9,9,12,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.77rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 9rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}
.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── PAGE HERO (shorter, for inner pages) ── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 4rem;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

.page-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
  font-weight: 300;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

/* ── TIMELINE (Announcements — Home page) ── */
.timeline {
  max-width: 680px;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  padding-bottom: 2.8rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-date {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
  display: block;
}

.timeline-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.5;
}

.timeline-detail {
  font-size: 0.91rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── TEASER ROW (Home page links) ── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
}

.teaser-card {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  display: block;
}

.teaser-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.teaser-card:hover .teaser-bg { transform: scale(1.06); }

.teaser-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,12,0.48);
  transition: background 0.4s;
}
.teaser-card:hover .teaser-overlay { background: rgba(9,9,12,0.3); }

.teaser-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.teaser-label {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.teaser-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── ALBUM GRID (Music page) ── */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.album-card {
  cursor: pointer;
}

.album-cover-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.album-card:hover .album-cover-wrap { border-color: var(--border-hover); }

.album-cover-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.album-card:hover .album-cover-wrap img { transform: scale(1.04); }

.album-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px dashed rgba(200, 144, 80, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 2rem;
  line-height: 1.7;
}

.album-hover-label {
  position: absolute;
  inset: 0;
  background: rgba(9,9,12,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.album-card:hover .album-hover-label { opacity: 1; }
.album-hover-label span {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.5rem 1.2rem;
}

.album-info { padding: 1rem 0 0; }
.album-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.album-year {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* ── DRAWER (Music page side panel) ── */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(9,9,12,0.72);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(460px, 100vw);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 3rem 2.2rem 3rem;
}
.drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  transition: color 0.2s;
  padding: 2px 6px;
}
.drawer-close:hover { color: var(--text); }

.drawer-cover {
  aspect-ratio: 1;
  max-width: 260px;
  width: 100%;
  margin: 2.5rem auto 1.8rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.drawer-cover img { width: 100%; height: 100%; object-fit: cover; }
.drawer-cover-placeholder {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
  line-height: 1.7;
}

.drawer-album-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.3rem;
}
.drawer-album-year {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.drawer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.drawer-label {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.streaming-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.streaming-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.streaming-link:hover {
  border-color: var(--border-hover);
  background: var(--surface);
  color: var(--accent);
}
.streaming-link svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* ── MERCH GRID ── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem;
}

.merch-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.merch-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  margin-bottom: 1rem;
}
.merch-card:hover .merch-img-wrap { border-color: var(--border-hover); }

.merch-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px dashed rgba(200, 144, 80, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 2rem;
  line-height: 1.7;
}

.merch-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.merch-card:hover .merch-img-wrap img { transform: scale(1.05); }

.merch-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.merch-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.merch-buy {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  display: inline-block;
  transition: border-color 0.2s;
}
.merch-card:hover .merch-buy { border-color: var(--accent); }

/* ── SHEET MUSIC ── */
.sheet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 860px;
}

.sheet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.2rem;
  transition: border-color 0.3s;
}
.sheet-card:hover { border-color: var(--border-hover); }

.sheet-img {
  aspect-ratio: 3/4;
  max-width: 180px;
  width: 100%;
  margin: 0 auto 1.8rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sheet-img img { width: 100%; height: 100%; object-fit: cover; }
.sheet-img-placeholder {
  border: 1px dashed rgba(200, 144, 80, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-align: center;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  line-height: 1.7;
}

.sheet-type {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
  display: block;
}
.sheet-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.sheet-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ── ABOUT PAGE ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
  max-width: 1060px;
}

.portrait-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.portrait-placeholder {
  aspect-ratio: 3/4;
  border: 1px dashed rgba(200, 144, 80, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--accent);
  text-align: center;
  padding: 2.5rem;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.portrait-wrap img.portrait-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: left top;
}

.about-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-tag {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  display: block;
}

.about-bio p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.about-bio p.placeholder {
  color: var(--text-muted);
  font-style: italic;
  border-left: 2px solid rgba(200,144,80,0.4);
  padding-left: 1.2rem;
}

/* ── CONTACT PAGE ── */
.contact-intro {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  max-width: 560px;
}
.contact-label {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 90px;
  padding-top: 4px;
  flex-shrink: 0;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.05rem;
}
.contact-value a { transition: color 0.2s; }
.contact-value a:hover { color: var(--accent); }

.social-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--border-hover); color: var(--text); }

/* ── FOOTER ── */
.footer {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
}

/* ── NEWS STRIP (home page announcements) ── */
.news-strip {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.news-item:last-child { border-bottom: none; }

.news-date {
  font-size: 0.74rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  min-width: 110px;
  flex-shrink: 0;
}

.news-headline {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
}

.news-link {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  margin-left: 0.3em;
}
.news-link:hover { border-color: var(--accent); }

/* ── SINGLES GRID (music page — slightly more compact) ── */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* ── DISCOGRAPHY SECTION DIVIDER ── */
.discography-heading {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-bottom: 1.8rem;
  color: var(--text);
}

/* ── CONTACT FORM ── */
.contact-form {
  max-width: 520px;
  margin-top: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--border-hover);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.form-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.form-success {
  display: none;
  padding: 1.2rem;
  border: 1px solid var(--border-hover);
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--accent);
  margin-top: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .portrait-wrap {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(9,9,12,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem clamp(1.5rem, 5vw, 4rem);
  }
  .nav-toggle { display: flex; }
  .footer { flex-direction: column; align-items: flex-start; }
}
