/* ============================================================
   SC SPECIALTY CUT FLOWERS — Shared Stylesheet
   Brand: #194842 (deep forest) · #248b20 (bright green) · #a4cda2 (sage)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #194842;
  --green:      #248b20;
  --tint:       #a4cda2;
  --lighttint:  #e8f5e8;
  --cream:      #f7f4ef;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --muted:      #5a5a5a;
  --border:     #e2e2e2;
  --radius:     10px;
  --shadow:     0 2px 16px rgba(25,72,66,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.serif { font-family: 'Playfair Display', Georgia, serif; }

/* --- CONTAINER --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- NAVIGATION --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--tint);
}
.nav-logo-text .top {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  display: block;
  line-height: 1.1;
}
.nav-logo-text .sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--dark); background: var(--lighttint); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-shop {
  font-size: 12px;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-shop:hover { background: var(--green); color: var(--white); }
.btn-nav-cta {
  font-size: 12px;
  background: var(--dark);
  color: #d4ecd3;
  padding: 7px 16px;
  border-radius: 20px;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-nav-cta:hover { background: #0f2e2a; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: #f0f8ef;
  color: var(--dark);
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--white); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #d4ecd3;
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 14px;
  border: 1.5px solid rgba(212,236,211,0.45);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: #d4ecd3; color: #f0f8ef; }

.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-green:hover { background: #1d7119; }

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: #d4ecd3;
  padding: 11px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-dark:hover { background: #0f2e2a; }

/* --- SECTION HEADERS --- */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--lighttint);
  border-bottom: 1px solid #c8e4c7;
  padding: 14px 32px;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--dark);
  font-weight: 500;
}
.trust-item .icon { font-size: 16px; }

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  padding: 48px 32px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(164,205,162,0.2);
  margin-bottom: 24px;
}
.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #f0f8ef;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--tint);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tint);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(212,236,211,0.75);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #f0f8ef; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(164,205,162,0.6); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-size: 12px;
  color: var(--tint);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.footer-social a:hover { color: #f0f8ef; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: var(--dark);
  padding: 56px 32px;
  text-align: center;
}
.page-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tint);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: #f0f8ef;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(212,236,211,0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* --- CARDS --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { height: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-title { font-size: 22px; }
  .page-hero h1 { font-size: 28px; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
}
