:root {
  --forest: #1F3B2C;
  --forest-deep: #142A1F;
  --clay: #9C3B1E;
  --gold: #C79A2E;
  --stone: #EFE7D2;
  --stone-light: #F7F2E4;
  --ink: #1A1A16;
  --paper: #FBF8F0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  font-style: italic;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* HEADER & NAV */
header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid rgba(26,26,22,0.1);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: 1180px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--forest); }
.brand-name span { color: var(--clay); }
.nav-links { display: flex; gap: 28px; font-size: 0.95rem; font-weight: 500; }
.nav-links a { opacity: 0.75; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--forest); color: var(--stone-light);
  padding: 10px 18px; border-radius: 2px; font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px; transition: background .2s;
}
.nav-cta:hover { background: var(--forest-deep); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* HERO */
.hero {
  background: var(--forest);
  color: var(--stone-light);
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(199,154,46,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(156,59,30,0.22), transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } }
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; display: block;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: 1.08rem; max-width: 480px; opacity: 0.88; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--forest-deep);
  padding: 14px 24px; border-radius: 2px; font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(247,242,228,0.4);
  padding: 14px 24px; border-radius: 2px; font-weight: 600; font-size: 0.95rem;
  color: var(--stone-light);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--stone-light); background: rgba(255,255,255,0.06); }

.hero-tag {
  background: var(--stone-light);
  color: var(--ink);
  padding: 26px 24px 22px;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
  transform: rotate(2deg);
  max-width: 340px;
  margin-left: auto;
}
.hero-tag::before {
  content: ""; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 16px; background: var(--gold);
}
.hero-tag .tag-photo {
  width: calc(100% + 48px); margin: -26px -24px 16px;
  aspect-ratio: 16/10; overflow: hidden; background: var(--stone);
}
.hero-tag .tag-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-tag .tag-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 8px; display: block;
}
.hero-tag h3 { font-size: 1.4rem; margin-bottom: 4px; color: var(--forest); }
.hero-tag .botanical { color: #6b6b60; font-size: 0.9rem; margin-bottom: 14px; display: block; }
.hero-tag p { font-size: 0.92rem; color: #3a3a34; }

/* SECTIONS */
section { padding: 80px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; gap: 20px; flex-wrap: wrap;
}
.section-head .eyebrow { color: var(--clay); }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--forest); }
.section-head p { max-width: 420px; color: #55554c; font-size: 0.98rem; }

/* SERVICES */
.services { background: var(--stone); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(26,26,22,0.12); border: 1px solid rgba(26,26,22,0.12);
}
@media (max-width: 760px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--stone-light); padding: 34px 28px; }
.service-card .num {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.85rem; color: var(--gold);
  margin-bottom: 16px; display: block;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--forest); }
.service-card p { font-size: 0.92rem; color: #55554c; }

/* GALLERY */
.gallery { background: var(--forest); color: var(--stone-light); }
.gallery .section-head .eyebrow { color: var(--gold); }
.gallery .section-head h2 { color: var(--stone-light); }
.gallery .section-head p { color: rgba(247,242,228,0.75); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 4/3; background: var(--forest-deep);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px 16px;
  background: linear-gradient(to top, rgba(20,42,31,0.92), transparent);
}
.gallery-item .cap .tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px;
}
.gallery-item .cap h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; color: var(--stone-light); }

/* CATALOG */
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 26px; }
@media (max-width: 920px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .catalog-grid { grid-template-columns: 1fr; } }

.plant-tag {
  background: var(--stone-light);
  border: 1px solid rgba(26,26,22,0.1);
  border-radius: 2px;
  padding: 22px 18px 20px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plant-tag:nth-child(odd) { transform: rotate(-1.1deg); }
.plant-tag:nth-child(even) { transform: rotate(1.1deg); }
.plant-tag:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 16px 30px rgba(20,42,31,0.14); }
.plant-tag::before {
  content: ""; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: var(--paper);
  border: 2px solid var(--clay);
}
.plant-photo {
  width: calc(100% + 36px); margin: -22px -18px 14px;
  aspect-ratio: 4/3; overflow: hidden; background: var(--stone);
}
.plant-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plant-tag h3 { font-size: 1.05rem; text-align: center; color: var(--forest); margin-bottom: 2px; }
.plant-tag .botanical { display: block; text-align: center; font-size: 0.78rem; color: #7a7a6e; margin-bottom: 10px; }
.plant-tag .desc { font-size: 0.83rem; color: #55554c; text-align: center; margin-bottom: 14px; min-height: 38px; }
.plant-tag .price {
  text-align: center; font-weight: 700; color: var(--clay); font-size: 0.95rem; margin-bottom: 14px;
  font-family: 'IBM Plex Mono', monospace; font-style: normal;
}
.order-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--forest); color: var(--stone-light);
  padding: 10px 12px; border-radius: 2px; font-size: 0.82rem; font-weight: 600;
  width: 100%; transition: background .2s;
}
.order-btn:hover { background: #25452F; }

/* AREAS & FOOTER */
.areas { background: var(--forest); color: var(--stone-light); }
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.area-chip {
  border: 1px solid rgba(247,242,228,0.28);
  padding: 10px 18px; border-radius: 999px; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.area-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

footer {
  background: var(--forest-deep); color: rgba(247,242,228,0.65);
  padding: 34px 0; font-size: 0.85rem;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-inner strong { color: var(--stone-light); }
.btc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; letter-spacing: 0.03em;
  color: rgba(247,242,228,0.55); border: 1px solid rgba(247,242,228,0.18);
  border-radius: 20px; padding: 5px 12px;
}
.btc-badge .sym { color: var(--gold); font-weight: 600; }

.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  background: #1F3B2C; color: #F7F2E4;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28); transition: transform .2s ease;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; }