:root {
  --bg: #ffffff;
  --bg-alt: #eef4f8;
  --panel: #ffffff;
  --text: #17384c;
  --heading: #0f2f42;
  --muted: #567185;
  --line: rgba(20, 71, 107, 0.14);
  --deep: #14476b;
  --blue: #1b6ca8;
  --teal: #2a9d8f;
  --sky: #5fa8d3;
  --sand: #e0a458;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 42px -22px rgba(20, 71, 107, 0.5);
  --shadow-sm: 0 6px 18px -10px rgba(20, 71, 107, 0.35);
  --maxw: 1140px;
  --grad: linear-gradient(120deg, var(--blue), var(--deep));
  --grad-water: linear-gradient(120deg, var(--teal), var(--blue));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.container { width: min(var(--maxw), 92%); margin-inline: auto; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.12; color: var(--heading); }
a { color: inherit; text-decoration: none; }

.grad { background: var(--grad-water); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  display: inline-block; font-family: "Inter", sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.9rem;
}

/* Buttons */
.btn {
  --pad-y: 0.7rem; --pad-x: 1.2rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x); font-weight: 600; font-size: 0.95rem;
  border-radius: 999px; border: 1px solid transparent;
  background: var(--grad); color: #fff; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px -10px rgba(27, 108, 168, 0.7);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(20, 71, 107, 0.6); }
.btn-lg { --pad-y: 0.95rem; --pad-x: 1.7rem; font-size: 1rem; }
.btn-sm { --pad-y: 0.5rem; --pad-x: 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; color: var(--deep); border-color: var(--line); box-shadow: none; }
.btn-ghost:hover { border-color: var(--teal); background: rgba(42, 157, 143, 0.08); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.86); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 140px; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-logo { height: 124px; width: auto; display: block; }
.footer-logo { height: 132px; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--muted); font-weight: 600; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--deep); }
.nav-links a.btn { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--deep); border-radius: 2px; transition: 0.25s; }

/* Hero */
.hero { position: relative; padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 360px at 15% 10%, rgba(95,168,211,0.18), transparent 70%),
    radial-gradient(560px 320px at 85% 0%, rgba(42,157,143,0.16), transparent 70%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); font-weight: 700; letter-spacing: -0.01em; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); margin: 1.2rem 0 1.8rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.8rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.hero-badges li { color: var(--deep); font-weight: 600; font-size: 0.92rem; }

/* Hero before/after card */
.hero-card { justify-self: end; width: 100%; max-width: 420px; }
.reno { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 1.1rem; box-shadow: var(--shadow); }
.reno-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.reno-head span { font-weight: 700; color: var(--deep); }
.reno-head em { font-style: normal; color: var(--muted); font-size: 0.85rem; }
.reno-split { position: relative; display: grid; grid-template-columns: 1fr 1fr; height: 210px; border-radius: 14px; overflow: hidden; }
.reno-before, .reno-after { position: relative; display: grid; place-items: end start; padding: 0.6rem; }
.reno-before { background: linear-gradient(135deg, #b9c3cb, #8c99a4); }
.reno-after { background: linear-gradient(135deg, var(--sky), var(--teal)); }
.reno-before span, .reno-after span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; background: rgba(15,47,66,0.35); padding: 2px 8px; border-radius: 999px; }
.reno-bar { position: relative; height: 6px; margin: 0.7rem 0 0.5rem; background: var(--bg-alt); border-radius: 999px; }
.reno-bar i { position: absolute; left: 58%; top: 50%; width: 22px; height: 22px; transform: translate(-50%,-50%); background: #fff; border: 2px solid var(--teal); border-radius: 50%; box-shadow: var(--shadow-sm); }
.reno-note { color: var(--muted); font-size: 0.85rem; }

/* Trust bar */
.trust { border-block: 1px solid var(--line); background: var(--bg-alt); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem,4vw,3rem); padding: 1rem 0; }
.trust-inner span { color: var(--muted); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.8rem; }

/* Sections */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 700; }
.section-head p { color: var(--muted); margin-top: 0.8rem; }

.grid { display: grid; gap: 1.2rem; }
.cards { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(42,157,143,0.5); box-shadow: var(--shadow); }
.card-icon { font-size: 1.7rem; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: rgba(42,157,143,0.12); border: 1px solid var(--line); margin-bottom: 1rem; }
.card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Split */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.split-media { display: grid; gap: 1.2rem; }
.stat-tile { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); }
.stat-tile strong { font-family: "Fraunces", serif; font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
.stat-tile p { color: var(--muted); }
.split-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.split-copy > p { color: var(--muted); margin: 0.8rem 0 1.4rem; }
.checks { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 1.8rem; }
.checks li { position: relative; padding-left: 1.9rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.3rem; height: 1.3rem; display: grid; place-items: center; border-radius: 50%; background: var(--grad-water); color: #fff; font-size: 0.8rem; font-weight: 700; }

/* Steps */
.steps { grid-template-columns: repeat(4, 1fr); }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.step-num { font-family: "Fraunces", serif; font-size: 2rem; font-weight: 700; color: var(--sand); }
.step h3 { margin: 0.4rem 0 0.5rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* Gallery */
.gallery { grid-template-columns: repeat(3, 1fr); }
.shot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow-sm); }
.shot-img { height: 200px; position: relative; }
.shot-img::after { content: "📷 Photo coming soon"; position: absolute; inset: auto 0 0 0; text-align: center; padding: 0.4rem; font-size: 0.75rem; color: #fff; background: rgba(15,47,66,0.35); }
.i1 { background: linear-gradient(135deg, #5fa8d3, #2a9d8f); }
.i2 { background: linear-gradient(135deg, #1b6ca8, #14476b); }
.i3 { background: linear-gradient(135deg, #e0a458, #d98b3f); }
.i4 { background: linear-gradient(135deg, #2a9d8f, #14476b); }
.i5 { background: linear-gradient(135deg, #5fa8d3, #1b6ca8); }
.i6 { background: linear-gradient(135deg, #7fb9a6, #2a9d8f); }
.shot figcaption { padding: 0.9rem 1rem; font-weight: 600; color: var(--deep); }
.gallery-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 1.4rem; }

/* Pills */
.pills { grid-template-columns: repeat(4, 1fr); }
.pill { text-align: center; padding: 1rem; border-radius: var(--radius-sm); background: var(--panel); border: 1px solid var(--line); font-weight: 600; color: var(--deep); box-shadow: var(--shadow-sm); transition: transform 0.2s ease, border-color 0.2s ease; }
.pill:hover { transform: translateY(-4px); border-color: rgba(224,164,88,0.6); }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.contact-copy > p { color: var(--muted); margin: 0.8rem 0 1.4rem; }
.contact-list { list-style: none; display: grid; gap: 0.7rem; }
.contact-list a { color: var(--teal); font-weight: 600; }
.contact-form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.8rem 0.95rem; border-radius: var(--radius-sm);
  background: #f6fafc; border: 1px solid var(--line); color: var(--text);
  font-family: inherit; font-size: 0.95rem; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,157,143,0.18); background: #fff; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin-top: 0.8rem; font-size: 0.9rem; min-height: 1.2rem; }
.form-note.ok { color: #0f9d78; }
.form-note.err { color: #dc4a3d; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding: 2.2rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a { color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.footer-links a:hover { color: var(--deep); }
.copyright { color: var(--muted); font-size: 0.85rem; width: 100%; text-align: center; padding-top: 1rem; border-top: 1px solid var(--line); margin-top: 0.4rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { justify-self: center; margin-top: 1rem; }
  .cards, .steps, .pills, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-inner { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .nav { height: 104px; }
  .brand-logo { height: 92px; }
  .nav-links {
    position: fixed; inset: 104px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--line);
    padding: 0.5rem 6%; transform: translateY(-130%); transition: transform 0.3s ease; height: auto; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links a.btn { margin: 0.8rem 0; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg);} 
  .nav-toggle.open span:nth-child(2){ opacity: 0;} 
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg);} 
}
@media (max-width: 540px) {
  .cards, .steps, .pills, .gallery { grid-template-columns: 1fr; }
  .brand-logo { height: 80px; }
}
