/* ============================================================
   DOMESTIC DISTURBIA — style.css
   ============================================================
   COLORS
   --ink        #07020D   background
   --ink-soft   #141020   subtle section backgrounds
   --cream      #F5EFE0   primary text
   --cream-dim  #b8b0a0   secondary text
   --mint       #8FCFB4   accent / buttons
   --tomato     #F16853   accent / outlines
   --gold       #D2AE7A   decorative
   ============================================================ */

:root {
  --ink:       #07020D;
  --ink-soft:  #141020;
  --cream:     #F5EFE0;
  --cream-dim: #b8b0a0;
  --mint:      #8FCFB4;
  --mint-dim:  #5a9e85;
  --tomato:    #F16853;
  --gold:      #D2AE7A;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
  position: relative;
  overflow-x: clip;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 100px;
  position: relative;
  text-align: center;
  width: 100%;
}

/* Soft glow behind logo */
.hero::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(143,207,180,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: min(460px, 80vw);
  max-width: 100%;  /* add this line */
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}

.hero-statement {
  margin-top: 48px;
  max-width: 500px;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(0.22,1,0.36,1) 0.7s forwards;
}

.hero-statement em {
  color: var(--cream);
  font-style: italic;
}

.hero-cta {
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(0.22,1,0.36,1) 1s forwards;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-mint {
  background: var(--mint);
  color: var(--ink);
}
.btn-mint:hover { background: #a8dfc8; }

.btn-outline {
  border: 1px solid rgba(241,104,83,0.5);
  color: var(--tomato);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--tomato);
  background: rgba(241,104,83,0.08);
}

.btn-outline.disabled {
  opacity: 0.85;
  pointer-events: none;
}

/* ── RULE ── */
.rule {
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, transparent, rgba(143,207,180,0.4), transparent);
  margin: 0 auto;
}

/* ── SECTION LABELS ── */
.section-label,
.feature-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 28px;
}

/* ── FEATURED ILLUSTRATION ── */
.feature {
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-image-wrap {
  position: relative;
  max-width: 100%;  /* add this too */
  width: min(420px, 86vw);
}

.feature-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(143,207,180,0.18);
  pointer-events: none;
  z-index: 2;
}

.feature-image {
  width: 100%;
  display: block;
}

.feature-caption {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ── ABOUT ── */
.about {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 88px 24px;
  text-align: center;
}

.about-text {
  max-width: 580px;
  margin: 0 auto;
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
}

.about-text strong {
  color: var(--cream);
  font-weight: 400;
}

/* ── EMAIL CAPTURE ── */
.email-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--tomato);
  padding: 80px 24px;
  text-align: center;
}

.email-heading {
  font-size: clamp(30px, 3.5vw, 28px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.email-sub {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 40px;
}

.email-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid #141020;
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 18px;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
}

.email-input::placeholder { color: #141020; }

.email-btn {
  background: var(--mint);
  color: var(--ink);
  border: none;
  padding: 15px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.email-btn:hover { background: #a8dfc8; }

.email-note {
  color: var(--ink);
  margin-top: 16px;
  font-size: 12px;
  font-style: italic;
}

/* ── SHOP ── */
.shop-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 24px;
  text-align: center;
}

.shop-heading {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.shop-sub {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 36px;
}

/* ── SOCIAL ── */
.social-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 24px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.social-link:hover { color: var(--mint); }

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 36px 24px;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: rgba(184,176,160,0.3);
  line-height: 2;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .email-form { flex-direction: column; }
  .email-btn { width: 100%; text-align: center; }
  .social-links { gap: 32px; }
  .hero-cta { flex-direction: column; align-items: center; }
}
