:root {
  --navy: #02111f;
  --navySoft: #263746;
  --cream: #fffaf6;
  --champagne: #f3e8df;
  --rose: #b98578;
  --roseDark: #7a4e48;
  --gold: #c9a86a;
  --goldLight: #e6cf97;
  --ink: #071827;
  --muted: #526176;
  --shell: 510px;
  --hairline: rgba(122, 78, 72, .16);
  --softShadow: 0 18px 50px rgba(2, 17, 31, .10);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--navy); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(185, 133, 120, .16), transparent 34%),
    radial-gradient(circle at 82% 48%, rgba(201, 168, 106, .10), transparent 30%),
    var(--navy);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, svg { display: block; }
[hidden] { display: none !important; }
::selection { background: var(--rose); color: #fff; }

.background-effects {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.grain {
  position: absolute;
  inset: 0;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.glow-one { width: 420px; height: 420px; left: -240px; top: -140px; background: rgba(185,133,120,.22); }
.glow-two { width: 360px; height: 360px; right: -220px; top: 48%; background: rgba(201,168,106,.13); }

.bio-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--shell));
  min-height: 100vh;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 28px 110px rgba(0,0,0,.27);
  overflow: hidden;
}

.hero {
  position: relative;
  height: 500px;
  background: var(--navySoft);
  overflow: hidden;
  border-radius: 0 0 34px 34px;
}
.slides, .slide { position: absolute; inset: 0; }
.slide {
  opacity: 0;
  transform: scale(1.018);
  transition: opacity .75s ease, transform 1.15s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2,17,31,.07) 0%, rgba(2,17,31,.05) 47%, rgba(2,17,31,.62) 77%, rgba(2,17,31,.88) 100%),
    linear-gradient(115deg, rgba(122,78,72,.10), transparent 48%);
}
.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 33%;
  background: linear-gradient(to top, rgba(2,17,31,.30), transparent);
  pointer-events: none;
}

.slide-copy {
  position: absolute;
  z-index: 3;
  left: 34px;
  right: 34px;
  bottom: 65px;
  text-align: center;
  color: #fff;
  text-shadow: 0 7px 24px rgba(0,0,0,.30);
}
.slide-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(230,207,151,.30);
  border-radius: 999px;
  background: rgba(2,17,31,.24);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.94);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.slide-copy h1 {
  margin: 0 auto;
  max-width: 360px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 8.2vw, 43px);
  line-height: 1.01;
  letter-spacing: -.035em;
  font-weight: 600;
}
.slide-copy p {
  margin: 12px auto 0;
  max-width: 320px;
  color: rgba(255,255,255,.93);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .025em;
}

.brand-lockup {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 15px;
  background: rgba(1,9,20,.48);
  backdrop-filter: blur(15px) saturate(115%);
  -webkit-backdrop-filter: blur(15px) saturate(115%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  object-fit: cover;
  border: 1px solid rgba(230,207,151,.18);
  background: var(--navy);
}
.brand-copy { display: flex; flex-direction: column; line-height: .86; }
.brand-copy strong { font-size: 13px; letter-spacing: .035em; font-weight: 800; }
.brand-copy span { margin-top: 6px; color: var(--goldLight); font-size: 7px; font-weight: 700; letter-spacing: .18em; }

.slide-indicators {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}
.indicator {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  transition: width .28s ease, background .28s ease;
  cursor: pointer;
}
.indicator.active { width: 24px; background: var(--goldLight); }

.content-stack {
  position: relative;
  z-index: 10;
  margin-top: -18px;
  padding: 0 22px 36px;
}
.featured-link {
  display: block;
  border: 1px solid rgba(185,133,120,.24);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--softShadow);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.featured-link:hover {
  transform: translateY(-2px);
  border-color: rgba(185,133,120,.42);
  box-shadow: 0 22px 55px rgba(2,17,31,.13);
}
.featured-link:active { transform: scale(.988); }
.featured-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
}
.featured-icon, .link-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--roseDark);
}
.featured-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(243,232,223,.72);
  border: 1px solid rgba(185,133,120,.20);
}
.featured-icon svg, .link-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.featured-copy { min-width: 0; flex: 1; }
.featured-copy strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  line-height: 1.08;
  color: var(--ink);
}
.featured-copy small {
  display: block;
  margin-top: 5px;
  color: var(--roseDark);
  font-size: 8.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.arrow {
  color: var(--gold);
  font-size: 22px;
  transition: transform .2s ease;
}
.featured-link:hover .arrow { transform: translateX(3px); }

.links-section { margin-top: 42px; }
.section-label {
  margin: 0 0 14px;
  text-align: center;
  color: rgba(82,97,118,.68);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.links-list {
  overflow: hidden;
  border: 1px solid rgba(185,133,120,.16);
  border-radius: 21px;
  background: rgba(255,255,255,.48);
}
.link-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(185,133,120,.12);
  background: transparent;
  transition: background .2s ease;
}
.link-card:last-child { border-bottom: 0; }
.link-card:hover { background: rgba(255,255,255,.72); }
.link-card:active { background: rgba(243,232,223,.56); }
.link-accent { display: none; }
.link-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(243,232,223,.78);
  border: 1px solid rgba(185,133,120,.15);
}
.link-icon svg { width: 20px; height: 20px; }
.fill-dot { fill: currentColor; stroke: none; }
.link-copy { flex: 1; min-width: 0; }
.link-copy strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .005em;
}
.link-copy small {
  display: block;
  margin-top: 3px;
  color: rgba(82,97,118,.88);
  font-size: 9px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.link-arrow {
  color: rgba(82,97,118,.60);
  font-size: 17px;
  transition: color .2s ease, transform .2s ease;
}
.link-card:hover .link-arrow { color: var(--roseDark); transform: translateX(2px); }

.bio-card {
  margin-top: 27px;
  padding: 28px 12px 27px;
  border-top: 1px solid rgba(185,133,120,.14);
  border-bottom: 1px solid rgba(185,133,120,.14);
  text-align: center;
  background: transparent;
}
.bio-quote {
  margin: 0 auto;
  max-width: 390px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  color: rgba(7,24,39,.88);
}
.bio-location {
  margin: 12px 0 0;
  color: var(--roseDark);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.services-strip { margin-top: 34px; }
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.services-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(185,133,120,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  color: rgba(7,24,39,.80);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .02em;
}

.footer {
  padding: 0 24px 30px;
  text-align: center;
  color: rgba(82,97,118,.72);
}
.footer p { margin: 0; font-size: 8.5px; line-height: 1.5; }
.footer-note { margin-top: 5px !important; }

.featured-link:focus-visible,
.link-card:focus-visible,
.indicator:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  body { background: var(--cream); }
  .background-effects { display: none; }
  .bio-shell { width: 100%; box-shadow: none; }
  .hero { height: min(500px, 72svh); min-height: 455px; }
}

@media (max-width: 390px) {
  .hero { min-height: 440px; }
  .slide-copy { left: 26px; right: 26px; bottom: 62px; }
  .slide-copy h1 { font-size: 36px; }
  .content-stack { padding-inline: 17px; }
  .featured-inner { padding-inline: 14px; }
  .featured-copy strong { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
