/* Holiday Lights by Mandi — site styles
   Palette: warm white #FDFCFA · ink #171512 · evergreen #1E3A2A · glow gold #C9A227 · stone #8A8378 */

* { box-sizing: border-box; }

:root {
  --white: #FDFCFA;
  --ink: #171512;
  --green: #1E3A2A;
  --gold: #C9A227;
  --stone: #8A8378;
  --line: #E8E4DD;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

.serif { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; }
.script { font-family: 'Great Vibes', cursive; font-weight: 400; }

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
header.site {
  padding: 22px 0 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.brand { line-height: 1.1; display: inline-block; }
.brand .top {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem;
  letter-spacing: .02em;
}
.brand .by {
  font-family: 'Great Vibes', cursive;
  font-size: 1.45rem;
  color: var(--green);
  display: block;
  margin-top: -4px;
}
nav.main { margin-top: 10px; font-size: .92rem; }
nav.main a {
  color: var(--ink);
  text-decoration: none;
  margin: 0 14px;
  padding-bottom: 3px;
}
nav.main a:hover, nav.main a:focus { border-bottom: 2px solid var(--gold); }
nav.main a.cta {
  color: var(--white);
  background: var(--green);
  padding: 8px 18px;
  border-radius: 999px;
}
nav.main a.cta:hover, nav.main a.cta:focus { border-bottom: none; background: #16301F; }

/* ---------- hero ---------- */
.hero { text-align: center; padding: 64px 0 0; }
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  margin: 0 0 6px;
  line-height: 1.15;
}
.hero .accent {
  font-family: 'Great Vibes', cursive;
  color: var(--green);
  font-size: clamp(1.5rem, 4.5vw, 2.3rem);
  display: block;
  margin-bottom: 18px;
}
.hero p.lead {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--stone);
  font-size: 1.05rem;
}
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  font-size: 1.02rem;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover, .btn:focus { background: #16301F; }
.btn.gold { background: var(--gold); color: var(--ink); }
.btn.gold:hover, .btn.gold:focus { background: #B5911F; }

/* ---------- roofline divider (signature) ---------- */
.roofline { display: block; width: 100%; height: 90px; margin-top: 42px; }
.roofline .bulb { animation: twinkle 3.2s ease-in-out infinite; transform-origin: center; }
.roofline .bulb:nth-child(odd) { animation-delay: 1.6s; }
@keyframes twinkle {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

/* ---------- sections ---------- */
section.band { padding: 58px 0; }
section.band.tint { background: #F6F4EF; }
h2.sec {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  margin: 0 0 10px;
}
p.sec-sub { text-align: center; color: var(--stone); max-width: 520px; margin: 0 auto 36px; }

/* steps */
.steps { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 860px; margin: 0 auto; }
@media (min-width: 720px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step { text-align: center; padding: 0 10px; }
.step .glyph {
  width: 54px; height: 54px; margin: 0 auto 12px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.step h3 { font-size: 1.05rem; margin: 0 0 6px; }
.step p { color: var(--stone); font-size: .95rem; margin: 0; }

/* gallery */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery .ph {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #EDEAE3, #E0DCD2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--stone); font-size: .8rem; text-align: center; padding: 8px;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }

/* ---------- quote form ---------- */
.quote-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 18px rgba(23, 21, 18, .05);
}
.quote-card label { display: block; font-weight: 700; font-size: .88rem; margin: 16px 0 5px; }
.quote-card label .opt { color: var(--stone); font-weight: 400; }
.quote-card input[type="text"],
.quote-card input[type="tel"],
.quote-card input[type="email"],
.quote-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}
.quote-card input:focus, .quote-card textarea:focus { outline: none; border-color: var(--green); }
.quote-card textarea { min-height: 90px; resize: vertical; }
.quote-card .file-label {
  display: block;
  border: 1.5px dashed var(--gold);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  color: var(--stone);
  font-size: .92rem;
  cursor: pointer;
}
.quote-card input[type="file"] { width: 100%; margin-top: 6px; font-size: .85rem; }
.quote-card .hint { font-size: .78rem; color: var(--stone); margin-top: 4px; }
.quote-card button.btn { width: 100%; margin-top: 22px; }
.hp { position: absolute; left: -9999px; top: -9999px; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 4px;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--stone); margin: 10px 0 0; font-size: .96rem; }

/* ---------- suburb page ---------- */
.suburb-hero { text-align: center; padding: 54px 0 10px; }
.suburb-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin: 0 0 8px;
}
.suburb-body { max-width: 680px; margin: 0 auto; }
.suburb-body p { margin: 0 0 16px; }

/* ---------- footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 30px 0 40px;
  text-align: center;
  color: var(--stone);
  font-size: .9rem;
}
footer.site .script { font-size: 1.3rem; color: var(--green); }
footer.site a { color: var(--green); text-decoration: none; }
