/* Johnson & Co. Builders — Global Stylesheet */
:root {
  --ink:        #16181a;
  --charcoal:   #22262b;
  --charcoal-2: #2c3138;
  --gold:       #d19a3c;
  --gold-soft:  #e0b466;
  --gold-dark:  #b57f28;
  --cream:      #f6f4ef;
  --cream-2:    #efe9df;
  --line:       #e2dccf;
  --text:       #23262a;
  --text-soft:  #5c626a;
  --text-invert:#f3f1ec;
  --text-invert-soft: #b7b3ac;
  --white:      #ffffff;
  --maxw: 1180px;
  --radius: 4px;
  --shadow: 0 18px 40px -18px rgba(0,0,0,.35);
  --shadow-soft: 0 10px 30px -14px rgba(0,0,0,.25);
  --ff-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-body); color: var(--text); background: var(--cream); line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--dark { background: var(--charcoal); color: var(--text-invert); }
.section--ink  { background: var(--ink); color: var(--text-invert); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.12; color: inherit; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -0.3px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.eyebrow { font-family: var(--ff-body); font-weight: 600; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 18px; display: inline-block; }
.section--dark .eyebrow, .section--ink .eyebrow, .hero .eyebrow { color: var(--gold-soft); }
.lead { font-size: 1.18rem; color: var(--text-soft); }
.section--dark .lead, .section--ink .lead { color: var(--text-invert-soft); }
.section-head { margin-bottom: 56px; }
.section-head .lead { margin-top: 14px; }
.rule { width: 64px; height: 3px; background: var(--gold); border: 0; margin: 20px 0; }
.center .rule { margin-left: auto; margin-right: auto; }
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-body); font-weight: 600; font-size: .95rem; letter-spacing: .02em; padding: 15px 30px; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--text-invert); border-color: rgba(255,255,255,.55); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: rgba(0,0,0,.25); }
.btn--ghost-dark:hover { border-color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.center .btn-row { justify-content: center; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(22,24,26,.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1; color: var(--text-invert); }
.brand__name { font-family: var(--ff-head); font-weight: 700; font-size: 1.32rem; letter-spacing: .3px; }
.brand__name span { color: var(--gold); }
.brand__tag { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-invert-soft); margin-top: 4px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { color: var(--text-invert); font-weight: 500; font-size: .95rem; position: relative; padding: 6px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold); transition: width .22s ease; }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--gold-soft); }
.nav__cta { display: flex; align-items: center; gap: 20px; }
.nav__phone { color: var(--text-invert); font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 8px; }
.nav__phone:hover { color: var(--gold-soft); }
.nav__phone svg { width: 16px; height: 16px; fill: var(--gold); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--text-invert); margin: 5px 0; transition: .25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero { position: relative; color: var(--text-invert); min-height: 88vh; display: flex; align-items: center; background-size: cover; background-position: center; }
.hero--page { min-height: 52vh; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,18,20,.55) 0%, rgba(16,18,20,.72) 100%); }
.hero__inner { position: relative; z-index: 2; max-width: 760px; padding: 60px 0; }
.hero h1 { margin-bottom: 8px; }
.hero__tag { font-family: var(--ff-head); font-style: italic; font-size: 1.35rem; color: var(--gold-soft); margin: 6px 0 22px; }
.hero p.lead { color: #e9e6e0; margin-bottom: 32px; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-soft); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.card__icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(209,154,60,.14); margin-bottom: 20px; }
.card__icon svg { width: 26px; height: 26px; stroke: var(--gold-dark); fill: none; stroke-width: 1.6; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-soft); font-size: .98rem; }
.value { padding: 4px 0; }
.value__num { font-family: var(--ff-head); font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.value h3 { margin-bottom: 8px; }
.value p { color: var(--text-invert-soft); font-size: .96rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__big { font-family: var(--ff-head); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat__label { margin-top: 8px; font-size: .92rem; color: var(--text-invert-soft); letter-spacing: .02em; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.split--reverse .split__media { order: 2; }
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 0; }
.svc + .svc { margin-top: 72px; }
.svc__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 380px; object-fit: cover; }
.svc--reverse .svc__media { order: 2; }
.svc ul.checks { margin-top: 18px; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 30px; color: var(--text-soft); }
.checks li::before { content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 9px; border-left: 2px solid var(--gold-dark); border-bottom: 2px solid var(--gold-dark); transform: rotate(-45deg); }
.cta-band { position: relative; color: var(--text-invert); background-size: cover; background-position: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: rgba(16,18,20,.8); }
.cta-band .container { position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.info-list { display: grid; gap: 26px; margin-top: 8px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon { flex: none; width: 44px; height: 44px; border-radius: 50%; background: rgba(209,154,60,.15); display: flex; align-items: center; justify-content: center; }
.info-item__icon svg { width: 20px; height: 20px; stroke: var(--gold-dark); fill: none; stroke-width: 1.7; }
.info-item h4 { margin-bottom: 3px; font-family: var(--ff-body); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }
.info-item a, .info-item p { font-size: 1.05rem; color: var(--text); }
.info-item a:hover { color: var(--gold-dark); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--text); }
.field label .req { color: var(--gold-dark); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--ff-body); font-size: 1rem; color: var(--text); padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); transition: border-color .18s ease, box-shadow .18s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(209,154,60,.18); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .9rem; color: var(--text-soft); margin-top: 14px; }
.form-status { margin-top: 16px; font-weight: 600; display: none; }
.form-status.is-success { display: block; color: #2e7d4f; }
.form-status.is-error { display: block; color: #c0392b; }
.site-footer { background: var(--ink); color: var(--text-invert-soft); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand .brand__name { font-size: 1.4rem; }
.site-footer h4 { color: var(--text-invert); font-family: var(--ff-body); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-contact p { margin-bottom: 10px; font-size: .96rem; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-badge { display: inline-block; margin-top: 18px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft); border: 1px solid rgba(209,154,60,.4); border-radius: 40px; padding: 6px 16px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } .split, .svc, .contact-grid { grid-template-columns: 1fr; gap: 32px; } .svc--reverse .svc__media, .split--reverse .split__media { order: 0; } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 720px) { .section { padding: 68px 0; } .nav__links { position: fixed; inset: 76px 0 auto 0; background: var(--ink); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid rgba(255,255,255,.1); transform: translateY(-140%); transition: transform .28s ease; box-shadow: var(--shadow); } .nav__links.is-open { transform: translateY(0); } .nav__links a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); } .nav__links a::after { display: none; } .nav__phone span { display: none; } .nav__toggle { display: block; } .form-row { grid-template-columns: 1fr; gap: 0; } .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } .hero { min-height: 82vh; } }
