/* Jones Electric GA - polished static site */
:root {
  --navy: #101827;
  --navy-2: #182235;
  --ink: #101827;
  --muted: #667085;
  --line: #e6e9ef;
  --bg: #f6f7fb;
  --white: #ffffff;
  --gold: #ffb703;
  --orange: #f97316;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(16, 24, 39, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  padding: 0 clamp(18px, 5vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(230, 233, 239, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
  font-size: 1.35rem;
}

.brand-text strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
  color: #344054;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--orange);
}

.header-button {
  min-width: max-content;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(16, 24, 39, 0.95) 0%, rgba(16, 24, 39, 0.86) 48%, rgba(16, 24, 39, 0.35) 100%),
    url("images/kitchen-pendant-lighting.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 260px;
  background: var(--white);
  transform: rotate(-3deg);
  transform-origin: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  min-height: 720px;
  padding: 96px 0 160px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #d8dee9;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 23px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #101827;
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.3);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #eef2f7;
  font-weight: 800;
  font-size: 0.92rem;
}

.hero-panel {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.hero-panel p,
.hero-panel li {
  color: #e5e7eb;
}

.hero-panel ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro-strip {
  position: relative;
  z-index: 4;
  margin-top: -60px;
  padding: 0;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.4fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.intro-strip div {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong,
.intro-strip a,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.intro-strip a,
.intro-strip span {
  margin-top: 4px;
  font-weight: 900;
  text-decoration: none;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.dark-card h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading p,
.dark-card p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.06);
}

.card.featured {
  border-color: rgba(249, 115, 22, 0.28);
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: #fff7ed;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.dark-card {
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255, 183, 3, 0.35), transparent 35%),
    var(--navy);
  color: var(--white);
}

.dark-card p {
  color: #cbd5e1;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-list div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.06);
}

.detail-list strong {
  display: block;
  font-size: 1.1rem;
}

.detail-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 315px;
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  background: var(--navy);
  box-shadow: 0 18px 46px rgba(16, 24, 39, 0.14);
}

.work-card.large {
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.work-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(16, 24, 39, 0.78);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.work-card strong,
.work-card span {
  display: block;
}

.work-card span {
  margin-top: 3px;
  color: #d1d5db;
  font-size: 0.93rem;
}

.reviews-section {
  width: 100%;
  max-width: none;
  padding: 88px max(18px, calc((100% - var(--max))/2));
  background: var(--bg);
}

.review-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.review-card {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.06);
}

.stars {
  color: var(--orange);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 16px 0;
  color: #344054;
  font-size: 1.04rem;
}

.review-card cite {
  font-style: normal;
  font-weight: 900;
  color: var(--ink);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-card,
.quote-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.06);
}

.contact-card {
  margin-top: 24px;
}

.contact-card p {
  margin: 10px 0;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form.compact {
  max-width: 760px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

small {
  color: var(--muted);
  font-weight: 500;
}

.photo-upload-group {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px dashed #d0d5dd;
  border-radius: 16px;
  background: #f9fafb;
}

.field-title {
  font-weight: 900;
}

.photo-upload-group label {
  font-weight: 800;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 700;
}

.checkbox-row input {
  width: auto;
  margin-top: 6px;
}

.hidden-field {
  display: none;
}

.review-form-section {
  padding-top: 10px;
}


.verse-section {
  padding-top: 34px;
  padding-bottom: 18px;
}

.verse-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.28), transparent 35%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: var(--shadow);
}

.verse-card::before {
  content: "“";
  position: absolute;
  top: -54px;
  right: 24px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 13rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.verse-mark {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verse-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 900;
}

@media (max-width: 560px) {
  .verse-section {
    padding-top: 24px;
  }

  .verse-card {
    border-radius: 22px;
  }
}

.footer {
  padding: 34px 18px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
}

.footer p {
  margin: 6px 0;
  color: #d1d5db;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 76px 0 130px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .work-card.large {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: auto;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .header-button {
    display: none;
  }

  .brand-text small {
    display: none;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
    padding: 62px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-auto-rows: 265px;
  }

  .work-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px 14px;
  }
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.28), transparent 34%),
    var(--navy);
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(30px, 6vw, 54px);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card .brand-icon {
  margin: 0 auto 18px;
}

.thank-you-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.thank-you-card p {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.thank-you-card a:not(.btn) {
  font-weight: 900;
}
