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

:root{
  --ink:#2e2a27;
  --muted:#6b625c;
  --gold:#d1bf97;
  --gold2:#bda876;
  --shadow:0 18px 48px rgba(0,0,0,.14);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 20% 15%, #f2ebe6 0%, transparent 60%),
    radial-gradient(1200px 600px at 80% 85%, #f2ebe6 0%, transparent 60%),
    linear-gradient(180deg, #f6f1ee, #efe6e0 75%);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.bg{position:fixed; inset:0; pointer-events:none; z-index:0}
.corner{
  position:absolute;
  width:min(260px, 38vw);
  opacity:.55;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.corner-tl{top:14px; left:14px}
.corner-br{bottom:14px; right:14px}

.wrap{
  position:relative; z-index:1;
  max-width:1100px;
  margin:0 auto;
  padding:42px 18px 50px;
}

.hero{
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.35));
  border: 1px solid rgba(189,168,118,.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
  backdrop-filter: blur(6px);
}

.back{
  display:inline-block;
  color: var(--muted);
  text-decoration:none;
  font-size: 14px;
  border: 1px solid rgba(46,42,39,.14);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}
.back:hover{border-color: rgba(46,42,39,.24); color: var(--ink)}

.hero-row{display:flex; gap:16px; align-items:center; margin-top:14px}

.hero-icon{
  width:56px; height:56px;
  border-radius:14px;
  border:1px solid rgba(189,168,118,.35);
  background: rgba(255,255,255,.60);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}
.hero-icon img{width:34px; height:auto; opacity:.85}

h1{
  font-family:"Playfair Display", serif;
  font-weight:600;
  margin:0;
  font-size: clamp(26px, 3.2vw, 36px);
}
.subtitle{margin:6px 0 0; color:var(--muted); font-size:15px; line-height:1.45}

.divider{
  height:1px;
  margin:18px 0 4px;
  background: linear-gradient(90deg, transparent, rgba(189,168,118,.8), transparent);
}
.divider.small{margin-top:22px}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
  margin-top:18px;
}

.card{
  grid-column: span 12;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(189,168,118,.22);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.card-head{padding:18px 18px 12px}

.tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:.6px;
  text-transform: uppercase;
  color: rgba(46,42,39,.75);
  border:1px solid rgba(189,168,118,.35);
  background: rgba(255,255,255,.55);
  padding:6px 10px;
  border-radius:999px;
}

h2{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  margin:12px 0 8px;
  font-size:24px;
}

.addr{color:var(--muted); font-size:14px; line-height:1.45}

.notes{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:13px;
}
.notes li{margin:4px 0}

.actions{margin-top:12px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color: var(--ink);
  font-weight:500;
  font-size:14px;
  border-radius: 999px;
  padding:10px 14px;
  border:1px solid rgba(46,42,39,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.42));
  transition: transform .08s ease, border-color .12s ease;
}
.btn:hover{border-color: rgba(46,42,39,.28); transform: translateY(-1px)}

.map{border-top:1px solid rgba(46,42,39,.10); background: rgba(255,255,255,.35)}
.map iframe{display:block; width:100%; height:280px; border:0}

.foot{margin-top:18px; color:var(--muted); text-align:center}
.smallprint{margin:10px 0 0; font-size:13px}

@media (min-width: 900px){
  .card{grid-column: span 4;}
  .map iframe{height:260px;}
  .corner{opacity:.6}
}
