/* Wildroot — Bohemian Vintage Women's Clothing */
:root {
  --cream: #F5EEE0;
  --terracotta: #C4622D;
  --sage: #7D6E60;
  --espresso: #2D1F16;
  --blush: #E8D5C4;
  --sand: #D4C4A8;
  --warm-white: #FDFAF5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  z-index: 2;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--sand) 30%, var(--sand) 70%, transparent 100%);
  opacity: 0.5;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 148px);
  font-weight: 600;
  line-height: 0.88;
  color: var(--espresso);
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--sage);
  line-height: 1.4;
  max-width: 360px;
  margin-bottom: 48px;
}

.hero-divider {
  width: 56px;
  height: 1px;
  background: var(--terracotta);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.8;
  max-width: 340px;
}

.hero-shop-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-shop-link:hover {
  color: var(--espresso);
  border-color: var(--espresso);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  /* Layered atmospheric boho texture */
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(196,98,45,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(125,110,96,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #E8D5C4 0%, #D4C4A8 50%, #C4622D 100%);
}

/* Decorative boho pattern overlay */
.hero-visual-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(45deg, var(--espresso) 0, var(--espresso) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--espresso) 0, var(--espresso) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}

/* Floating botanical shapes */
.hero-visual-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(196,98,45,0.15);
  backdrop-filter: blur(1px);
}

.hero-visual-shape-1 {
  width: 280px; height: 280px;
  top: 10%; right: -5%;
  background: radial-gradient(circle, rgba(196,98,45,0.2) 0%, transparent 70%);
}

.hero-visual-shape-2 {
  width: 180px; height: 180px;
  bottom: 20%; right: 15%;
  background: radial-gradient(circle, rgba(125,110,96,0.25) 0%, transparent 70%);
}

.hero-visual-shape-3 {
  width: 120px; height: 120px;
  top: 45%; left: 20%;
  background: radial-gradient(circle, rgba(232,213,196,0.5) 0%, transparent 70%);
}

/* Brand monogram in visual */
.hero-visual-monogram {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 600;
  color: rgba(45,31,22,0.08);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 140px 80px;
  background: var(--espresso);
  text-align: center;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--terracotta));
}

.manifesto-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 48px;
  opacity: 0.6;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 48px;
  letter-spacing: -0.01em;
}

.manifesto-text em {
  color: var(--terracotta);
  font-style: italic;
}

.manifesto-mark {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sand);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.4;
}

/* ===== THE WEAVE ===== */
.the-weave {
  padding: 140px 80px;
  background: var(--cream);
}

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.section-desc {
  font-size: 15px;
  color: var(--sage);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 72px;
}

.weave-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.weave-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

/* CSS-generated product category visuals */
.weave-item-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.weave-item:hover .weave-item-bg {
  transform: scale(1.04);
}

/* Dresses — warm terracotta gradient */
.weave-item-dresses .weave-item-bg {
  background:
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(196,98,45,0.6) 0%, transparent 65%),
    linear-gradient(160deg, #D4C4A8 0%, #C4622D 40%, #E8D5C4 100%);
}

/* Tops — sage green gradient */
.weave-item-tops .weave-item-bg {
  background:
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(125,110,96,0.5) 0%, transparent 65%),
    linear-gradient(160deg, #7D6E60 0%, #D4C4A8 50%, #F5EEE0 100%);
}

/* Accessories — warm blush gradient */
.weave-item-acc .weave-item-bg {
  background:
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(232,213,196,0.6) 0%, transparent 65%),
    linear-gradient(160deg, #E8D5C4 0%, #C4622D 50%, #7D6E60 100%);
}

/* Decorative textile pattern overlay */
.weave-item-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(30deg, var(--cream) 0, var(--cream) 1px, transparent 0, transparent 20px);
}

.weave-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,31,22,0.6) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
}

.weave-item-label {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}

/* ===== ESSENCES ===== */
.essences {
  padding: 140px 80px;
  background: var(--blush);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.essences-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.essences-visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(196,98,45,0.15) 0%, transparent 70%),
    linear-gradient(135deg, #E8D5C4 0%, #D4C4A8 40%, #7D6E60 100%);
}

.essences-visual-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, var(--espresso) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* Botanical circle shapes */
.essences-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,98,45,0.2);
}

.essences-circle-1 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.essences-circle-2 {
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(125,110,96,0.15);
}

.essences-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--blush);
}

.essences-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.essences-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--sage);
  margin-bottom: 52px;
}

.essences-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.essences-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--espresso);
}

.essences-list li::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ===== FOR THOSE WHO ===== */
.for-those-who {
  padding: 140px 80px;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.ftwy-mark {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  margin: 0 auto 56px;
}

.ftwy-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 46px);
  font-style: italic;
  line-height: 1.3;
  color: var(--espresso);
  max-width: 720px;
  margin: 0 auto 64px;
}

.ftwy-divider {
  width: 56px;
  height: 1px;
  background: var(--sand);
  margin: 0 auto 64px;
}

.ftwy-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 32px;
}

.ftwy-philosophy {
  font-size: 15px;
  color: var(--sage);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== WAITLIST MODULE ===== */
.waitlist-module {
  margin-top: 52px;
}

.waitlist-headline {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--espresso);
  margin-bottom: 20px;
  line-height: 1.4;
}

.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 380px;
  border: 1px solid var(--sand);
  background: var(--warm-white);
}

.waitlist-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--espresso);
  outline: none;
}

.waitlist-input::placeholder {
  color: var(--sand);
}

.waitlist-btn {
  border: none;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.waitlist-btn:hover { background: var(--espresso); }
.waitlist-btn:disabled { opacity: 0.6; cursor: default; }

.waitlist-note {
  font-size: 11px;
  color: var(--sand);
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.waitlist-success {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--sage);
  margin-top: 8px;
}

/* ===== FOOTER WAITLIST ===== */
.footer-waitlist {
  padding: 100px 80px;
  background: var(--blush);
  text-align: center;
  position: relative;
}

.footer-waitlist::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--sand));
}

.footer-waitlist-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.footer-waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: var(--espresso);
  margin-bottom: 36px;
  line-height: 1.2;
}

.footer-waitlist .waitlist-form {
  margin: 0 auto;
}

.footer-waitlist .waitlist-note {
  margin-top: 16px;
  color: var(--sage);
}

@media (max-width: 768px) {
  .waitlist-form { max-width: 100%; flex-direction: column; }
  .waitlist-btn { padding: 14px 18px; }
  .footer-waitlist { padding: 72px 32px; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 52px 80px;
  background: var(--espresso);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 11px;
  color: var(--sand);
  letter-spacing: 0.1em;
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { min-height: 90vh; }
  .hero-content { padding: 60px 48px; }
  .manifesto { padding: 100px 48px; }
  .the-weave { padding: 100px 48px; }
  .essences { padding: 100px 48px; }
  .essences-content { padding: 60px 48px; }
  .for-those-who { padding: 100px 48px; }
  .footer { padding: 44px 48px; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 64px 32px;
    order: 1;
  }
  .hero-content::before { display: none; }
  .hero-visual {
    height: 50vw;
    order: 2;
  }
  .manifesto { padding: 80px 32px; }
  .the-weave { padding: 80px 32px; }
  .weave-grid { grid-template-columns: 1fr; }
  .essences {
    grid-template-columns: 1fr;
    padding: 80px 32px;
  }
  .essences-visual { min-height: 40vw; }
  .essences-content { padding: 48px 0; }
  .for-those-who { padding: 80px 32px; }
  .footer {
    padding: 40px 32px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}