/* ============================================================
   Fragments Collection — Brand Styles
   Navy background + rose gold + gold accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;1,8..60,300;1,8..60,400&display=swap');

/* ── Variables ── */
:root {
  --navy:       #0B1F3A;
  --navy-light: #132847;
  --navy-deep:  #071429;
  --rose:       #B76E79;
  --rose-light: #C98993;
  --rose-dim:   #9B5B62;
  --gold:       #C9956C;
  --gold-dim:   #A87B52;
  --cream:      #F2E8E0;
  --cream-dim:  #D4C4B5;
  --white:      #FDFAF7;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;

  --radius: 4px;
  --transition: 0.25s ease;
}

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

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

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--rose-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose); }

/* ── Text selection ── */
::selection { background: var(--rose); color: var(--navy); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--rose);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 300; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; color: var(--cream); letter-spacing: 0.05em; text-transform: uppercase; }

p { color: var(--cream-dim); }

a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-light); }

/* ── Layout containers ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--tight { padding: 4rem 0; }
.section--flush { padding: 0; }

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider--center { justify-content: center; }
.divider--center::before { display: none; }
.divider--center::after { max-width: 200px; }

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: linear-gradient(to bottom, var(--navy-deep) 0%, rgba(11,31,58,0.92) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,149,108,0.15);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  transition: color var(--transition);
  text-transform: uppercase;
}

.site-nav a:hover { color: var(--rose); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(183,110,121,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,149,108,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 640px; }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--rose);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-pillars {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-pillar {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-pillar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose-dim);
}

/* ── Logo Block (hero visual) ── */
.hero-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-logo-block img {
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(183,110,121,0.2));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}

/* ── Pillars Section ── */
.pillars {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,149,108,0.1);
  border-bottom: 1px solid rgba(201,149,108,0.1);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar-card {
  padding: 3rem 2.5rem;
  position: relative;
  transition: background var(--transition);
  cursor: default;
}

.pillar-card + .pillar-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,149,108,0.2), transparent);
}

.pillar-card:hover { background: rgba(183,110,121,0.05); }

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
  opacity: 0.7;
}

.pillar-card h3 {
  color: var(--rose);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cream-dim);
}

/* ── About / Founder Section ── */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.about h2 { margin-bottom: 1.5rem; }

.about-bio {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}

.about-bio em {
  color: var(--cream);
  font-style: italic;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.credential-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-visual {
  position: relative;
}

.about-logo-mark {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  opacity: 0.85;
  filter: drop-shadow(0 0 60px rgba(183,110,121,0.15));
}

.about-quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-dim);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ── Collection / Products ── */
.collection { background: var(--navy-light); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 { margin-bottom: 0.8rem; }

.section-header p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--cream-dim);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collection-card {
  background: var(--navy-deep);
  border: 1px solid rgba(201,149,108,0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.collection-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--rose-dim), var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.collection-card:hover {
  border-color: rgba(201,149,108,0.3);
  transform: translateY(-4px);
}

.collection-card:hover::after { opacity: 1; }

.collection-card h3 { margin-bottom: 0.8rem; color: var(--rose); }

.collection-card p { font-size: 0.95rem; line-height: 1.7; }

.collection-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* ── CTA Section ── */
.cta {
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.cta h2 {
  margin-bottom: 1rem;
  color: var(--rose);
}

.cta p {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: var(--cream-dim);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rose);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--rose-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183,110,121,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,149,108,0.4);
}

.btn-secondary:hover {
  background: rgba(201,149,108,0.08);
  border-color: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,149,108,0.1);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.footer-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  text-transform: uppercase;
}

.footer-nav a:hover { color: var(--rose); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,149,108,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--cream-dim);
  opacity: 0.6;
}

.footer-copy a { color: inherit; }

/* ── Ambient grain texture overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.15s; }
.animate-fade-up.delay-2 { animation-delay: 0.30s; }
.animate-fade-up.delay-3 { animation-delay: 0.45s; }
.animate-fade-up.delay-4 { animation-delay: 0.60s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual { order: -1; }

  .pillars-grid,
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pillar-card + .pillar-card::before { display: none; }

  .pillar-card {
    border-bottom: 1px solid rgba(201,149,108,0.1);
  }

  .pillar-card:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .hero-grid { text-align: center; }

  .hero-pillars { justify-content: center; }

  .hero-eyebrow { justify-content: center; }

  .site-nav { display: none; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .section { padding: 4rem 0; }

  .footer-nav { display: none; }
}