/* ─── Google Fonts ──────────────────────────────────────────────────────────── */
/* Cormorant Garamond: elegant script for headlines / taglines */
/* Nunito: friendly rounded sans for body / UI — never block letters */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Nunito:wght@300;400;600;700&display=swap');

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

:root {
  --rose:      #D4A5A5;   /* dusty rose — primary accent */
  --rose-dark: #B87F7F;
  --cream:     #FDF5E6;   /* warm cream — main background */
  --sage:      #8B9A6B;   /* sage green — secondary accent */
  --sage-dark: #6B7A4B;
  --navy:      #2C3E50;   /* deep navy — text / nav */
  --white:     #FFFFFF;
  --ash:       #4A4A4A;
  --muted:     #8A8A8A;
  --divider:   rgba(44, 62, 80, 0.08);

  --font-script: 'Cormorant Garamond', Georgia, serif;
  --font-body:   'Nunito', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── Navigation ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 245, 230, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0;
}

.nav-logo-text {
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--ash);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--navy) !important;
  color: var(--cream) !important;
  padding: 8px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--rose-dark) !important;
  transform: translateY(-1px);
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 62, 80, 0.85) 0%,
    rgba(44, 62, 80, 0.35) 60%,
    rgba(44, 62, 80, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 0 0 80px;
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--rose);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: var(--font-script);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(253, 245, 230, 0.8);
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 165, 0.4);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(253, 245, 230, 0.8);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid rgba(253, 245, 230, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(253, 245, 230, 0.6);
  color: var(--cream);
}

/* ─── Home Tagline Bar ─────────────────────────────────────────────────────── */
.tagline-bar {
  background: var(--navy);
  padding: 28px 40px;
  text-align: center;
}

.tagline-bar p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(253, 245, 230, 0.65);
  letter-spacing: 0.5px;
}

/* ─── Section Shared ───────────────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── Identity / Who It's For ─────────────────────────────────────────────── */
.identity-section {
  background: var(--white);
  padding: 80px 40px;
  text-align: center;
}

.chaos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.chaos-card {
  background: var(--cream);
  border: 1.5px solid var(--divider);
  border-radius: 16px;
  padding: 24px 18px;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--navy);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
  line-height: 1.3;
}

.chaos-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(44, 62, 80, 0.08);
  border-color: var(--rose);
}

.chaos-card .card-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 10px;
}

/* ─── Products ──────────────────────────────────────────────────────────────── */
.products-section {
  padding: 80px 40px;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 62, 80, 0.12);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 20px 24px 26px;
}

.product-tag {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-script);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

.product-price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rose-dark);
}

/* ─── Lifestyle Section ────────────────────────────────────────────────────── */
.lifestyle-section {
  background: var(--white);
  padding: 80px 40px;
}

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

.lifestyle-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
}

.lifestyle-text .section-eyebrow { color: var(--rose); }

.lifestyle-text p {
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.75;
  margin-bottom: 20px;
}

.lifestyle-quote {
  background: var(--cream);
  border-left: 3px solid var(--sage);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.5;
}

.lifestyle-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── Flat-lay Feature Band ─────────────────────────────────────────────────── */
.feature-band {
  background: var(--cream);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.feature-band-img {
  width: 340px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(44, 62, 80, 0.12);
  flex-shrink: 0;
}

.feature-band-text {
  max-width: 440px;
}

.feature-band-text .section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-band-text p {
  font-size: 0.95rem;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--white);
  border: 1.5px solid var(--divider);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* ─── CTA Band ──────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--rose);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.04) 60px,
    rgba(255,255,255,0.04) 120px
  );
}

.cta-band .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--rose-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 40px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(253, 245, 230, 0.45);
  padding: 40px 40px;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--rose);
  text-decoration: none;
}

.site-footer a:hover { color: var(--cream); }

.footer-brand {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: rgba(253, 245, 230, 0.55);
  margin-bottom: 10px;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { margin: 0 0 0 28px; max-width: calc(100vw - 48px); }
  .hero h1 { font-size: 2.4rem; }
  .hero-tagline { font-size: 0.95rem; }
  .tagline-bar { padding: 24px 20px; }
  .identity-section { padding: 60px 20px; }
  .products-section { padding: 60px 20px; }
  .lifestyle-section { padding: 60px 20px; }
  .lifestyle-inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-band { flex-direction: column; padding: 48px 20px; }
  .feature-band-img { width: 100%; max-width: 340px; }
  .cta-band { padding: 60px 20px; }
  .site-footer { padding: 32px 20px; }
}