/* ============================================
   Soulé — Care for the Soul
   Editorial luxury, spa-quiet styling
   ============================================ */

:root {
  --navy: #10203f;
  --navy-soft: #1c3157;
  --gold: #b6913c;
  --gold-light: #d8b978;
  --cream: #faf5ee;
  --warm-white: #fffdfa;
  --blush: #f4e4de;
  --blush-soft: #f8ece7;
  --ink: #2b2620;
  --ink-soft: #675f54;
  --line: #e7dcce;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1.2em; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section--tight { padding: 64px 0; }

.section--cream { background: var(--cream); }
.section--blush { background: var(--blush-soft); }
.section--navy {
  background: var(--navy);
  color: var(--blush-soft);
}
.section--navy h2, .section--navy h3 { color: var(--warm-white); }
.section--navy p { color: #cdd4e2; }

.center { text-align: center; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__brand-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
}

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease;
  position: relative;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--gold);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  margin: 5px 0;
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open { display: flex; }
}

/* ---------- Nav / Collections dropdown ---------- */

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav__dropdown-toggle:hover,
.nav__dropdown-toggle[aria-expanded="true"],
.nav__dropdown-toggle.is-current {
  color: var(--gold);
}

.nav__caret {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}

.nav__dropdown-toggle[aria-expanded="true"] .nav__caret {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  min-width: 220px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 20px 40px -20px rgba(16, 32, 63, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}

.nav__dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
}

.nav__dropdown-menu li a:hover,
.nav__dropdown-menu li a[aria-current="page"] {
  color: var(--gold);
  background: var(--cream);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
  .nav__dropdown {
    align-self: stretch;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: center;
    padding: 2px 0;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    width: 100%;
    padding: 6px 0 0;
    margin: 0;
    text-align: center;
    display: none;
  }

  .nav__dropdown.is-open .nav__dropdown-menu {
    display: block;
    transform: none;
  }

  .nav__dropdown-menu li a {
    padding: 12px 0;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--navy);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--navy);
  color: var(--warm-white);
}
.btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.btn--outline {
  background: transparent;
  color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--warm-white); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--warm-white);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding: 88px 0 100px;
}

.hero__image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(16, 32, 63, 0.25);
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.2em;
}

.hero__concept {
  font-size: 1.05rem;
  max-width: 46ch;
}

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
  border: none;
}

.center .divider { margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero__image { order: -1; max-width: 420px; margin: 0 auto; }
}

/* ---------- Split (image + text) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split__image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(16, 32, 63, 0.18);
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__image { order: -1; }
}

/* ---------- Cards ---------- */

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

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(16, 32, 63, 0.3);
}

.card__label {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.3em;
}

.card a.card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Collection blocks ---------- */

.collection {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.collection:last-child { border-bottom: none; }

.collection__swatch {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  font-family: var(--serif);
  font-size: 1rem;
  text-align: center;
  padding: 24px;
}

.collection__number {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.4em;
  display: block;
}

.collection__phrase {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
}

@media (max-width: 860px) {
  .collection { grid-template-columns: 1fr; }
}

/* scent gradient swatches — color accents per collection */
.swatch--eucalyptus { background: linear-gradient(135deg, #35604f, #10203f); }
.swatch--peach { background: linear-gradient(135deg, #e8a06a, #c96b53); }
.swatch--strawberry { background: linear-gradient(135deg, #d68a95, #b6913c); }
.swatch--pineapple { background: linear-gradient(135deg, #e8c468, #e39a6b); }

/* ---------- Pricing tables ---------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 8px;
}

.price-table th, .price-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.price-table th {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

.price-table td.price { color: var(--navy); font-weight: 500; text-align: right; }

.product-block {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px;
  margin-bottom: 28px;
}

.note-box {
  background: var(--blush-soft);
  border-left: 3px solid var(--gold);
  padding: 20px 26px;
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 24px 0;
}

.note-box strong { color: var(--navy); }

/* ---------- Forms ---------- */

form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
}

label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1px solid var(--line);
  background: var(--warm-white);
  border-radius: 2px;
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 120px; }

.inline-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 460px;
}

.inline-form input { flex: 1; min-width: 200px; }

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Checkbox group ---------- */

.checkbox-group {
  border: none;
  padding: 0;
  margin: 0;
}

.checkbox-group legend {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0;
  margin-bottom: 4px;
}

.checkbox-group__hint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.checkbox-group__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

@media (max-width: 700px) {
  .checkbox-group__grid { grid-template-columns: 1fr; }
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-size: 0.92rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: #cdd4e2;
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 1em;
}

.footer-grid a, .footer-grid p { color: #cdd4e2; font-size: 0.92rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 0.8rem;
  color: #9aa4bc;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  padding: 72px 0 48px;
  text-align: center;
}

.page-hero p {
  max-width: 62ch;
  margin: 0 auto;
}

/* ---------- Coming soon badge ---------- */

.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.badge-soon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
