:root{
  --cream:#f4efe6;
  --ink:#0f2d44;      /* navy */
  --clay:#b55239;     /* clay red */
  --teal:#2fa7a0;     /* accent */
  --line: rgba(15,45,68,.14);
  --shadow: 0 14px 40px rgba(15,45,68,.12);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.45;
}

.container{width:min(1050px,92vw);margin:0 auto}

.nowrap { white-space: nowrap; }

.langbar{
  background: rgba(15,45,68,.06);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.langbar__inner{display:flex;align-items:center;justify-content:flex-end;gap:10px;padding:10px 0}
.langbar__label{opacity:.75;margin-right:6px}
.langbar__link{color:var(--ink);text-decoration:none;opacity:.85}
.langbar__link:hover{opacity:1;text-decoration:underline}
.langbar__dot{opacity:.5}
.langbar__link.is-active{font-weight:600;opacity:1}
/* NEW: pill-style language buttons */
.langpill{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration:none;
  color: var(--ink);
  font-weight: 600;
  background: rgba(255,255,255,.35);
}

.langpill:hover{
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.langpill.is-active{
  background: var(--ink);
  color: #fff;
  border-color: rgba(15,45,68,.35);
}

.hero{
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--line);
  /* subtle pattern vibe without being loud */
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(47,167,160,.10), transparent 60%),
    radial-gradient(900px 300px at 50% 110%, rgba(181,82,57,.08), transparent 55%),
    var(--cream);
}

.hero__inner{text-align:center}
.hero__logo{max-width:min(880px,96%);height:auto;display:block;margin:0 auto 14px}
.hero__kicker{margin:8px 0 6px;font-size:16px;opacity:.9}
.hero__sub{margin:0 0 18px;font-size:16px}
.hero__addr{opacity:.85}

.hero__cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:14px 0 12px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  text-decoration:none;
  color: var(--ink);
  font-weight:600;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn:hover{transform: translateY(-1px);box-shadow: var(--shadow)}
.btn--primary{
  background: var(--ink);
  color: white;
  border-color: rgba(15,45,68,.35);
}
.btn--ghost{background: rgba(255,255,255,.30)}

.hero__note{
  display:flex;gap:10px;align-items:center;justify-content:center;
  margin: 18px auto 0;
  padding: 10px 14px;
  width: min(680px, 96%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.25);
}
.hero__note img{width:96px;height:auto}

.section{padding: 46px 0}
.section--tint{
  background: rgba(15,45,68,.04);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__title{
  font-family: Fraunces, Georgia, serif;
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing:.2px;
  display:flex;gap:10px;align-items:center;
}
.section__icon{width:96px;height:auto}
.section__lead{margin: 0 0 22px;max-width: 70ch;opacity:.92}

.featuregrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.feature{
  grid-column: span 6;
  display:flex;gap:12px;align-items:flex-start;
  padding: 16px 16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.28);
}
.feature img{width:144px;height:auto;margin-top:2px}
.feature h3{margin:0 0 4px;font-size:16px}
.feature p{margin:0;opacity:.88}

@media (max-width: 820px){
  .feature{grid-column: span 12;}
}

.bullets{list-style:none;padding:0;margin:14px 0 0;display:grid;gap:10px;max-width: 75ch}
.bullets li{display:flex;gap:10px;align-items:flex-start}
.bullets img{width:60px;height:auto;margin-top:3px}

.section__cta{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}

.mapwrap{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.2);
}
.mapwrap iframe{width:100%;height:360px;border:0;display:block}
.mapmeta{margin:12px 0 0;opacity:.9}

.footer{
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: rgba(15,45,68,.05);
}
.footer__inner{
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
  align-items:center;
}
.footer__brand{font-weight:700}
.footer__small{opacity:.8;font-size:14px}
.footer__contact{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.footer__contact a{color:var(--ink);text-decoration:none;font-weight:600}
.footer__contact a:hover{text-decoration:underline}
.footer__dot{opacity:.6}
