/* Lucky Blossoms — Premium floral boutique */

:root {
  --ivory: #f9f6f1;
  --ivory-dark: #ebe7e0;
  --blush: #e8c4c4;
  --blush-light: #f2dfde;
  --blush-dark: #d4a5a5;
  --green: #2d4a3e;
  --green-light: #4a6b5c;
  --green-muted: rgba(45, 74, 62, 0.08);
  --text: #2c2825;
  --text-muted: #6b6562;
  --shadow-sm: 0 2px 12px rgba(45, 74, 62, 0.06);
  --shadow-md: 0 8px 32px rgba(45, 74, 62, 0.1);
  --shadow-lg: 0 16px 48px rgba(45, 74, 62, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --divider: 1px solid rgba(45, 74, 62, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background: rgba(249, 246, 241, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: var(--divider);
}

.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--green);
}

.nav a.active {
  color: var(--green);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header {
    padding: 1.25rem 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem;
    background: rgba(249, 246, 241, 0.99);
    border-bottom: var(--divider);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 1rem 0;
    border-bottom: var(--divider);
  }

  .nav a:last-child {
    border-bottom: none;
  }
}

/* Hero — large, with image placeholder */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem 2.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--ivory) 50%, var(--ivory-dark) 100%);
}

.hero-image-placeholder {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(45vw, 520px);
  height: min(55vw, 620px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-light) 50%, var(--ivory-dark) 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder svg {
  width: 60%;
  height: 60%;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  max-width: 42rem;
  z-index: 1;
}

.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  font-weight: 300;
  max-width: 36rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Page hero — inner pages, with placeholder */
.page-hero {
  min-height: 50vh;
  padding: 7rem 2.5rem 4rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

.page-hero .hero-content {
  max-width: 100%;
}

.page-hero .hero-title {
  margin-bottom: 0.75rem;
}

.page-hero .hero-subtitle {
  margin: 0 auto;
}

.page-hero .hero-image-placeholder {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 100%;
  max-width: 800px;
  height: 320px;
  margin: 2rem auto 0;
}

@media (max-width: 900px) {
  .hero-image-placeholder {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--ivory);
  border: 2px solid var(--green);
}

.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-secondary:hover {
  background: var(--blush-light);
  border-color: var(--blush-dark);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--blush);
  color: var(--green);
  border: 2px solid var(--blush-dark);
}

.btn-cta:hover {
  background: var(--blush-dark);
  color: var(--ivory);
  border-color: var(--blush-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-small {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

/* Layout */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.container.narrow {
  max-width: 42rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.75rem;
  color: var(--green);
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 36rem;
  line-height: 1.75;
}

.section-header .section-intro {
  margin-top: 0.5rem;
}

/* Divider */
.section-divider {
  height: 1px;
  background: var(--divider);
  margin: 4rem 0;
  border: none;
}

/* Product cards — premium rounded */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card-image {
  position: relative;
  height: 280px;
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image svg,
.product-card-image .card-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-card-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--green);
}

.product-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.product-card-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}

.product-card .btn {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

/* Category cards (simplified) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory-dark);
}

.card-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card h3 {
  font-size: 1.3rem;
  margin: 1.5rem 1.5rem 0.4rem;
  color: var(--green);
}

.category-card p {
  margin: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Category filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--ivory);
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--green);
  border-color: var(--green);
  background: var(--blush-light);
}

/* Delivery banner */
.delivery-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--ivory);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 4rem 0;
  box-shadow: var(--shadow-md);
}

.delivery-banner h3 {
  color: var(--ivory);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.delivery-banner p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.delivery-banner .btn {
  background: var(--ivory);
  color: var(--green);
  border-color: var(--ivory);
}

.delivery-banner .btn:hover {
  background: var(--blush-light);
  color: var(--green);
  border-color: var(--blush-light);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--ivory);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: var(--divider);
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0 0 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Process steps */
.steps {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: var(--divider);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--green);
  color: var(--ivory);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--green);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: var(--divider);
  padding: 1.75rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.5rem;
}

.faq-answer {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* About — story, studio, values */
.about-block {
  margin-bottom: 4rem;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block h3 {
  font-size: 1.75rem;
  margin: 0 0 1.25rem;
  color: var(--green);
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.85;
}

.about-text + .about-text {
  margin-top: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: var(--divider);
}

.value-card h4 {
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--green);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 56rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info h3 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--green);
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details a {
  color: var(--green);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--blush-dark);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-details a:hover {
  color: var(--blush-dark);
  border-color: var(--green);
}

.contact-meta {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--ivory-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  border: var(--divider);
}

.contact-text {
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-form {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--ivory);
  border: 2px solid var(--ivory-dark);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blush-dark);
}

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

.contact-form .btn {
  width: 100%;
  cursor: pointer;
}

/* Section backgrounds */
.section-alt {
  background: linear-gradient(180deg, var(--blush-light) 0%, var(--ivory) 100%);
}

.section-plants-inner {
  padding: 4rem 0;
}

.plants-category-title {
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
  color: var(--green);
  padding-bottom: 0.75rem;
  border-bottom: var(--divider);
}

/* Footer */
.footer {
  padding: 3rem 1.5rem;
  background: var(--green);
  color: var(--ivory);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.92;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

/* Delivery info block */
.delivery-info-block {
  background: var(--ivory);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: var(--divider);
}

.delivery-info-block h3 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--green);
}

.delivery-info-block p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.delivery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.delivery-cta .btn {
  min-width: 14rem;
}
