:root{
  --ink:#1f2c44;
  --ink2:#2a3a58;
  --gold:#b7892b;
  --paper:#fbf8f2;
  --paper2:#fffdf8;
  --line:rgba(31,44,68,.14);
  --shadow:0 18px 50px rgba(31,44,68,.10);
  --radius:18px;
  --max:1080px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  color:var(--ink);
  background:
    radial-gradient(900px 450px at 10% 0%, rgba(183,137,43,.12), transparent 60%),
    radial-gradient(900px 450px at 90% 10%, rgba(31,44,68,.08), transparent 55%),
    linear-gradient(0deg, var(--paper), var(--paper));
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
.serif{font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif; letter-spacing:.2px;}
.muted{color:rgba(31,44,68,.72)}
.small{font-size:14px}

.wrap{max-width:var(--max); margin:0 auto; padding:22px 16px 80px}

.card{
  background: rgba(255,255,255,.62);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.btn{
  border-radius:999px;
  padding:10px 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  font-weight:900;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border:1px solid rgba(183,137,43,.65);
  background: linear-gradient(180deg, rgba(183,137,43,.22), rgba(183,137,43,.10));
  color:var(--ink);
}
.btn.gold{
  border:1px solid rgba(183,137,43,.85);
  background: linear-gradient(180deg, rgba(183,137,43,.34), rgba(183,137,43,.16));
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  position: sticky;
  top: 14px;
  z-index:10;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brandLogo{
  width:46px;
  height:46px;
  object-fit:contain;
  filter: drop-shadow(0 10px 24px rgba(31,44,68,.10));
}
.brandName{font-weight:950}
.brandTag{margin-top:2px}

.nav{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  font-weight:900;
  color: rgba(31,44,68,.75);
  font-size:14px;
  justify-content:center;
}
.nav a:hover{color:var(--ink)}
.nav a.active{color:var(--ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; text-decoration-color: rgba(183,137,43,.75);}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.phoneBtn{
  white-space:nowrap;
}

@media (max-width: 920px){
  .top{flex-wrap:wrap; justify-content:center; text-align:center}
  .brand{justify-content:center; min-width:auto}
  .actions{justify-content:center}
}

.hero{
  margin-top:18px;
  padding:30px 22px;
  border-radius: 26px;
  position:relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(183,137,43,.38);
  border-radius: 26px;
  pointer-events:none
}
.heroGrid{
  display:grid;
  gap:18px;
  grid-template-columns: 1.1fr .9fr;
  align-items:start;
  position:relative;
}
@media (max-width:980px){ .heroGrid{grid-template-columns:1fr} }

h1{margin:0; font-size:46px; line-height:1.06}
@media (max-width:780px){ h1{font-size:36px} }

h2{margin:0; font-size:22px}
h3{margin:0; font-size:16px}

.band6{
  color:var(--gold);
  text-shadow:0 8px 22px rgba(183,137,43,.22);
}
.slogan{
  display:inline-block;
  margin-top:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(183,137,43,.52);
  background: rgba(183,137,43,.12);
  font-weight:950;
  letter-spacing:.02em;
}

.pillRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  border:1px solid var(--line);
  background: rgba(255,255,255,.58);
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  font-size:13px;
  color: rgba(31,44,68,.78)
}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

.sideBox{padding:18px; border-radius: 18px}
.goldLine{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(183,137,43,.70), transparent);
  margin:16px 0;
}

.kv{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid var(--line)}
.kv:last-child{border-bottom:0}
.kv span{color:rgba(31,44,68,.70); font-weight:800}
.kv b{color:var(--ink); font-weight:950}

.section{margin-top:16px; padding:22px}
.sectionTitle{display:flex; align-items:flex-end; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-bottom:12px}
.subtleTitle{
  font-weight:900;
  letter-spacing:.04em;
  color:rgba(31,44,68,.55);
}

.grid3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr);}
@media (max-width:980px){ .grid3{grid-template-columns:1fr} }

.twoCol{display:grid; gap:14px; grid-template-columns:1fr 1fr}
@media (max-width:980px){ .twoCol{grid-template-columns:1fr} }

.tile{padding:16px; border-radius:18px}
.tile p{margin:8px 0 0}

.list{
  margin:10px 0 0;
  padding-left:18px;
}
.list li{margin:6px 0}

.mapWrap{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.6);
}
.mapWrap iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

.footer{
  margin-top:26px;
  text-align:center;
  color:rgba(31,44,68,.65);
  font-weight:800;
  font-size:13px
}
.numGold{
  color: var(--gold);
  font-weight: 950;
}
