:root {
  --ink: #141414;
  --charcoal: #232323;
  --cream: #fff8ec;
  --gold: #d89a2b;
  --gold-light: #ffd47b;
  --white: #ffffff;
  --muted: #6f6a62;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, var(--cream), #fff);
  color: var(--ink);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  background: rgba(20, 20, 20, 0.94);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand span { display: block; font-size: 0.8rem; color: var(--gold-light); margin-top: 3px; }
.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
}

nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--white); text-decoration: none; font-weight: 700; }
nav a:hover { color: var(--gold-light); }

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 70px 7%;
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 154, 43, .22), transparent 28%),
    linear-gradient(135deg, var(--charcoal), #0f0f0f 65%, #332612);
  color: var(--white);
}

.eyebrow { color: var(--gold-light); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
h1 { font-size: clamp(2.3rem, 5vw, 5.2rem); line-height: .95; margin: 12px 0 18px; }
.hero p { font-size: 1.1rem; max-width: 620px; color: #f3eadc; }
.hero-card, .contact-card, .quote-form {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.call-link, .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink);
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.secondary { background: var(--charcoal); color: var(--white); }

.quote-section { padding: 60px 7%; }
.quote-form { max-width: 980px; margin: 0 auto; }
fieldset { border: 1px solid #eee0c6; border-radius: 20px; margin: 0 0 24px; padding: 22px; }
legend { font-weight: 900; padding: 0 10px; color: var(--charcoal); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: grid; gap: 8px; font-weight: 800; margin-bottom: 16px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8c7a7;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fffdfa;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(216,154,43,.25); border-color: var(--gold); }
.preview { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.preview img { width: 115px; height: 90px; object-fit: cover; border-radius: 14px; border: 2px solid #f0dfbd; }

.modal { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: grid; place-items: center; padding: 20px; z-index: 50; }
.hidden { display: none; }
.modal-card { position: relative; max-width: 540px; background: var(--white); border-radius: 30px; padding: 36px; text-align: center; box-shadow: var(--shadow); overflow: hidden; }
.close-btn { position: absolute; top: 14px; right: 16px; border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
.confetti { font-size: 4rem; animation: pop .55s ease-out; }
.estimate-text { font-size: 2rem; font-weight: 900; color: var(--gold); }
.small-note { color: var(--muted); }
@keyframes pop { from { transform: scale(.2) rotate(-18deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }

.contact-page { padding: 70px 7%; }
.contact-card { max-width: 860px; margin: 0 auto; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .site-header, nav { align-items: flex-start; }
  .site-header { flex-direction: column; gap: 18px; }
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .grid-2 { grid-template-columns: 1fr; }
}

.logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.instagram-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #E1306C;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s ease;
}

.instagram-btn:hover {
  transform: scale(1.05);
}