/* ============================================================
   Chanté Wouden Engh — Portfolio shared styles
   Brand mirrors: Tabernacle Choir at Temple Square digital identity
   ============================================================ */

:root {
  --gold: #D2B77B;
  --gold-soft: #E5CC95;
  --gold-dark: #9A7818;
  --gold-shine: linear-gradient(135deg, #8A6612 0%, #D4A53A 45%, #E7BE5C 55%, #8A6612 100%);
  --navy-deep: #11496B;
  --navy-mid: #2B6D8E;
  --navy-light: #4CA2C8;
  --black: #000000;
  --offblack: #0a0a0a;
  --ink: #14151A;
  --white: #FFFFFF;
  --cream: #F8F5EE;
  --paper: #FAFAF7;
  --gray-text: #2C2C30;
  --gray-mid: #5B5B62;
  --gray-line: #E4E1D8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4, h5, .display, .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--gold);
}
.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

/* ================ NAV ================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(210,183,123,0.18);
  z-index: 100;
  height: 72px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--white); }
.brand-e {
  width: 50px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  margin-top: -2px;
}
.brand-e svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white);
}
.brand-text span {
  display: block;
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.28em; color: var(--gold); margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold-soft);
  color: var(--offblack) !important;
  padding: 0.65rem 1.2rem; border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem !important; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.nav-cta:hover {
  background: #D4B97A;
}
.nav-toggle { display: none; background: none; border: 0; color: var(--gold); cursor: pointer; padding: 0.5rem; font-size: 1.4rem; }
@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--offblack); padding: 1rem 0; border-bottom: 1px solid rgba(210,183,123,0.18); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 2rem; }
  .nav-toggle { display: block; }
}

/* ================ HERO ================ */
.hero {
  position: relative; background: var(--offblack); color: var(--white);
  padding: 140px 2rem 100px; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(210,183,123,0.08), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(76,162,200,0.06), transparent 55%);
  pointer-events: none;
}
.hero-pipes {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 90px; display: flex; align-items: flex-end; gap: 8px;
  padding: 0 1.5rem; opacity: 0.85;
}
.hero-pipes span { flex: 1; background: var(--gold); border-radius: 2px 2px 0 0; }
.hero-pipes span:nth-child(1) { height: 35%; }
.hero-pipes span:nth-child(2) { height: 60%; }
.hero-pipes span:nth-child(3) { height: 95%; }
.hero-pipes span:nth-child(4) { height: 75%; }
.hero-pipes span:nth-child(5) { height: 50%; }
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 5rem;
  align-items: center; position: relative;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-name {
  margin-bottom: 0.6rem;
  line-height: 1;
}
.hero-first {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(3.8rem, 9vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: none;
  margin-bottom: 0.35rem;
}
.hero-last {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.hero-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(210,183,123,0.3);
  display: inline-block;
}
.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.18rem; line-height: 1.6;
  color: rgba(255,255,255,0.88); margin-bottom: 2.4rem;
  max-width: 520px; font-weight: 300;
}
.hero-tagline strong { font-weight: 600; color: var(--white); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.75rem; border: 1px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary {
  background: var(--gold-soft);
  color: var(--offblack);
  border-color: var(--gold-soft);
  transition: background 0.2s ease;
}
.btn-primary:hover {
  background: #D4B97A;
  border-color: #D4B97A;
}
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: rgba(210,183,123,0.12); }
.btn-dark { background: var(--offblack); color: var(--gold); border-color: var(--gold); }
.btn-dark:hover { background: var(--gold); color: var(--offblack); }
.btn-metallic {
  background: var(--gold-shine);
  color: var(--offblack) !important;
  border-color: #8A6612;
  transition: filter 0.2s ease;
}
.btn-metallic:hover {
  filter: brightness(1.08);
}

.hero-photo-wrap {
  position: relative; aspect-ratio: 3 / 4;
  max-width: 440px; justify-self: end; width: 100%;
}
.hero-photo-wrap::before {
  content: ''; position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
  z-index: 2;
}
.hero-photo-wrap::after {
  content: ''; position: absolute; top: -16px; left: -16px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
  z-index: 2;
}
.hero-photo { position: relative; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
@media (max-width: 880px) {
  .hero { padding: 110px 1.5rem 60px; min-height: auto; }
  .hero-pipes { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "name"
      "photo"
      "tagline"
      "ctas";
    gap: 1.2rem;
  }
  /* Let hero-text's children participate directly in the parent grid */
  .hero-text { display: contents; }
  .hero-eyebrow { grid-area: eyebrow; }
  .hero-name { grid-area: name; }
  .hero-role { display: none; }
  .hero-photo-wrap {
    grid-area: photo;
    justify-self: center;
    max-width: 280px;
    margin: 0.6rem 0 1.8rem;
  }
  .hero-tagline { grid-area: tagline; max-width: none; }
  .hero-ctas {
    grid-area: ctas;
    justify-content: center;
  }
}

/* ================ PHOTO FRAMES ================ */
.photo-frame {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 65%, var(--navy-light) 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; text-align: center;
}
.photo-frame::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(210,183,123,0.06) 18px 19px);
  pointer-events: none; z-index: 1;
}
.photo-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 2;
}
.photo-label {
  position: relative; z-index: 0;
  padding: 1.2rem; max-width: 90%; line-height: 1.5;
}
.photo-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
  margin: 0 auto 0.8rem;
}
.photo-label small {
  display: block; font-size: 0.62rem; opacity: 0.75;
  margin-top: 0.4rem; font-weight: 400; letter-spacing: 0.18em;
}

/* ================ SECTIONS ================ */
section { padding: 70px 2rem; position: relative; }
.container { max-width: 1180px; margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 5rem; }
.section-head .eyebrow { display: inline-block; margin-bottom: 1.2rem; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink); margin-bottom: 1.2rem; line-height: 1.1;
}
.section-title .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 600; font-size: 1.38em;
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: lowercase;
}
.section-lede {
  font-size: 1.08rem; color: var(--gray-mid);
  max-width: 680px; margin: 0 auto; line-height: 1.7;
}
.section-dark { background: var(--offblack); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-lede { color: rgba(255,255,255,0.78); }
.section-cream { background: var(--cream); }
.divider { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 2rem; }
.small { font-size: 0.85rem; color: var(--gray-mid); }
.center { text-align: center; }
.mt-3 { margin-top: 2rem; }

/* ================ STORY / heritage / essay / stats / qual / prod / rec / timeline ================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-photo { aspect-ratio: 4 / 5; }
.story-body p { margin-bottom: 1.4rem; font-size: 1.04rem; line-height: 1.8; }
.story-body .lead {
  font-size: 1.22rem; font-weight: 500; color: var(--ink);
  line-height: 1.6; margin-bottom: 1.8rem;
}
.pullquote {
  border-left: 3px solid var(--gold);
  padding: 0.3rem 0 0.3rem 1.6rem; margin: 2.2rem 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.35rem; line-height: 1.5; color: var(--ink);
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.heritage { background: var(--offblack); color: var(--white); padding: 90px 2rem; position: relative; overflow: hidden; }
.heritage::before {
  content: ''; position: absolute;
  left: -100px; top: 50%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(210,183,123,0.08) 0%, transparent 60%);
  transform: translateY(-50%);
}
.heritage-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem; align-items: center; position: relative;
}
.heritage-photo { aspect-ratio: 3 / 4; max-width: 360px; }
.heritage-text .eyebrow { display: inline-block; margin-bottom: 1.2rem; }
.heritage-text h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--white); line-height: 1.15; margin-bottom: 1.6rem;
}
.heritage-text h2 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500; font-size: 1.38em;
  color: var(--gold); text-transform: none;
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heritage-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1.04rem; line-height: 1.8; margin-bottom: 1.2rem;
}
@media (max-width: 880px) {
  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-photo { margin: 0 auto; }
}

/* qualifications */
.qual-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.qual-card {
  background: var(--white); border: 1px solid var(--gray-line);
  padding: 2rem 1.75rem; position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.qual-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--qcolor, var(--gold));
}
.qual-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.08); }
.qual-card .qual-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--qcolor, var(--gold-dark));
  margin-bottom: 0.7rem;
}
.qual-card h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: 1rem; line-height: 1.3; }
.qual-card ul { list-style: none; padding: 0; }
.qual-card li {
  position: relative; padding-left: 1.1rem; margin-bottom: 0.65rem;
  font-size: 0.94rem; line-height: 1.55; color: var(--gray-text);
}
.qual-card li::before {
  content: ''; position: absolute;
  left: 0; top: 0.72rem; width: 6px; height: 1px;
  background: var(--qcolor, var(--gold));
}
.qual-pm   { --qcolor: #D2B77B; }
.qual-con  { --qcolor: #2B8AA5; }
.qual-team { --qcolor: #B23A48; }
.qual-log  { --qcolor: #11496B; }
.qual-crea { --qcolor: #7C5295; }
.qual-serv { --qcolor: #C28E1E; }
.qual-comm { --qcolor: #4CA2C8; }
.qual-work { --qcolor: #1B3A5B; }

/* productions */
.prod-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem; align-items: center;
}
.prod-intro-photo { aspect-ratio: 16 / 10; }
.prod-intro h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--ink); line-height: 1.15; margin-bottom: 1.2rem;
}
.prod-intro p { color: var(--gray-mid); font-size: 1.05rem; line-height: 1.7; }
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.prod-card { background: var(--offblack); color: var(--white); overflow: hidden; position: relative; }
.prod-card-photo { aspect-ratio: 4 / 3; }
.prod-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.prod-card .tag {
  display: inline-block;
  background: var(--gold); color: var(--offblack);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 0.55rem; margin-bottom: 0.7rem;
}
.prod-card h4 { font-size: 1rem; color: var(--white); line-height: 1.3; margin-bottom: 0.45rem; }
.prod-card p { font-size: 0.86rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
.prod-cta { text-align: center; margin-top: 3rem; }
@media (max-width: 880px) { .prod-intro { grid-template-columns: 1fr; gap: 2rem; } }

/* recommendations */
.rec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.6rem; }
.rec-card {
  background: var(--white); padding: 2rem 1.8rem;
  border-top: 3px solid var(--gold);
  position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.rec-card .qmark {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 4rem; color: var(--gold); line-height: 1;
  height: 28px; margin-bottom: 0.4rem; opacity: 0.55;
}
.rec-card blockquote { font-size: 1rem; line-height: 1.7; color: var(--gray-text); margin-bottom: 1.4rem; }
.rec-card .cite {
  border-top: 1px solid var(--gray-line);
  padding-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.rec-card .cite-name { font-weight: 700; color: var(--ink); font-size: 0.88rem; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.rec-card .cite-role { font-size: 0.76rem; color: var(--gray-mid); letter-spacing: 0.04em; line-height: 1.5; }
.cite-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
}
.cite-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cite-avatar .initials { position: relative; z-index: 0; }
.cite-text { flex: 1; min-width: 0; }

/* timeline */
.timeline { position: relative; padding-left: 0; }
.timeline::before {
  content: ''; position: absolute; left: 110px; top: 12px; bottom: 12px;
  width: 1px; background: rgba(210,183,123,0.5);
}
.tl-item { display: grid; grid-template-columns: 100px 1fr; gap: 2.5rem; margin-bottom: 2rem; position: relative; }
.tl-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; color: var(--gold);
  text-align: right; padding-top: 0.2rem; text-transform: uppercase;
}
.tl-item::before {
  content: ''; position: absolute;
  left: 106px; top: 8px; width: 9px; height: 9px;
  background: var(--gold); border-radius: 50%;
  transform: translateX(-50%); box-shadow: 0 0 0 4px var(--offblack);
}
.tl-body { padding-left: 1.5rem; }
.tl-body h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.25rem; line-height: 1.3; }
.tl-body .tl-org { font-family: 'Open Sans', sans-serif; font-weight: 400; color: var(--gold); font-size: 0.85rem; margin-bottom: 0.6rem; letter-spacing: 0.03em; }
.tl-body p { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.6; }
.tl-body ul { list-style: none; padding: 0; margin: 0.8rem 0 0; }
.tl-body li {
  position: relative; padding-left: 1.1rem; margin-bottom: 0.55rem;
  color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.6;
}
.tl-body li::before {
  content: ''; position: absolute; left: 0; top: 0.7rem;
  width: 6px; height: 1px; background: var(--gold);
}
@media (max-width: 700px) {
  .timeline::before { left: 12px; }
  .tl-item { grid-template-columns: 1fr; gap: 0.4rem; padding-left: 38px; }
  .tl-item::before { left: 12px; top: 8px; }
  .tl-year { text-align: left; padding-top: 0; }
  .tl-body { padding-left: 0; }
}

/* essay / meaningful content */
.essay { background: var(--cream); position: relative; }
.essay-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.essay-photo { aspect-ratio: 4 / 5; }
.essay-text .eyebrow { display: inline-block; margin-bottom: 1.2rem; }
.essay-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: var(--ink); line-height: 1.15; margin-bottom: 1.6rem;
}
.essay-text h2 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600; font-size: 1.38em;
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: none;
}
.essay-text p { font-size: 1.04rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 1.2rem; }
.essay-text .closing {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.32rem; color: var(--ink); line-height: 1.5;
  border-top: 1px solid var(--gray-line);
  padding-top: 1.4rem; margin-top: 1.6rem;
}
@media (max-width: 880px) { .essay-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* stats */
.stats { background: var(--offblack); color: var(--white); padding: 70px 2rem; }
.stats-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.5; }

/* contact / footer */
.contact-section { background: var(--offblack); color: var(--white); padding: 75px 2rem 60px; text-align: center; }
.contact-section .footer-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.4rem;
  display: block;
}
.contact-section .footer-logo svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.contact-section h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.contact-section h2 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500; font-size: 1.38em;
  color: var(--gold);
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-section .section-lede { color: rgba(255,255,255,0.8); margin-bottom: 3rem; }
.contact-grid { max-width: 760px; margin: 0 auto 3rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.contact-card { border: 1px solid rgba(210,183,123,0.3); padding: 1.6rem 1.4rem; text-decoration: none; color: var(--white); transition: all 0.2s; display: block; }
.contact-card:hover { background: rgba(210,183,123,0.08); border-color: var(--gold); }
.contact-card .eyebrow { display: block; margin-bottom: 0.4rem; }
.contact-card .val { font-family: 'Open Sans', sans-serif; font-size: 0.96rem; color: var(--white); word-break: break-word; }
footer { border-top: 1px solid rgba(210,183,123,0.18); padding: 2rem 2rem 1.5rem; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.06em; background: var(--black); }
footer .script { color: var(--gold); }

/* ============ SUB-PAGE: page header ============ */
.page-header {
  background: var(--offblack); color: var(--white);
  padding: 150px 2rem 90px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(210,183,123,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(76,162,200,0.06), transparent 55%);
}
.page-header-inner { max-width: 1180px; margin: 0 auto; position: relative; }
.page-header .eyebrow { display: inline-block; margin-bottom: 1.2rem; }
.page-header h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white); line-height: 1.05; margin-bottom: 1.2rem;
}
.page-header h1 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500; font-size: 1.38em;
  color: var(--gold); text-transform: lowercase;
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem; line-height: 1.7;
  max-width: 720px;
}
.page-header .back {
  display: flex; width: fit-content; align-items: center; gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  margin-bottom: 2rem;
  transition: gap 0.2s;
}
.page-header .back:hover { gap: 0.8rem; }

/* recommendations page: grouped sections */
.rec-group { margin-bottom: 4rem; }
.rec-group h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.8rem; margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.rec-group h2 small {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  color: var(--gold-dark); letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* experience page: large timeline blocks with bullets */
.exp-section { padding: 80px 2rem; background: var(--offblack); color: var(--white); }
.exp-section:nth-of-type(even) { background: var(--ink); }

/* ==================================================================
   NARRATIVE BLOCKS — Professional Narrative & Mission Fit sections
   ================================================================== */

.narrative {
  padding: 70px 2rem;
  position: relative;
}
.narrative.bg-dark { background: var(--offblack); color: var(--white); }
.narrative.bg-cream { background: var(--cream); }
.narrative.bg-paper { background: var(--paper); }

.narrative-inner { max-width: 1180px; margin: 0 auto; }
.narrative-narrow { max-width: 880px; margin: 0 auto; }

.narrative-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.narrative h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.narrative.bg-dark h2 { color: var(--white); }
.narrative h2 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600; font-size: 1.38em;
  color: var(--gold-dark);
  text-transform: none;
}
.narrative:not(.bg-dark) h2 .accent {
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.narrative.bg-dark h2 .accent {
  color: var(--gold);
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.narrative p {
  font-size: 1.06rem;
  line-height: 1.85;
  margin-bottom: 1.3rem;
  color: var(--ink);
}
.narrative.bg-dark p { color: rgba(255,255,255,0.84); }
.narrative p em { font-style: italic; }
.narrative p strong { font-weight: 700; }
.narrative.bg-dark p strong { color: var(--white); }

.narrative .divider-thin {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.6rem;
}

/* Two-column split: text + photo */
.narrative-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.narrative-split.photo-left { grid-template-columns: 0.9fr 1.1fr; }
.narrative-split.photo-right { grid-template-columns: 1.1fr 0.9fr; }
.narrative-split .photo-frame { aspect-ratio: 3 / 4; }
.narrative-split.landscape-photo .photo-frame { aspect-ratio: 4 / 3; }

@media (max-width: 880px) {
  .narrative-split,
  .narrative-split.photo-left,
  .narrative-split.photo-right { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Photo credit caption (used under any photo) */
.photo-credit {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--gray-mid);
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}
.narrative.bg-dark .photo-credit { color: rgba(255,255,255,0.55); }

/* Pullquote / blockquote inside narrative */
.narrative blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 1.8rem 0;
}
.narrative.bg-dark blockquote { color: var(--white); }

/* ==================================================================
   MUSIC SECTION — Album cover top, featured photo, sub-gallery
   ================================================================== */

.album-feature {
  max-width: 520px;
  margin: 0 auto 3rem;
  text-align: center;
}
.album-feature .photo-frame {
  aspect-ratio: 1 / 1;
  margin-bottom: 0.6rem;
}
.album-feature-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-top: 0.6rem;
}

.music-featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  margin: 3rem 0;
}
.music-featured .photo-frame { aspect-ratio: 4 / 5; }
.music-featured-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gray-mid);
  margin-top: 0.6rem;
  text-align: center;
}
@media (max-width: 880px) {
  .music-featured { grid-template-columns: 1fr; gap: 2.5rem; }
}

.music-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.music-gallery .photo-frame {
  aspect-ratio: 4 / 3;
}
.music-gallery .photo-label {
  font-size: 0.6rem;
}

/* ==================================================================
   PILLAR CARDS — Equipped for Global Future section
   ================================================================== */

.pillar-intro {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.pillar-intro p {
  font-size: 1.08rem;
  line-height: 1.8;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(210,183,123,0.18);
  padding: 2.2rem 1.9rem;
  position: relative;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.pillar-card .pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.pillar-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}
@media (max-width: 880px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   READY TO COME HOME — closing block
   ================================================================== */
.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.6;
  color: var(--ink);
  margin: 2.4rem auto 0;
  padding: 0;
  background: none;
  border: none;
  text-align: center;
  max-width: 760px;
  position: relative;
}
.closing-tagline::before,
.closing-tagline::after {
  display: none;
}
.narrative.bg-dark .closing-tagline { color: var(--white); }

/* Musical ornament for the closing tagline */
.closing-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.4rem 0 1.2rem;
}
.closing-ornament .ornament-line {
  flex: 0 1 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 40%, var(--gold-dark) 60%, transparent 100%);
  opacity: 0.85;
}
.closing-ornament .ornament-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-dark);
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transform: translateY(-2px);
}
.closing-ornament .ornament-flourish {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold-dark);
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Music section: two photos side-by-side at the top */
.music-top-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto 3rem;
  align-items: start;
}
.music-top-pair .pair-item {
  display: flex;
  flex-direction: column;
}
.music-top-pair .photo-frame {
  aspect-ratio: 1 / 1;
}
.music-top-pair .photo-label small {
  font-size: 0.6rem;
}
@media (max-width: 700px) {
  .music-top-pair { grid-template-columns: 1fr; gap: 1.6rem; max-width: 480px; }
}

/* Music section: landscape featured photo (Piano1_Child reorient) */
.music-featured-landscape {
  margin: 3rem 0;
}
.music-featured-landscape .photo-frame {
  aspect-ratio: 16 / 10;
  max-width: 920px;
  margin: 0 auto;
}
.music-featured-landscape .text-narrow {
  max-width: 760px;
  margin: 2.2rem auto 0;
}
.music-featured-landscape .text-narrow p {
  margin-bottom: 1.3rem;
}

/* ==================================================================
   MUSIC CAROUSEL — featured center with gold corner brackets
   ================================================================== */
.music-carousel {
  position: relative;
  margin: 3.5rem 0 0;
  padding: 0 4rem;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-track {
  position: relative;
  width: 100%;
  max-width: 920px;
  height: 380px;
}
.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.55s ease,
              filter 0.55s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  cursor: pointer;
}
.carousel-slide .photo-frame {
  width: 420px;
  aspect-ratio: 4 / 3;
}
.carousel-slide.is-center {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
  cursor: default;
}
.carousel-slide.is-left {
  opacity: 0.45;
  pointer-events: auto;
  z-index: 2;
  transform: translate(calc(-50% - 320px), -50%) scale(0.7);
  filter: saturate(0.7);
}
.carousel-slide.is-right {
  opacity: 0.45;
  pointer-events: auto;
  z-index: 2;
  transform: translate(calc(-50% + 320px), -50%) scale(0.7);
  filter: saturate(0.7);
}
.carousel-slide.is-left:hover,
.carousel-slide.is-right:hover {
  opacity: 0.85;
  filter: saturate(1);
}
@media (max-width: 880px) {
  .music-carousel { padding: 0 3rem; min-height: 320px; }
  .carousel-track { height: 320px; }
  .carousel-slide .photo-frame { width: 320px; }
  .carousel-slide.is-left { transform: translate(calc(-50% - 240px), -50%) scale(0.65); }
  .carousel-slide.is-right { transform: translate(calc(-50% + 240px), -50%) scale(0.65); }
}
@media (max-width: 600px) {
  .music-carousel { padding: 0 2.5rem; min-height: 260px; }
  .carousel-track { height: 260px; }
  .carousel-slide .photo-frame { width: 240px; }
  .carousel-slide.is-left { transform: translate(calc(-50% - 165px), -50%) scale(0.55); }
  .carousel-slide.is-right { transform: translate(calc(-50% + 165px), -50%) scale(0.55); }
}

/* Gold corner brackets on the center slide */
.carousel-slide .corner-tl,
.carousel-slide .corner-br {
  position: absolute;
  width: 38px;
  height: 38px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.carousel-slide .corner-tl {
  top: -12px; left: -12px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.carousel-slide .corner-br {
  bottom: -12px; right: -12px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.carousel-slide.is-center .corner-tl,
.carousel-slide.is-center .corner-br { opacity: 1; }

/* Gold circular arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1;
  padding: 0;
  padding-bottom: 4px;
}
.carousel-arrow:hover {
  background: var(--gold);
  color: var(--offblack);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Carousel pagination dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.carousel-dot.is-active {
  background: var(--gold-dark);
  transform: scale(1.3);
}

/* Gold ornament divider (above carousel) */
.gold-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 3rem 0 0;
  color: var(--gold-dark);
}
.gold-ornament .line {
  width: 80px;
  height: 1px;
  background: var(--gold-dark);
  opacity: 0.7;
}
.gold-ornament .dot {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  color: var(--gold-dark);
  background: var(--gold-shine);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==================================================================
   RECOMMENDATIONS CAROUSEL — mirrors music carousel pattern
   ================================================================== */
.rec-carousel {
  position: relative;
  margin: 3rem auto 0;
  padding: 0 4rem;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1180px;
}
.rec-carousel .carousel-track {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 520px;
}
.rec-carousel .carousel-slide .rec-card {
  width: 440px;
  height: auto;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.rec-carousel .carousel-slide .rec-card blockquote {
  flex: 1;
}
.rec-carousel .carousel-slide.is-left {
  transform: translate(calc(-50% - 360px), -50%) scale(0.7);
}
.rec-carousel .carousel-slide.is-right {
  transform: translate(calc(-50% + 360px), -50%) scale(0.7);
}
@media (max-width: 880px) {
  .rec-carousel { padding: 0 3rem; min-height: 480px; }
  .rec-carousel .carousel-track { height: 480px; }
  .rec-carousel .carousel-slide .rec-card { width: 360px; min-height: 400px; padding: 1.6rem 1.4rem; }
  .rec-carousel .carousel-slide.is-left { transform: translate(calc(-50% - 280px), -50%) scale(0.65); }
  .rec-carousel .carousel-slide.is-right { transform: translate(calc(-50% + 280px), -50%) scale(0.65); }
}
@media (max-width: 600px) {
  .rec-carousel { padding: 0 2.5rem; min-height: 440px; }
  .rec-carousel .carousel-track { height: 440px; }
  .rec-carousel .carousel-slide .rec-card { width: 270px; min-height: 380px; padding: 1.4rem 1.1rem; font-size: 0.85rem; }
  .rec-carousel .carousel-slide .rec-card blockquote { font-size: 0.9rem; }
  .rec-carousel .carousel-slide.is-left { transform: translate(calc(-50% - 190px), -50%) scale(0.55); }
  .rec-carousel .carousel-slide.is-right { transform: translate(calc(-50% + 190px), -50%) scale(0.55); }
}

/* ==================================================================
   EXPERIENCE TIMELINE — Collapsible accordion (native <details>)
   ================================================================== */
.exp-accordion {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.exp-accordion details {
  border-bottom: 1px solid rgba(210,183,123,0.18);
  background: transparent;
  transition: background 0.25s ease;
}
.exp-accordion details:first-child {
  border-top: 1px solid rgba(210,183,123,0.18);
}
.exp-accordion details[open] {
  background: rgba(210,183,123,0.04);
}
.exp-accordion details summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 0.5rem;
  display: grid;
  grid-template-columns: 200px 1fr 36px;
  gap: 1.5rem;
  align-items: center;
  outline: none;
}
.exp-accordion details summary::-webkit-details-marker { display: none; }
.exp-accordion details summary::marker { display: none; }
.exp-accordion details summary:hover .exp-acc-title { color: var(--gold); }
.exp-accordion .exp-acc-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.3;
}
.exp-accordion .exp-acc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}
.exp-accordion .exp-acc-org {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.exp-accordion .exp-acc-chevron {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(210,183,123,0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.3s ease, background 0.2s ease;
  font-family: 'Cormorant Garamond', serif;
}
.exp-accordion details[open] .exp-acc-chevron {
  transform: rotate(180deg);
  background: rgba(210,183,123,0.12);
}
.exp-accordion .exp-acc-body {
  padding: 0 0.5rem 1.8rem;
  max-width: 880px;
  margin-left: 215px;
}
.exp-accordion .exp-acc-body p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.98rem;
}
.exp-accordion .exp-acc-body ul { list-style: none; padding: 0; margin: 0; }
.exp-accordion .exp-acc-body li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  font-size: 0.95rem;
}
.exp-accordion .exp-acc-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.75rem;
  width: 8px; height: 1px;
  background: var(--gold);
}
.exp-accordion .exp-acc-body li strong { color: var(--white); }
.exp-accordion .exp-acc-body em { font-style: italic; }

/* Expand-all helper button */
.exp-controls {
  text-align: right;
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 0 2rem;
}
.exp-toggle-all {
  background: transparent;
  border: 1px solid rgba(210,183,123,0.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.exp-toggle-all:hover {
  background: rgba(210,183,123,0.12);
  color: var(--gold-soft);
}

@media (max-width: 700px) {
  .exp-accordion details summary { grid-template-columns: 1fr 32px; gap: 0.8rem; }
  .exp-accordion .exp-acc-year { grid-column: 1 / -1; margin-bottom: 0.4rem; }
  .exp-accordion .exp-acc-body { margin-left: 0; padding-bottom: 1.5rem; }
}

/* ==================================================================
   WORK PHOTOS CAROUSEL — top of experience page
   CERTIFICATIONS CAROUSEL — bottom of experience page
   Both reuse the music-carousel center-feature pattern
   ================================================================== */
.work-carousel,
.cert-carousel {
  position: relative;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-carousel {
  min-height: 420px;
}
.cert-carousel {
  min-height: 380px;
}
.work-carousel .carousel-track,
.cert-carousel .carousel-track {
  position: relative;
  width: 100%;
  max-width: 920px;
}
.work-carousel .carousel-track { height: 420px; }
.cert-carousel .carousel-track { height: 380px; }
.work-carousel .carousel-slide .photo-frame,
.cert-carousel .carousel-slide .photo-frame {
  width: 460px;
  aspect-ratio: 4 / 3;
}
.cert-carousel .carousel-slide .photo-frame {
  width: 380px;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid var(--gold);
}
.cert-carousel .carousel-slide .photo-frame img {
  object-fit: contain;
  background: var(--white);
  padding: 8px;
}
.work-carousel .carousel-slide.is-left,
.cert-carousel .carousel-slide.is-left {
  transform: translate(calc(-50% - 340px), -50%) scale(0.7);
}
.work-carousel .carousel-slide.is-right,
.cert-carousel .carousel-slide.is-right {
  transform: translate(calc(-50% + 340px), -50%) scale(0.7);
}
@media (max-width: 880px) {
  .work-carousel, .cert-carousel { padding: 0 3rem; min-height: 340px; }
  .work-carousel .carousel-track, .cert-carousel .carousel-track { height: 340px; }
  .work-carousel .carousel-slide .photo-frame { width: 340px; }
  .cert-carousel .carousel-slide .photo-frame { width: 300px; }
  .work-carousel .carousel-slide.is-left, .cert-carousel .carousel-slide.is-left {
    transform: translate(calc(-50% - 260px), -50%) scale(0.65);
  }
  .work-carousel .carousel-slide.is-right, .cert-carousel .carousel-slide.is-right {
    transform: translate(calc(-50% + 260px), -50%) scale(0.65);
  }
}
@media (max-width: 600px) {
  .work-carousel, .cert-carousel { padding: 0 2.5rem; min-height: 280px; }
  .work-carousel .carousel-track, .cert-carousel .carousel-track { height: 280px; }
  .work-carousel .carousel-slide .photo-frame { width: 240px; }
  .cert-carousel .carousel-slide .photo-frame { width: 220px; }
  .work-carousel .carousel-slide.is-left, .cert-carousel .carousel-slide.is-left {
    transform: translate(calc(-50% - 170px), -50%) scale(0.55);
  }
  .work-carousel .carousel-slide.is-right, .cert-carousel .carousel-slide.is-right {
    transform: translate(calc(-50% + 170px), -50%) scale(0.55);
  }
}

.experience-section-band {
  background: var(--offblack);
  padding: 60px 0;
  border-top: 1px solid rgba(210,183,123,0.12);
  border-bottom: 1px solid rgba(210,183,123,0.12);
}
.experience-section-band-cream {
  background: var(--cream);
  padding: 60px 0;
}
.experience-section-band .section-eyebrow,
.experience-section-band-cream .section-eyebrow {
  text-align: center;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.experience-section-band-cream .section-eyebrow { color: var(--gold-dark); }

/* Test: black highlight behind metallic gold accent for readability on light backgrounds */
.accent-highlight {
  display: inline-block;
  background: var(--offblack);
  padding: 0.05em 0.4em 0.08em;
  margin: 0 0.04em;
  vertical-align: baseline;
  border-radius: 2px;
  line-height: 1.05;
}

.body-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(210,183,123,0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.body-link:hover {
  color: var(--gold-soft);
  text-decoration-color: var(--gold);
}

/* ================ MOBILE-ONLY OVERRIDES ================ */
/* Hero eyebrow: show mobile version, hide desktop version */
.hero-eyebrow-mobile { display: none; }

@media (max-width: 880px) {
  /* 1. Hero eyebrow swap */
  .hero-eyebrow { display: none; }
  .hero-eyebrow-mobile {
    display: block;
    grid-area: eyebrow;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
  }

  /* 2. "Living the Legacy" section heading — left align on mobile */
  .music-section-head {
    text-align: left !important;
  }
  .music-section-head .divider {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* 3. "Strategic Pillars" intro — left align on mobile */
  .pillar-intro {
    text-align: left;
  }
  .pillar-intro .divider {
    margin-left: 0;
    margin-right: auto;
  }
}
