/* ===== Tokens ===== */
:root{
  --paper: #FBF6EA;
  --paper-deep: #F3ECD9;
  --ink: #2A2A22;
  --green: #1F5D3B;
  --green-deep: #143F28;
  --orange: #E27C2C;
  --gold: #F0A93A;
  --line: rgba(31,93,59,0.16);
  --radius: 14px;
  --max-w: 1080px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1,h2,h3{
  font-family: "Literata", Georgia, serif;
  color: var(--green-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

h1{ font-size: clamp(2.1rem, 4.2vw, 3.1rem); font-weight: 700; }
h2{ font-size: clamp(1.5rem, 3vw, 2rem); }
h3{ font-size: 1.15rem; }

p{ margin: 0 0 1em; }
a{ color: inherit; }

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251,246,234,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-deep);
}

.brand-mark{
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-name{
  font-family: "Literata", serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.main-nav{
  display: flex;
  gap: 28px;
}

.main-nav a{
  text-decoration: none;
  font-weight: 600;
  color: var(--green-deep);
  font-size: 0.95rem;
}

.main-nav a:hover{ color: var(--orange); }

.call-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.call-btn:hover{ background: var(--green-deep); }

.call-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ===== Hero ===== */
.hero{
  padding: 64px 0 56px;
}

.hero-row{
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.kicker{
  text-transform: none;
  letter-spacing: 0;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.lede{
  max-width: 46ch;
  color: #4A4A3D;
  font-size: 1.08rem;
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn{
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.98rem;
  border: 2px solid transparent;
}

.btn-primary{
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover{ background: #C6661F; }

.btn-ghost{
  border-color: var(--green);
  color: var(--green-deep);
  background: transparent;
}
.btn-ghost:hover{ background: rgba(31,93,59,0.08); }

.hero-art{
  display: flex;
  justify-content: center;
}

.hero-logo{
  width: min(280px, 80%);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(31,93,59,0.18));
}

/* ===== Growth path / boards ===== */
.path-section{
  padding: 40px 0 64px;
}

.section-lede{
  max-width: 60ch;
  color: #4A4A3D;
}

.path{
  position: relative;
  margin-top: 40px;
  padding-left: 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.path-line{
  position: absolute;
  left: 14px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--green) 0,
    var(--green) 6px,
    transparent 6px,
    transparent 12px
  );
}

.path-item{
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.path-node{
  position: absolute;
  left: -34px;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: "Literata", serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.path-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
}

.path-card p{ margin: 0; color: #4A4A3D; }

/* ===== Why ===== */
.why{
  background: var(--paper-deep);
  padding: 60px 0;
}

.why-list{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-list li{
  border-left: 3px solid var(--orange);
  padding-left: 18px;
}

.why-list p{ color: #4A4A3D; margin: 0; }

/* ===== Visit ===== */
.visit{
  padding: 64px 0 72px;
}

.visit-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

address{
  font-style: normal;
  color: #4A4A3D;
  margin-bottom: 18px;
  font-size: 1rem;
}

.phone-line{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.visit-copy .btn{ margin-top: 4px; }

.visit-map{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.visit-map iframe{
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ===== Footer ===== */
.site-footer{
  background: var(--green-deep);
  color: #EFE8D6;
  padding: 28px 0;
}

.footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Literata", serif;
  font-weight: 700;
}

.footer-mark{
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-row p{ margin: 0; color: #C9C2AC; font-size: 0.92rem; }

/* ===== Responsive ===== */
@media (max-width: 860px){
  .hero-row{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; }
  .hero-logo{ width: 180px; }
  .why-list{ grid-template-columns: 1fr; }
  .visit-row{ grid-template-columns: 1fr; }
  .main-nav{ display: none; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

/* Focus visibility */
a:focus-visible, .btn:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
