*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a0a;
  --bg-panel: #141414;
  --text-primary: #f5f0e8;
  --text-muted: rgba(245, 240, 232, 0.55);
  --accent: #c9a96e;
  --accent-glow: rgba(201, 169, 110, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-serif: 'Libre Baskerville', 'Times New Roman', Times, serif;
  --nav-height: 72px;
  --category-height: 120px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 60%, transparent);
  backdrop-filter: blur(8px);
}

.site-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  transition: opacity 0.3s;
}

.nav-brand:hover {
  opacity: 0.8;
}

.nav-brand-small {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-brand-large {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(201, 169, 110, 0.08);
}

/* Stage shifted down from nav */
.about-stage {
  position: relative;
  padding-top: calc(var(--nav-height) + 1.35rem);
}

/* Logo in the right column — raised a bit */
.about-hero {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: block;
  text-align: left;
  padding: 0 0 0.5rem;
  margin: -0.75rem 0 0;
  overflow: visible;
}

.about-hero-bg,
.about-hero-vignette {
  display: none;
}

.about-hero-brand {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
}

.about-title {
  margin: 0;
  line-height: 0;
}

.about-logo {
  display: block;
  width: min(820px, 108%);
  max-width: none;
  height: auto;
  margin: 0;
  transform: scale(1.12);
  transform-origin: top left;
}

/* Sections */
.about-section {
  padding: 4rem 0;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(0.75rem, 2vw, 1.75rem);
  align-items: start;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem) 2rem;
  background: #000;
}

.about-character {
  position: relative;
  width: 100%;
  overflow: visible;
  background: none;
  z-index: 0;
}

.about-character-sticky {
  position: relative;
  top: auto;
  /* Tall static figure — scroll moves past head → boots */
  height: 190vh;
  max-height: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.about-character-glow {
  position: absolute;
  /* Soft champagne halo — nudged left to sit behind her head */
  width: clamp(380px, 48vw, 560px);
  height: clamp(380px, 48vw, 560px);
  left: 42%;
  top: 8vh;
  transform: translate(-50%, -12%);
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(210, 195, 155, 0.42) 0%,
    rgba(180, 160, 120, 0.28) 32%,
    rgba(120, 105, 80, 0.14) 55%,
    rgba(40, 35, 28, 0.06) 72%,
    transparent 84%
  );
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
}

.about-character-sticky::before {
  display: none;
}

.about-character-img {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: top center;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
}

.about-main {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 190vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1rem;
  /* Keep logo + intro clear of the OC */
  padding-left: clamp(4rem, 11vw, 9rem);
  background: transparent;
}

.about-intro {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0 2rem !important;
  margin: 0;
}

.about-intro .about-text {
  max-width: 34rem;
  margin-top: 0.25rem;
  /* Shift hello + description further right of the OC */
  margin-left: clamp(3.5rem, 10vw, 8rem);
  opacity: 1;
  transform: none;
}

.about-intro .about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.about-intro .about-text p {
  color: rgba(245, 240, 232, 0.68);
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 0;
  max-width: 34rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.about-grid.reverse .about-text {
  order: 1;
}

.about-grid.reverse .mediums-visual {
  order: 2;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header h2,
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Portrait (legacy) */
.portrait-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border);
}

.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-glow);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
  margin: 12px;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
}

.about-portrait::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 28%;
  left: 15%;
  bottom: 4%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.18), transparent 72%);
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

.portrait-avatar {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.portrait-avatar img {
  width: 118%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.12);
  transform-origin: center bottom;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
  background: transparent;
}

/* Philosophy cards */
.about-philosophy {
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
  /* Clear the OC elbow / mid-body */
  padding-left: clamp(3.5rem, 12vw, 9rem);
  margin-left: 0;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.philosophy-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.philosophy-card:hover {
  border-color: var(--accent-glow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.philosophy-icon {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.philosophy-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Mediums */
.about-mediums-inner {
  max-width: 720px;
  text-align: left;
}

.about-mediums-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-mediums-inner > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-mediums-inner .mediums-list {
  justify-content: flex-start;
}

.mediums-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.mediums-list li {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--accent-glow);
  border-radius: 2px;
}

.mediums-collage {
  position: relative;
  height: 400px;
  max-width: 420px;
  margin: 0 auto;
}

.collage-img {
  position: absolute;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
}

.collage-1 {
  width: 55%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 1;
}

.collage-2 {
  width: 50%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.collage-3 {
  width: 40%;
  height: 45%;
  top: 30%;
  left: 35%;
  z-index: 3;
}

/* Contact */
.about-contact {
  text-align: left;
  padding-bottom: 2.5rem;
}

.about-contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-text {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  background: var(--accent);
  color: var(--bg-dark);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
  background: #d4b87e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.contact-btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-glow);
}

.contact-btn-outline:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--accent);
}

.gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(0.74rem, 1.2vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.58rem 1.2rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 236, 190, 0.55);
  cursor: pointer;
  background: #e0c888;
  color: #14110c;
  text-shadow: none;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 6px 16px rgba(0, 0, 0, 0.4),
    0 0 14px rgba(201, 169, 110, 0.28);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.gallery-cta-btn:hover {
  background: #f0d79a;
  border-color: rgba(255, 245, 210, 0.8);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(201, 169, 110, 0.38);
}

.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s, gap 0.3s;
}

.gallery-cta:hover {
  color: var(--text-primary);
  gap: 0.85rem;
}

/* Site credit — end of About */
.about-site-credit {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 3vw, 2rem) 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.about-site-credit-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.about-site-credit-text {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.55);
  margin: 0;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-stage {
    padding-top: calc(var(--nav-height) + 1rem);
  }

  .about-hero {
    position: relative;
    top: auto;
    padding: 0 0 1rem;
    text-align: center;
    overflow: visible;
  }

  .about-hero-brand {
    width: min(520px, 100%);
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
  }

  .about-logo {
    width: 100%;
    max-width: 100%;
    transform: none;
    transform-origin: top center;
    margin-inline: auto;
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
  }

  .about-character {
    order: -1;
    max-height: 72vh;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }

  .about-character-sticky {
    position: relative;
    top: auto;
    height: 72vh;
    max-height: none;
    margin-bottom: 0;
  }

  .about-character-glow {
    width: clamp(260px, 70vw, 420px);
    height: clamp(260px, 70vw, 420px);
    left: 50%;
    top: 6vh;
  }

  .about-character-img {
    height: 100%;
    width: auto;
    max-width: 88%;
  }

  .about-main {
    min-height: 0;
    padding-left: 0;
  }

  .about-philosophy {
    padding-left: 0;
  }

  .about-intro {
    min-height: 0;
    padding-top: 0 !important;
    padding-bottom: 2.5rem;
  }

  .about-intro .about-text {
    margin-top: 1rem;
    margin-left: 0;
    max-width: none;
    width: 100%;
  }

  .about-intro .about-text h2 {
    white-space: normal;
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    letter-spacing: 0.08em;
  }

  .about-intro .about-text p {
    max-width: none;
    font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  }

  .philosophy-card {
    padding: 1.35rem 1.15rem;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    word-break: break-word;
  }

  .about-grid,
  .about-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid.reverse .about-text,
  .about-grid.reverse .mediums-visual {
    order: unset;
  }

  .philosophy-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mediums-collage {
    height: 320px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
    --category-height: 100px;
  }

  .site-nav-content {
    padding: 0 1rem;
  }

  .about-section {
    padding: 2.75rem 0;
  }

  .about-hero {
    min-height: 0;
    padding: 0 0 0.75rem;
  }

  .about-character {
    max-height: 58vh;
  }

  .about-character-sticky {
    height: 58vh;
  }

  .about-character-img {
    height: 58vh;
  }

  .section-header h2,
  .about-mediums-inner h2,
  .about-contact-inner h2 {
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

  .site-footer {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .about-intro .about-text h2 {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
  }

  .mediums-list li {
    font-size: 0.68rem;
    padding: 0.35rem 0.65rem;
  }

  .philosophy-card {
    padding: 1.15rem 1rem;
  }
}
