/*
 * Segunda Thrift — styles.css
 * Design rationale: The brand logo is a deep crimson (#5A0815) background
 * with soft blush-pink hand-lettered text (#F2AABF) and a delicate bow motif.
 * This palette is carried directly into the site: dark crimson grounding gives
 * the brand a bold, feminine-cool identity while the blush accent keeps it
 * sweet and approachable. Poiret One is an Art Deco geometric display serif
 * with elegant, light letterforms that echo the hand-crafted logo lettering
 * without being literal script. Nunito Sans provides warm, readable body text.
 *
 * Google Fonts loaded via <link> in HTML only — never @import here.
 *
 * Sections:
 *  1. CSS Variables & Reset
 *  2. Typography
 *  3. Buttons
 *  4. Navbar
 *  5. Hero
 *  6. Features Strip
 *  7. Offerings Grid
 *  8. Brand Teaser
 *  9. Stats Row
 * 10. Reviews
 * 11. Social CTA
 * 12. Social Feed
 * 13. Footer
 * 14. Page Hero
 * 15. About Page
 * 16. Offerings/Collections Page
 * 17. Gallery Page
 * 18. Contact Page
 * 19. FAQ Accordion
 * 20. Scroll-to-top
 * 21. Fade-in
 * 22. Responsive (1024 / 768 / 480px)
 */

/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
:root {
  --dark:       #5A0815;
  --bg-alt:     #7A0E1E;
  --accent:     #F2AABF;
  --highlight:  #FFD6E7;
  --cream:      #FFF5F8;
  --cream-dim:  rgba(255, 245, 248, 0.65);
  --accent-dim: rgba(242, 170, 191, 0.14);
  --border:     rgba(242, 170, 191, 0.22);
  --ff-display: 'Poiret One', sans-serif;
  --ff-body:    'Nunito Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
p  { font-size: 1rem; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: var(--highlight); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: var(--dark);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.nav-brand-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(90,8,21,.88) 0%,
    rgba(90,8,21,.62) 55%,
    rgba(90,8,21,.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 8rem 5vw 6rem;
}

.hero-content .section-label { margin-bottom: 1rem; }

.hero-content h1 {
  margin-bottom: 1.4rem;
  color: var(--cream);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--cream-dim);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   6. FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 5vw;
}

.features-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: center;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.feature-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  flex-shrink: 0;
}

/* ============================================================
   7. OFFERINGS GRID (Homepage)
   ============================================================ */
.offerings-section {
  padding: 6rem 5vw;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p {
  color: var(--cream-dim);
  max-width: 520px;
  margin: 0 auto;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.offering-card {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

.offering-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.offering-card-body {
  padding: 1.2rem;
}
.offering-card-body h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.offering-card-body p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

/* ============================================================
   8. BRAND TEASER
   ============================================================ */
.brand-teaser {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 5vw;
}

.brand-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-teaser-img {
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.brand-teaser-text .section-label { margin-bottom: 0.8rem; }
.brand-teaser-text h2 { margin-bottom: 1.2rem; }
.brand-teaser-text p {
  color: var(--cream-dim);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.brand-teaser-text .btn { margin-top: 1rem; }

/* ============================================================
   9. STATS ROW
   ============================================================ */
.stats-row {
  padding: 4.5rem 5vw;
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============================================================
   10. REVIEWS
   ============================================================ */
.reviews-section {
  padding: 6rem 5vw;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}
.review-stars span {
  color: var(--accent);
  font-size: 1.1rem;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-author-initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.review-author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
}
.review-author-meta {
  font-size: 0.75rem;
  color: var(--cream-dim);
}

/* ============================================================
   11. SOCIAL CTA
   ============================================================ */
.social-cta {
  padding: 6rem 5vw;
  text-align: center;
}

.social-cta h2 { margin-bottom: 1rem; }
.social-cta p {
  color: var(--cream-dim);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.social-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   12. SOCIAL FEED PREVIEW
   ============================================================ */
.social-feed {
  padding: 0 5vw 6rem;
}

.social-feed-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.social-feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}
.social-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.social-feed-item:hover img { transform: scale(1.05); }

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 5rem 5vw 2rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand-top img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.footer-brand-top span {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.footer-bottom a {
  color: var(--accent);
  font-size: 0.8rem;
}

/* ============================================================
   14. PAGE HERO
   ============================================================ */
.page-hero {
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  padding: 10rem 5vw 5rem;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(90,8,21,.75) 0%,
    rgba(90,8,21,.50) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero-content h1 { margin-bottom: 0.8rem; }
.page-hero-content p {
  font-size: 1.1rem;
  color: var(--cream-dim);
}

/* ============================================================
   15. ABOUT PAGE
   ============================================================ */
.about-story {
  padding: 6rem 5vw;
  max-width: 1100px;
  margin: 0 auto;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.about-story-img {
  width: 100%;
  border-radius: 2px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.about-story-text .section-label { margin-bottom: 0.8rem; }
.about-story-text h2 { margin-bottom: 1.5rem; }
.about-story-text p {
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.values-section {
  padding: 6rem 5vw;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--accent-dim);
}
.value-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
}
.value-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.value-card h4 {
  font-family: var(--ff-display);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ============================================================
   16. COLLECTIONS PAGE
   ============================================================ */
.collections-categories {
  padding: 5rem 5vw;
  max-width: 1100px;
  margin: 0 auto;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.category-tile {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.category-tile:hover img { transform: scale(1.05); }

.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(90,8,21,.85) 0%, rgba(90,8,21,.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
}

.category-tile-overlay h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.category-tile-overlay p {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* Collection section lists */
.collection-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.collection-section:last-child { border-bottom: none; }

.collection-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.collection-section-header h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
}
.collection-count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.collection-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}

.collection-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--accent-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.collection-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.collection-item-name {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.collection-item-desc {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ============================================================
   17. GALLERY PAGE
   ============================================================ */
.gallery-section {
  padding: 4rem 5vw 6rem;
}

.gallery-section .filter-bar { margin-bottom: 3rem; }

.masonry-grid {
  max-width: 1100px;
  margin: 0 auto;
  columns: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}
.masonry-item:hover img { transform: scale(1.03); }

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90,8,21,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg {
  width: 32px;
  height: 32px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 1.5;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,245,248,.12);
  border: 1px solid rgba(255,245,248,.2);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.lightbox-btn:hover { background: rgba(255,245,248,.22); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,245,248,.12);
  border: 1px solid rgba(255,245,248,.2);
  color: var(--cream);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,245,248,.22); }

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-layout {
  padding: 5rem 5vw 6rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-family: var(--ff-display);
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,245,248,.07);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--dark); }

#formSuccess {
  display: none;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent-dim);
}
#formSuccess h4 {
  font-family: var(--ff-display);
  color: var(--accent);
  margin-bottom: 0.5rem;
}
#formSuccess p { font-size: 0.9rem; color: var(--cream-dim); }

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 6rem 5vw;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  flex: 1;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--accent);
  font-size: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 1.4rem;
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* ============================================================
   20. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,.3);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.scroll-top:hover { background: var(--highlight); }
.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   21. FADE-IN
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { gap: 3rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .about-story-inner { gap: 3rem; }
  .contact-layout { gap: 3rem; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-content { padding: 7rem 1.5rem 5rem; }

  .offerings-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .brand-teaser-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .brand-teaser-img { aspect-ratio: 4/3; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }

  .category-tiles { grid-template-columns: 1fr; }

  .collection-items-list { grid-template-columns: 1fr; }

  .about-story-inner { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .masonry-grid { columns: 2; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .offerings-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .masonry-grid { columns: 1; }

  .hero-actions { flex-direction: column; }

  .features-strip-inner { gap: 1rem; }
}
