/* ============================================================
   Forest3 Design — Static Site Stylesheet
   Aesthetic: Organic / Editorial / Natural Wall Texture
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1a3a2a;
  --forest-mid: #2c5c42;
  --leaf:     #4a8c5c;
  --cream:    #f5f0e8;
  --warm-white: #fdfaf5;
  --bark:     #7a6552;
  --charcoal: #1c1c1c;
  --stone:    #d4cfc5;
  --wa-green: #25d366;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  position: relative;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; color: #3d3d3d; }

/* ---- Layout Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; position: relative; z-index: 1; }
.section--dark { background: var(--forest); color: var(--cream); }
.section--dark p { color: #a8c4b0; }
.section--cream { background: var(--cream); }

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.logo-wrap img { height: 48px; width: auto; }

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

.site-nav a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--forest);
  color: var(--cream);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wa-green);
  color: #fff !important;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  background: #1ebe5b;
}
.wa-btn svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }

/* Mobile burger */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--forest);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- FLOATING WA BUTTON ---- */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 99;
  background: var(--wa-green);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---- HERO ---- */
.hero {
  min-height: 88vh;
  display: flex; align-items: center;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d2618 0%, #1a3a2a 50%, #2c5c42 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { color: var(--cream); }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--leaf);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--leaf);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
}
.hero h1 em { font-style: normal; color: #8dc9a0; font-weight: 600; }

.hero p {
  color: #a8c4b0;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--leaf);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(245,240,232,0.4);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,240,232,0.7); }

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-visual img {
  border-radius: 4px;
  height: 200px;
  width: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.hero-visual img:hover { opacity: 1; }
.hero-visual img:first-child { grid-column: 1 / -1; height: 260px; }

/* ---- PAGE HEADER (inner pages) ---- */
.page-hero {
  background: var(--forest);
  padding: 5rem 0 4rem;
  position: relative; z-index: 1;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--leaf), transparent);
}
.page-hero .eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--leaf);
  margin-bottom: 1rem;
}
.page-hero h1 { color: var(--cream); font-weight: 300; }
.page-hero p { color: #a8c4b0; margin-top: 1rem; max-width: 560px; font-size: 1.05rem; }

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--leaf);
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-body { max-width: 640px; margin-bottom: 3rem; }

/* ---- INTRO STRIP ---- */
.intro-strip {
  padding: 4rem 0;
  background: var(--cream);
  position: relative; z-index: 1;
}
.intro-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.intro-card { text-align: center; padding: 2rem 1rem; }
.intro-card .icon {
  width: 52px; height: 52px; margin: 0 auto 1.2rem;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.intro-card .icon svg { width: 24px; height: 24px; fill: var(--cream); }
.intro-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.intro-card p { font-size: 0.9rem; }

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e8e2d8;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,58,42,0.12);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream);
}

.product-info {
  padding: 1.2rem;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 0.4rem;
}

.product-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
}

.product-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
}
.product-price .was {
  text-decoration: line-through;
  color: #999;
  font-weight: 300;
  margin-right: 0.3rem;
  font-size: 0.82rem;
}
.product-price .save {
  font-size: 0.75rem;
  background: #eef7f1;
  color: var(--leaf);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  margin-left: 0.3rem;
}

.badge-sold {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a7a5a;
  background: #f5ede2;
  padding: 0.15rem 0.55rem;
  border-radius: 2px;
  align-self: flex-start;
}

.product-enquire {
  margin-top: auto;
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--forest);
  border: 1px solid var(--stone);
  padding: 0.5rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.product-enquire:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* ---- GALLERY ---- */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 4px;
  break-inside: avoid;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}
.gallery-grid img:hover { opacity: 0.9; transform: scale(1.01); }

/* ---- SERVICES LIST ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 1.8rem;
}
.service-item h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-item p  { color: #a8c4b0; font-size: 0.9rem; }
.service-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: rgba(74,140,92,0.4);
  margin-bottom: 0.75rem;
  font-style: italic;
}

/* ---- CTA BAND ---- */
.cta-band {
  padding: 5rem 0;
  background: var(--leaf);
  text-align: center;
  position: relative; z-index: 1;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,0.2); }
.btn-white svg { width: 18px; height: 18px; fill: var(--wa-green); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--forest); }
.contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--bark); margin-bottom: 0.2rem; }
.contact-value { font-weight: 400; color: var(--charcoal); font-size: 0.95rem; }
.contact-value a { color: var(--forest); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.contact-value a:hover { border-color: var(--forest); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.4rem 0; font-size: 0.9rem; }
.hours-table td:last-child { text-align: right; color: var(--forest); font-weight: 500; }

/* ---- ABOUT ---- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img { border-radius: 6px; overflow: hidden; }
.about-img img { width: 100%; height: 420px; object-fit: cover; }

/* ---- WECARE ---- */
.wecare-img { border-radius: 6px; margin-bottom: 2rem; max-height: 400px; object-fit: cover; width: 100%; }
.wecare-callout {
  background: var(--cream);
  border-left: 4px solid var(--leaf);
  padding: 1.5rem 2rem;
  border-radius: 0 6px 6px 0;
  margin: 2rem 0;
}
.wecare-callout p { font-style: italic; font-family: var(--serif); font-size: 1.15rem; color: var(--forest); }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; }
.prose ul li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.prose p { margin-bottom: 1rem; font-size: 0.95rem; }
.prose strong { color: var(--forest); }

/* ---- LEGAL ---- */
.legal-content { max-width: 760px; }
.legal-content h2 { margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.legal-content p, .legal-content li { font-size: 0.95rem; margin-bottom: 0.75rem; color: #3d3d3d; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--charcoal);
  color: var(--stone);
  padding: 4rem 0 2rem;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 44px; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.7); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #888; max-width: 280px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #666;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--stone);
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 0.88rem; color: var(--stone); margin-bottom: 0.4rem; line-height: 1.6; }

.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.social-links a:hover { border-color: var(--leaf); background: rgba(74,140,92,0.15); }
.social-links svg { width: 15px; height: 15px; fill: var(--stone); }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #555;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- MOBILE NAV OVERLAY ---- */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,58,42,0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--cream);
  font-style: italic;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--leaf); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 2rem; color: var(--cream); line-height: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .intro-strip .container { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { columns: 1; }
  .hero-ctas { flex-direction: column; }
  h1 { font-size: 2.2rem; }
}
