/* ===========================
   Forget the Date — Stylesheet
   =========================== */

:root {
  --blush: #f7e4e0;
  --blush-dark: #e8b9b0;
  --rose: #c97b73;
  --rose-dark: #a85c54;
  --sage: #a9b8a3;
  --sage-dark: #7e8f76;
  --cream: #fdf8f3;
  --charcoal: #3a3532;
  --gray: #756c67;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(58, 53, 50, 0.08);
  --radius: 16px;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--charcoal);
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 53, 50, 0.08);
}

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

.logo {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.logo span {
  color: var(--rose);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--rose);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose-dark);
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid var(--white);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.hero .btn-outline:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.btn-sage {
  background: var(--sage);
  color: var(--white);
}

.btn-sage:hover {
  background: var(--sage-dark);
}

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, rgba(58, 53, 50, 0.55) 0%, rgba(58, 53, 50, 0.6) 100%),
    url('../images/premium_photo-1673897888993-a1db844c2ca1.jpg');
  background-size: cover;
  background-position: center;
}

.hero .eyebrow,
.page-header .eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--rose-dark);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  color: var(--blush);
  font-style: italic;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-header .eyebrow-text {
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

.alt-bg {
  background: var(--white);
}

/* ---------- Card Grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}

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

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

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

.card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(58, 53, 50, 0.12);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--gray);
  font-size: 0.98rem;
}

.card .tag {
  display: inline-block;
  background: var(--blush);
  color: var(--rose-dark);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Product Cards ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image {
  height: 190px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-body p {
  color: var(--gray);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.price {
  font-size: 1.1rem;
  color: var(--rose-dark);
  font-weight: bold;
}

/* ---------- Quote / Story banner ---------- */
.story-banner {
  background: linear-gradient(rgba(247, 228, 224, 0.5), rgba(232, 185, 176, 0.55)),
    url('../images/photo-1579591165250-987f23844669.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
}

.story-banner blockquote {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
}

.story-banner cite {
  font-style: normal;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial .author {
  font-style: normal;
  font-weight: bold;
  color: var(--rose-dark);
  font-size: 0.9rem;
}

/* ---------- Newsletter / CTA ---------- */
.cta-band {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
  border-radius: var(--radius);
  margin: 0 24px;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  color: #d8d3cf;
  max-width: 520px;
  margin: 0 auto 28px;
}

.form-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.form-row input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
}

/* ---------- Forms (contact page) ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e2ddd7;
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--cream);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 16px;
}

/* ---------- Contact info list ---------- */
.info-list {
  list-style: none;
  margin-top: 24px;
}

.info-list li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  color: var(--gray);
}

.info-list li::before {
  content: '♥';
  position: absolute;
  left: 0;
  color: var(--rose);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #cfc9c4;
  padding: 60px 0 30px;
}

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

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: var(--blush-dark);
}

.footer-logo {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #a39d98;
}

/* ---------- Badge/hotline ---------- */
.hotline-banner {
  background: var(--blush-dark);
  color: var(--charcoal);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}

.hotline-banner strong {
  color: var(--rose-dark);
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 90px 0 60px;
  text-align: center;
  background: linear-gradient(rgba(58, 53, 50, 0.55), rgba(58, 53, 50, 0.6)),
    url('../images/premium_photo-1724427568798-0fa5a5d8f289.jpg');
  background-size: cover;
  background-position: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.page-header p {
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Filters (resources/shop) ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--blush-dark);
  background: var(--white);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* ---------- Community steps ---------- */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.step-content h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.step-content p {
  color: var(--gray);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(58,53,50,0.08);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(58,53,50,0.06);
  }
  .nav-toggle {
    display: block;
  }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { flex-direction: column; }
  .form-row input, .form-row button { width: 100%; }
}
