:root{
  --bg: #fbfaf7;
  --ink: #171614;
  --muted: rgba(23,22,20,.70);

  --paper: #ffffff;
  --tint: #f3f2ec;
  --border: rgba(23,22,20,.10);

  --leaf: #2e6b4f;
  --leaf2: #3f8a67;
  --coffee: #7a5b45;
  --gold: #caa55a;

  --shadow: 0 16px 40px rgba(0,0,0,.08);
  --shadow2: 0 10px 24px rgba(0,0,0,.06);
  --r: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.wrap{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position:absolute;
  left:-999px;
  top: 10px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.skip:focus{ left: 12px; z-index: 9999; }

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(251,250,247,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 260px;
}
.logo__mark{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(46,107,79,.14), rgba(202,165,90,.14));
  border: 1px solid var(--border);
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--leaf);
}
.logo__text{ display:flex; flex-direction:column; }
.logo__name{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 18px;
}
.logo__tag{
  font-size: 12px;
  color: var(--muted);
}

.menuBtn{
  display:none;
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.nav{
  display:flex;
  align-items:center;
  gap: 6px;
}
.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}
.nav a:hover{
  background: rgba(46,107,79,.08);
  color: var(--ink);
  text-decoration:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(46,107,79,.22);
  background: rgba(46,107,79,.10);
  color: var(--leaf);
  font-weight: 700;
  cursor: pointer;
  text-decoration:none;
}
.btn:hover{
  background: rgba(46,107,79,.14);
  text-decoration:none;
}
.btn:active{ transform: translateY(1px); }

.btn--ghost{
  background: var(--paper);
  border-color: var(--border);
  color: var(--ink);
}
.btn--ghost:hover{ background: rgba(0,0,0,.03); }

.btn--small{
  padding: 10px 14px;
  font-size: 14px;
}

/* Hero */
.hero{
  padding: 70px 0 34px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}
.eyebrow{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 13px;
}
h1{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
}
.lead{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 62ch;
}
.hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}
.stat{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 12px;
  box-shadow: var(--shadow2);
}
.stat dt{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.stat dd{
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.hero__stack{
  display:grid;
  gap: 12px;
}
.tile{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.tile--photo .tile__photo{
  height: 170px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.04)),
    radial-gradient(900px 300px at 30% 20%, rgba(46,107,79,.16), transparent 60%),
    radial-gradient(700px 280px at 80% 10%, rgba(202,165,90,.14), transparent 60%),
    #efece3;
}
.tile__cap{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.tile__cap strong{ color: var(--ink); }
.tile__cap span{ white-space: nowrap; }

.tile--note{
  padding: 16px 16px;
}
.tile__title{
  font-family: Fraunces, ui-serif, Georgia, serif;
  margin: 0 0 8px;
  font-size: 22px;
}
.tile__text{
  margin: 0;
  color: var(--muted);
}
.tile__hint{
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(23,22,20,.18);
  color: rgba(23,22,20,.72);
  font-size: 13px;
}

.tile--stamp{
  padding: 16px 16px;
  display:flex;
  gap: 14px;
  align-items:center;
}
.stamp{
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: 2px solid rgba(46,107,79,.22);
  background: rgba(46,107,79,.08);
  display:grid;
  place-items:center;
  text-align:center;
  font-weight: 800;
  color: var(--leaf);
  line-height: 1.05;
}
.stamp span:nth-child(2){ color: var(--gold); }

/* Sections */
.section{ padding: 64px 0; }
.section--tint{
  background: var(--tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 32px;
  margin: 0 0 8px;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  max-width: 74ch;
}

.grid{ display:grid; gap: 12px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }

.card, .call{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 16px;
  box-shadow: var(--shadow2);
}
.card h3, .call h3{ margin: 0 0 6px; }
.card p, .call p{ margin: 0; color: var(--muted); }

.visit{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.visit__panel{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 16px;
  box-shadow: var(--shadow);
}
.visit__panel--list h3{ margin-top: 0; }

.field{ display:block; margin: 0 0 14px; }
.field__label{ display:block; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  outline: none;
}
input:focus{
  border-color: rgba(46,107,79,.35);
  box-shadow: 0 0 0 4px rgba(46,107,79,.14);
}

.row{ display:flex; flex-wrap: wrap; gap: 10px; align-items:center; }
.fine{ margin: 12px 0 0; color: var(--muted); font-size: 12px; }

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

.badge{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: var(--r);
  border: 1px solid rgba(202,165,90,.30);
  background: rgba(202,165,90,.12);
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(23,22,20,.82);
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.polaroid{
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  padding: 12px 12px 14px;
}
.polaroid__img{
  height: 170px;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.polaroid figcaption{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Placeholder image variations */
.ph{
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.03)),
    #efece3;
}
.ph--1{ background-image: radial-gradient(900px 320px at 30% 20%, rgba(122,91,69,.18), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.03)); }
.ph--2{ background-image: radial-gradient(900px 320px at 30% 20%, rgba(46,107,79,.18), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.03)); }
.ph--3{ background-image: radial-gradient(900px 320px at 30% 20%, rgba(63,138,103,.18), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.03)); }
.ph--4{ background-image: radial-gradient(900px 320px at 30% 20%, rgba(202,165,90,.18), transparent 60%), linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.03)); }

.footerCall{
  margin-top: 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  padding: 16px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.footer{
  padding: 26px 0 34px;
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.muted{ color: var(--muted); }

/* Mobile */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .visit{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }

  .menuBtn{ display:inline-flex; }
  .nav{
    display:none;
    position:absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open{ display:flex; }
  .nav a{ color: var(--ink); }
}
