/* ==========================================================================
   Glee Dango — Personal Website
   Design system inspired by her 2023 EPK
   ========================================================================== */

/* ----- Reset / Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ----- Color & Tokens ----- */
:root {
  --cream:        #fbf3e9;
  --cream-soft:   #f7ecdc;
  --rose:         #6b2c4a;
  --rose-deep:    #4a1f37;
  --rose-gold:    #c89178;
  --rose-gold-2:  #b3795f;
  --blush:        #f3d6cf;
  --teal:         #2c4f5c;
  --ink:          #2a1f25;
  --ink-soft:     #5a4a52;
  --line:         rgba(74, 31, 55, 0.12);

  --shadow-sm: 0 2px 10px rgba(74, 31, 55, 0.08);
  --shadow-md: 0 10px 30px rgba(74, 31, 55, 0.12);
  --shadow-lg: 0 25px 60px rgba(74, 31, 55, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --max:        1280px;
  --max-narrow: 880px;
}

/* ----- Typography ----- */
.script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--rose-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }

p { margin: 0 0 1.1em; }
p.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

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

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--max-narrow); margin: 0 auto; }
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section.tight { padding: clamp(40px, 6vw, 70px) 0; }
.section.alt { background: var(--cream-soft); }
.section.dark { background: var(--rose-deep); color: #f7ecdc; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #f7ecdc; }

.text-center { text-align: center; }
hr.flourish {
  border: 0;
  text-align: center;
  margin: 36px auto;
  position: relative;
  height: 18px;
}
hr.flourish::before {
  content: "✦";
  color: var(--rose-gold);
  font-size: 14px;
  letter-spacing: 0.6em;
  position: relative;
  top: -2px;
}

/* ----- Nav ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 233, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand .name {
  font-family: 'Pinyon Script', cursive;
  font-size: 2rem;
  color: var(--rose);
  line-height: 1;
}
.nav__brand .tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--rose-deep);
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--rose-gold);
  border-radius: 2px;
}
.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50px;
  padding: 8px 14px;
  color: var(--rose-deep);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.nav__toggle span {
  display: inline-block;
  width: 16px;
  margin-right: 6px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  height: 8px;
  vertical-align: middle;
}

@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; align-items: center; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 20px;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .nav__links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 24px 80px;
  min-height: min(85vh, 720px);
}
.hero__copy { position: relative; z-index: 2; }
.hero__copy .name {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.85;
  color: var(--rose);
  margin: 0 0 0.05em;
  letter-spacing: 0;
}
.hero__copy .tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  border-top: 1px solid var(--rose-gold);
  border-bottom: 1px solid var(--rose-gold);
  padding: 8px 4px;
  margin: 12px 0 26px;
  font-weight: 500;
}
.hero__copy p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero__cta {
  display: inline-flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn--primary {
  background: var(--rose-deep);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  border-color: var(--rose);
  color: var(--rose-deep);
}
.btn--ghost:hover {
  background: var(--rose-deep);
  color: var(--cream);
}

.hero__media {
  position: relative;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__portrait {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  background: var(--cream-soft) center/cover no-repeat;
  border-radius: 280px 280px 24px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(74,31,55,0.18) 100%);
}

/* ----- Video poster (for non-embeddable sources like Google Photos) ----- */
.video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--rose-deep);
  text-decoration: none;
}
.video-poster__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.85);
}
.video-poster:hover .video-poster__media {
  transform: scale(1.04);
  filter: brightness(0.95);
}
.video-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s ease;
}
.video-poster:hover .video-poster__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-poster__play svg { width: 100%; height: 100%; }
.video-poster__label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.video-poster__label small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

/* ----- Featured dances grid ----- */
.featured-dances {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

/* ----- Video embeds ----- */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--rose-deep);
  box-shadow: var(--shadow-md);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero__video {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-stack {
  display: grid;
  gap: 18px;
}
.video-card .label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  font-weight: 600;
  margin: 0 0 8px;
}
.video-card .title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 10px 0 0;
}
.hero__deco {
  position: absolute;
  font-family: 'Pinyon Script', cursive;
  color: rgba(200, 145, 120, 0.18);
  font-size: 26vw;
  line-height: 1;
  top: -10%;
  right: -8%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 24px 60px;
    text-align: center;
  }
  .hero__copy p { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__portrait { max-width: 320px; margin: 0 auto; }
  .hero__deco { font-size: 50vw; }
}

/* ----- Marquee tag-line ----- */
.marquee {
  background: var(--rose-deep);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.marquee__track {
  display: inline-flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  padding-left: 50px;
}
.marquee span::before {
  content: "✦ ";
  color: var(--rose-gold);
  margin-right: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Tile grid (home & inner pages) ----- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 36px 0 0;
}
.tile {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tile__media {
  aspect-ratio: 4 / 3;
  background: var(--cream-soft) center/cover no-repeat;
  position: relative;
}
.tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(74,31,55,0.35) 100%);
}
.tile__body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tile__body h3 {
  margin: 0;
  font-size: 1.25rem;
}
.tile__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.tile__cta {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}
.tile__cta::after {
  content: " →";
  transition: transform 0.2s ease;
  display: inline-block;
}
.tile:hover .tile__cta::after { transform: translateX(4px); }

/* ----- Section header ----- */
.section-head { margin-bottom: 28px; }
.section-head--center { text-align: center; }
.section-head h2 {
  margin: 0 0 14px;
}
.section-head p {
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ----- Page header / banner ----- */
.page-banner {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(60px, 10vw, 100px);
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
  overflow: hidden;
}
.page-banner h1 {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.85;
  color: var(--rose);
  margin: 0 0 6px;
}
.page-banner .tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  font-weight: 500;
}
.page-banner p {
  margin: 16px auto 0;
  max-width: 60ch;
  color: var(--ink-soft);
  padding: 0 24px;
}

/* ----- Side-by-side feature row ----- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.feature--reverse .feature__media { order: 2; }
.feature__media img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.feature__media .frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.feature__copy h2 { margin-bottom: 14px; }
@media (max-width: 880px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature--reverse .feature__media { order: 0; }
}

/* ----- Credit table ----- */
.credits {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}
.credits caption {
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--rose-deep);
  padding: 20px 0 12px;
}
.credits th, .credits td {
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.credits th {
  font-weight: 600;
  color: var(--rose-deep);
  background: var(--cream-soft);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.credits .role { color: var(--rose-gold-2); font-weight: 600; }
.credits .net { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 640px) {
  .credits { font-size: 0.92rem; }
  .credits th, .credits td { padding: 10px 8px; }
}

/* ----- Highlight cards (featured roles) ----- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.highlight {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.highlight::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-gold) 100%);
}
.highlight h3 { margin-top: 4px; }
.highlight .role {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  font-weight: 600;
  margin-bottom: 4px;
}
.highlight .net {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 6px;
}

/* ----- Awards / list ----- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.award {
  background: #fff;
  border-left: 4px solid var(--rose-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.award .yr {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rose);
  background: var(--blush);
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.award h4 { margin: 4px 0 4px; font-size: 1rem; color: var(--rose-deep); }
.award p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

/* ----- Press list ----- */
.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.press-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
}
.press-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md, 0 6px 18px rgba(0,0,0,0.08)); }
.press-item:hover .open { text-decoration: underline; }
a.highlight { color: inherit; text-decoration: none; display: block; transition: transform 0.2s ease, box-shadow 0.2s ease; }
a.highlight:hover { transform: translateY(-2px); box-shadow: var(--shadow-md, 0 6px 18px rgba(0,0,0,0.08)); }
.press-item .date {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--rose-gold-2);
  font-weight: 600;
  text-transform: uppercase;
}
.press-item h4 { margin: 0; color: var(--rose-deep); font-size: 1.05rem; }
.press-item .pub { display:block; color: var(--ink-soft); font-size: 0.85rem; margin-top: 4px;}
.press-item .open {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}
@media (max-width: 640px) {
  .press-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ----- EPK page strip ----- */
.epk-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.epk-strip img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}
.epk-strip a:hover img { transform: scale(1.02); }

/* ----- Quote ----- */
blockquote.pull {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  line-height: 1.4;
  color: var(--rose-deep);
  border-left: 3px solid var(--rose-gold);
  padding: 6px 0 6px 22px;
  margin: 30px 0;
  max-width: 60ch;
}
blockquote.pull cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  margin-top: 12px;
}

/* ----- Skill badges ----- */
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--blush);
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ----- Stats row ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 30px 0 0;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 24px;
}
.stat { text-align: center; padding: 10px; }
.stat .num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--rose);
  line-height: 1;
  display: block;
}
.stat .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 500;
}

/* ----- Footer ----- */
.footer {
  background: var(--rose-deep);
  color: var(--cream-soft);
  padding: 60px 0 30px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer .name {
  font-family: 'Pinyon Script', cursive;
  font-size: 3rem;
  color: var(--cream);
  line-height: 1;
  margin: 0;
}
.footer .tag {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin: 4px 0 14px;
  display: block;
}
.footer p { color: rgba(247, 236, 220, 0.78); font-size: 0.92rem; margin: 0 0 0.8em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin: 8px 0; }
.footer a { color: rgba(247, 236, 220, 0.85); font-size: 0.92rem; transition: color 0.2s ease; }
.footer a:hover { color: var(--rose-gold); }
.footer__legal {
  border-top: 1px solid rgba(247, 236, 220, 0.18);
  margin-top: 40px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(247, 236, 220, 0.55);
  letter-spacing: 0.1em;
}
.social-row { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 236, 220, 0.1);
  transition: all 0.2s ease;
  color: rgba(247, 236, 220, 0.85);
}
.social-row a:hover {
  background: var(--rose-gold);
  color: var(--rose-deep);
  transform: translateY(-2px);
}
.social-row svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 760px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ----- Reveal on first paint (no JS dependency) ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.reveal {
  animation: fadeUp 0.7s ease both;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ----- About bio layout ----- */
.bio {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.bio__copy p { margin-bottom: 1.2em; }
.bio__media .frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
@media (max-width: 880px) {
  .bio { grid-template-columns: 1fr; gap: 28px; }
  .bio__media .frame { position: static; }
}

/* ----- Contact card ----- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.contact-card {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--rose-gold);
}
.contact-card h3 { margin-top: 4px; font-size: 1.2rem; }
.contact-card .label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold-2);
  font-weight: 600;
}
.contact-card a {
  color: var(--rose-deep);
  font-weight: 500;
  word-break: break-word;
}
.contact-card a:hover { text-decoration: underline; }
.contact-card p { margin: 4px 0; font-size: 0.95rem; color: var(--ink-soft); }

/* ----- Image showcase rows ----- */
.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.image-row .frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream-soft);
  aspect-ratio: 4 / 3;
}
.image-row .frame.tall {
  aspect-ratio: 3 / 4;
}
.image-row .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Lists with accents ----- */
ul.dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.dot-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
ul.dot-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose-gold);
  font-size: 0.85rem;
  top: 4px;
}
