/* The Soaking Tub — Bath & Soak Products */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400;500;600&display=swap');

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

:root {
  --blue-deep: #2E4057;
  --blue-mid: #4A7C94;
  --blue-soft: #89B4C8;
  --blue-pale: #E8F4F8;
  --cream: #FAFCFD;
  --warm-white: #FFFFFF;
  --sand: #F5F0E8;
  --gold: #C9A96E;
  --text: #2E3B4E;
  --slate: #5C6B7A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- HEADER / NAV ---- */
header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--blue-pale);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--blue-deep);
}

.brand svg { width: 34px; height: 34px; flex-shrink: 0; }

.brand span {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue-mid); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,64,87,0.7) 0%, rgba(74,124,148,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 3rem;
  max-width: 580px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn:hover { background: #B8935A; }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  margin-left: 0.8rem;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---- SECTIONS ---- */
section { padding: 5rem 0; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.bg-sand { background: var(--sand); }
.bg-pale { background: var(--blue-pale); }

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--warm-white);
  border: 1px solid rgba(137,180,200,0.15);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.product-card:hover { box-shadow: 0 8px 28px rgba(46,64,87,0.08); }

.product-card img { width: 100%; height: 260px; object-fit: cover; }

.product-card-body { padding: 1.5rem; }

.product-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 0.4rem;
}

.product-card-body p { color: var(--slate); font-size: 0.92rem; }

/* ---- TWO-COL FEATURE ---- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.feature-row img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.feature-row h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.feature-row p { color: var(--slate); margin-bottom: 1rem; }

/* ---- ARTICLE ---- */
.article-header {
  text-align: center;
  padding: 4rem 1.5rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
}

.article-header .meta {
  color: var(--slate);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--blue-deep);
  margin: 2.5rem 0 0.8rem;
}

.article-body p { margin-bottom: 1.2rem; color: var(--slate); }

.article-body img {
  width: 100%;
  margin: 2rem 0;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.2rem 1.5rem;
  color: var(--slate);
}

.article-body li { margin-bottom: 0.5rem; }

.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--blue-deep);
  background: var(--sand);
}

/* ---- TESTIMONIAL ---- */
.testimonial-section {
  background: var(--blue-deep);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.testimonial-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.testimonial-section cite {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ---- CTA ---- */
.cta-section {
  background: var(--blue-mid);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.cta-section p { opacity: 0.9; max-width: 480px; margin: 0 auto 1.5rem; }

.cta-section .btn { background: var(--gold); }
.cta-section .btn:hover { background: #B8935A; }

/* ---- FOOTER ---- */
footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

footer p { font-size: 0.88rem; margin-bottom: 0.5rem; }

footer a { color: var(--blue-soft); text-decoration: none; }
footer a:hover { text-decoration: underline; }

footer h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.8rem; }

footer ul { list-style: none; }
footer li { margin-bottom: 0.4rem; font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--blue-pale);
    gap: 0.8rem;
  }

  .nav-links.open { display: flex; }

  .hero { min-height: 400px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content { padding: 2rem 1.5rem; }

  .feature-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .btn-outline { margin-left: 0; margin-top: 0.5rem; display: inline-block; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
