/* ═══════════════════════════════════════════
   Worn & Rare — Brand Landing Page
   ═══════════════════════════════════════════ */

:root {
  --camel:         #B8864E;
  --camel-light:   #D4A96A;
  --camel-dark:    #8B6332;
  --linen:         #F5F0E8;
  --linen-warm:    #EDE6D8;
  --cream:         #FAF7F2;
  --lavender:      #9B8BB4;
  --lavender-soft: #C8B8D9;
  --lavender-mist: #E8E0F0;
  --sage:          #8A9A7B;
  --terracotta:    #C4724E;
  --warm-brown:    #6B4D3A;
  --charcoal:      #3A3530;
  --taupe:         #A89888;
  --ivory:         #FFFEF9;
  --shadow:        rgba(107, 77, 58, 0.12);
}

/* ─── RESET & BASE ─── */

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Linen texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 99, 50, 0.015) 2px, rgba(139, 99, 50, 0.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 99, 50, 0.01) 2px, rgba(139, 99, 50, 0.01) 4px);
  pointer-events: none;
  z-index: 0;
}

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

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

/* ─── LAYOUT ─── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 700px;
  text-align: center;
}

/* ─── SHARED ELEMENTS ─── */

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--warm-brown);
  line-height: 1.2;
  margin-bottom: 24px;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--camel);
  margin: 16px 0 24px;
}

.btn {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--camel);
  color: var(--ivory);
  padding: 14px 36px;
  border-radius: 30px;
  border: 2px solid var(--camel);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--camel-light);
  border-color: var(--camel-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--camel);
}

.btn--outline:hover {
  background: var(--camel);
  color: var(--ivory);
}

/* ─── HERO ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse at 20% 80%, var(--lavender-mist) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 169, 106, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--cream) 0%, var(--linen) 100%);
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--lavender-soft);
  opacity: 0.3;
  pointer-events: none;
}

.hero-bg-circle--top {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  animation: float 20s ease-in-out infinite;
}

.hero-bg-circle--bottom {
  bottom: -150px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-color: var(--camel-light);
  opacity: 0.2;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 32px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 300;
  color: var(--warm-brown);
  line-height: 1.05;
  margin-bottom: 16px;
}

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

.hero-tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 40px;
}

.hero .btn {
  margin-top: 8px;
}

/* ─── SECTIONS ─── */

.section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.section--linen {
  background: var(--linen);
}

/* ─── ABOUT ─── */

.about-content {
  max-width: 720px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--lavender);
  margin-top: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--lavender-soft);
  line-height: 1.5;
}

/* ─── CARDS ─── */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border-top: 3px solid var(--lavender-soft);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow);
}

.card--disabled {
  opacity: 0.85;
  cursor: default;
}

.card--disabled:hover {
  transform: none;
  box-shadow: 0 4px 20px var(--shadow);
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--warm-brown);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.card-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--camel);
  font-weight: 500;
  transition: color 0.3s ease;
}

.card:hover .card-link {
  color: var(--camel-dark);
}

.card-link--soon {
  color: var(--taupe);
}

/* ─── CONTACT ─── */

.contact-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 32px;
}

/* ─── FOOTER ─── */

.footer {
  position: relative;
  z-index: 1;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 8px;
}

.footer-brand span {
  color: var(--lavender);
  font-style: italic;
}

.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--taupe);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--camel-light);
}

.footer-copy {
  font-size: 13px;
  color: var(--taupe);
  opacity: 0.7;
}

/* ─── FADE-IN ANIMATION ─── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .container {
    padding: 0 40px;
  }

  .hero {
    padding: 120px 40px;
  }

  .hero-logo {
    width: 180px;
  }

  .section-title {
    font-size: 42px;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .quote {
    font-size: 28px;
  }

  .contact-text {
    font-size: 18px;
  }

  .container--narrow .divider {
    margin-left: auto;
    margin-right: auto;
  }
}
