/* =========================================================
   DRESS BEYOND MANILA — styles.css
   Palette: near-black #0A0906 | lavender #C4A0D4 | lilac #E0C8EC | cream #F8F5FC | dark-alt #14101A
   Fonts: Bodoni Moda (display) + Karla (body)
   ========================================================= */

/* ─── GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,700;1,6..96,400;1,6..96,500&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─── DESIGN TOKENS ────────────────────────────────────── */
:root {
  --dark:       #0A0906;
  --bg-alt:     #14101A;
  --surface:    #1E1828;
  --surface-2:  #2A2236;
  --accent:     #C4A0D4;
  --accent-dim: rgba(196,160,212,.15);
  --highlight:  #E0C8EC;
  --cream:      #F8F5FC;
  --muted:      rgba(248,245,252,.50);
  --border:     rgba(196,160,212,.22);

  --ff-display: 'Bodoni Moda', Georgia, serif;
  --ff-body:    'Karla', system-ui, sans-serif;

  --nav-h:      72px;
  --radius:     4px;
  --trans:      .28s ease;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.15;
  font-weight: 500;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: .02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: .025em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); letter-spacing: .02em; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
section { padding: 5rem 0; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(10,9,6,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a.active { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.nav-cta {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--cream);
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.nav-cta:hover { background: var(--accent); color: var(--dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform var(--trans), opacity var(--trans);
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile {
    position: fixed;
    inset: 0; top: var(--nav-h);
    background: rgba(10,9,6,.97);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
    transform: translateY(-110%);
    transition: transform .35s ease;
    z-index: 800;
  }
  .nav-mobile.open { transform: translateY(0); }
  .nav-mobile a {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--cream);
    letter-spacing: .05em;
  }
  .nav-mobile a.active { color: var(--accent); }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center 20%;
  filter: brightness(.45);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.zoomed { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,6,.2) 0%, rgba(10,9,6,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(820px, 90vw);
}
.hero-label {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-family: var(--ff-body);
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-style: italic;
  margin-bottom: 1.4rem;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(248,245,252,.82);
  margin-bottom: 2.4rem;
  font-weight: 300;
  letter-spacing: .03em;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: .8rem 2.2rem;
  background: var(--accent);
  color: var(--dark);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--trans), transform var(--trans);
}
.btn-primary:hover { background: var(--highlight); transform: translateY(-2px); }
.btn-outline {
  padding: .8rem 2.2rem;
  border: 1px solid rgba(248,245,252,.5);
  color: var(--cream);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--trans), background var(--trans);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(248,245,252,.08); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  animation: bounce 2s ease infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION HEADERS ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .overline {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}
.section-header h2 { color: var(--cream); }
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: .8rem;
  max-width: 560px;
  margin-inline: auto;
}
.divider {
  width: 48px; height: 1px;
  background: var(--accent);
  margin: 1.2rem auto 0;
}

/* ─── INTRO STRIP ─────────────────────────────────────────── */
.intro-strip {
  background: var(--bg-alt);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.intro-item { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.intro-icon { color: var(--accent); margin-bottom: .3rem; }
.intro-item h5 { color: var(--cream); font-size: .85rem; letter-spacing: .12em; }
.intro-item p { color: var(--muted); font-size: .9rem; margin: 0; }
@media (max-width: 600px) { .intro-strip-inner { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ─── FEATURED LOOKS ──────────────────────────────────────── */
.featured-looks { background: var(--dark); }
.looks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.look-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 2/3;
  background: var(--surface);
}
.look-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.look-card:hover img { transform: scale(1.06); }
.look-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,6,.8) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--trans);
}
.look-card:hover .look-card-overlay { opacity: 1; }
.look-card-overlay span {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
@media (max-width: 768px) { .looks-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (max-width: 500px) { .looks-grid { grid-template-columns: 1fr; } }

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works { background: var(--bg-alt); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: steps;
}
.step-item {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--trans), transform var(--trans);
}
.step-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.step-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--accent);
  font-style: italic;
  line-height: 1;
  margin-bottom: .8rem;
}
.step-icon { color: var(--accent); margin-bottom: .8rem; }
.step-item h4 { color: var(--cream); margin-bottom: .5rem; font-size: 1rem; }
.step-item p { color: var(--muted); font-size: .9rem; margin: 0; }
@media (max-width: 800px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--cream); margin-bottom: .8rem; }
.cta-banner p { color: var(--muted); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 360px;
  display: flex; align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,6,.35) 0%, rgba(10,9,6,.75) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: 3rem 0 3.5rem;
}
.page-hero-content .overline {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
  display: block;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--cream);
  font-style: italic;
}
.page-hero-content p {
  color: rgba(248,245,252,.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin-top: .8rem;
  margin-bottom: 0;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-story { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}
.about-text { }
.about-text .overline {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .8rem;
}
.about-text h2 { color: var(--cream); margin-bottom: 1.5rem; }
.about-text p { color: var(--muted); }
.about-text p + p { margin-top: .8rem; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
}

/* ─── VALUES ─────────────────────────────────────────────── */
.values { background: var(--bg-alt); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2.2rem 1.8rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--trans);
}
.value-card:hover { border-color: var(--accent); }
.value-icon { color: var(--accent); margin-bottom: 1rem; }
.value-card h4 { color: var(--cream); margin-bottom: .6rem; }
.value-card p { color: var(--muted); font-size: .92rem; margin: 0; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ─── TIMELINE ───────────────────────────────────────────── */
.timeline { background: var(--dark); }
.timeline-list { max-width: 720px; margin-inline: auto; position: relative; }
.timeline-list::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(odd) .tl-content { grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(odd) .tl-year { grid-column: 2; }
.timeline-item:nth-child(odd) .tl-spacer { grid-column: 1; }
.timeline-item:nth-child(even) .tl-content { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-item:nth-child(even) .tl-year { grid-column: 2; }
.timeline-item:nth-child(even) .tl-spacer { grid-column: 3; }
.tl-year {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: .78rem;
  color: var(--accent);
  letter-spacing: .05em;
  font-style: italic;
  flex-shrink: 0;
  z-index: 2;
}
.tl-content { }
.tl-content h4 { color: var(--cream); font-size: 1rem; margin-bottom: .3rem; }
.tl-content p { color: var(--muted); font-size: .9rem; margin: 0; }
.tl-spacer { }
@media (max-width: 600px) {
  .timeline-list::before { left: 26px; }
  .timeline-item { grid-template-columns: auto 1fr; gap: 1rem; }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content { grid-column: 2; grid-row: 1; text-align: left; }
  .timeline-item:nth-child(odd) .tl-year,
  .timeline-item:nth-child(even) .tl-year { grid-column: 1; }
  .tl-spacer { display: none; }
}

/* ─── COLLECTIONS PAGE ────────────────────────────────────── */
.collections-page { background: var(--dark); }
.category-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.tab-btn {
  padding: .55rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  transition: all var(--trans);
}
.tab-btn:hover,
.tab-btn.active {
  border-color: var(--accent);
  color: var(--cream);
  background: var(--accent-dim);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.collection-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--trans), transform var(--trans);
}
.collection-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.collection-card-img {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.collection-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.collection-card:hover .collection-card-img img { transform: scale(1.06); }
.collection-card-body { padding: 1.2rem 1.4rem; }
.collection-card-body .tag {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
  display: block;
}
.collection-card-body h4 { color: var(--cream); margin-bottom: .4rem; font-size: 1rem; }
.collection-card-body p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ─── TEXT LISTINGS ───────────────────────────────────────── */
.listings-section { background: var(--bg-alt); }
.listings-container { max-width: 860px; margin-inline: auto; }
.listing-category { margin-bottom: 3.5rem; }
.listing-category-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}
.listing-category-icon { color: var(--accent); }
.listing-category-header h3 { color: var(--cream); font-size: 1.3rem; }
.listing-items { display: flex; flex-direction: column; gap: 0; }
.listing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(196,160,212,.08);
}
.listing-item:last-child { border-bottom: none; }
.listing-item-left { flex: 1; }
.listing-item-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-style: italic;
  margin-bottom: .25rem;
}
.listing-item-desc {
  font-size: .88rem;
  color: var(--muted);
}
.listing-item-tag {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-left: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) { .collections-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .collections-grid { grid-template-columns: 1fr; } }

/* ─── GALLERY PAGE ────────────────────────────────────────── */
.gallery-page { background: var(--dark); }
.filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .5rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  transition: all var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--cream);
  background: var(--accent-dim);
}
.gallery-grid {
  columns: 3;
  column-gap: 1.2rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,9,6,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { color: var(--cream); }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,9,6,.96);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 92vh; }
.lightbox-inner img { max-height: 88vh; max-width: 90vw; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--trans);
}
.lightbox-close:hover { color: var(--accent); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--cream);
  cursor: pointer;
  padding: .6rem;
  transition: color var(--trans);
}
.lb-prev { left: -3rem; }
.lb-next { right: -3rem; }
.lb-prev:hover, .lb-next:hover { color: var(--accent); }

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contact-page { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { color: var(--cream); margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon { color: var(--accent); margin-top: .1rem; flex-shrink: 0; }
.contact-detail h5 { color: var(--cream); font-size: .82rem; margin-bottom: .2rem; }
.contact-detail p { color: var(--muted); font-size: .9rem; margin: 0; }
.contact-detail a { color: var(--accent); transition: color var(--trans); }
.contact-detail a:hover { color: var(--highlight); }
.contact-socials { display: flex; gap: 1rem; margin-top: 2rem; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* ─── FORM ───────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-wrap h3 { color: var(--cream); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--trans);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(248,245,252,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-full { grid-column: 1/-1; }
.form-note { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; font-style: italic; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--accent);
}
.form-success svg { margin-bottom: .8rem; }
.form-success h4 { color: var(--cream); margin-bottom: .5rem; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 740px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-style: italic;
  gap: 1rem;
}
.faq-question .faq-icon { color: var(--accent); flex-shrink: 0; transition: transform var(--trans); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}
.faq-answer p {
  padding-bottom: 1.2rem;
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.footer-logo-text {
  font-family: var(--ff-display);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.footer-socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-nav h5 { color: var(--cream); margin-bottom: 1.2rem; }
.footer-nav a {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: .65rem;
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--accent); }
.footer-contact h5 { color: var(--cream); margin-bottom: 1.2rem; }
.footer-contact p { color: var(--muted); font-size: .88rem; margin-bottom: .65rem; }
.footer-contact a { color: var(--accent); transition: color var(--trans); }
.footer-contact a:hover { color: var(--highlight); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(248,245,252,.35); font-size: .82rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a { color: rgba(248,245,252,.35); font-size: .82rem; transition: color var(--trans); }
.footer-bottom-links a:hover { color: var(--accent); }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─── UTILITIES ──────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── ABOUT HERO ─────────────────────────────────────────── */
.about-hero-img-wrap { position: relative; padding: 2rem; }
.about-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-hero-img-wrap img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative; z-index: 1;
}

/* ─── STATS ROW ──────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--accent);
  font-style: italic;
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 600px) { .stats-row { grid-template-columns: 1fr; gap: 1.5rem; } }
