/* ============================================================
   AURIEL KLOTHINGS — Main Stylesheet
   Palette: Navy #1A1A2E · Gold #C9A84C · Cream #FAF7F4 · Blush #E8C4B8
   ============================================================ */

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

:root {
  --navy:   #1A1A2E;
  --gold:   #C9A84C;
  --gold-light: #E2C47A;
  --cream:  #FAF7F4;
  --blush:  #E8C4B8;
  --text:   #2C2C2C;
  --text-light: #6B6B6B;
  --white:  #FFFFFF;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

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

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

/* ── Utility ── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; }
.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-instagram:hover { opacity: 0.88; }

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.30s; }
.fade-in-delay-3 { transition-delay: 0.45s; }


/* ============================================================
   HEADER / NAV
   ============================================================ */
/* Default: solid navy header on all pages */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
/* Home page only: transparent at top over banner image */
.home .site-header {
  background: transparent;
  box-shadow: none;
  padding: 1.4rem 3rem;
}
/* subtle top gradient so logo/nav readable over the light banner top */
.home .site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250,247,244,0.55) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
.site-header.scrolled {
  background: var(--navy) !important;
  padding: 0.9rem 3rem !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25) !important;
}
.site-header .logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
}
/* Default: white logo on navy header */
.site-header .logo-word {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.4s ease;
}
/* Home page only: dark logo on transparent header */
.home .site-header:not(.scrolled) .logo-word { color: var(--navy); }
.site-header .logo-word-2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.4s ease;
}
.site-header.scrolled .logo-word { color: var(--white); }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.primary-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s ease;
  position: relative;
  padding-bottom: 3px;
}
/* Home page only: dark links on transparent header */
.home .site-header:not(.scrolled) .primary-nav a { color: var(--navy); }
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }
.primary-nav a.nav-instagram {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}
.primary-nav a.nav-instagram:hover {
  background: var(--gold);
  color: var(--navy);
}
.primary-nav a.nav-instagram::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
/* Home page: dark hamburger over bright hero */
.home .site-header:not(.scrolled) .hamburger span { background: var(--navy); }

/* close button hidden on desktop; shown only in mobile overlay */
.nav-close { display: none; }

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.4rem; }
  .site-header.scrolled { padding: 0.7rem 1.4rem; }
  .hamburger { display: flex; }
  .primary-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .primary-nav.open { display: flex; z-index: 1001; }
  .primary-nav a { font-size: 1.1rem; }
  .nav-close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
  }
  /* mobile: hamburger dark over bright hero, nav links white inside navy overlay */
  .primary-nav a { color: var(--white); }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,247,244,0.08) 0%,
    rgba(250,247,244,0.0) 40%,
    rgba(26,26,46,0.55) 80%,
    rgba(26,26,46,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 1.5rem 6rem;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 460px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(201,168,76,0.6);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--navy);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2.5rem;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   COLLECTIONS GRID
   ============================================================ */
.collections {
  padding: 6rem 3rem;
  background: var(--cream);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}
.collection-card:hover img {
  transform: scale(1.07);
}
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  text-align: center;
}
.collection-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.collection-card-overlay a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.collection-card:hover .collection-card-overlay a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .collections { padding: 4rem 1.2rem; }
  .collections-grid { grid-template-columns: 1fr; gap: 1rem; }
  .collection-card { aspect-ratio: 4/5; }
}


/* ============================================================
   VIDEO REEL SECTION
   ============================================================ */
.reel-section {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}
.reel-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.55) 0%, rgba(26,26,46,0.15) 50%, rgba(26,26,46,0.35) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-text {
  text-align: center;
}
.reel-text p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.reel-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--white);
  font-weight: 300;
}


/* ============================================================
   FOUNDER TEASER
   ============================================================ */
.founder-teaser {
  padding: 6rem 3rem;
  background: var(--navy);
}
.founder-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.founder-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.founder-teaser-content {
  color: var(--white);
}
.founder-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.founder-teaser-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.8rem;
  line-height: 1.2;
}
.founder-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--blush);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.founder-teaser-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .founder-teaser { padding: 4rem 1.4rem; }
  .founder-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo-wrap::before { display: none; }
}


/* ============================================================
   DESIGN TIPS PREVIEW
   ============================================================ */
.tips-preview {
  padding: 6rem 3rem;
  background: var(--cream);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.tip-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.tip-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tip-card:hover .tip-card-image img { transform: scale(1.05); }
.tip-card-body {
  padding: 1.6rem;
}
.tip-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.tip-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.tip-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.tip-card-body a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.tip-card-body a:hover { color: var(--gold); }
.tips-preview .center { text-align: center; }

@media (max-width: 900px) {
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tips-preview { padding: 4rem 1.2rem; }
  .tips-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   INSTAGRAM CTA
   ============================================================ */
.instagram-strip {
  padding: 4.5rem 2rem;
  background: var(--blush);
  text-align: center;
}
.instagram-strip .ig-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.instagram-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.instagram-strip p {
  color: var(--text-light);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  height: 48px;
  margin-bottom: 1rem;
  filter: brightness(1.5);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  max-width: 1200px;
  margin: 1.8rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .site-footer { padding: 3rem 1.4rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}


/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.shop-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.6);
}
.shop-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 1.5rem;
}
.shop-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  margin-bottom: 0.6rem;
}
.shop-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto;
}

.shop-order-section {
  padding: 5rem 2rem;
  background: var(--cream);
  text-align: center;
}
.shop-order-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.shop-order-section > p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2.8rem;
  font-size: 1rem;
}
.shop-cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.shop-cta-buttons .btn { font-size: 0.85rem; padding: 1rem 2.6rem; }

.how-to-order {
  padding: 4rem 2rem;
  background: var(--navy);
  text-align: center;
}
.how-to-order h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.how-to-order .section-subtitle { color: rgba(255,255,255,0.5); margin-bottom: 3rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  color: var(--white);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.25);
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.shop-gallery {
  padding: 5rem 2rem;
  background: var(--cream);
}
.shop-gallery h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.gallery-scroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.gallery-scroll img {
  flex-shrink: 0;
  height: 460px;
  width: auto;
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 0.4s ease;
}
.gallery-scroll img:hover { transform: scale(1.02); }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 380px; }
  .gallery-scroll img { height: 300px; }
}


/* ============================================================
   ABOUT / FOUNDER PAGE
   ============================================================ */
.about-hero {
  position: relative;
  height: 55vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.58);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
}
.about-hero-content p {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
}

.founder-story {
  padding: 6rem 3rem;
  background: var(--cream);
}
.founder-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.founder-story-photo {
  position: sticky;
  top: 100px;
}
.founder-story-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.founder-story-photo .founder-name-plate {
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 1.6rem;
  margin-top: 0;
}
.founder-name-plate h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.founder-name-plate p {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-story-text .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.founder-story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 1.6rem;
  font-weight: 300;
}
.founder-story-text blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-light);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.7;
}
.founder-story-text p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.brand-values {
  padding: 5rem 3rem;
  background: var(--navy);
}
.brand-values h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

@media (max-width: 900px) {
  .founder-story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-story-photo { position: static; }
  .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .founder-story { padding: 3.5rem 1.2rem; }
  .brand-values { padding: 3.5rem 1.2rem; }
}


/* ============================================================
   BLOG / DESIGN TIPS — ARCHIVE
   ============================================================ */
.blog-header {
  background: var(--navy);
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.blog-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.blog-header p {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-grid-section {
  padding: 5rem 3rem;
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.blog-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-body { padding: 1.6rem; }
.blog-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card-body h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.blog-card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.2rem; }
.blog-card-body .read-more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.blog-card-body .read-more:hover { color: var(--gold); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .blog-grid-section { padding: 3.5rem 1.2rem; }
  .blog-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-header {
  background: var(--navy);
  padding: 9rem 2rem 4rem;
  text-align: center;
}
.single-post-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.single-post-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}
.single-post-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}

.single-featured-img {
  max-height: 520px;
  overflow: hidden;
}
.single-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-body {
  max-width: 740px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.single-post-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.single-post-body h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.single-post-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 0.8rem;
}
.single-post-body ul {
  list-style: none;
  margin-bottom: 1.4rem;
}
.single-post-body ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}
.single-post-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.65rem;
}
.single-post-body blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-light);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.7;
}

.post-cta-strip {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
  margin-top: 4rem;
}
.post-cta-strip h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.6rem;
}
.post-cta-strip p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.6rem;
  font-size: 0.92rem;
}
.post-cta-strip .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
