/* ─── Heaven Scent Flower Farm of TN — Stylesheet ─── */

:root {
  --charcoal: #1A1416;
  --charcoal-soft: #2D2024;
  --cream: #F5EFE6;
  --cream-light: #FBF7F0;
  --cream-dark: #E8DDD0;
  --blush: #E8C8C3;
  --blush-soft: #EFD8D2;
  --blush-deep: #D4ACA6;
  --rose-dust: #A07268;
  --sage: #94A89C;
  --sage-soft: #B4C2B8;
  --sage-deep: #6B7E72;
  --taupe: #C4A484;
  --taupe-dark: #8B7355;
  --ink: #2D1F1B;
  --ink-soft: #6B5147;
  --line: #E0CFC1;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── NAVIGATION ─── */
.nav {
  background: var(--charcoal);
  padding: 14px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid var(--charcoal-soft);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--cream-dark);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--blush); }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-brand { font-size: 13px; letter-spacing: 3px; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-top: 0.5px solid var(--charcoal-soft);
  }
  .nav-links.open { display: flex; }
}

/* ─── HERO ─── */
.hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-logo {
  max-width: 280px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 24px rgba(232, 200, 195, 0.15));
}
.hero-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  color: var(--cream);
}
.hero-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--blush);
  margin-bottom: 1.75rem;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 280px;
  margin: 0 auto 1.75rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--taupe);
}
.divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush);
}
.hero-tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream-dark);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.btn {
  display: inline-block;
  padding: 13px 36px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0.5px solid var(--taupe);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 500;
}
.btn:hover {
  background: var(--blush);
  color: var(--charcoal);
  border-color: var(--blush);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--blush);
  color: var(--charcoal);
  border-color: var(--blush);
}

/* ─── SECTIONS ─── */
.section {
  padding: 4rem 1.5rem;
}
.section-cream { background: var(--cream); }
.section-cream-light { background: var(--cream-light); }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--sage-deep);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}
.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}
.section-dark h2 { color: var(--cream); }
.section-lead {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.7;
}

/* ─── GRID + CARDS ─── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: var(--cream-light);
  padding: 0;
  text-align: center;
  border: 0.5px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(45, 31, 27, 0.08);
}
.service-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.service-content {
  padding: 1.5rem 1.25rem 1.75rem;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ─── GALLERY ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
}
.gallery a { display: block; overflow: hidden; }
.gallery img:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 220px; }
}

/* ─── ABOUT image+text ─── */
.about-img {
  width: 100%;
  border: 0.5px solid var(--line);
}

/* ─── FORM ─── */
.contact-form {
  background: var(--cream-light);
  padding: 2.5rem;
  border: 0.5px solid var(--line);
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--cream-light);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--taupe-dark);
  background: white;
}
.form-field textarea { min-height: 110px; resize: vertical; }

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal);
  color: var(--cream-dark);
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}
.footer-logo {
  max-width: 180px;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--taupe);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--blush);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.footer-contact {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-contact a {
  color: var(--cream-dark);
  text-decoration: none;
  border-bottom: 0.5px solid var(--taupe);
  padding-bottom: 1px;
}
.footer-contact a:hover { color: var(--blush); }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 1.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0.5px solid var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--blush);
  color: var(--charcoal);
  border-color: var(--blush);
}
.footer-bottom {
  font-size: 0.75rem;
  color: var(--taupe);
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--charcoal-soft);
  letter-spacing: 1px;
}

/* ─── ABOUT page styling ─── */
.about-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.story-section {
  padding: 5rem 1.5rem;
  background: var(--cream-light);
}
.story-content {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--ink);
}
.story-content p { margin-bottom: 1.5rem; }
.story-content em {
  color: var(--rose-dust);
  font-style: italic;
}

/* ─── SHOP page ─── */
.shop-card {
  background: var(--cream-light);
  border: 0.5px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.shop-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.shop-card-body {
  padding: 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.shop-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.shop-card-price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-dust);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.shop-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}
.shop-card .btn {
  align-self: flex-start;
  color: var(--charcoal);
  border-color: var(--taupe-dark);
}
.shop-card .btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 1.5rem 3.5rem;
  text-align: center;
}
.page-header .hero-eyebrow { color: var(--taupe); }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.page-header p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--blush);
  max-width: 540px;
  margin: 1rem auto 0;
}

@media (max-width: 768px) {
  .hero { padding: 3rem 1rem 3.5rem; }
  .section { padding: 3rem 1rem; }
  .contact-form { padding: 1.75rem 1.5rem; }
}
