:root{
  --primary:#7D282B;
  --primary-2:#5f1e21;
  --bg:#f6f3f3;
  --card:#ffffff;
  --text:#1f1f1f;
  --muted:#666;
  --border:rgba(0,0,0,.08);
  --shadow:0 10px 28px rgba(0,0,0,.08);
  --radius:14px;
}

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

.container{
  width:min(1000px, calc(100% - 2rem));
  margin-inline:auto;
}

/* HERO */
.hero{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color:#fff;
  padding: 2.2rem 0 1.6rem;
}
.hero__inner{
  display:flex;
  gap:1.5rem;
  align-items:center;
}
.logo{
  width:130px;
  height:130px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  overflow:hidden;
}
.logo img{
  max-width: 82%;
  max-height: 82%;
  display:block;
}

.hero__text{ flex:1; min-width: 0; }
.brand{
  margin:0;
  font-family: "Playfair Display", serif;
  font-weight:700;
  letter-spacing:.3px;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}
.tagline{
  margin:.35rem 0 1rem;
  opacity:.92;
}

/* NAV BUTTONS */
.nav-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin: .25rem 0 1rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.7rem 1rem;
  border-radius: 999px;
  background:#fff;
  color:var(--primary);
  text-decoration:none;
  font-weight:700;
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .08s ease, opacity .2s ease;
}
.btn:hover{ opacity:.92; }
.btn:active{ transform: translateY(1px); }

.btn--ghost{
  background: transparent;
  color:#fff;
  border: 1px solid rgba(255,255,255,.35);
}

.quick{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  opacity:.95;
}
.quick__item{
  color:#fff;
  text-decoration:none;
  border-bottom: 1px dashed rgba(255,255,255,.45);
  padding-bottom:2px;
}
.quick__item:hover{ opacity:.9; }

/* CONTENT */
main{ padding: 1.6rem 0 2.2rem; }

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.4rem;
  margin: 1.1rem 0;
}

.card h2{
  margin: 0 0 .6rem;
  color: var(--primary);
  letter-spacing:.2px;
}

.muted{ color: var(--muted); }

.grid{
  display:grid;
  gap:1.1rem;
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
}

.list{ margin: .2rem 0 0; padding-left: 1.2rem; }
.list li{ margin: .35rem 0; }

.checks{
  margin:.2rem 0 0;
  padding-left: 1.2rem;
}
.checks li{ margin: .45rem 0; }
.checks li::marker{ color: var(--primary); }

/* CONTACT */
.contact{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  margin-top: .4rem;
}

.contact__row{
  display:flex;
  gap: .8rem;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.label{
  width: 82px;
  color: var(--muted);
  flex: 0 0 auto;
}
.contact a{ color: var(--primary); font-weight:700; text-decoration:none; }
.contact a:hover{ text-decoration:underline; }

.note{
  background: rgba(125,40,43,.06);
  border: 1px solid rgba(125,40,43,.18);
  border-radius: 12px;
  padding: 1rem;
}
.note h3{
  margin:0 0 .4rem;
  color: var(--primary);
  font-size: 1.05rem;
}

.backtop{
  margin-top: 1rem;
}

/* FOOTER */
.footer{
  padding: 1.2rem 0 2rem;
  color: rgba(0,0,0,.65);
}
.footer__inner{
  display:flex;
  gap:.75rem;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer__small{ font-size:.92rem; color: rgba(0,0,0,.55); }

/* RESPONSIVE */
@media (max-width: 780px){
  .hero__inner{ align-items:flex-start; }
  .grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .logo{ width:84px; height:84px; border-radius: 16px; }
}

.map{
  background: rgba(125,40,43,.05);
  border-radius: 12px;
  padding: .6rem;
}

.map__frame{
  border-radius: 12px;
  overflow: hidden;
}

.map__frame iframe{
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.map__hint{
  font-size: .9rem;
  margin: .4rem 0 0;
  color: var(--muted);
}