/* =========================================================
   HOUSE OF ART BY AMBER SHAW
   Design: Museum-grade · Caribbean Elegance
   ========================================================= */

/* ── DESIGN TOKENS ── */
:root {
  /* Palette */
  --white:       #ffffff;
  --cream:       #fcfbf8;
  --cream-mid:   #efe9dc;
  --pale:        #fdfaf0;
  --sage:        #dbe0d7;
  --mahogany:    #000000;
  --teak:        #222222;
  --umber:       #444444;
  --charcoal:    #111111;
  --mid-grey:    #555555;
  --light-grey:  #e8e4df;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --green-deep:  #2a4a36;
  --canopy-h:    90px;    /* total header height: roof peak + nav bar */

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  /* Layout */
  --container:   1240px;
  --gutter:      clamp(2rem, 6vw, 5rem);
  --section-v:   clamp(5rem, 9vw, 8rem);
  --radius-sm:   2px;
  --radius:      4px;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.35s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
strong { font-weight: 600; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ─────────────────────────────────────────────────────────
   HEADER / NAVBAR  — Sleek editorial navigation bar
───────────────────────────────────────────────────────── */

/*
  Structure (all fixed to top):
  .site-header
    #navbar            ← nav bar
      .nav-inner
        .nav-logo  |  .nav-links  |  .nav-hamburger
*/

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 950;
}

/* ── PEAKED ROOF ── */
.header-roof {
  height: 34px;
  background: var(--gold);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  position: relative;
  z-index: 951;
}
.header-roof::after {
  content: '';
  position: absolute;
  inset: 1.5px 0 0 0;
  background: var(--mahogany);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  z-index: 1;
}

/* ── NAV BAR ── */
#navbar {
  background: var(--mahogany);
  border-bottom: 1.5px solid var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;     /* center the whole nav group */
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0.65rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;          /* for hamburger absolute positioning */
}

/* Logo sits left of center links */
.nav-logo { flex-shrink: 0; }
.logo-svg {
  width: 130px; height: 44px;
  color: var(--cream);
  display: block;
}
.logo-svg--footer {
  width: 150px; height: 52px;
}

/* Nav links — centered group */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}
.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mid);
  transition: color var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link.active-nav { color: var(--gold-light); }
.nav-link.nav-cta {
  padding: 0.45em 1.3em;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-link.nav-cta:hover {
  background: var(--gold);
  color: var(--mahogany);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  position: absolute;
  right: var(--gutter);
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

/* ─────────────────────────────────────────────────────────
   PAGE CONTENT TOP OFFSET  (Sleek nav bar ~68px)
───────────────────────────────────────────────────────── */
body {
  padding-top: 90px;
}

/* ─────────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--umber);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--mahogany);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 54ch;
  line-height: 1.75;
}
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section { padding: var(--section-v) 0; }

/* ─────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.8em 2em;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--mahogany);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--teak);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--cream);
  color: var(--mahogany);
}
.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-light {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--cream);
  background: transparent;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline {
  border: 1.5px solid var(--mahogany);
  color: var(--mahogany);
  background: transparent;
}
.btn-outline:hover {
  background: var(--mahogany);
  color: var(--cream);
}
.btn-full { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slideshow slides */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.4);
  opacity: 0;
  transition: opacity 1.8s var(--ease);
}
.hero-slide.active { opacity: 1; }

/* Dark overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(20,10,5,0.55) 0%,
      rgba(20,10,5,0.4) 60%,
      rgba(20,10,5,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  font-size: 0.58em;
  color: var(--cream-mid);
  margin-top: 0.1em;
  letter-spacing: 0.04em;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  max-width: 50ch;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Hero entrance animation */
.reveal-hero {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 1.1s var(--ease) forwards;
}
.reveal-hero:nth-child(1) { animation-delay: 0.1s; }
.reveal-hero:nth-child(2) { animation-delay: 0.3s; }
.reveal-hero:nth-child(3) { animation-delay: 0.5s; }
.reveal-hero:nth-child(4) { animation-delay: 0.7s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--mahogany);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-mid);
  white-space: nowrap;
  font-weight: 500;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────
   THE STUDY (ABOUT)
───────────────────────────────────────────────────────── */
.about { background: var(--sage); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.about-img-primary {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--light-grey);
}
.about-img-secondary {
  grid-column: 2;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--light-grey);
  position: relative;
}
.about-img-primary img,
.about-img-secondary img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.85s var(--ease);
}
.about-img-primary:hover img,
.about-img-secondary:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: 1rem;
  left: -1rem;
  background: var(--mahogany);
  color: var(--cream);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
}
.badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mid);
  margin-top: 0.3rem;
  text-align: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--mahogany);
}
.about-text p {
  color: var(--mid-grey);
  line-height: 1.85;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--mahogany);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ─────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────── */
.gallery {
  background: var(--cream);
  border-top: 1px solid var(--light-grey);
}

/* Filters */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.filter-btn {
  padding: 0.55em 1.5em;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  border: 1.5px solid var(--light-grey);
  border-radius: 100px;
  background: var(--white);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--umber);
  color: var(--mahogany);
}
.filter-btn.active {
  background: var(--mahogany);
  color: var(--cream);
  border-color: var(--mahogany);
}

/* Gallery Grid — masonry-ish */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 5rem;
  align-items: start;
}

/* Featured item spans full width */
.gallery-featured {
  grid-column: 1 / -1;
}
.gallery-featured .gallery-img-wrap {
  /* removed max-height to allow full continuous vertical reveal */
}
.gallery-featured .gallery-caption {
  max-width: 680px;
  margin: 1.5rem auto 0;
  text-align: center;
}

/* Gallery items */
.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item.hidden {
  display: none;
}

/* Museum frame */
.gallery-frame {
  background: #faf8f3;
  padding: clamp(1rem, 2.5vw, 2rem);
  border: clamp(8px, 1.5vw, 16px) solid #1e110a;
  border-radius: var(--radius-sm);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.22),
    0 6px 16px rgba(0,0,0,0.1),
    inset 0 0 10px rgba(0,0,0,0.05);
}
/* Lighter frame for sculptures */
.gallery-frame--sculpture {
  border-color: #2e1e10;
  border-width: clamp(6px, 1vw, 12px);
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: #f8f5f0;
}

/* Image wrapper */
.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: inset 0 0 16px rgba(0,0,0,0.35);
}
.gallery-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease);
}
.gallery-img-wrap:hover img { transform: scale(1.04); }

/* Constrain scale to prevent blurriness on massive original images */
.gallery-img-wrap--massive {
  max-width: 480px;
  margin: 0 auto;
}
.gallery-img-wrap--massive img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}



/* Sculpture image proportions */
.gallery-img-wrap--sculpture img {
  object-fit: contain;
  background: #fcfbf8; /* Plaster white background instead of darker grey */
  max-height: 580px;
  width: 100%;
}

/* Hover overlay - Revamped to eliminate text-graphic overlap */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.gallery-img-wrap:hover .gallery-overlay { opacity: 1; pointer-events: auto; }

.gallery-overlay-inner {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  padding: 0;
  transition: transform var(--dur) var(--ease);
}
.gallery-img-wrap:hover .gallery-overlay-inner {
  transform: translateX(-50%) translateY(0);
}

/* Hide redundant title and text that obscure the artwork */
.gallery-overlay-inner h3,
.gallery-overlay-inner span {
  display: none;
}

.btn-enquire {
  margin: 0;
  padding: 0.6em 1.6em;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--mahogany);
  border: 1px solid var(--mahogany);
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-enquire:hover { 
  background: var(--gold-light); 
  transform: translateY(-2px);
}

/* Caption */
.gallery-caption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0 0.25rem;
}
.gallery-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--mahogany);
  line-height: 1.3;
}
.gallery-medium {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--umber);
  font-weight: 500;
}
.gallery-desc {
  font-size: 0.875rem;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-top: 0.25rem;
}

/* Sculpture section divider */
.gallery-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0 0.5rem;
}
.gallery-divider .divider-line {
  flex: 1;
  height: 1px;
  background: var(--light-grey);
}
.gallery-divider span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--umber);
  font-weight: 600;
  white-space: nowrap;
}

/* Gallery footer */
.gallery-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.gallery-footer p {
  color: var(--mid-grey);
  font-size: 0.9rem;
}
.gallery-footer a:not(.btn) {
  color: var(--umber);
  font-weight: 500;
  border-bottom: 1px solid var(--umber);
  transition: color var(--dur);
}
.gallery-footer a:not(.btn):hover { color: var(--mahogany); }

/* ─────────────────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────────────────── */
.practice { background: var(--pale); border-top: 1px solid var(--light-grey); }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--umber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--light-grey);
  line-height: 1;
}
.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--mahogany);
}
.practice-card p {
  color: var(--mid-grey);
  font-size: 0.9rem;
  line-height: 1.75;
}
.practice-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
}
.practice-card ul li {
  font-size: 0.8rem;
  color: var(--umber);
  font-weight: 500;
  padding-left: 1rem;
  position: relative;
}
.practice-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────
   VIDEO
───────────────────────────────────────────────────────── */
.video-section { background: var(--white); border-top: 1px solid var(--light-grey); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid var(--light-grey);
  width: 100%;
  margin: 0 auto;
}
.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.scrolling-painting {
  width: 100%;
  height: 68vh;
  background-image: url('Large%20scrollable%20work.png');
  background-size: cover;
  background-position: top center;
  animation: panPainting 45s linear infinite alternate;
}

@keyframes panPainting {
  0%, 2% { background-position: top center; }
  98%, 100% { background-position: bottom center; }
}

/* ─────────────────────────────────────────────────────────
   EXHIBITIONS
───────────────────────────────────────────────────────── */
.exhibitions { background: var(--cream); border-top: 1px solid var(--light-grey); }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 84px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--light-grey), var(--light-grey) 90%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 16px 1fr;
  gap: 0 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(232,228,223,0.7);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mahogany);
  padding-top: 0.2rem;
  text-align: right;
  line-height: 1.2;
}
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.timeline-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.timeline-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
}
.timeline-body p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.65;
}
.timeline-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25em 0.8em;
  border-radius: 100px;
  background: var(--cream-mid);
  color: var(--umber);
  margin-bottom: 0.25rem;
  width: fit-content;
}
.timeline-tag.upcoming { background: var(--mahogany); color: var(--gold-light); }
.timeline-tag.debut { background: var(--green-deep); color: rgba(255,255,255,0.9); }

/* ─────────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────────── */
.contact {
  background: var(--white);
  border-top: 1px solid var(--light-grey);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-text .section-title { margin-top: 0.5rem; }
.contact-text > p {
  color: var(--mid-grey);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.contact-item strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mahogany);
  margin-bottom: 0.15rem;
}
.contact-item a {
  color: var(--umber);
  font-size: 0.9rem;
  transition: color var(--dur);
}
.contact-item a:hover { color: var(--mahogany); }
.contact-item div > :not(strong) {
  font-size: 0.9rem;
  color: var(--mid-grey);
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--mahogany);
  margin-bottom: 1.75rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--umber);
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm);
  padding: 0.8em 1em;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--dur) var(--ease);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mahogany);
  outline: none;
}
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--mid-grey);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--mahogany);
  color: var(--cream);
  padding: 4.5rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.footer-brand p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mid);
  font-weight: 500;
  transition: color var(--dur);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-copy a { color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.2); }
.footer-copy a:hover { color: var(--white); }

/* ─────────────────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hidden { display: none !important; }

/* ─────────────────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
}
.lightbox.open { display: flex; pointer-events: all; }
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(20,10,5,0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.lightbox-backdrop.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.lightbox-inner img {
  max-height: 72vh;
  width: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 12px solid var(--white);
  border-radius: var(--radius-sm);
}
.lightbox-info { text-align: center; }
.lightbox-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.lightbox-info p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: color var(--dur), background var(--dur), transform var(--dur);
  z-index: 2010;
}
.lightbox-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────
   TOAST
───────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mahogany);
  color: var(--cream);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 3000;
  font-size: 0.85rem;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
}
.toast.show { bottom: 1.5rem; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-featured {
    grid-column: 1 / -1;
  }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-featured .gallery-img-wrap {
    max-height: 360px;
  }
  .practice-grid {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before { left: 62px; }
  .timeline-item {
    grid-template-columns: 56px 12px 1fr;
    gap: 0 1rem;
  }
  .timeline-year { font-size: 0.9rem; padding-top: 0.25rem; }

  /* Mobile nav */
  .nav-hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--mahogany);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    align-items: center;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 80;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 0.72rem; color: var(--cream); }

  .hero-content { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .about-images { grid-template-columns: 1fr; }
  .about-img-secondary { grid-column: 1; }
  .about-badge { left: auto; right: 0; }
}
