@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg:#faf7ed;
  --card-bg:#ffffff;
  --text:#0d3326;
  --text-muted:#314c43;
  --accent:#1b5e3d;
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:18px;
  --shadow-sm:0 2px 4px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --shadow-md:0 4px 16px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.04);
  --max-width:1180px;
}

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body {
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

img {
  max-width:100%;
  display:block;
}

.container {
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 1.5rem;
}

.site-header {
  padding:1rem 0 .5rem;
  background:var(--bg);
}

.brand {
  font-family:"Playfair Display",serif;
  /* font-size:1.15rem; */
  font-size: 1.4rem;
  padding-left: .25rem;
  font-weight:700;
  letter-spacing:.5px;
}

.nav {
  display:flex;
  gap:1.5rem;
  margin-top:.5rem;
  font-size:.95rem;
  flex-wrap:wrap;
}

.nav a {
  text-decoration:none;
  color:var(--text-muted);
  font-weight:500;
  position:relative;
  padding:.25rem .4rem;
  border-radius:8px;
  transition:background .25s,color .25s;
}

.nav a:hover {
  background:rgba(27,94,61,.08);
  color:var(--text);
}

.hero {
  padding:1.5rem 0 3rem;
  text-align:center;
}

.hero-inner h1 {
  font-family:"Playfair Display",serif;
  font-size:clamp(2.3rem,5vw,3.8rem);
  line-height:1.07;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:1.1rem;
}

.tagline {
  font-size:1.15rem;
  max-width:820px;
  margin:0 auto 2rem;
  font-weight:500;
  color:var(--text-muted);
}

.hero-image-wrapper {
  border-radius:var(--radius-xl);
  overflow:hidden;
  margin:0 auto 2.4rem;
  box-shadow:var(--shadow-md);
  aspect-ratio: 16 / 6.3;
  display:flex;
}

.hero-image {
  width:100%;
  height:100%;
  object-fit:cover;
}

.feature-grid {
  display:grid;
  gap:1.6rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  margin-top:.5rem;
}

.feature-card {
  background:var(--card-bg);
  border-radius:var(--radius-lg);
  padding:1.6rem 1.4rem 1.8rem;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  box-shadow:var(--shadow-sm);
  position:relative;
  isolation:isolate;
  transition:transform .4s cubic-bezier(.16,.8,.24,1),box-shadow .35s,background .35s;
}

.feature-card:hover {
  transform:translateY(-6px);
  box-shadow:0 8px 28px -6px rgba(0,0,0,.16),0 4px 12px -4px rgba(0,0,0,.08);
}

.icon-wrapper {
  /* width:56px;
  height:56px;
  border-radius:18px; */
  display:grid;
  width: 100%;
  place-items:center;
  margin-bottom:1.2rem;
  /* background:linear-gradient(135deg,#173c2f,#1c5c3b); */
}

.icon-wrapper img {
  /* width:32px;
  height:32px; */
  width:48px;
  height:auto;
  /* filter:invert(100%) brightness(180%); */
}

.feature-card h3 {
  font-size:1.15rem;
  margin-bottom:.55rem;
  font-weight:600;
  line-height:1.25;
}

.feature-card p {
  font-size:.95rem;
  color:var(--text-muted);
}

.cta {
  padding:3.5rem 0 4rem;
  text-align:center;
}

.cta h2 {
  font-family:"Playfair Display",serif;
  font-size:clamp(1.9rem,4vw,2.7rem);
  max-width:780px;
  margin:0 auto 1.5rem;
  line-height:1.1;
}

.btn {
  display:inline-block;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:1rem;
  padding:1rem 1.65rem 1.05rem;
  border-radius:999px;
  letter-spacing:.5px;
  box-shadow:0 6px 18px -6px rgba(8,61,36,.55);
  transition:background .3s,transform .4s cubic-bezier(.16,.8,.24,1),box-shadow .35s;
}

.btn:hover {
  background:#13442e;
  transform:translateY(-4px);
  box-shadow:0 14px 32px -8px rgba(8,61,36,.55);
}

.btn:active {
  transform:translateY(-1px);
}

.site-footer {
  padding:2.5rem 0 3rem;
  text-align:center;
  font-size:.85rem;
  color:var(--text-muted);
}

@media (min-width:820px) {
  .site-header .container {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
  }
 /*  .brand {
    padding-left: 0;
  } */
  .nav {
    margin-top:0;
  }
}

@media (min-width:321px) and (max-width:516px) {
  .feature-card {
    flex-direction:row;
    align-items:center;
    gap:1rem;
  }
  .feature-card .icon-wrapper {
    flex:0 0 auto;
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:0;
  }
  .feature-card .icon-wrapper img {
    max-width:100%;
    max-height:100%;
    display:block;
  }
  .feature-card .text-wrapper {
    flex:1 1 auto;
  }
}

@media (max-width:380px) {
  .nav {
    gap: 0.4rem;
  }
}



@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
