/* ============================================================
   THE MODEST FILIPINA — styles.css?v=1
   Palette: --dark #1E0A10 | --accent #8B1A28 | --highlight #C4879A
            --cream #FDF5F5 | --bg-alt #2A1018
   Fonts: Rosarivo (display) + Jost (body)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:      #1E0A10;
  --accent:    #8B1A28;
  --highlight: #C4879A;
  --cream:     #FDF5F5;
  --bg-alt:    #2A1018;
  --muted:     rgba(253,245,245,.42);
  --border:    rgba(139,26,40,.22);
  --font-display: 'Rosarivo', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --radius: 4px;
  --transition: .28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.25; }
h5, h6 { font-family: var(--font-body); font-weight: 500; }

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1rem; font-weight: 300; }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.accent { color: var(--accent); }
.highlight { color: var(--highlight); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--cream);
}
.btn-primary:hover { background: #a52030; }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(253,245,245,.45);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Section Headers ──────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--highlight);
  display: block;
  margin-bottom: 10px;
}

.section-header {
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-header p {
  max-width: 600px;
  color: rgba(253,245,245,.72);
}

.divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 16px 0;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 18px 0;
}

.navbar.scrolled {
  background: rgba(30,10,16,.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity var(--transition);
}
.nav-logo img:hover { opacity: .85; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253,245,245,.82);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30,10,16,.97);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  letter-spacing: .06em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--highlight); }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  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 top;
  filter: brightness(.42);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(253,245,245,.82);
  max-width: 540px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .55;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.scroll-arrow {
  width: 16px;
  height: 16px;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  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(30,10,16,.3) 0%, rgba(30,10,16,.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .section-label { margin-bottom: 8px; }
.page-hero-content h1 { color: var(--cream); }

/* ══════════════════════════════════════════════════════════
   HOME — INTRO STRIP
   ══════════════════════════════════════════════════════════ */
.intro-strip {
  background: var(--accent);
  padding: 14px 0;
  text-align: center;
  overflow: hidden;
}
.intro-strip p {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   HOME — VALUES / PILLARS
   ══════════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover {
  border-color: rgba(139,26,40,.55);
  transform: translateY(-4px);
}

.value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.value-card h4 {
  font-family: var(--font-display);
  margin-bottom: 10px;
  color: var(--cream);
}
.value-card p {
  font-size: .9rem;
  color: rgba(253,245,245,.65);
}

/* ══════════════════════════════════════════════════════════
   HOME — FEATURED COLLECTION PREVIEW
   ══════════════════════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.featured-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.featured-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .5s ease;
}
.featured-item:hover img { transform: scale(1.05); }

.featured-item.large { grid-row: 1 / 3; }
.featured-item.large img { height: 100%; min-height: 520px; }

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,16,.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.featured-item:hover .featured-overlay { opacity: 1; }

.featured-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
}

/* ══════════════════════════════════════════════════════════
   HOME — TESTIMONIAL
   ══════════════════════════════════════════════════════════ */
.testimonial-section {
  background: var(--bg-alt);
  padding: 80px 0;
  text-align: center;
}

.testimonial-quote {
  max-width: 680px;
  margin: 0 auto 32px;
}

.testimonial-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-quote cite {
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--highlight);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.star-icon { width: 16px; height: 16px; color: #e8a040; }

/* ══════════════════════════════════════════════════════════
   HOME — SOCIAL PROOF NUMBERS
   ══════════════════════════════════════════════════════════ */
.stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 36px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(253,245,245,.58);
}

/* ══════════════════════════════════════════════════════════
   HOME — INSTAGRAM CTA STRIP
   ══════════════════════════════════════════════════════════ */
.ig-strip {
  text-align: center;
  padding: 64px 0;
}
.ig-strip h3 { margin-bottom: 10px; }
.ig-strip p {
  color: rgba(253,245,245,.65);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { color: rgba(253,245,245,.75); margin-bottom: 16px; }

.about-story-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* About Philosophy */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.philosophy-card {
  padding: 36px 28px;
  background: rgba(253,245,245,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.philosophy-card:hover {
  background: rgba(253,245,245,.07);
  border-color: rgba(139,26,40,.4);
}
.philosophy-card h4 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 12px;
}
.philosophy-card p { color: rgba(253,245,245,.65); font-size: .92rem; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
}

.timeline-year {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 6px;
}
.timeline-item p { color: rgba(253,245,245,.65); font-size: .9rem; }

/* ══════════════════════════════════════════════════════════
   COLLECTIONS PAGE
   ══════════════════════════════════════════════════════════ */
.collection-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
}
.category-tile img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .5s ease;
}
.category-tile:hover img { transform: scale(1.06); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,16,.78) 0%, rgba(30,10,16,.18) 65%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 20px;
  text-align: center;
}

.category-overlay h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 6px;
}
.category-overlay p {
  font-size: .8rem;
  color: rgba(253,245,245,.72);
  letter-spacing: .08em;
}

/* Collection Items listing */
.collection-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.collection-section:last-child { border-bottom: none; }

.collection-section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.collection-section-header h2 {
  font-size: 1.8rem;
}
.collection-section-header span {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--highlight);
}

.items-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.item-entry {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.item-entry:hover {
  border-color: rgba(139,26,40,.45);
  background: rgba(253,245,245,.04);
}

.item-entry-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.item-entry-detail {
  font-size: .82rem;
  color: rgba(253,245,245,.58);
}
.item-entry-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(196,135,154,.12);
  padding: 2px 8px;
  border-radius: 20px;
}

.collections-cta {
  text-align: center;
  padding: 48px 0 0;
}
.collections-cta p {
  color: rgba(253,245,245,.65);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: transparent;
  color: rgba(253,245,245,.72);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

.gallery-masonry {
  columns: 4;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,10,16,.45);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.zoom-icon { width: 28px; height: 28px; color: var(--cream); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,10,16,.94);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(253,245,245,.12);
  border: none;
  color: var(--cream);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(139,26,40,.6); }

.lightbox-close { top: 20px; right: 20px; font-size: 1.2rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-nav-icon { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: rgba(253,245,245,.65); margin-bottom: 36px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-item-text strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 3px;
}
.contact-item-text a { color: rgba(253,245,245,.82); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--accent); }
.contact-item-text p { color: rgba(253,245,245,.72); font-size: .92rem; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--highlight);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: rgba(253,245,245,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(139,26,40,.65); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--dark); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* FAQ Accordion */
.faq-section { padding: 80px 0; background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  gap: 16px;
}
.faq-question:hover { color: var(--highlight); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: rgba(253,245,245,.68);
  font-size: .95rem;
}
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(253,245,245,.58);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(253,245,245,.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,245,245,.65);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}
.social-svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(253,245,245,.62);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(253,245,245,.38);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-item.large { grid-row: auto; }
  .featured-item.large img { min-height: auto; height: 320px; }

  .gallery-masonry { columns: 2; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .gallery-masonry { columns: 2; }
  .collection-categories { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 20px; }
}

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