/* ============================================================
   Nuyoo SG — Warm Boutique Archetype
   Palette: terracotta, sand, olive, dusty rose, near-black
   ============================================================ */

:root {
  --accent:    #C4613A;   /* terracotta */
  --accent-2:  #7D8C5C;   /* olive */
  --bg:        #FAF6F1;   /* warm cream */
  --surface:   #FFFFFF;
  --surface-2: #F2EBE1;   /* warm sand */
  --fg:        #1E1A17;   /* near-black */
  --muted:     #6B5F56;   /* warm brown-grey */
  --border:    #DDD0C3;
  --radius:    14px;
  --radius-sm: 6px;
  --font-head: Georgia, "Times New Roman", serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
  --max-w:     1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--fg);
}

.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ---- Utility ---- */
.pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.18s, transform 0.12s;
}
.btn:hover { opacity: 0.88; text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

.wordmark {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.wordmark span { color: var(--accent); }

.main-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--accent); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, #E8D5C4 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-text { }

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  background: var(--surface-2);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.hero-visual-icon {
  width: 80px;
  height: 80px;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-head);
  color: var(--accent);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#about .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3.5rem;
  align-items: start;
}

#about .about-label { }

#about h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 1.5rem;
}

#about p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-sidebar {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  border: 1px solid var(--border);
}
.about-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.about-sidebar li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--fg);
}
.about-sidebar li::before {
  content: "✦";
  color: var(--accent);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

#how-it-works h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}
#how-it-works .section-intro {
  color: var(--muted);
  max-width: 55ch;
  margin-bottom: 3rem;
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
}

.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#features h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}
#features .section-intro {
  color: var(--muted);
  max-width: 55ch;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.feature-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ============================================================
   BENEFITS
   ============================================================ */
#benefits {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

#benefits .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

#benefits h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}
#benefits .section-intro {
  color: var(--muted);
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefits-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.benefit-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.benefits-list p {
  font-size: 0.95rem;
  color: var(--fg);
}
.benefits-list p strong {
  display: block;
  margin-bottom: 0.1rem;
}

.benefits-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}
.benefits-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.benefits-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.benefits-card .btn { width: 100%; text-align: center; }

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--fg);
  border-top: 4px solid var(--accent);
}

#pricing h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
#pricing .section-intro {
  color: #b8a99a;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  max-width: 480px;
  padding: 2.5rem 2.25rem;
}

.pricing-plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}
.pricing-amount .amount {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.pricing-amount .cadence {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.pricing-billing-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.pricing-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   DISCLAIMER
   ============================================================ */
#disclaimer {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

#disclaimer h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.disclaimer-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.disclosure-box {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--fg);
  color: #b8a99a;
  padding: 2.5rem 0;
  border-top: 1px solid #3a302a;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #fff;
}
.footer-brand span { color: var(--accent); }

.footer-copy {
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.82rem;
  color: #b8a99a;
}
.footer-links a:hover { color: var(--accent); text-decoration: none; }

/* ============================================================
   SUB-PAGE WRAPPER
   ============================================================ */
.subpage-main {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.subpage-main h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.legal-body h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.legal-body h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

.legal-body p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-body ul, .legal-body ol {
  color: var(--muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.legal-body li { margin-bottom: 0.4rem; }

.legal-body a { color: var(--accent); }

.back-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.back-link:hover { color: var(--accent); }

.entity-section {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  max-width: 680px;
}
.contact-section h1 { margin-bottom: 1.5rem; }
.contact-section h2 {
  font-size: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.contact-section p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }

  #about .container {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  #benefits .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-nav { display: none; flex-direction: column; }
  .main-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 1.25rem; z-index: 99; }

  .nav-toggle { display: flex; }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
