:root {
  --color-bg: #f6f2e8;
  --color-bg-soft: #eee6d4;
  --color-paper: #fbf8f1;
  --color-ink: #1c2318;
  --color-ink-soft: #47523f;
  --color-forest: #1f3a2a;
  --color-forest-deep: #122015;
  --color-forest-light: #4c7a5b;
  --color-clay: #b5643d;
  --color-clay-deep: #8a4a2b;
  --color-clay-light: #e2a06f;
  --shadow-sm: 0 2px 8px rgba(18, 32, 21, 0.08), 0 1px 2px rgba(18, 32, 21, 0.06);
  --shadow-md: 0 14px 32px rgba(18, 32, 21, 0.12), 0 4px 10px rgba(18, 32, 21, 0.08);
  --shadow-lg: 0 32px 64px rgba(18, 32, 21, 0.2), 0 12px 24px rgba(18, 32, 21, 0.1);
  --radius-sm: 10px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-full: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 700; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


.global-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.global-header.is-scrolled {
  background: rgba(246, 242, 232, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(28, 35, 24, 0.08);
  box-shadow: 0 10px 30px rgba(18, 32, 21, 0.08);
}
.global-header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.global-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s var(--ease);
}
.global-logo:hover { opacity: 0.8; }
.global-logo-mark {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-clay);
  color: var(--color-paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.global-logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-paper);
  transition: color 0.5s var(--ease);
  line-height: 1.1;
}
.global-header.is-scrolled .global-logo-text { color: var(--color-ink); }
.global-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-clay-light);
  margin-top: 2px;
}
.global-nav-desktop { display: none; align-items: center; gap: 8px; }
.global-nav-desktop a {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-paper);
  border-radius: var(--radius-full);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.global-header.is-scrolled .global-nav-desktop a { color: var(--color-ink); }
.global-nav-desktop a:hover, .global-nav-desktop a.is-active {
  background: rgba(255,255,255,0.14);
}
.global-header.is-scrolled .global-nav-desktop a:hover,
.global-header.is-scrolled .global-nav-desktop a.is-active {
  background: rgba(31, 58, 42, 0.1);
}
.global-nav-cta {
  background: var(--color-clay) !important;
  color: var(--color-paper) !important;
  box-shadow: var(--shadow-sm);
}
.global-nav-cta:hover { background: var(--color-clay-deep) !important; }
.global-menu-toggle {
  display: flex; flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.3s var(--ease);
}
.global-menu-toggle span {
  width: 22px; height: 2px;
  background: var(--color-paper);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), background 0.4s var(--ease);
}
.global-header.is-scrolled .global-menu-toggle span { background: var(--color-ink); }
.global-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.global-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.global-mobile-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(246, 242, 232, 0.97);
  backdrop-filter: blur(18px);
  transition: max-height 0.45s var(--ease);
  border-bottom: 1px solid rgba(28,35,24,0.08);
}
.global-nav-mobile {
  display: flex; flex-direction: column;
  padding: 8px 24px 20px;
}
.global-nav-mobile a {
  padding: 14px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-ink);
  border-bottom: 1px solid rgba(28,35,24,0.08);
  min-height: 44px;
  display: flex; align-items: center;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.global-nav-mobile a:last-child { border-bottom: none; }
.global-nav-mobile a:hover { color: var(--color-clay); padding-left: 10px; }

@media (min-width: 900px) {
  .global-nav-desktop { display: flex; }
  .global-menu-toggle { display: none; }
  .global-mobile-panel { display: none; }
}


.global-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  min-height: 48px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.global-btn-primary {
  background: var(--color-clay);
  color: var(--color-paper);
  box-shadow: var(--shadow-md);
}
.global-btn-primary:hover { background: var(--color-clay-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.global-btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--color-paper);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.global-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.global-btn-outline {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid rgba(28,35,24,0.25);
}
.global-btn-outline:hover { border-color: var(--color-ink); background: rgba(28,35,24,0.04); }
.global-btn-outline-light {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid rgba(28,35,24,0.2);
}
.global-btn-outline-light:hover { border-color: var(--color-clay); color: var(--color-clay); }
.global-btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.global-btn-block { width: 100%; }


.global-fade {
  position: relative;
  height: 110px;
  margin-top: -110px;
  pointer-events: none;
  z-index: 2;
}
.global-fade--hero-to-bg { background: linear-gradient(to bottom, transparent, var(--color-bg)); }
.global-fade--bg-to-dark { background: linear-gradient(to bottom, transparent, var(--color-forest-deep)); }
.global-fade--dark-to-bg { background: linear-gradient(to bottom, transparent, var(--color-bg)); }
.global-fade--bg-to-clay { background: linear-gradient(to bottom, transparent, var(--color-clay-deep)); }
.global-fade--clay-to-dark { position: absolute; top: -110px; left: 0; width: 100%; margin-top: 0; background: linear-gradient(to bottom, transparent, var(--color-forest-deep)); }


.global-footer {
  background: var(--color-forest-deep);
  color: rgba(251, 248, 241, 0.82);
  padding: 72px 24px 28px;
  margin-top: auto;
}
.global-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251,248,241,0.1);
}
.global-footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.global-footer-name { font-size: 1.2rem; font-weight: 700; color: var(--color-paper); }
.global-footer-tagline { font-size: 0.92rem; line-height: 1.6; color: rgba(251,248,241,0.65); }
.global-footer-col { display: flex; flex-direction: column; gap: 12px; }
.global-footer-col h4 { color: var(--color-paper); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.global-footer-col a, .global-footer-col p { font-size: 0.92rem; color: rgba(251,248,241,0.72); transition: color 0.3s var(--ease); }
.global-footer-col a:hover { color: var(--color-clay-light); }
.global-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(251,248,241,0.55);
}
@media (min-width: 800px) {
  .global-footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}


.global-cookie-trigger {
  position: fixed;
  bottom: 18px; left: 18px;
  z-index: 200;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-ink);
  background: var(--color-paper);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.global-cookie-trigger:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.global-cookie-trigger.is-pulsing { animation: cookiePulse 1.6s ease-in-out 3; }
@keyframes cookiePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181, 100, 61, 0.5), var(--shadow-md); }
  50% { box-shadow: 0 0 0 10px rgba(181, 100, 61, 0), var(--shadow-md); }
}
.global-cookie-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.global-cookie-modal.is-open { display: flex; }
.global-cookie-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(18, 32, 21, 0.55);
  backdrop-filter: blur(4px);
  animation: cookieFadeIn 0.3s var(--ease);
}
@keyframes cookieFadeIn { from { opacity: 0; } to { opacity: 1; } }
.global-cookie-modal-box {
  position: relative;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: cookieSlideUp 0.4s var(--ease);
}
@keyframes cookieSlideUp { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.global-cookie-modal-box h3 { font-size: 1.4rem; margin-bottom: 12px; }
.global-cookie-modal-box > p { font-size: 0.92rem; color: var(--color-ink-soft); margin-bottom: 20px; }
.global-cookie-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: rgba(28,35,24,0.06);
  font-size: 1.4rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
}
.global-cookie-modal-close:hover { background: rgba(28,35,24,0.14); }
.global-cookie-cat { padding: 16px 0; border-top: 1px solid rgba(28,35,24,0.08); }
.global-cookie-cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; font-weight: 600; }
.global-cookie-cat p { font-size: 0.85rem; color: var(--color-ink-soft); }
.global-cookie-switch { position: relative; display: inline-block; width: 44px; height: 26px; flex-shrink: 0; }
.global-cookie-switch input { opacity: 0; width: 0; height: 0; }
.global-cookie-switch span {
  position: absolute; inset: 0;
  background: rgba(28,35,24,0.2);
  border-radius: var(--radius-full);
  transition: background 0.3s var(--ease);
}
.global-cookie-switch span::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: var(--color-paper);
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.global-cookie-switch input:checked + span { background: var(--color-clay); }
.global-cookie-switch input:checked + span::before { transform: translateX(18px); }
.global-cookie-switch--disabled { opacity: 0.6; }
.global-cookie-modal-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 20px;
}
.global-cookie-modal-actions .global-btn { flex: 1; min-width: 130px; padding: 12px 16px; font-size: 0.85rem; }
.global-cookie-modal-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  text-decoration: underline;
  color: var(--color-ink-soft);
}


.home-hero {
  position: relative;
  padding: 150px 20px 0;
  background: linear-gradient(180deg, var(--color-forest-deep) 0%, var(--color-forest) 55%, var(--color-bg-soft) 100%);
  overflow: hidden;
}
.home-hero-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.home-hero-eyebrow {
  color: var(--color-clay-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.home-hero-title {
  font-size: clamp(2.6rem, 7vw + 0.5rem, 6.4rem);
  color: var(--color-paper);
  line-height: 1.02;
  font-weight: 700;
}
.home-hero-accent { color: var(--color-clay-light); }
.home-hero-accent-alt { color: #8fbf9f; }
.home-hero-sub {
  margin: 28px auto 0;
  max-width: 620px;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.2rem);
  color: rgba(251,248,241,0.78);
}
.home-hero-ctas {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.home-hero-trustbar {
  margin-top: 90px;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 16px 34px;
  padding: 28px 16px 60px;
}
.home-hero-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: rgba(251,248,241,0.85);
  font-weight: 500;
}
.home-hero-trust-item i { color: var(--color-clay-light); font-size: 1rem; }


.home-intro {
  background: var(--color-bg);
  padding: 40px 20px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
.home-intro-kicker { color: var(--color-clay); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 16px; }
.home-intro-title { font-size: clamp(1.9rem, 3.4vw + 0.5rem, 3.2rem); line-height: 1.12; margin-bottom: 20px; }
.home-intro-title em { color: var(--color-clay); font-style: normal; }
.home-intro-text { font-size: 1.05rem; color: var(--color-ink-soft); max-width: 640px; }
.home-intro-image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.home-intro-image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
@media (min-width: 960px) {
  .home-intro { grid-template-columns: 1fr 1fr; align-items: center; padding: 60px 40px 120px; }
}


.home-services {
  background: var(--color-bg-soft);
  padding: 80px 0 110px;
  position: relative;
}
.home-services-header { max-width: 1200px; margin: 0 auto 40px; padding: 0 24px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.home-services-kicker { color: var(--color-clay); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 12px; }
.home-services-title { font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem); max-width: 620px; line-height: 1.12; }
.home-services-hint { font-size: 0.85rem; color: var(--color-ink-soft); font-weight: 600; }
.home-services-hint i { margin-left: 6px; }
.home-services-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 24px 24px;
  scrollbar-width: thin;
}
.home-services-scroll::-webkit-scrollbar { height: 8px; }
.home-services-scroll::-webkit-scrollbar-thumb { background: rgba(31,58,42,0.25); border-radius: var(--radius-full); }
.home-services-card {
  flex: 0 0 auto;
  width: min(340px, 82vw);
  scroll-snap-align: start;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.home-services-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.home-services-card-num { font-size: 0.85rem; font-weight: 700; color: var(--color-clay); margin-bottom: 18px; }
.home-services-card h3 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.2; }
.home-services-card p { font-size: 0.92rem; color: var(--color-ink-soft); }


.home-light { background: var(--color-forest-deep); padding: 90px 20px 130px; position: relative; }
.home-light-grid { max-width: 1200px; margin: 0 auto; display: grid; gap: 50px; }
.home-light-kicker { color: var(--color-clay-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 16px; }
.home-light-title { font-size: clamp(2rem, 3.6vw + 0.5rem, 3.4rem); color: var(--color-paper); line-height: 1.12; margin-bottom: 24px; }
.home-light-title span { color: var(--color-clay-light); }
.home-light-body { color: rgba(251,248,241,0.75); font-size: 1.02rem; margin-bottom: 18px; max-width: 560px; }
.home-light-images { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; align-self: center; }
.home-light-image { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.home-light-image--a { aspect-ratio: 3/4; margin-top: 40px; }
.home-light-image--b { aspect-ratio: 3/4; }
@media (min-width: 960px) { .home-light-grid { grid-template-columns: 1.1fr 1fr; align-items: center; } }


.home-materials { background: var(--color-bg); padding: 100px 20px; }
.home-materials-inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; }
.home-materials-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.home-materials-img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.home-materials-kicker { color: var(--color-clay); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 16px; }
.home-materials-title { font-size: clamp(1.9rem, 3.2vw + 0.5rem, 3rem); line-height: 1.12; margin-bottom: 22px; }
.home-materials-body { font-size: 1.02rem; color: var(--color-ink-soft); margin-bottom: 16px; max-width: 560px; }
@media (min-width: 960px) { .home-materials-inner { grid-template-columns: 1fr 1fr; align-items: center; } }


.home-irrigation { background: var(--color-bg-soft); padding: 100px 20px; position: relative; }
.home-irrigation-inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; }
.home-irrigation-kicker { color: var(--color-clay); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 16px; }
.home-irrigation-title { font-size: clamp(1.9rem, 3.2vw + 0.5rem, 3rem); line-height: 1.12; margin-bottom: 22px; }
.home-irrigation-body { font-size: 1.02rem; color: var(--color-ink-soft); margin-bottom: 16px; max-width: 560px; }
.home-irrigation-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.home-irrigation-img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (min-width: 960px) { .home-irrigation-inner { grid-template-columns: 1fr 1fr; align-items: center; } }


.home-maintenance { background: var(--color-clay-deep); padding: 100px 20px 0; position: relative; }
.home-maintenance-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.home-maintenance-kicker { color: rgba(251,248,241,0.75); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 16px; }
.home-maintenance-title { font-size: clamp(1.9rem, 3.4vw + 0.5rem, 3.2rem); color: var(--color-paper); line-height: 1.12; margin-bottom: 50px; }
.home-maintenance-grid { display: grid; gap: 20px; grid-template-columns: 1fr; text-align: left; }
.home-maintenance-card { background: rgba(251,248,241,0.08); border: 1px solid rgba(251,248,241,0.14); border-radius: var(--radius-md); padding: 28px 24px; transition: transform 0.35s var(--ease), background 0.35s var(--ease); }
.home-maintenance-card:hover { transform: translateY(-6px); background: rgba(251,248,241,0.13); }
.home-maintenance-card i { font-size: 1.5rem; color: var(--color-clay-light); margin-bottom: 14px; }
.home-maintenance-card h3 { color: var(--color-paper); font-size: 1.1rem; margin-bottom: 8px; }
.home-maintenance-card p { color: rgba(251,248,241,0.72); font-size: 0.9rem; }
.home-maintenance-note { color: rgba(251,248,241,0.6); font-size: 0.88rem; margin: 40px 0 0; }
.home-maintenance-image { width: 100%; height: 340px; object-fit: cover; margin-top: 60px; }
@media (min-width: 760px) { .home-maintenance-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 960px) { .home-maintenance-image { height: 460px; } }


.home-areas { background: var(--color-forest-deep); padding: 0 20px 100px; position: relative; }
.home-areas-inner { max-width: 1100px; margin: 0 auto; text-align: center; padding-top: 90px; }
.home-areas-kicker { color: var(--color-clay-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 16px; }
.home-areas-title { font-size: clamp(1.9rem, 3.4vw + 0.5rem, 3.2rem); color: var(--color-paper); line-height: 1.12; margin-bottom: 24px; }
.home-areas-body { color: rgba(251,248,241,0.75); font-size: 1.02rem; max-width: 640px; margin: 0 auto 44px; }
.home-areas-image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.home-areas-image { width: 100%; height: 400px; object-fit: cover; }


.home-final-cta { background: linear-gradient(160deg, var(--color-forest-deep), var(--color-clay-deep)); padding: 110px 20px; text-align: center; }
.home-final-cta-title { font-size: clamp(2rem, 4.2vw + 0.5rem, 3.8rem); color: var(--color-paper); line-height: 1.1; margin-bottom: 24px; }
.home-final-cta-sub { color: rgba(251,248,241,0.78); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }


.about-story-hero { background: linear-gradient(180deg, var(--color-forest-deep), var(--color-forest)); padding: 150px 20px 130px; text-align: center; }
.about-story-kicker { color: var(--color-clay-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 20px; }
.about-story-kicker--light { color: var(--color-clay-light); }
.about-story-title { font-size: clamp(2.2rem, 5vw + 0.5rem, 4.4rem); color: var(--color-paper); line-height: 1.08; max-width: 900px; margin: 0 auto 26px; }
.about-story-title span { color: var(--color-clay-light); }
.about-story-sub { color: rgba(251,248,241,0.78); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.about-story-founder { background: var(--color-bg); padding: 40px 20px 100px; max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; }
.about-story-founder-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-story-founder-img { width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-story-h2 { font-size: clamp(1.8rem, 3.2vw + 0.5rem, 2.7rem); line-height: 1.14; margin-bottom: 20px; }
.about-story-h2--center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.about-story-h2--light { color: var(--color-paper); }
.about-story-founder-text p { font-size: 1.02rem; color: var(--color-ink-soft); margin-bottom: 16px; max-width: 560px; }
.about-story-process { background: var(--color-bg-soft); padding: 90px 20px 120px; text-align: center; position: relative; }
.about-story-process-grid { max-width: 1100px; margin: 50px auto 0; display: grid; gap: 24px; grid-template-columns: 1fr; text-align: left; }
.about-story-process-item { background: var(--color-paper); border-radius: var(--radius-md); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.about-story-process-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.about-story-process-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--color-clay); color: var(--color-paper); font-weight: 700; margin-bottom: 16px; }
.about-story-process-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.about-story-process-item p { font-size: 0.9rem; color: var(--color-ink-soft); }
.about-story-team { background: var(--color-forest-deep); padding: 90px 20px 110px; max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; }
.about-story-team-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-story-team-img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-story-team-body { color: rgba(251,248,241,0.75); font-size: 1.02rem; margin-bottom: 16px; max-width: 560px; }
@media (min-width: 960px) {
  .about-story-founder { grid-template-columns: 0.85fr 1fr; align-items: center; padding: 60px 40px 130px; }
  .about-story-process-grid { grid-template-columns: repeat(4, 1fr); }
  .about-story-team { grid-template-columns: 1fr 1fr; align-items: center; padding: 100px 40px 130px; }
}


.seasons-hero { background: linear-gradient(180deg, var(--color-forest-deep), var(--color-forest)); padding: 150px 20px 130px; text-align: center; }
.seasons-kicker { color: var(--color-clay-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 20px; }
.seasons-title { font-size: clamp(2.2rem, 5vw + 0.5rem, 4.2rem); color: var(--color-paper); line-height: 1.08; max-width: 900px; margin: 0 auto 26px; }
.seasons-title span { color: var(--color-clay-light); }
.seasons-sub { color: rgba(251,248,241,0.78); max-width: 640px; margin: 0 auto; font-size: 1.02rem; }
.seasons-block { background: var(--color-bg); padding: 80px 20px; max-width: 1200px; margin: 0 auto; display: grid; gap: 36px; align-items: center; }
.seasons-block-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.seasons-block-img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.seasons-block-tag { display: inline-block; background: var(--color-clay); color: var(--color-paper); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-full); margin-bottom: 18px; }
.seasons-block-text h2 { font-size: clamp(1.7rem, 3vw + 0.5rem, 2.5rem); margin-bottom: 16px; line-height: 1.16; }
.seasons-block-text p { font-size: 1rem; color: var(--color-ink-soft); margin-bottom: 14px; max-width: 540px; }
.seasons-block--b { background: var(--color-bg-soft); }
.seasons-note { background: var(--color-bg-soft); padding: 20px 20px 100px; }
.seasons-note-inner { max-width: 760px; margin: 0 auto; background: var(--color-paper); border-radius: var(--radius-md); padding: 32px 28px; display: flex; gap: 18px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.seasons-note-inner i { color: var(--color-clay); font-size: 1.4rem; margin-top: 4px; }
.seasons-note-inner p { font-size: 0.95rem; color: var(--color-ink-soft); }
@media (min-width: 900px) {
  .seasons-block { grid-template-columns: 1fr 1fr; padding: 100px 40px; }
  .seasons-block--b .seasons-block-image { order: 2; }
}


.light-guide-hero { background: linear-gradient(180deg, var(--color-forest-deep), var(--color-forest)); padding: 150px 20px 130px; text-align: center; }
.light-guide-kicker { color: var(--color-clay-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 20px; }
.light-guide-kicker--light { color: var(--color-clay); }
.light-guide-title { font-size: clamp(2.1rem, 4.6vw + 0.5rem, 3.9rem); color: var(--color-paper); line-height: 1.1; max-width: 880px; margin: 0 auto 26px; }
.light-guide-title span { color: var(--color-clay-light); }
.light-guide-sub { color: rgba(251,248,241,0.78); max-width: 660px; margin: 0 auto; font-size: 1.02rem; }
.light-guide-categories { background: var(--color-bg); padding: 90px 20px 120px; max-width: 1100px; margin: 0 auto; display: grid; gap: 22px; grid-template-columns: 1fr; position: relative; }
.light-guide-cat { background: var(--color-paper); border-radius: var(--radius-md); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.light-guide-cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.light-guide-cat-num { font-size: 0.85rem; font-weight: 700; color: var(--color-clay); margin-bottom: 14px; }
.light-guide-cat h2 { font-size: 1.35rem; margin-bottom: 12px; }
.light-guide-cat p { font-size: 0.92rem; color: var(--color-ink-soft); }
.light-guide-detail { background: var(--color-forest-deep); padding: 100px 20px; max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; }
.light-guide-detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.light-guide-detail-img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.light-guide-detail-text h2 { color: var(--color-paper); font-size: clamp(1.8rem, 3vw + 0.5rem, 2.6rem); line-height: 1.15; margin-bottom: 20px; }
.light-guide-detail-text p { color: rgba(251,248,241,0.75); font-size: 1rem; margin-bottom: 16px; max-width: 540px; }
@media (min-width: 800px) { .light-guide-categories { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .light-guide-detail { grid-template-columns: 1fr 1fr; align-items: center; } }


.contact-hero { background: linear-gradient(180deg, var(--color-forest-deep), var(--color-forest)); padding: 150px 20px 120px; text-align: center; }
.contact-hero-kicker { color: var(--color-clay-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 20px; }
.contact-hero-title { font-size: clamp(2rem, 4.4vw + 0.5rem, 3.6rem); color: var(--color-paper); line-height: 1.12; max-width: 800px; margin: 0 auto 20px; }
.contact-hero-title span { color: var(--color-clay-light); }
.contact-hero-sub { color: rgba(251,248,241,0.78); max-width: 560px; margin: 0 auto; font-size: 1rem; }
.contact-form-section { background: var(--color-bg); display: grid; grid-template-columns: 1fr; max-width: 1360px; margin: 0 auto; padding: 0 0 90px; gap: 0; }
.contact-form-map { width: 100%; min-height: 340px; border-radius: 0; overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-form-map iframe { width: 100%; height: 100%; min-height: 340px; }
.contact-form-wrap { padding: 50px 24px; }
.contact-form { max-width: 520px; margin: 0 auto; }
.contact-form h2 { font-size: clamp(1.6rem, 2.6vw + 0.5rem, 2.1rem); margin-bottom: 28px; }
.contact-form-field { margin-bottom: 18px; }
.contact-form-field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--color-ink); }
.contact-form-field input, .contact-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(28,35,24,0.16);
  background: var(--color-paper);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 48px;
}
.contact-form-field textarea { min-height: 120px; resize: vertical; }
.contact-form-field input:focus, .contact-form-field textarea:focus {
  outline: none;
  border-color: var(--color-clay);
  box-shadow: 0 0 0 4px rgba(181, 100, 61, 0.12);
}
.contact-form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 26px; }
.contact-form-checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--color-clay); flex-shrink: 0; }
.contact-form-checkbox label { font-size: 0.86rem; color: var(--color-ink-soft); }
.contact-form-checkbox label a { text-decoration: underline; color: var(--color-ink); }
.contact-form-note { margin-top: 18px; font-size: 0.84rem; color: var(--color-ink-soft); text-align: center; }
.contact-form-note a { text-decoration: underline; }
@media (min-width: 960px) {
  .contact-form-section { grid-template-columns: 1fr 1fr; }
  .contact-form-map { min-height: 100%; }
  .contact-form-map iframe { min-height: 100%; }
  .contact-form-wrap { padding: 90px 60px; }
}

.contact-timeline { background: var(--color-forest-deep); padding: 100px 20px 120px; text-align: center; }
.contact-timeline-kicker { color: var(--color-clay-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 18px; }
.contact-timeline-title { color: var(--color-paper); font-size: clamp(1.9rem, 3.4vw + 0.5rem, 3rem); margin-bottom: 60px; }
.contact-timeline-track { max-width: 900px; margin: 0 auto; position: relative; display: grid; gap: 44px; text-align: left; padding-left: 30px; }
.contact-timeline-track::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: rgba(251,248,241,0.18); }
.contact-timeline-item { position: relative; }
.contact-timeline-dot { position: absolute; left: -30px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--color-clay-light); box-shadow: 0 0 0 5px rgba(226,160,111,0.18); }
.contact-timeline-day { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-clay-light); }
.contact-timeline-item h3 { color: var(--color-paper); font-size: 1.2rem; margin: 8px 0 8px; }
.contact-timeline-item p { color: rgba(251,248,241,0.72); font-size: 0.92rem; max-width: 520px; }


.thanks-section { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 180px 20px 100px; background: linear-gradient(180deg, var(--color-forest-deep), var(--color-bg) 70%); gap: 8px; }
.thanks-envelope { width: 160px; height: 110px; position: relative; margin-bottom: 46px; }
.thanks-envelope-body { width: 100%; height: 100%; background: var(--color-paper); border-radius: 10px; position: relative; box-shadow: var(--shadow-lg); overflow: visible; }
.thanks-envelope-body::before, .thanks-envelope-body::after {
  content: '';
  position: absolute; bottom: 0;
  width: 0; height: 0;
  border-style: solid;
}
.thanks-envelope-body::before { left: 0; border-width: 0 0 55px 80px; border-color: transparent transparent var(--color-bg-soft) transparent; }
.thanks-envelope-body::after { right: 0; border-width: 55px 80px 0 0; border-color: transparent transparent transparent var(--color-bg-soft); }
.thanks-letter {
  position: absolute;
  left: 20px; right: 20px;
  bottom: 12px;
  height: 90px;
  background: var(--color-paper);
  border: 1.5px solid rgba(28,35,24,0.1);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
  animation: letterSlide 1.6s var(--ease) 0.5s forwards;
  z-index: 1;
}
@keyframes letterSlide {
  0% { transform: translateY(10px); }
  60% { transform: translateY(-58px); }
  100% { transform: translateY(-52px); }
}
.thanks-envelope-flap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 60px;
  background: var(--color-clay);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top;
  transform: rotateX(0deg);
  animation: flapOpen 0.7s var(--ease) forwards;
  z-index: 2;
  border-radius: 10px 10px 0 0;
}
@keyframes flapOpen { to { transform: rotateX(180deg); } }
.thanks-title { font-size: clamp(2rem, 4vw + 0.5rem, 3rem); margin-bottom: 18px; opacity: 0; animation: thanksFadeUp 0.6s var(--ease) 1.9s forwards; }
.thanks-text { max-width: 520px; color: var(--color-ink-soft); font-size: 1.02rem; margin-bottom: 30px; opacity: 0; animation: thanksFadeUp 0.6s var(--ease) 2.1s forwards; }
.thanks-contact { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 34px; opacity: 0; animation: thanksFadeUp 0.6s var(--ease) 2.3s forwards; }
.thanks-contact a { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--color-clay); }
@keyframes thanksFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }


.legal-timeline { max-width: 900px; margin: 0 auto; padding: 150px 20px 120px; }
.legal-timeline-header { margin-bottom: 60px; }
.legal-timeline-kicker { color: var(--color-clay); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 16px; }
.legal-timeline-header h1 { font-size: clamp(2rem, 3.6vw + 0.5rem, 3.2rem); margin-bottom: 12px; }
.legal-timeline-updated { font-size: 0.88rem; color: var(--color-clay-deep); font-weight: 600; margin-bottom: 20px; }
.legal-timeline-intro { font-size: 1.02rem; color: var(--color-ink-soft); max-width: 640px; }
.legal-timeline-track { position: relative; padding-left: 34px; display: grid; gap: 48px; }
.legal-timeline-track::before { content: ''; position: absolute; left: 6px; top: 4px; bottom: 4px; width: 2px; background: rgba(31,58,42,0.15); }
.legal-timeline-track--compact { gap: 32px; }
.legal-timeline-item { position: relative; }
.legal-timeline-item::before { content: ''; position: absolute; left: -34px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--color-clay); box-shadow: 0 0 0 5px rgba(181,100,61,0.14); }
.legal-timeline-date { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-clay); margin-bottom: 8px; }
.legal-timeline-item h2 { font-size: 1.3rem; margin-bottom: 10px; }
.legal-timeline-item p { font-size: 0.96rem; color: var(--color-ink-soft); max-width: 620px; }


.legal-static { max-width: 860px; margin: 0 auto; padding: 150px 20px 120px; }
.legal-static-header { margin-bottom: 50px; }
.legal-static-kicker { color: var(--color-clay); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 16px; }
.legal-static-header h1 { font-size: clamp(2rem, 3.6vw + 0.5rem, 3.2rem); margin-bottom: 12px; }
.legal-static-updated { font-size: 0.88rem; color: var(--color-clay-deep); font-weight: 600; }
.legal-static-body { display: grid; gap: 36px; }
.legal-static-block h2 { font-size: 1.25rem; margin-bottom: 12px; }
.legal-static-block p, .legal-static-block li { font-size: 0.96rem; color: var(--color-ink-soft); }
.legal-static-block ul { padding-left: 20px; display: grid; gap: 6px; margin-top: 8px; }
.legal-static-block a { text-decoration: underline; color: var(--color-ink); }


[data-animate] { opacity: 0; }
[data-animate].is-visible { opacity: 1; }