:root {
  --ink: #20171b;
  --muted: #685e63;
  --paper: #fffaf7;
  --white: #ffffff;
  --rose: #a8335c;
  --rose-dark: #782342;
  --sage: #6d8063;
  --sage-soft: #e8efe4;
  --sky: #eaf4f7;
  --line: rgba(32, 23, 27, 0.14);
  --shadow: 0 22px 70px rgba(44, 25, 31, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 12, 15, 0.82), rgba(18, 12, 15, 0.18) 72%, rgba(18, 12, 15, 0));
}

.brand,
.header-nav,
.header-call,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 210px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(18, 12, 15, 0.16);
}

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 650;
}

.header-nav a {
  opacity: 0.88;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  opacity: 1;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.lang-button {
  min-width: 38px;
  min-height: 32px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--rose-dark);
  background: var(--white);
}

.header-call {
  padding: 9px 16px;
  color: var(--rose-dark);
  font-weight: 800;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 80vh;
  padding: 120px clamp(18px, 5vw, 64px) 44px;
  color: var(--white);
  overflow: hidden;
  background-image: url("assets/hero-real-bouquet.jpg");
  background-size: cover;
  background-position: 62% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 13, 16, 0.86) 0%, rgba(31, 18, 23, 0.7) 33%, rgba(31, 18, 23, 0.26) 66%, rgba(31, 18, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(20, 13, 16, 0.42), rgba(20, 13, 16, 0.04) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 700px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sage-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 15px 38px rgba(168, 51, 92, 0.32);
}

.button.secondary {
  color: var(--rose-dark);
  background: var(--white);
}

.button.ghost {
  color: var(--rose-dark);
  background: transparent;
  border-color: rgba(120, 35, 66, 0.28);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 590px;
  margin: 30px 0 0;
}

.trust-strip div {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.trust-strip dt {
  font-size: 1.18rem;
  font-weight: 900;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.25;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
  scroll-margin-top: 94px;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-kicker {
  color: var(--rose);
}

.section h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4.8vw, 4rem);
}

.section-heading {
  max-width: 860px;
}

.section-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro {
  background: var(--white);
}

.intro-grid,
.quality-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.intro-copy p + p {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 750;
}

.products {
  background: linear-gradient(180deg, var(--paper), var(--sky));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.product-card,
.faq-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 42px rgba(60, 50, 54, 0.08);
}

.product-card h3,
.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.product-card p,
.faq-grid p,
.quality-list {
  margin: 0;
  color: var(--muted);
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
  margin-top: 34px;
}

.gallery-card,
.gallery-link {
  position: relative;
  min-height: 0;
  margin: 0;
  border-radius: 8px;
}

.gallery-link {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.gallery-card {
  overflow: hidden;
  background: #2b2024;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-link.tall {
  grid-row: span 2;
}

.gallery-card.wide,
.gallery-link.wide {
  grid-column: span 2;
}

.gallery-link:hover .gallery-card,
.gallery-link:focus-visible .gallery-card {
  transform: translateY(-3px);
  box-shadow: 0 26px 74px rgba(44, 25, 31, 0.26);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 850;
  background: rgba(32, 23, 27, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(32, 23, 27, 0.42), rgba(32, 23, 27, 0));
  pointer-events: none;
}

.gallery-card figcaption {
  z-index: 1;
}

.gallery-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 64px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: #271720;
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 1;
}

.gallery-cta::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.gallery-cta h3 {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
}

.gallery-cta p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.gallery-cta .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.quality {
  background: var(--white);
}

.quality-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.quality-list li {
  position: relative;
  padding: 18px 18px 18px 46px;
  background: var(--sage-soft);
  border-radius: 8px;
}

.quality-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--sage);
  border-radius: 50%;
}

.delivery {
  background: #f5f1fb;
}

.village-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.village-list span {
  padding: 9px 14px;
  color: #3d3150;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(61, 49, 80, 0.14);
  border-radius: 999px;
  font-weight: 720;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.contact {
  color: var(--white);
  background: #271720;
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.contact-actions .button {
  width: 100%;
}

.contact-actions .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.74);
  background: #1c1016;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

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

  .hero {
    min-height: 76vh;
  }

  .trust-strip {
    max-width: 560px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .gallery-cta {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .gallery-cta-actions {
    justify-content: flex-start;
  }

  .intro-grid,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    max-width: 128px;
    padding: 7px 11px;
  }

  .brand-logo {
    width: 104px;
  }

  .header-call {
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .header-actions {
    gap: 7px;
  }

  .lang-switch {
    padding: 2px;
  }

  .lang-button {
    min-width: 34px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 72vh;
    padding: 98px 18px 30px;
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 13, 16, 0.9) 0%, rgba(31, 18, 23, 0.76) 56%, rgba(31, 18, 23, 0.32) 100%),
      linear-gradient(0deg, rgba(20, 13, 16, 0.5), rgba(20, 13, 16, 0.08) 44%);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 20px;
  }

  .trust-strip div {
    padding: 10px 7px;
  }

  .trust-strip dt {
    font-size: 0.92rem;
  }

  .trust-strip dd {
    font-size: 0.7rem;
    line-height: 1.15;
  }

  .product-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-card.tall,
  .gallery-link.tall,
  .gallery-card.wide,
  .gallery-link.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .product-card,
  .faq-grid article {
    min-height: auto;
  }

  .gallery-cta-actions .button {
    width: 100%;
  }

  .gallery-cta {
    margin-top: 58px;
  }
}
