/* ============================================================
   AIKO BERNADETTE — Main Stylesheet
   Fonts: Italiana (display) + Cormorant Garamond (serif body) + Jost (sans)
   ============================================================ */

:root {
  color-scheme: light;
  --ink: #1a1612;
  --ink-soft: #5a4e47;
  --mute: #9a8d84;
  --line: rgba(26, 22, 18, 0.09);
  --line-soft: rgba(26, 22, 18, 0.05);
  --cream: #fbf6f0;
  --cream-2: #f4ece2;
  --paper: #fefcf8;
  --coral: #e48484;
  --coral-deep: #d36e6e;
  --coral-soft: #f3c9c9;

  --serif: "Italiana", "Cormorant Garamond", "Times New Roman", serif;
  --serif-body: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --nav-height: 92px;
  --section-gap: 120px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Scroll Fade-in --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  padding: 14px 56px;
  gap: 32px;
}
.nav-logo-link { display: flex; align-items: center; }
.nav-logo { height: 64px; width: auto; }

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  color: var(--ink);
  cursor: pointer;
  transition: color 200ms;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 1px;
  background: var(--coral);
  transition: all 250ms ease;
}
.nav-links a:hover { color: var(--coral-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0; right: 0; }
.nav-links a.active { color: var(--coral-deep); }

.nav-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  font-family: var(--sans);
}
.nav-side .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

/* Hamburger (mobile) — hidden on desktop, shown via media query */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: sticky;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--paper);
  padding: 32px 48px;
  border-top: 1px solid var(--line);
  z-index: 49;
}
.nav-drawer.open { display: block; }
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-drawer ul a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #14110f;
  color: #ece5dd;
  padding: 22px 56px 16px;
  margin-top: 96px;
  text-align: center;
}
.footer-inner { max-width: 1480px; margin: 0 auto; }
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.footer-nav a { color: #ece5dd; transition: color 200ms; }
.footer-nav a:hover { color: var(--coral); }

.footer-contact {
  padding: 12px 0 8px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(236,229,221,0.85);
}
.footer-contact a:hover { color: var(--coral); }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 6px 0 4px;
}
.footer-socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #ece5dd;
  opacity: 0.85;
  transition: all 220ms;
}
.footer-socials a:hover { color: var(--coral); opacity: 1; transform: translateY(-2px); }
.footer-socials svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bot {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236,229,221,0.42);
}

/* ============================================================
   COMMON UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral-deep);
  font-weight: 500;
}
.container { max-width: 1480px; margin: 0 auto; padding: 0 56px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 56px; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #14110f;
}
.hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: heroKen 22s ease-in-out infinite alternate;
}
@keyframes heroKen {
  0%   { transform: scale(1.06) translate(0%, 0%); }
  50%  { transform: scale(1.14) translate(-1.5%, -1%); }
  100% { transform: scale(1.20) translate(1.5%, 1.5%); }
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-cta-wrap {
  position: absolute;
  inset: auto 0 56px 0;
  display: flex;
  justify-content: center;
  z-index: 3;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 280ms ease;
}
.hero-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-cta .arr { transition: transform 280ms ease; }
.hero-cta:hover .arr { transform: translateX(4px); }

/* ============================================================
   HOME — COLLECTION PREVIEW (3-up)
   ============================================================ */
.home-coll {
  padding: 120px 56px 80px;
}
.home-coll-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 56px;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}
.home-coll-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  margin: 12px 0 0;
  letter-spacing: 0.01em;
}
.home-coll-head h2 em {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1480px;
  margin: 0 auto;
}
.three-up .card { position: relative; overflow: hidden; cursor: pointer; }
.three-up .card .photo {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.three-up .card:hover .photo { transform: scale(1.05); }
.three-up .card .meta {
  padding: 18px 4px 0;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}
.three-up .card .meta .title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}
.three-up .card .meta .coll-name {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
}
.preview-link-wrap {
  text-align: center;
  margin-top: 56px;
}
.preview-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--ink);
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 280ms;
}
.preview-link:hover { background: var(--ink); color: var(--paper); }
.preview-link .arr { transition: transform 280ms; }
.preview-link:hover .arr { transform: translateX(4px); }

/* ============================================================
   HOME — QUOTE SECTION
   ============================================================ */
.quote-section {
  padding: 140px 56px;
  text-align: center;
  background-color: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.quote-pattern {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  filter: grayscale(0.4) contrast(0.95);
  z-index: 0;
}
.quote-section::before,
.quote-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: var(--coral);
  z-index: 2;
}
.quote-section::before { top: 0; }
.quote-section::after { bottom: 0; }
.quote-section > *:not(.quote-pattern) { position: relative; z-index: 2; }
.quote-section blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.18;
  margin: 0 auto 26px;
  max-width: 1100px;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.quote-section blockquote em {
  font-family: var(--serif-body);
  font-style: "italic";
  color: var(--coral);
  font-weight: 300;
}
.quote-section .signature {
  font-family: var(--sans);
  font-style: italic;
  font-weight: "bold";
  color: var(--coral);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.quote-section.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.quote-section.has-bg .quote-pattern {
  background-color: rgba(251, 246, 240, 0.65);
  background-image: none;
  opacity: 1;
  filter: none;
}

/* ============================================================
   HOME — TIKTOK SECTION 
   ============================================================ */
.tiktok-section {
  padding: 140px 56px 40px;
}
.tiktok-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 1480px;
  margin: 0 auto 56px;
}
.tiktok-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 72px);
  margin: 12px 0 0;
  line-height: 0.98;
}
.tiktok-head h2 em {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.tiktok-card {
  background: var(--paper);
  overflow: hidden;
  display: block;
  width: 100%;
}
.tiktok-card blockquote,
.tiktok-card .tiktok-embed {
  margin: 0 !important;
  min-width: unset !important;
  max-width: 100% !important;
  width: 100% !important;
}
.tiktok-more {
  text-align: center;
  padding: 56px 0 0;
}
.tiktok-more a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--ink);
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 280ms;
}
.tiktok-more a:hover { background: var(--ink); color: var(--paper); }
.tiktok-more a .arr { transition: transform 280ms; }
.tiktok-more a:hover .arr { transform: translateX(4px); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body {
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  max-width: 1380px;
  margin: 0 auto;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: -18px -18px 18px 18px;
  border: 1px solid var(--coral);
  z-index: -1;
}
.about-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
  width: 100%;
  display: block;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-cap {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--paper);
  padding: 18px 22px;
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--coral);
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
}
.about-text .eyebrow { display: inline-block; margin-bottom: 18px; }
.about-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  margin: 0 0 32px;
}
.about-text h2 #about-name,
.about-text h2 em {
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
}
.about-text p {
  font-family: var(--serif-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 540px;
}
.about-text .sig {
  margin-top: 32px;
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--ink);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stats .num {
  font-family: var(--serif-body);
  font-size: 44px;
  line-height: 1;
  color: var(--coral-deep);
}
.about-stats .lab {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 8px;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.coll-head-min {
  padding: 64px 56px 8px;
  text-align: center;
}
.coll-head-min h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  margin: 0;
  letter-spacing: 0.01em;
}
.coll-head-min h2 em {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}
.coll-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 56px 32px;
  flex-wrap: wrap;
}
.coll-tab {
  background: transparent;
  border: 1px solid var(--line);
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 250ms;
}
.coll-tab:hover { color: var(--ink); border-color: var(--ink); }
.coll-tab.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Masonry gallery — JS-managed columns */
.coll-grid {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 56px 80px;
  max-width: 1640px;
  margin: 0 auto;
}
.coll-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.coll-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  display: block;
}
.coll-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 500ms ease, transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.coll-item .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(20, 17, 15, 0.30);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  align-content: center;
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
  padding: 24px;
  text-align: center;
}
.coll-item:hover .overlay { opacity: 1; }
.coll-item:hover img { filter: blur(8px) brightness(0.85); transform: scale(1.04); }
.coll-item .overlay .ttl {
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 38px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.coll-item .overlay .year {
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral-soft);
}
.coll-item .overlay .year::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--coral-soft);
  vertical-align: middle;
  margin-right: 12px;
}
.coll-item .overlay .year::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--coral-soft);
  vertical-align: middle;
  margin-left: 12px;
}

/* Load More */
.load-more-wrap {
  text-align: center;
  padding: 0 56px 80px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--ink);
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 280ms;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-body {
  padding: 96px 56px 120px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  max-width: 1380px;
  margin: 0 auto;
  align-items: stretch;
}
.contact-info .eyebrow { display: inline-block; margin-bottom: 24px; }
.contact-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 24px;
}
.contact-title em {
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
}
.contact-info p {
  font-family: var(--serif-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 48px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 26px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-list .lab {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.contact-list .val {
  font-family: var(--serif-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.contact-list .val small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 400;
}
.contact-list .val a { transition: color 200ms; }
.contact-list .val a:hover { color: var(--coral); }

.contact-card {
  background: var(--ink);
  color: #ece5dd;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.contact-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,132,132,0.35), transparent 70%);
}
.contact-card.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-card.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.55);
  z-index: 0;
}
.contact-card.has-bg::before {
  z-index: 1;
}
.contact-card.has-bg > * {
  position: relative;
  z-index: 2;
}
.contact-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  margin: 0 0 18px;
  line-height: 1.05;
}
.contact-card h3 em {
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
}
.contact-card p {
  font-family: var(--serif-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(236,229,221,0.78);
  max-width: 340px;
}
.contact-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--coral);
  color: #fff;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--coral);
  cursor: pointer;
  transition: all 280ms;
  margin-top: 40px;
  text-decoration: none;
}
.contact-btn:hover { background: var(--coral-deep); border-color: var(--coral-deep); }
.contact-btn .arr { transition: transform 280ms; }
.contact-btn:hover .arr { transform: translateX(4px); }

.contact-socials {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236,229,221,0.78);
  transition: all 250ms;
}
.contact-socials a:hover { border-color: var(--coral); color: var(--coral); }
.contact-socials svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================================
   PAGE TRANSITIONS & UTILITIES
   ============================================================ */
main { padding-top: 0; }

.text-accent { color: var(--coral); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
}

@media (max-width: 980px) {
  .nav-inner { padding: 12px 24px; gap: 16px; }
  .nav-links { gap: 22px; font-size: 11px; }
  .nav-side { display: none; }
  .hero-cta-wrap { inset: auto 0 32px 0; }
  .home-coll, .quote-section, .tiktok-section { padding-left: 24px; padding-right: 24px; }
  .three-up { grid-template-columns: 1fr; gap: 20px; }
  .about-body, .contact-body { grid-template-columns: 1fr; gap: 56px; padding: 64px 24px; }
  .tiktok-grid { grid-template-columns: 1fr; }
  #footer { padding: 48px 24px 32px; }
  .footer-nav { gap: 24px; font-size: 11px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-inner { padding: 10px 20px; grid-template-columns: 1fr auto; gap: 0; }
  .nav-links { display: none; }
  .nav-side { display: none; }
  .nav-hamburger { display: flex; }

  .hero-cta { padding: 12px 22px; font-size: 10px; gap: 10px; }

  .home-coll { padding: 64px 24px; }
  .quote-section { padding: 100px 24px; }
  .tiktok-section { padding: 64px 24px; }

  .about-body { padding: 64px 24px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-photo-cap { display: none; }

  .coll-head-min { padding: 48px 24px 8px; }
  .coll-tabs { padding: 24px 24px; }
  .coll-grid { padding: 0 24px 56px; }
  .load-more-wrap { padding: 0 24px 56px; }

  .contact-body { padding: 64px 24px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .contact-socials { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .three-up { grid-template-columns: 1fr; }
}
