/* ==========================================================================
   From The Heart — South Benfleet
   Design system: warm greeting-card-shop palette, serif display + clean sans
   ========================================================================== */

:root {
  --rose: #a3241c;
  --rose-dark: #7c1a14;
  --rose-light: #fbe6e2;
  --plum: #161414;
  --cream: #fff8f2;
  --cream-alt: #fdf0e6;
  --gold: #7c1a14;
  --text: #1a1717;
  --text-soft: #55504f;
  --white: #ffffff;
  --border: #ece4e2;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--plum);
  line-height: 1.2;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--text-soft); }

a { color: var(--rose-dark); text-decoration: none; }
a:hover { color: var(--rose); }

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(163, 36, 28, .35);
}
.btn-primary:hover { background: var(--rose-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose-dark);
}
.btn-outline:hover { background: var(--rose-light); color: var(--rose-dark); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--rose-dark);
}
.btn-light:hover { background: var(--rose-light); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 242, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum);
}
.brand .heart { color: var(--rose); font-size: 1.3rem; }
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
}
.brand-wordmark {
  display: block;
  height: 22px;
  width: auto;
}
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
}
nav.main-nav a.active,
nav.main-nav a:hover { color: var(--rose-dark); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .phone-link {
  font-weight: 700;
  color: var(--plum);
  font-size: .95rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--plum);
}

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--plum);
  color: #f3e6ec;
  font-size: .82rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #f3e6ec; }
.top-bar a:hover { color: var(--gold); }
.top-bar .stars { color: var(--gold); letter-spacing: 1px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-balloons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px 88px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: .92rem;
  color: var(--text-soft);
}
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; }
.hero-rating strong { color: var(--plum); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow {
  display: block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.card .icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--rose-light);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

/* ---------- Reviews ---------- */
.review-card {
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; display: block; }
.review-card p { color: var(--text); font-style: italic; }
.review-card .reviewer { font-weight: 700; color: var(--plum); font-style: normal; margin-top: 12px; display: block; }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--border); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--plum); }
.hours-table tr.today td { color: var(--rose-dark); font-weight: 700; }
.hours-table tr.closed td:last-child { color: var(--text-soft); font-weight: 500; }

/* ---------- Map ---------- */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Contact info list ---------- */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-list li:last-child { border-bottom: none; }
.info-list .info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--rose-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-dark);
  font-size: 1rem;
}
.info-list strong { display: block; color: var(--plum); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--plum), var(--rose-dark));
  color: var(--white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { opacity: .85; max-width: 560px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--plum);
  color: #e8d7de;
  padding: 56px 0 24px;
  margin-top: 40px;
}
footer.site-footer h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; }
footer.site-footer a { color: #e8d7de; }
footer.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid p { color: #cbb6bf; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: .82rem;
  color: #b79aa5;
  flex-wrap: wrap;
  gap: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.social-row a:hover { background: var(--rose); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Blog ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.blog-card .blog-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--rose-light), var(--cream-alt));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.blog-card .blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-date { font-size: .78rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.blog-card h3 { margin-bottom: 10px; }
.blog-card .read-more { margin-top: auto; font-weight: 700; }

article.post-body { max-width: 760px; margin: 0 auto; }
article.post-body h2 { margin-top: 1.6em; }
article.post-body ul, article.post-body ol { color: var(--text-soft); padding-left: 1.3em; }
article.post-body li { margin-bottom: .5em; }
.post-hero-meta { display: flex; gap: 16px; align-items: center; color: var(--text-soft); font-size: .88rem; margin-bottom: 28px; flex-wrap: wrap; }
.tag-pill {
  background: var(--rose-light);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 12px;
  border-radius: 999px;
}
.post-cta {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 48px;
  text-align: center;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .85rem; color: var(--text-soft); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--rose-dark); }

/* ---------- Page header (non-home pages) ---------- */
.page-header {
  background: var(--rose-light);
  padding: 56px 0 48px;
  text-align: center;
}
.page-header p { max-width: 600px; margin: 0 auto; }

/* ---------- Form ---------- */
.contact-form { display: grid; gap: 18px; }
.contact-form label { font-weight: 600; color: var(--plum); font-size: .9rem; display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: .95rem;
  background: var(--cream-alt);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-media { order: -1; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav.main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta .btn span.btn-text { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
  .top-bar .container { justify-content: center; text-align: center; }
  .header-inner { padding: 12px 16px; }
  .brand { gap: 8px; min-width: 0; }
  .brand-logo { height: 30px; }
  .brand-wordmark { height: 17px; }
  .brand small { display: none; }
  .header-cta { gap: 8px; }
}
