
:root{
  --bg: #f7f6f3;
  --surface: #ffffff;
  --text: #0f1d26;
  --muted: #5b6b76;
  --border: rgba(15,29,38,.10);
  --shadow: 0 18px 50px rgba(15,29,38,.10);
  --accent: #0f8e8a; /* modern teal */
  --accent-2: #b79b5b; /* soft gold */
  --radius: 18px;
  --max: 1120px;
}

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

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.header{
  position: sticky; top:0; z-index:50;
  background: rgba(247,246,243,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav{
  height:72px;
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700; letter-spacing:.2px;
}
.brand-mark{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, rgba(183,155,91,.25), rgba(15,142,138,.22));
  display:grid; place-items:center;
  border: 1px solid rgba(183,155,91,.35);
}
.brand-mark span{font-family: "Playfair Display", Georgia, serif; font-size:18px; color: var(--text)}
.brand-name{font-size:16px}

.menu{display:flex; gap:18px; align-items:center; font-weight:600; color: rgba(15,29,38,.82)}
.menu a{padding:10px 8px; border-radius:12px}
.menu a.active{background: rgba(15,142,138,.10); color: var(--text)}

.nav-cta{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px;
  font-weight:700;
  border:1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15,29,38,.08);
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #16b6a7);
  color:#fff; border: 1px solid rgba(15,142,138,.35);
}
.btn.ghost{
  background: transparent;
  box-shadow:none;
}

.leadbar{
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.70);
}
.leadbar-inner{
  padding:12px 0;
  display:flex; gap:10px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.leadbar-form{
  display:flex; gap:10px; flex: 1 1 720px; align-items:center; flex-wrap:wrap;
}
.field{
  flex:1 1 260px;
  display:flex; align-items:center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
}
.field input{
  width:100%;
  border:0; outline:none;
  font-size:14px;
  background: transparent;
  color: var(--text);
}
.small-note{color: var(--muted); font-size:13px}
.phone{
  white-space:nowrap;
  font-weight:700;
}
.phone a{color: var(--accent); text-decoration:underline; text-underline-offset:3px}

.hero{
  position:relative;
  padding: 72px 0 44px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(247,246,243,.78), rgba(247,246,243,.95)),
    url("../images/hero-aura.jpg") center/cover no-repeat;
  filter: saturate(1.02);
}
.hero .container{position:relative}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items:center;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
}

.h1{
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.06;
  margin:0 0 14px;
  letter-spacing:.2px;
}
.subhead{font-size:18px; color: rgba(15,29,38,.78); margin:0 0 22px; max-width: 52ch}

.hero-card{
  background: rgba(255,255,255,.82);
  border:1px solid rgba(15,29,38,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card h2{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:.3px;
  text-transform:uppercase;
  color: rgba(15,29,38,.78);
}
.hero-card .row{display:flex; gap:10px; flex-wrap:wrap}
.hero-card .row .field{flex:1 1 260px}
.hero-card .row .btn{flex: 0 0 auto}
.hero-card .fine{margin-top:10px; font-size:13px; color: var(--muted)}

.section{padding: 54px 0}
.section-title{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px; margin:0 0 10px;
}
.section-lead{color: var(--muted); margin:0 0 22px; max-width: 70ch}

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

.card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15,29,38,.08);
  overflow:hidden;
}
.card-media{
  height: 170px;
  background: #e9ecef center/cover no-repeat;
}
.card-body{padding: 16px}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0 0 14px; color: var(--muted)}
.card .actions{display:flex; gap:10px; flex-wrap:wrap}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 900px){ .split{grid-template-columns: 1fr;} }

.list{
  margin:0; padding:0; list-style:none;
}
.list li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,29,38,.08);
  color: rgba(15,29,38,.85);
}
.list li:last-child{border-bottom:0}

.form{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.form .field{margin-bottom:10px}
textarea{
  width:100%;
  border:0; outline:none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  min-height: 120px;
  resize: vertical;
  font-size:14px;
}

.footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: rgba(15,29,38,.70);
  font-size:14px;
}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(183,155,91,.35);
  background: rgba(183,155,91,.10);
  color: rgba(15,29,38,.85);
  font-weight:700;
}
