@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap");
:root {
  --background: #fcfaf6;
  --surface: #ffffff;
  --surface-soft: #f3eee5;
  --foreground: #1f2c46;
  --muted: #67748b;
  --border: #ded6c8;
  --primary: #1d2a4a;
  --primary-soft: #2a3a62;
  --accent: #c46b37;
  --accent-soft: #e7b18a;
  --accent-foreground: #fffaf5;
  --shadow: 0 18px 50px rgba(29, 42, 74, 0.12);
  --radius: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(circle at top right, rgba(196,107,55,.09), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, var(--background) 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,250,246,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31,44,70,.08);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 84px; }
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { width: 44px; height: 44px; }
.brand-title { font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; font-weight: 600; }
.brand-sub { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; gap: 1.35rem; flex-wrap: wrap; justify-content: center; }
.nav a { font-size: .95rem; font-weight: 600; color: rgba(31,44,70,.82); }
.nav a.active, .nav a:hover { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.phone-link { font-weight: 700; color: var(--primary); white-space: nowrap; }
.button, button.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.35rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--accent); color: var(--accent-foreground); box-shadow: var(--shadow); }
.button-secondary { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.24); }
.button-outline { border-color: var(--border); background: var(--surface); color: var(--primary); }
.hero {
  position: relative; color: white; min-height: 78vh; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(16,28,52,.88) 0%, rgba(16,28,52,.72) 45%, rgba(16,28,52,.28) 100%),
    url('/assets/hero-home-MGcW8sWc.jpg') center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(16,28,52,.35) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 6rem 0; max-width: 680px; }
.kicker { display: inline-flex; gap: .55rem; align-items: center; padding: .45rem .8rem; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); font-size: .76rem; text-transform: uppercase; letter-spacing: .18em; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; line-height: 1.08; letter-spacing: -.02em; margin: 0; }
h1 { font-size: clamp(2.8rem, 6vw, 5.1rem); margin-top: 1.1rem; }
.hero p { font-size: 1.08rem; color: rgba(255,255,255,.88); max-width: 620px; margin: 1.3rem 0 0; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; margin-top: 2.25rem; }
.stat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(8px); border-radius: 18px; padding: 1rem; }
.stat strong { display: block; font-size: 1.8rem; color: #fff; }
.stat span { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .25rem; }
.trustbar { border-top: 1px solid rgba(31,44,70,.06); border-bottom: 1px solid rgba(31,44,70,.06); background: rgba(243,238,229,.7); }
.trustbar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2rem; padding: 1rem 0; font-size: .92rem; color: var(--muted); }
.section { padding: 5.5rem 0; }
.section-soft { background: rgba(243,238,229,.58); }
.section-dark { background: var(--primary); color: white; position: relative; overflow: hidden; }
.section-dark::before { content:""; position:absolute; inset:-20% auto auto 65%; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(196,107,55,.22), transparent 65%); }
.section-head { max-width: 760px; margin-bottom: 2.6rem; }
.eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: .85rem; }
.section h2 { font-size: clamp(2rem, 4vw, 3.4rem); color: var(--primary); }
.section-dark h2 { color: white; }
.lead { font-size: 1.08rem; color: var(--muted); margin-top: 1rem; }
.section-dark .lead { color: rgba(255,255,255,.78); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.6rem; }
.card {
  background: var(--surface); border: 1px solid rgba(31,44,70,.08); border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(31,44,70,.06); padding: 1.45rem;
}
.card h3 { font-size: 1.35rem; color: var(--primary); margin-top: .8rem; }
.card p { color: var(--muted); font-size: .97rem; margin: .75rem 0 0; }
.icon-badge {
  width: 3rem; height: 3rem; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-soft); color: var(--accent); font-weight: 800;
}
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.media-card { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(31,44,70,.08); background: var(--surface); }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.note-card { margin-top: 1rem; max-width: 270px; background: var(--surface); border: 1px solid rgba(31,44,70,.08); border-radius: 18px; box-shadow: var(--shadow); padding: 1rem 1.1rem; }
.checklist { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .75rem 1rem; }
.checklist li::before { content: "✓"; color: var(--accent); font-weight: 800; margin-right: .55rem; }
.mini-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 1.5rem; }
.thumb { position: relative; overflow: hidden; border-radius: 18px; min-height: 180px; }
.thumb img { width:100%; height:100%; object-fit:cover; }
.thumb span { position:absolute; left:0; right:0; bottom:0; padding:.85rem 1rem; background: linear-gradient(180deg, transparent, rgba(0,0,0,.78)); color:white; font-weight:700; }
.gallery { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1rem; }
.gallery figure { margin:0; background:var(--surface); border-radius:20px; overflow:hidden; border:1px solid rgba(31,44,70,.08); box-shadow:0 12px 30px rgba(31,44,70,.06); }
.gallery img { width:100%; height:280px; object-fit:cover; }
.gallery figcaption { padding:1rem; }
.gallery strong { display:block; color:var(--primary); font-family:"Fraunces", Georgia, serif; font-size:1.2rem; }
.gallery span { color:var(--muted); font-size:.92rem; }
.testimonials { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1rem; }
.quote { background:var(--surface); border:1px solid rgba(31,44,70,.08); border-radius:20px; padding:1.5rem; box-shadow:0 12px 30px rgba(31,44,70,.05); }
.quote p { margin:0; color:var(--foreground); }
.quote footer { margin-top:1rem; color:var(--muted); font-size:.9rem; }
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%); color:white; border-radius:28px; padding:2.2rem; box-shadow:var(--shadow); }
.cta-banner h2 { color:white; font-size: clamp(2rem, 3vw, 3rem); }
.page-hero { padding: 4.8rem 0 3.5rem; background: linear-gradient(180deg, rgba(243,238,229,.75), rgba(252,250,246,0)); }
.page-hero h1 { font-size: clamp(2.4rem, 4vw, 4.2rem); color: var(--primary); margin-top: .6rem; }
.page-hero p { max-width: 780px; color: var(--muted); font-size: 1.06rem; margin-top: 1rem; }
.service-row { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:1.6rem; align-items:center; margin-bottom:2.1rem; }
.service-row:nth-child(even) .service-copy { order: -1; }
.service-row .media-card img { height: 360px; }
.process { display:grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap:1rem; }
.process .card strong { font-size: 2rem; color: var(--accent); font-family: "Fraunces", Georgia, serif; }
.badges { display:flex; flex-wrap:wrap; gap:.55rem; margin-top:1rem; }
.badges span { background: var(--surface-soft); border:1px solid var(--border); border-radius:999px; padding:.5rem .8rem; font-size:.85rem; }
.contact-grid { display:grid; grid-template-columns: 1.2fr .9fr; gap:1.4rem; }
.form-card, .info-stack > * { background: var(--surface); border:1px solid rgba(31,44,70,.08); border-radius:22px; box-shadow:0 12px 30px rgba(31,44,70,.06); }
.form-card { padding:1.5rem; }
label { display:block; font-size:.92rem; font-weight:600; margin-bottom:.35rem; }
input, select, textarea {
  width:100%; padding:.9rem 1rem; border-radius:14px; border:1px solid var(--border); background:#fff; font: inherit; color: var(--foreground);
}
textarea { min-height: 150px; resize: vertical; }
.form-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:1rem; }
.form-stack { display:grid; gap:1rem; }
.fineprint { font-size:.82rem; color:var(--muted); }
.info-card { padding:1.2rem; }
.info-card h3 { font-size:1.1rem; color:var(--primary); }
.info-card p { margin:.4rem 0 0; color:var(--muted); }
.map-frame { overflow:hidden; border-radius:20px; border:1px solid rgba(31,44,70,.08); box-shadow:0 12px 30px rgba(31,44,70,.06); }
.map-frame iframe { border:0; display:block; width:100%; height:320px; }
.legal { max-width: 820px; }
.legal h2 { font-size: 1.8rem; color: var(--primary); margin: 2rem 0 .7rem; }
.legal p, .legal li { color: var(--foreground); }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--accent); text-decoration: underline; }
.footer { margin-top: 4rem; background: var(--primary); color: white; }
.footer-grid { display:grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap:1.5rem; padding: 3.5rem 0; }
.footer p, .footer li, .footer a { color: rgba(255,255,255,.78); }
.footer h4 { color: var(--accent-soft); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .85rem; font-family: Inter, sans-serif; }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:.55rem; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding:1rem 0 1.4rem; display:flex; justify-content:space-between; gap:1rem; color:rgba(255,255,255,.58); font-size:.82rem; }
@media (max-width: 1024px) {
  .nav { display:none; }
  .header-cta { display:none; }
  .stat-grid, .grid-3, .gallery, .testimonials, .process, .footer-grid, .contact-grid, .split, .service-row, .grid-2 { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-copy { order: initial; }
  .checklist, .form-grid, .mini-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero { min-height: auto; }
  .hero-content { padding: 5rem 0 4rem; }
  .container { width: min(var(--container), calc(100% - 1.25rem)); }
  .topbar-inner { min-height: 74px; }
  .brand-sub { display:none; }
  .footer-bottom { flex-direction: column; }
}