:root{
  --bg:#ffffff;
  --text:#18332f;
  --muted:#66736f;
  --brand:#e98743;
  --brand-dark:#123c37;
  --soft:#f8f3ec;
  --line:#eadfce;
  --shadow:0 22px 70px rgba(18,60,55,.14);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:16px clamp(18px,4vw,58px);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(234,223,206,.8);
}
.brand{display:flex;align-items:center;gap:10px;font-weight:900;letter-spacing:.04em}
.brand-mark{
  color:var(--brand);
  font-size:clamp(1.2rem,2.6vw,2rem);
  font-weight:950;
}
.nav{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.nav a{
  padding:10px 14px;
  border:1px solid transparent;
  border-radius:999px;
  color:#31524d;
  font-weight:750;
  font-size:.94rem;
}
.nav a:hover{border-color:var(--line);background:var(--soft)}
.hero{padding:26px clamp(14px,4vw,54px) 16px;background:linear-gradient(180deg,#fff 0%,#fff7ed 100%)}
.hero-image-card{
  max-width:1500px;
  margin:0 auto;
  border-radius:32px;
  overflow:hidden;
  background:#0d322d;
  box-shadow:var(--shadow);
  border:1px solid rgba(232,135,67,.24);
}
.hero-image{
  width:100%;
  height:auto;
  object-fit:contain;
}
.section{padding:72px clamp(18px,5vw,78px)}
.section-heading{max-width:850px;margin:0 auto 34px;text-align:center}
.section-heading.align-left{margin-left:0;text-align:left}
.eyebrow{
  display:inline-flex;
  margin-bottom:12px;
  padding:8px 14px;
  border-radius:999px;
  background:#fff2e6;
  color:#bd642c;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.78rem;
}
h1,h2{margin:0;color:var(--brand-dark);line-height:1.05;letter-spacing:-.04em}
h1{font-size:clamp(2.6rem,7vw,6.8rem)}
h2{font-size:clamp(2rem,4.5vw,4.2rem)}
.section-heading p{
  margin:18px auto 0;
  color:var(--muted);
  font-size:clamp(1.05rem,2vw,1.35rem);
  line-height:1.65;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  max-width:1180px;
  margin:0 auto;
}
.feature-card{
  min-height:230px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(145deg,#fff 0%,#fff8f1 100%);
  box-shadow:0 15px 45px rgba(18,60,55,.08);
}
.feature-card span{
  display:inline-grid;
  place-items:center;
  width:48px;height:48px;
  border-radius:16px;
  background:var(--brand-dark);
  color:#fff;
  font-weight:900;
}
.feature-card h2{font-size:1.6rem;margin:24px 0 10px;letter-spacing:-.02em}
.feature-card p{margin:0;color:var(--muted);line-height:1.7;font-size:1rem}
.gallery-section{background:#fff}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.gallery-item{
  margin:0;
  border-radius:24px;
  background:#fffaf3;
  border:1px solid var(--line);
  overflow:hidden;
  min-height:280px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 38px rgba(18,60,55,.08);
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
}
.footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding:28px clamp(18px,5vw,78px);
  background:#123c37;
  color:#fff;
}
.footer span{color:#ffe3c8}
@media (max-width:900px){
  .feature-grid,.gallery-grid{grid-template-columns:1fr 1fr}
  .topbar{position:relative;align-items:flex-start;flex-direction:column}
}
@media (max-width:620px){
  .feature-grid,.gallery-grid{grid-template-columns:1fr}
  .hero{padding:14px 10px}
  .hero-image-card{border-radius:18px}
  .section{padding:50px 16px}
  .nav a{padding:8px 10px;font-size:.88rem}
}
