@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,500&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS — ORGANIC EARTH PALETTE
═══════════════════════════════════════ */
:root {
  /* Earthy Core */
  --moss:        #4a6741;
  --moss-light:  #6a8f5f;
  --moss-pale:   #e8f0e6;
  --clay:        #b05c34;
  --clay-light:  #d4845e;
  --clay-pale:   #f5e8e0;
  --sand:        #c9a96e;
  --sand-light:  #e8d5b0;
  --sand-pale:   #faf5ec;
  --bark:        #3d2b1a;
  --bark-mid:    #5c3d28;
  --stone:       #8c7b6b;
  --stone-light: #bfb3a5;
  --stone-pale:  #f0ece6;

  /* Surfaces */
  --cream:       #fdf8f0;
  --parchment:   #f5ede0;
  --white:       #fffcf7;

  /* Shadows — tinted, never harsh */
  --shadow-sm:   0 2px 12px rgba(61,43,26,0.08);
  --shadow-md:   0 6px 28px rgba(61,43,26,0.12);
  --shadow-lg:   0 16px 56px rgba(61,43,26,0.14);
  --shadow-moss: 0 8px 32px rgba(74,103,65,0.18);
  --shadow-clay: 0 8px 32px rgba(176,92,52,0.18);

  /* Radii — generous, blob-like */
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   32px;
  --r-xl:   48px;
  --r-pill: 999px;
  --r-blob: 60% 40% 55% 45% / 50% 60% 40% 50%;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;

  /* Typography */
  --font-head: 'Fraunces', serif;
  --font-body: 'Nunito', sans-serif;

  /* Transitions — smooth, unhurried */
  --ease-organic: cubic-bezier(0.34, 1.08, 0.64, 1);
  --ease-soft:    cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.22s;
  --t-mid:  0.38s;
  --t-slow: 0.56s;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bark);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }
::selection { background: var(--sand-light); color: var(--bark); }

/* ═══ GRAIN TEXTURE OVERLAY ═══ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.55;
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--stone-light); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--moss-light); }

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bark);
}
.display-xl {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}
.italic { font-style: italic; }
.text-moss  { color: var(--moss); }
.text-clay  { color: var(--clay); }
.text-sand  { color: var(--sand); }
.text-stone { color: var(--stone); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  border: none; outline: none;
  cursor: pointer;
  transition: transform var(--t-mid) var(--ease-organic),
              box-shadow var(--t-mid) var(--ease-soft);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  border-radius: inherit;
  transition: background var(--t-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.12); }
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-moss {
  background: var(--moss); color: var(--white);
  box-shadow: 0 4px 20px rgba(74,103,65,0.28);
}
.btn-moss:hover { box-shadow: var(--shadow-moss); }

.btn-clay {
  background: var(--clay); color: var(--white);
  box-shadow: 0 4px 20px rgba(176,92,52,0.28);
}
.btn-clay:hover { box-shadow: var(--shadow-clay); }

.btn-outline {
  background: transparent; color: var(--bark);
  border: 2px solid var(--stone-light);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--moss); color: var(--moss); box-shadow: var(--shadow-moss); }

.btn-sand {
  background: var(--sand); color: var(--bark);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.btn-lg { padding: 1.05rem 2.6rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* ═══ PILL BADGE ═══ */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--r-pill);
}
.badge-moss  { background: var(--moss-pale);  color: var(--moss); }
.badge-clay  { background: var(--clay-pale);  color: var(--clay); }
.badge-sand  { background: var(--sand-pale);  color: var(--bark-mid); }
.badge-stone { background: var(--stone-pale); color: var(--stone); }
.badge .dot  { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ═══ SECTION SCAFFOLDING ═══ */
section { padding: 5rem 5%; }
.section-label {
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 3px;
  background: var(--moss);
  border-radius: var(--r-pill);
}
.section-sub {
  font-size: 1.05rem; color: var(--stone); font-weight: 400;
  max-width: 540px; line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-sub { margin: 0 auto; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(253,248,240,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  transition: padding var(--t-mid) var(--ease-soft),
              background var(--t-mid) var(--ease-soft);
}
.navbar.scrolled {
  padding: 0.75rem 5%;
  background: rgba(253,248,240,0.96);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  color: var(--bark);
}
.logo-emblem {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--moss), var(--moss-light));
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 12px rgba(74,103,65,0.25);
  transition: border-radius var(--t-slow) var(--ease-organic),
              transform var(--t-mid) var(--ease-organic);
}
.logo-emblem:hover {
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
  transform: rotate(-5deg) scale(1.05);
}
.logo-name { color: var(--bark); }
.logo-name span { color: var(--moss); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  font-weight: 600; font-size: 0.9rem; color: var(--stone);
  padding: 0.5rem 0.9rem; border-radius: var(--r-pill);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--moss-pale); color: var(--moss);
}
.nav-cta {
  background: var(--moss); color: var(--white) !important;
  padding: 0.55rem 1.3rem !important; border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 14px rgba(74,103,65,0.25);
  transition: all var(--t-mid) var(--ease-organic) !important;
}
.nav-cta:hover {
  background: var(--moss-light) !important; transform: translateY(-2px);
  box-shadow: var(--shadow-moss) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--bark); border-radius: var(--r-pill);
  transition: all var(--t-mid) var(--ease-soft);
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; padding-top: 80px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}
/* Organic background blobs */
.hero::before {
  content: '';
  position: absolute; top: -15%; right: -8%;
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(ellipse, rgba(232,240,230,0.9) 0%, rgba(232,240,230,0.3) 60%, transparent 80%);
  border-radius: 62% 38% 55% 45% / 48% 58% 42% 52%;
  pointer-events: none; z-index: 0;
  animation: blobFloat 10s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(ellipse, rgba(245,232,224,0.7) 0%, transparent 70%);
  border-radius: 45% 55% 60% 40% / 52% 48% 52% 48%;
  pointer-events: none; z-index: 0;
  animation: blobFloat 13s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { border-radius: 62% 38% 55% 45% / 48% 58% 42% 52%; transform: translateY(0); }
  33%       { border-radius: 45% 55% 40% 60% / 58% 42% 58% 42%; transform: translateY(-12px); }
  66%       { border-radius: 55% 45% 62% 38% / 42% 58% 42% 58%; transform: translateY(8px); }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 4rem 3rem 4rem 5%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: italic; color: var(--clay);
  position: relative; display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--clay-light));
  border-radius: var(--r-pill);
  transform: scaleX(0); transform-origin: left;
  animation: underlineIn 0.8s var(--ease-organic) 0.9s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
.hero-sub {
  font-size: 1.1rem; color: var(--stone); line-height: 1.75;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.trust-chip {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 600; color: var(--stone);
}
.trust-chip .chip-icon { font-size: 1rem; }

.hero-visual {
  position: relative; z-index: 2;
  height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 5rem 5% 5rem 2rem;
}
.hero-img-wrap {
  position: relative; width: 100%; max-width: 520px;
}
.hero-img-blob {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 62% 38% 50% 50% / 38% 50% 50% 62%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: blobFloat 9s ease-in-out infinite;
}
.hero-img-blob img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}
.hero-float-card {
  position: absolute;
  background: var(--white); border-radius: var(--r-lg);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.7rem;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-float-card.card-a {
  bottom: 14%; left: -8%;
  animation-delay: 0s;
}
.hero-float-card.card-b {
  top: 16%; right: -6%;
  animation-delay: 2s;
}
.float-icon { font-size: 1.6rem; }
.float-label { font-size: 0.72rem; font-weight: 600; color: var(--stone); text-transform: uppercase; letter-spacing: 0.06em; }
.float-val { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--bark); line-height: 1.1; }

/* ═══ TRUST BAR ═══ */
.trust-bar {
  background: var(--parchment);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: 1.6rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.tb-item {
  display: flex; align-items: center; gap: 0.7rem;
}
.tb-icon { font-size: 1.4rem; }
.tb-label { font-size: 0.85rem; font-weight: 600; color: var(--stone); }
.tb-label strong { display: block; font-size: 0.8rem; color: var(--bark); }
.tb-divider {
  width: 1px; height: 30px;
  background: var(--stone-light); opacity: 0.5;
}

/* ═══ SERVICE CARDS ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.12);
  transition: transform var(--t-mid) var(--ease-organic),
              box-shadow var(--t-mid) var(--ease-soft);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  opacity: 0; transition: opacity var(--t-mid);
}
.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.card-moss::before  { background: linear-gradient(90deg, var(--moss), var(--moss-light)); }
.card-clay::before  { background: linear-gradient(90deg, var(--clay), var(--clay-light)); }
.card-sand::before  { background: linear-gradient(90deg, var(--sand), var(--sand-light)); }
.card-stone::before { background: linear-gradient(90deg, var(--stone), var(--stone-light)); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.3rem;
  transition: border-radius var(--t-slow) var(--ease-organic),
              transform var(--t-mid) var(--ease-organic);
}
.service-card:hover .service-icon {
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
  transform: scale(1.08) rotate(-4deg);
}
.icon-moss  { background: var(--moss-pale); }
.icon-clay  { background: var(--clay-pale); }
.icon-sand  { background: var(--sand-pale); }
.icon-stone { background: var(--stone-pale); }

.service-card h3 {
  font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--bark);
}
.service-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.75; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 700; color: var(--moss);
  margin-top: 1.2rem;
  transition: gap var(--t-fast);
}
.card-link:hover { gap: 0.7rem; }
.card-price {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--moss); margin-top: 1rem;
}
.card-price span { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: var(--stone); }

/* ═══ ABOUT SPLIT ═══ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 55% 45% 45% 55% / 50% 50% 50% 50%;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -6%; right: -8%;
  width: 48%; aspect-ratio: 1;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-years {
  position: absolute; top: 10%; left: -8%;
  background: var(--moss); color: var(--white);
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-moss);
}
.about-years .yr-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; line-height: 1; }
.about-years .yr-label { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }

.about-points { margin: 1.8rem 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-point {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--parchment);
  border-radius: var(--r-lg);
  border: 1px solid rgba(201,169,110,0.15);
  transition: transform var(--t-mid) var(--ease-organic), box-shadow var(--t-mid);
}
.about-point:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.ap-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  background: var(--moss-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ap-text h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.15rem; color: var(--bark); }
.ap-text p  { font-size: 0.8rem; color: var(--stone); margin: 0; line-height: 1.55; }

/* ═══ PROCESS ═══ */
.process-section { background: var(--bark); overflow: hidden; position: relative; }
.process-section::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 60vw; height: 60vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(ellipse, rgba(74,103,65,0.15) 0%, transparent 70%);
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  pointer-events: none;
}
.process-section .section-label { color: var(--sand); }
.process-section .section-label::before { background: var(--sand); }
.process-section .display-lg { color: var(--white); }
.process-section .section-sub { color: var(--stone-light); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: background var(--t-mid), transform var(--t-mid) var(--ease-organic);
  position: relative;
}
.process-step:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1;
  position: absolute; top: 1rem; right: 1.2rem;
}
.step-icon {
  font-size: 1.8rem; margin-bottom: 1rem;
  width: 52px; height: 52px;
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  background: var(--moss);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(74,103,65,0.35);
}
.process-step h4 { font-size: 1rem; color: var(--sand-light); margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.83rem; color: var(--stone-light); line-height: 1.7; }

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem; align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.15);
  transition: transform var(--t-mid) var(--ease-organic),
              box-shadow var(--t-mid) var(--ease-soft);
  position: relative;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: linear-gradient(160deg, var(--moss), var(--bark-mid));
  border-color: transparent;
  box-shadow: var(--shadow-moss);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pricing-card.featured h3,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-name,
.pricing-card.featured .plan-features li { color: var(--white); }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.7); }
.pricing-card.featured .plan-features li::before { color: var(--sand-light); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: var(--r-pill);
  box-shadow: 0 3px 12px rgba(176,92,52,0.35);
}
.plan-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.6rem; }
.plan-price { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: var(--bark); line-height: 1; margin-bottom: 0.3rem; }
.plan-price span { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--stone); }
.plan-desc { font-size: 0.85rem; color: var(--stone); margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(201,169,110,0.2); line-height: 1.6; }
.pricing-card.featured .plan-desc { border-bottom-color: rgba(255,255,255,0.15); }
.plan-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--bark); }
.plan-features li::before { content: '✓'; font-weight: 700; color: var(--moss); flex-shrink: 0; margin-top: 0.05rem; }
.plan-cta { width: 100%; }

/* ═══ TESTIMONIALS ═══ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: var(--white); border-radius: var(--r-xl); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(201,169,110,0.12);
  transition: transform var(--t-mid) var(--ease-organic), box-shadow var(--t-mid);
  position: relative;
}
.testi-card:nth-child(2) { background: var(--moss-pale); }
.testi-card:nth-child(3) { background: var(--clay-pale); }
.testi-card:hover { transform: translateY(-5px) rotate(0.5deg); box-shadow: var(--shadow-md); }
.testi-quote { font-size: 3rem; color: var(--stone-light); line-height: 1; font-family: Georgia, serif; margin-bottom: 0.8rem; }
.testi-text { font-size: 0.92rem; line-height: 1.8; color: var(--bark); margin-bottom: 1.4rem; font-style: italic; }
.stars { color: var(--sand); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid rgba(201,169,110,0.2); }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  background: linear-gradient(135deg, var(--moss-light), var(--sand));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--white);
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--bark); }
.author-loc { font-size: 0.75rem; color: var(--stone); }

/* ═══ BLOG CARDS ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.blog-card {
  background: var(--white); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(201,169,110,0.1);
  transition: transform var(--t-mid) var(--ease-organic), box-shadow var(--t-mid);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 200px; overflow: hidden; position: relative;
  background: var(--parchment);
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease-soft); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: var(--sand-pale); }
.blog-body { padding: 1.6rem; }
.blog-body .badge { margin-bottom: 0.7rem; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--bark); line-height: 1.3; }
.blog-body p  { font-size: 0.85rem; color: var(--stone); line-height: 1.7; margin-bottom: 0.9rem; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-size: 0.75rem; color: var(--stone-light); }
.read-more { font-size: 0.83rem; font-weight: 700; color: var(--moss); display: flex; align-items: center; gap: 0.3rem; transition: gap var(--t-fast); }
.blog-card:hover .read-more { gap: 0.5rem; }

/* ═══ CTA SECTION ═══ */
.cta-section {
  background: var(--parchment); padding: 5rem 5%;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(74,103,65,0.08) 0%, transparent 65%);
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  pointer-events: none;
}
.cta-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { color: var(--stone); margin-bottom: 2.2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══ FORM INPUTS ═══ */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1.2rem;
  border: 2px solid rgba(201,169,110,0.25);
  border-radius: var(--r-pill);
  background: var(--white); color: var(--bark);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.form-group textarea { border-radius: var(--r-lg); resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 4px rgba(74,103,65,0.1);
  transform: scale(1.005);
}
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 1.4rem; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--moss); flex-shrink: 0; margin-top: 2px; border-radius: 4px; }
.form-check label { font-size: 0.8rem; color: var(--stone); line-height: 1.6; }
.form-check a { color: var(--moss); font-weight: 600; }

/* ═══ MODAL ═══ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(61,43,26,0.55);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-mid) var(--ease-soft);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream); border-radius: var(--r-xl);
  width: 100%; max-width: 520px;
  box-shadow: var(--shadow-lg);
  max-height: 92vh; overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform var(--t-mid) var(--ease-organic);
  border: 1px solid rgba(201,169,110,0.2);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 2rem 2rem 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-title { font-size: 1.5rem; color: var(--bark); }
.modal-close {
  background: var(--stone-pale); color: var(--stone); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--t-fast);
}
.modal-close:hover { background: var(--clay-pale); color: var(--clay); transform: rotate(90deg); }
.modal-sub { font-size: 0.88rem; color: var(--stone); margin-bottom: 1.5rem; line-height: 1.6; }
.modal-body { padding: 1.5rem 2rem 2rem; }
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success .s-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--bark); }
.form-success p { font-size: 0.88rem; color: var(--stone); }

/* ═══ COOKIE ═══ */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 8000; width: calc(100% - 3rem); max-width: 680px;
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-organic);
}
.cookie-banner.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: all; }
.cookie-banner p { font-size: 0.84rem; color: var(--stone); flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-banner a { color: var(--moss); font-weight: 600; }
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-accept { background: var(--moss); color: var(--white); border: none; border-radius: var(--r-pill); font-family: var(--font-body); font-weight: 600; font-size: 0.83rem; padding: 0.6rem 1.3rem; cursor: pointer; transition: all var(--t-fast); }
.cookie-accept:hover { background: var(--moss-light); transform: translateY(-1px); }
.cookie-decline { background: transparent; color: var(--stone); border: 1.5px solid var(--stone-light); border-radius: var(--r-pill); font-family: var(--font-body); font-weight: 600; font-size: 0.83rem; padding: 0.6rem 1.2rem; cursor: pointer; transition: all var(--t-fast); }
.cookie-decline:hover { color: var(--bark); border-color: var(--stone); }

/* ═══ PAGE HEADER ═══ */
.page-header {
  padding: 10rem 5% 5rem;
  background: var(--parchment);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.page-header::before {
  content: '';
  position: absolute; top: -20%; right: -8%;
  width: 50vw; height: 50vw; max-width: 600px;
  background: radial-gradient(ellipse, rgba(232,240,230,0.8) 0%, transparent 70%);
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite;
}
.page-header-content { position: relative; z-index: 2; max-width: 680px; }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { color: var(--stone); font-size: 1.05rem; font-weight: 400; line-height: 1.75; }

/* ═══ GALLERY ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem; margin-top: 3rem;
}
.gallery-item {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform var(--t-slow) var(--ease-soft); }
.gallery-item.large img { height: 100%; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(61,43,26,0.6) 100%);
  opacity: 0; transition: opacity var(--t-mid);
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.82rem; font-weight: 600; }

/* ═══ CONTACT ═══ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; }
.ci-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease-organic), box-shadow var(--t-mid);
}
.ci-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  background: var(--moss-pale);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.ci-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--moss); margin-bottom: 0.2rem; }
.ci-value { font-size: 0.88rem; color: var(--stone); line-height: 1.5; }
.ci-value a { color: var(--bark); font-weight: 500; }
.ci-value a:hover { color: var(--moss); }
.contact-form-box {
  background: var(--white); border-radius: var(--r-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(201,169,110,0.15);
}

/* ═══ FAQ ═══ */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow var(--t-mid);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 1.6rem; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; color: var(--bark);
  user-select: none;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--moss); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--moss-pale); color: var(--moss);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400; flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-mid) var(--ease-organic);
}
.faq-q.open .faq-toggle { background: var(--moss); color: var(--white); transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 1.6rem 1.3rem;
  font-size: 0.88rem; color: var(--stone); line-height: 1.8;
}
.faq-a.open { display: block; }

/* ═══ FOOTER ═══ */
footer {
  background: var(--bark);
  color: var(--white);
  padding: 0;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem; padding: 4rem 5% 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  color: var(--sand-light); margin-bottom: 0.8rem;
}
.footer-brand-name .logo-emblem { background: linear-gradient(135deg, var(--moss), var(--moss-light)); width: 36px; height: 36px; font-size: 1rem; }
.footer-col p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 260px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sand); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.footer-col ul a:hover { color: var(--sand-light); }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  transition: background var(--t-fast), color var(--t-fast), border-radius var(--t-slow) var(--ease-organic);
}
.social-btn:hover { background: var(--moss); color: var(--white); border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 5%; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--sand-light); }
.footer-disclaimer { background: rgba(0,0,0,0.2); padding: 1rem 5%; }
.footer-disclaimer p { font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.7; text-align: center; max-width: 900px; margin: 0 auto; }

/* ═══ BACK TO TOP ═══ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 700;
  width: 46px; height: 46px;
  border-radius: 50% 40% 55% 45% / 45% 55% 45% 55%;
  background: var(--moss); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: var(--shadow-moss);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-mid), transform var(--t-mid) var(--ease-organic),
              border-radius var(--t-slow) var(--ease-organic);
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }

/* ═══ ANIMATIONS ═══ */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease-soft), transform 0.6s var(--ease-organic); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══ LEGAL PAGES ═══ */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 2.5rem 0 0.8rem; color: var(--moss); font-family: var(--font-head); }
.legal-content p, .legal-content li { font-size: 0.92rem; line-height: 1.85; color: var(--stone); margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content a { color: var(--moss); font-weight: 600; }

/* ═══ BLOG DETAIL ═══ */
.blog-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; margin-top: 3rem; }
.detail-content h2 { font-size: 1.4rem; margin: 2.5rem 0 0.8rem; color: var(--bark); font-family: var(--font-head); }
.detail-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--moss); }
.detail-content p { font-size: 0.92rem; line-height: 1.9; color: var(--stone); margin-bottom: 1.2rem; }
.detail-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.detail-content ul li { font-size: 0.9rem; color: var(--stone); line-height: 1.7; }
.sidebar-widget { background: var(--white); border-radius: var(--r-xl); padding: 1.6rem; margin-bottom: 1.4rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(201,169,110,0.12); }
.sidebar-widget h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--moss); margin-bottom: 1.1rem; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(201,169,110,0.2); }
.related-item { display: flex; gap: 0.8rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201,169,110,0.12); }
.related-item:last-child { margin: 0; padding: 0; border: none; }
.related-thumb { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--sand-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; overflow: hidden; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-title { font-size: 0.83rem; font-weight: 600; line-height: 1.35; color: var(--bark); }
.related-title a:hover { color: var(--moss); }
.related-date { font-size: 0.72rem; color: var(--stone-light); margin-top: 0.25rem; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .blog-detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: rgba(253,248,240,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem; z-index: 850; gap: 0.5rem; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 0.8rem 1rem; width: 100%; }
  .hamburger { display: flex; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
  .hero-content { padding: 3rem 5% 4rem; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 480px) {
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .tb-divider { display: none; }
  .hero-actions { flex-direction: column; }
}
