:root {
  --bg: #fffaf8;
  --surface: #ffffff;
  --surface-alt: #f7efeb;
  --text: #2c2220;
  --muted: #6d5b57;
  --line: #eadcd6;
  --brand: #b65d73;
  --brand-dark: #8e4457;
  --topbar: #3d2b30;
  --shadow: 0 20px 45px rgba(77, 43, 52, 0.08);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: var(--topbar);
  color: #fff7f4;
  font-size: 0.92rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.topbar-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: #ffd6df;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 248, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 220, 214, 0.85);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(44, 34, 32, 0.08);
  background: rgba(255, 250, 248, 0.96);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  background: white;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  background: var(--brand);
  color: white;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-sm {
  padding: 0.7rem 1rem;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 12ch;
}

.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 58ch;
  margin: 1.2rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-trust {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  color: var(--muted);
  font-weight: 600;
}

.hero-highlights li::before {
  content: "•";
  color: var(--brand);
  margin-right: 0.45rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  padding: 1rem 0.35rem 0.35rem;
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 700px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-head p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.muted {
  background: var(--surface-alt);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 1rem 0 0.45rem;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.card-image,
.showcase,
.floral-panel {
  border-radius: 20px;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.product-row span {
  color: var(--brand-dark);
  font-weight: 700;
}

.product-card a {
  color: var(--brand-dark);
  font-weight: 700;
}

.delivery-grid,
.contact-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.5rem;
  align-items: start;
}

.delivery-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.delivery-box,
.delivery-panel,
.order-form,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.delivery-box ul,
.check-list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.delivery-form,
.order-form {
  display: grid;
  gap: 0.85rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fffdfc;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(182, 93, 115, 0.15);
  border-color: var(--brand);
}

label {
  font-weight: 700;
  font-size: 0.95rem;
}

.delivery-result {
  min-height: 52px;
  padding: 1rem;
  border-radius: 16px;
  background: #fbf4f1;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
}

.delivery-result.is-success {
  background: #eef8f0;
  color: #21633a;
  border: 1px solid #cfe8d6;
}

.delivery-result.is-warning {
  background: #fff6ea;
  color: #8a5a16;
  border: 1px solid #f1ddba;
}

.delivery-result.is-error {
  background: #fff0f0;
  color: #9b2f2f;
  border: 1px solid #edcaca;
}

.align-center {
  align-items: center;
}

.about-copy {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.instagram-embed-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.instagram-feed-container {
  min-height: 360px;
}

.quote-card p {
  color: var(--text);
  font-size: 1.02rem;
}

.review-card {
  position: relative;
  overflow: hidden;
}

.review-stars {
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.85rem;
  color: #c79a2b;
}

.testimonials .quote-card p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.testimonials .quote-card strong {
  color: var(--brand-dark);
  font-size: 0.95rem;
}

.reviews-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 1.2rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-points p {
  margin: 0.5rem 0;
  color: var(--muted);
}

.contact-points a {
  color: var(--brand-dark);
  font-weight: 600;
}

.contact-actions {
  margin-top: 1.25rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.form-status {
  min-height: 24px;
  margin: 0.25rem 0 0;
  font-weight: 600;
}

.form-status.is-success {
  color: #21633a;
}

.form-status.is-error {
  color: #9b2f2f;
}

.site-footer {
  background: #2e2124;
  color: #fdf7f6;
  padding: 1.6rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner p {
  color: #dfcacd;
}

.call-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 14px 30px rgba(77, 43, 52, 0.22);
  z-index: 60;
}

.call-float:hover {
  background: var(--brand-dark);
}

.btn.mobile-only-call,
.call-float.mobile-only-call {
  display: none;
}

.floral-1  { background-image: linear-gradient(135deg, rgba(157, 82, 104, 0.15), rgba(255,255,255,0.08)), url('images/first.jpg'); min-height: 500px;}
.floral-2  { background-image: linear-gradient(135deg, rgba(157, 82, 104, 0.15), rgba(255,255,255,0.08)), url('https://images.unsplash.com/photo-1563241527-3004b7be0ffd?auto=format&fit=crop&w=1200&q=80'); }
.floral-3  { background-image: linear-gradient(135deg, rgba(157, 82, 104, 0.15), rgba(255,255,255,0.08)), url('images/third.jpg'); }
.floral-5  { background-image: linear-gradient(135deg, rgba(157, 82, 104, 0.15), rgba(255,255,255,0.08)), url('images/second.jpg'); }
.floral-6  { background-image: linear-gradient(135deg, rgba(157, 82, 104, 0.15), rgba(255,255,255,0.08)), url('https://images.unsplash.com/photo-1455659817273-f96807779a8a?auto=format&fit=crop&w=1200&q=80'); }
.floral-7  { background-image: linear-gradient(135deg, rgba(157, 82, 104, 0.15), rgba(255,255,255,0.08)), url('https://images.unsplash.com/photo-1494336934272-f03a22c07d11?auto=format&fit=crop&w=1200&q=80'); }
.floral-9  { background-image: linear-gradient(135deg, rgba(157, 82, 104, 0.15), rgba(255,255,255,0.08)), url('https://images.unsplash.com/photo-1522673607200-164d1b6ce486?auto=format&fit=crop&w=1200&q=80'); min-height: 380px; }
.floral-11 { background-image: linear-gradient(135deg, rgba(157, 82, 104, 0.15), rgba(255,255,255,0.08)), url('images/fourth.jpg'); min-height: 500px; }

a.tutorial_link,
.instagram-embed-shell .tutorial_link,
.instagram-feed-container .tutorial_link,
.sk-instagram-feed + a,
.sk-instagram-feed ~ a {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 1024px) {
  .grid-3,
  .grid-2,
  .hero-grid,
  .delivery-grid,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .hero-stats,
  .delivery-boxes,
  .field-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar-inner,
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-links {
    flex-direction: column;
    gap: 0.4rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .btn.mobile-only-call,
  .call-float.mobile-only-call {
    display: inline-flex;
  }
}