/* SWave Coming Soon — beauty / textured-hair (SA)
   Soft neutrals + warm coral. Clean, contemporary lifestyle beauty.
   Distinct from modest-fashion / calligraphy aesthetics. */

:root {
  --ink: #1c2422;
  --ink-soft: #3d4a46;
  --cream: #f7f1ea;
  --sand: #efe4d8;
  --blush: #f3d9cf;
  --coral: #e87a5d;
  --coral-deep: #d45f42;
  --teal: #1a3a3a;
  --teal-mid: #2a5250;
  --white: #fffcf9;
  --radius: 1.25rem;
  --shadow: 0 18px 50px rgba(26, 58, 58, 0.12);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 55% at 10% -10%, rgba(232, 122, 93, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 15%, rgba(42, 82, 80, 0.14), transparent 50%),
    linear-gradient(165deg, var(--cream) 0%, var(--sand) 48%, #e8ddd2 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-deep);
}

.page {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
  display: grid;
  gap: 2.5rem;
}

/* —— Header —— */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  color: var(--teal);
  text-decoration: none;
}

.brand:hover {
  color: var(--teal-mid);
}

.brand-mark {
  width: min(12.5rem, 55vw);
  height: auto;
  display: block;
  height: 28px;
  width: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(26, 58, 58, 0.08);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* —— Hero —— */
.hero {
  max-width: 38rem;
  padding: 0.5rem 0 0.25rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 7vw, 3.65rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--teal);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(232, 122, 93, 0.35);
}

.btn-primary:hover {
  background: var(--coral-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: 1.1em;
  line-height: 1;
}

.btn-ghost {
  background: rgba(255, 252, 249, 0.55);
  color: var(--teal);
  border: 1px solid rgba(26, 58, 58, 0.14);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--teal);
  border-color: rgba(26, 58, 58, 0.28);
}

.signals {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.signals li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.signal-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 122, 93, 0.2);
}

/* —— Mood strip (abstract lifestyle panels — no inventory) —— */
.mood {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.mood-card {
  position: relative;
  min-height: 9.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mood-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.88);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mood-a {
  background:
    linear-gradient(145deg, rgba(232, 122, 93, 0.55), transparent 55%),
    linear-gradient(320deg, #2a5250 0%, #1a3a3a 100%);
}

.mood-a::after {
  content: "";
  position: absolute;
  inset: 18% -10% auto auto;
  width: 55%;
  height: 70%;
  border-radius: 50% 40% 55% 45%;
  background: radial-gradient(circle at 30% 30%, #f3d9cf, #e87a5d 60%, transparent 70%);
  opacity: 0.85;
  filter: blur(2px);
}

.mood-b {
  background:
    linear-gradient(160deg, rgba(243, 217, 207, 0.9), transparent 50%),
    linear-gradient(20deg, #efe4d8, #dcc9b6);
}

.mood-b::before {
  content: "";
  position: absolute;
  left: 12%;
  top: 22%;
  width: 42%;
  height: 58%;
  border-radius: 60% 40% 55% 45%;
  border: 2px solid rgba(26, 58, 58, 0.18);
  transform: rotate(-12deg);
}

.mood-b::after {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 18%;
  width: 28%;
  height: 40%;
  border-radius: 50%;
  background: rgba(232, 122, 93, 0.35);
}

.mood-c {
  background:
    linear-gradient(200deg, rgba(26, 58, 58, 0.08), transparent 40%),
    linear-gradient(135deg, #fffcf9, #f3d9cf 70%, #e87a5d);
}

.mood-c::after {
  content: "";
  position: absolute;
  inset: auto 8% 20% 35%;
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    var(--teal) 0 10px,
    transparent 10px 18px
  );
  opacity: 0.35;
}

/* —— Footer —— */
.foot {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(26, 58, 58, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.entity {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}

.meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

.meta a {
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 58, 58, 0.25);
}

.meta a:hover {
  border-bottom-color: var(--coral);
}

.sep {
  margin: 0 0.4rem;
  opacity: 0.5;
}

/* —— Responsive —— */
@media (min-width: 640px) {
  .page {
    padding: 2rem 0 3rem;
    gap: 3rem;
  }

  .brand-mark {
  width: min(12.5rem, 55vw);
  height: auto;
    height: 32px;
  }

  .mood {
    grid-template-columns: repeat(3, 1fr);
  }

  .mood-card {
    min-height: 12rem;
  }

  .foot {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .page {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "top top"
      "hero mood"
      "foot foot";
    align-items: center;
    column-gap: 2.5rem;
    row-gap: 2.75rem;
  }

  .top { grid-area: top; }
  .hero { grid-area: hero; max-width: none; }
  .mood {
    grid-area: mood;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .mood-card { min-height: 8.5rem; }
  .mood-b { min-height: 10rem; }
  .foot { grid-area: foot; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
