@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap");

/* Floreo (Blocksy) palette — https://startersites.io/blocksy/floreo/ */
:root {
  --floreo-1: #5a8139; /* accent / buttons / links */
  --floreo-2: #48682b; /* accent deep / hover */
  --floreo-3: #434f58; /* body text */
  --floreo-4: #192c27; /* dark sections / hero / footer */
  --floreo-5: #e6f0ee; /* soft mint */
  --floreo-6: #f2f7f6; /* soft bg */
  --floreo-7: #fbfcfc; /* page bg */
  --floreo-8: #ffffff;

  --bg: var(--floreo-7);
  --bg-elev: var(--floreo-6);
  --bg-soft: var(--floreo-8);
  --bg-dark: var(--floreo-4);
  --text: var(--floreo-3);
  --text-dark: #f7faf9;
  --muted: #6b7a84;
  --muted-on-dark: rgba(255, 255, 255, 0.72);
  --accent: var(--floreo-1);
  --accent-hi: #7aa05a;
  --accent-deep: var(--floreo-2);
  --border: #d7e4e0;
  --border-dark: rgba(255, 255, 255, 0.14);
  --danger: #c45c5c;
  --radius: 12px;
  --shadow: 0 16px 40px rgba(25, 44, 39, 0.12);
  --header-h: 76px;
  --max: 1160px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "DM Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Header — light like Floreo content chrome */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(12px);
  background: rgba(251, 252, 252, 0.92);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
}
.logo img {
  height: 46px;
  width: auto;
  /* logo is on black — soften into light header */
  border-radius: 8px;
}
.logo-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: var(--floreo-4);
  text-transform: lowercase;
}
.nav {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: nowrap;
}
.nav a {
  color: var(--floreo-3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--accent); }
.nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.header-actions .btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.lang {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--floreo-8);
}
.lang button,
.lang a {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.lang button[aria-pressed="true"],
.lang a[aria-current="page"] {
  background: var(--accent);
  color: #fff;
}
.lang a:hover { color: var(--accent-deep); }
.lang a[aria-current="page"]:hover { color: #fff; }
.phone-link {
  color: var(--floreo-4);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.phone-link:hover { color: var(--accent); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 8px;
  padding: 0.9rem 1.35rem;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost-light {
  background: #fff;
  border-color: var(--floreo-4);
  color: var(--floreo-4);
}
.btn-ghost-light:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--floreo-8);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--floreo-4);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

/* Hero — Floreo-style full-bleed botanical background */
.hero-band {
  position: relative;
  isolation: isolate;
  min-height: 0;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  overflow: hidden;
  background: var(--floreo-4);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* fallback if <img> fails */
  background: url("../media/photos/hero-bg.jpg") center / cover no-repeat;
}
.hero-bg picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 28, 24, 0.25) 0%, rgba(25, 44, 39, 0.38) 55%, rgba(15, 28, 24, 0.55) 100%);
  pointer-events: none;
}
.hero {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block: 3.5rem 3.75rem;
  min-height: 0;
  box-sizing: border-box;
}
.hero::before { display: none; }
.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  box-sizing: border-box;
}
.eyebrow {
  color: var(--accent-hi);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.08;
  margin: 0 auto 1.1rem;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 700;
  max-width: 16ch;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--muted-on-dark);
  max-width: 42ch;
  margin: 0 auto 1.25rem;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  width: 100%;
  max-width: min(28rem, 100%);
  margin-inline: auto;
  box-sizing: border-box;
}
.hero-cta .btn {
  width: 100%;
  max-width: 100%;
  min-height: 3.1rem;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
}
.hero-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
}
.hero-cta .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.hero-visual { display: none; }

/* Sections */
section { padding: 4.75rem 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--floreo-4);
  font-weight: 700;
}
.section-head p { margin: 0; color: var(--muted); }

.trust {
  position: relative;
  background-color: var(--floreo-6);
  background-image: url("../media/pattern-figures.svg");
  background-repeat: repeat;
  background-size: 520px 400px;
  background-position: center top;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-card, .aud-card, .product-card, .step-card {
  background: var(--floreo-8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 1px 0 rgba(25, 44, 39, 0.03);
}
.trust-card h3, .aud-card h3, .step-card h3, .product-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-family: var(--display);
  color: var(--floreo-4);
  font-weight: 700;
}
.trust-card p, .aud-card p, .step-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.trust-ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  background: var(--floreo-5);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  font-weight: 800;
  font-size: 0.85rem;
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.usp-band {
  background: var(--floreo-4);
  color: var(--text-dark);
  padding: 3.5rem 0;
}
.usp-inner {
  max-width: 40rem;
  text-align: center;
  margin-inline: auto;
}
.usp-band h2 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.usp-band p {
  margin: 0 0 1.5rem;
  color: var(--muted-on-dark);
  font-size: 1.05rem;
  line-height: 1.6;
}
.usp-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
}
.usp-band .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.usp-inner .hero-cta {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
}
.usp-inner .hero-cta .btn {
  width: 100%;
  min-height: 3.1rem;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

#compare { background: var(--floreo-8); }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.compare-card {
  background: var(--floreo-6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.compare-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--floreo-4);
}
.compare-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.compare-card--accent {
  background: var(--floreo-8);
  border-color: #b7cdb8;
  box-shadow: 0 0 0 1px rgba(90, 129, 57, 0.12);
}
.compare-card--accent h3 { color: var(--accent-deep); }

.order-band { background: var(--floreo-6); }
.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.order-card {
  background: var(--floreo-8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.order-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--floreo-4);
}
.order-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.order-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
  justify-content: center;
  align-items: stretch;
  background: var(--floreo-4);
  border-radius: 12px;
  padding: 1.15rem;
}
.order-cta .btn {
  min-width: min(100%, 16rem);
  min-height: 3rem;
}
.order-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
}
.order-cta .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

#catalog { background: var(--floreo-7); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  border-color: #b7cdb8;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card .media {
  background: var(--floreo-6);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card .body {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .tag {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.product-card .product-scene {
  margin: 0 0 0.45rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 600;
}
.product-card .product-desc {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.product-card .body .btn {
  width: 100%;
  margin-top: auto;
}

#gallery { background: var(--floreo-6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.gallery-grid a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  background: var(--floreo-8);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.step-num {
  font-family: var(--display);
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.material {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.material-visual {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.material-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#material h2 { color: var(--floreo-4); }

.faq-list { display: grid; gap: 0.7rem; max-width: 760px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--floreo-8);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--floreo-4);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
}

.contact {
  background: var(--floreo-8);
  color: var(--text);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact .section-head h2,
.contact h2 {
  color: var(--floreo-4);
}
.contact p { color: var(--muted); }
.contact-lead {
  margin: 0 0 1rem;
  max-width: 36ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}
.contact-card {
  background: var(--floreo-6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.seo-about p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.seo-about p:last-child { margin-bottom: 0; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.contact-list li { margin: 0.55rem 0; }
.contact-list a {
  font-weight: 600;
  color: var(--floreo-4);
}
.contact-list a:hover { color: var(--accent); }

.site-footer {
  background: var(--floreo-8);
  border-top: 1px solid var(--border);
  padding: 2rem 0 6.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--floreo-4);
}
.footer-brand img { height: 40px; border-radius: 6px; }
.footer-brand strong { color: var(--floreo-4); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-nav a { color: var(--floreo-4); }
.footer-nav a:hover { color: var(--accent); }

.mobile-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  background: rgba(251, 252, 252, 0.96);
  border-top: 1px solid var(--border);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.55rem;
}
.mobile-bar .btn { flex: 1; }
.mobile-bar .btn-ghost {
  border-color: var(--border);
  color: var(--floreo-4);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-in,
.hero-visual,
.hero-copy {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .trust-grid, .aud-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid, .order-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-band {
    min-height: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2.25rem 0 2.5rem;
  }
  .hero-cta,
  .usp-inner .hero-cta,
  .order-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-cta .btn,
  .usp-inner .hero-cta .btn,
  .order-cta .btn {
    width: 100%;
    min-width: 0;
    border-radius: 8px;
  }
  .hero-visual { display: none; }
  .material, .contact-grid, .steps-grid { grid-template-columns: 1fr; }
  .nav, .phone-link { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--floreo-8);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.85rem;
  }
  .mobile-bar { display: flex; }
}

@media (max-width: 560px) {
  .catalog-grid, .trust-grid, .aud-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .logo-text { display: none; }
  .header-actions .btn { display: none; }
  .hero {
    padding: 1.75rem 0 2rem;
  }
  .eyebrow { margin-bottom: 0.65rem; }
  .hero h1 { margin: 0 0 0.65rem; }
  .hero-lead { margin-bottom: 1rem; }
  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-cta,
  .usp-inner .hero-cta,
  .order-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.7rem;
  }
  .hero-cta .btn,
  .usp-inner .hero-cta .btn,
  .order-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 3.1rem;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .hero-cta .btn-ghost,
  .usp-band .btn-ghost,
  .order-cta .btn-ghost {
    border-width: 1.5px;
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
  }
}
