/* ════════════════════════════════════════════════════════════
   Ellwanger Painting — COMMERCIAL PAINTING service page
   Built on the house style starter. Header/footer are styled by
   header_footer.css — do NOT redefine them here.
   ════════════════════════════════════════════════════════════ */

:root {
  --navy:       #1b2d3e;
  --navy-mid:   #22374a;
  --primary:    #2e5f84;
  --crimson:    #640505;
  --gold:       #c48416;
  --gold-light: #dfa535;
  --off-white:  #e8e2d9;
  --text:       #333;
  --text-soft:  #555;
  --bg:         #fff;
  --soft-bg:    #f7f8fb;
  --line:       rgba(0,0,0,.10);
  --shadow-1:   0 4px 6px rgba(0,0,0,.1);
  --shadow-2:   0 6px 12px rgba(0,0,0,.15);
  --radius:     12px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Barlow Condensed', 'Arial Narrow', sans-serif;
}

main { color: var(--text); }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3rem 0; }
.section p { color: var(--text-soft); line-height: 1.7; max-width: 780px; }
.section p.lead-copy { color: var(--text); font-size: 1.05rem; }

/* ── HERO BAND — flat color + crimson rule (NEVER a gradient) ── */
.page-hero { background-color: var(--primary); padding: 3rem 1.5rem 2.75rem; text-align: center; border-bottom: 3px solid var(--crimson); }
.page-hero__inner { max-width: 820px; margin: 0 auto; }
.page-hero h1 { font-weight: 100; letter-spacing: 3px; font-size: clamp(1.7rem, 4vw, 2.6rem); color: #fff; line-height: 1.1; margin: 0 0 .85rem; }
.page-hero p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,.82); max-width: 660px; margin: 0 auto; line-height: 1.65; letter-spacing: .5px; }
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.6rem; }
.page-hero .eyebrow { color: var(--gold-light); }

/* ── EYEBROW ── */
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }

/* ── HEADINGS (thin + tracked) ── */
.section-title { color: var(--primary); font-weight: 200; letter-spacing: 2px; line-height: 1.2; font-size: clamp(1.45rem, 3vw, 1.9rem); margin: 0 0 .75rem; }

/* ── BUTTON: the only primary CTA ── */
@keyframes gradient-bg { 0% { background-position: 0% 0%; } 100% { background-position: 200% 200%; } }
.btn-booking { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.9rem; border-radius: 999px; border: 1px solid transparent; font-weight: 600; font-size: .98rem; text-decoration: none; cursor: pointer; color: #fff; background: linear-gradient(45deg, #2e5f84, #c48416); background-size: 200% 200%; box-shadow: 0 8px 18px rgba(0,0,0,.12); transition: background-position .18s ease, box-shadow .18s ease, transform .18s ease; }
@media (hover:hover) and (pointer:fine) { .btn-booking:hover { animation: gradient-bg .5s ease; border-color: #c48416; transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.16); } }
.btn-booking:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(0,0,0,.12); }
.btn-booking:focus-visible { outline: 2px solid #c48416; outline-offset: 3px; }
.call-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .98rem; color: #fff; text-decoration: underline; }
.page-hero .call-link:hover, .page-hero .call-link:focus-visible { color: var(--gold-light); }

/* ── CARDS ── */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 20px; border-top: 3px solid var(--primary); }
.card__title { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; color: var(--primary); letter-spacing: 1px; text-transform: uppercase; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.card p { color: var(--text-soft); line-height: 1.65; font-size: .96rem; margin: 0; }

/* ── SERVICE-TYPE CARD GRID ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 1.5rem; }
.svc-grid .card i { color: var(--gold); font-size: 1.4rem; margin-bottom: .6rem; display: block; }

/* ── PROJECT (case study) CARDS ── */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 1.5rem; }
.proj-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); overflow: hidden; border-top: 3px solid var(--primary); display: flex; flex-direction: column; }
.proj-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.proj-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.proj-card__meta { font: 600 .72rem/1.3 var(--font-ui, sans-serif); letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.proj-card__body h3 { color: var(--primary); font-weight: 500; letter-spacing: .5px; font-size: 1.12rem; margin: 0 0 .55rem; }
.proj-card__body p { color: var(--text-soft); line-height: 1.6; font-size: .93rem; margin: 0 0 1rem; }
.proj-card__link { margin-top: auto; font-weight: 600; font-size: .92rem; color: var(--primary); text-decoration: none; border-bottom: 1px solid rgba(46,95,132,.35); align-self: flex-start; padding-bottom: .05em; }
.proj-card__link:hover, .proj-card__link:focus-visible { color: var(--gold); border-bottom-color: var(--gold); }

.proj-note { margin-top: 1.5rem; font-size: .9rem; color: var(--text-soft); font-style: italic; }

/* ── TWO-COLUMN "how it's different" ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ── GOLD-DOT BULLETS ── */
.bullet-list { list-style: none; padding: 0; margin: .5rem 0 0; display: flex; flex-direction: column; gap: .85rem; }
.bullet-list li { padding-left: 1.5rem; position: relative; color: var(--text-soft); font-size: .97rem; line-height: 1.65; }
.bullet-list li::before { content: ''; position: absolute; left: 0; top: .45em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.bullet-list li strong { color: var(--text); }

/* ── PULLQUOTE ── */
.pullquote { border-left: 4px solid var(--gold); background: var(--soft-bg); padding: 1rem 1.25rem; margin: 1.5rem 0; border-radius: 0 8px 8px 0; }
.pullquote p { font-size: 1rem; font-style: italic; color: var(--primary); margin: 0; line-height: 1.6; max-width: none; }

/* ── STAT / TRUST GRID ── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 1.5rem; }
.stat { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 22px 16px; text-align: center; border-top: 3px solid var(--primary); }
.stat__number { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: var(--primary); line-height: 1; letter-spacing: -1px; }
.stat__plus { font-size: .6em; font-weight: 400; vertical-align: super; color: var(--gold); }
.stat__label { font-size: .9rem; font-weight: 600; color: var(--text); margin: 10px 0 2px; }
.stat__sub { font-size: .78rem; color: #777; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: 1fr 1fr; } }

/* ── BREADCRUMBS ── */
.crumbs { max-width: 1100px; margin: 0 auto; padding: 1rem 1.25rem .25rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 0; padding: 0; font-size: .85rem; color: var(--text-soft); }
.crumbs a { color: var(--primary); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ── SOFT BAND ── */
.band-soft { background: var(--soft-bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ── FAQ ── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius); margin-bottom: .75rem; padding: .25rem 1.1rem; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--text); padding: .85rem 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-weight: 700; font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--text-soft); line-height: 1.65; margin: 0 0 .9rem; max-width: none; }

/* ── CTA BAND ── */
.cta-band { background-color: var(--soft-bg); border-top: 3px solid var(--crimson); padding: 3rem 1.5rem; text-align: center; }
.cta-band__inner { max-width: 740px; margin: 0 auto; }
.cta-band h2 { color: var(--primary); font-weight: 200; letter-spacing: 2px; font-size: clamp(1.45rem, 3vw, 1.9rem); margin: 0 0 .75rem; line-height: 1.2; }
.cta-band p { color: #384047; font-size: .98rem; margin: 0 auto 1rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.25rem; }
.cta-band .call-link { color: var(--primary); }
.cta-band .call-link:hover { color: var(--gold); }

/* ── SECTION RULE & INTERNAL LINKS ── */
.section-rule { border: none; border-top: 1px solid var(--line); margin: 0; }
.internal-link { color: var(--primary); border-bottom: 1px solid rgba(46,95,132,.35); padding-bottom: .05em; font-weight: 500; }
.internal-link:hover, .internal-link:focus-visible { color: var(--gold); border-bottom-color: var(--gold); }

@media (max-width: 760px) {
  .page-hero { padding: 2.25rem 1.1rem 2rem; }
  .cta-band  { padding: 2.25rem 1.1rem; }
  .section   { padding: 2.25rem 0; }
}
