/* ============================================================
   LA Designed — shared stylesheet
   ============================================================ */

:root {
  --red: #e22400;
  --red-dark: #c31f00;
  --navy: #0d1526;
  --navy-soft: #14213a;
  --ink: #1a1d24;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --cream: #faf9f6;
  --white: #ffffff;
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 21, 38, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0; line-height: 1.15; }
p { margin: 0; line-height: 1.65; color: var(--gray-700); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.center { text-align: center; }
.lede { font-size: 19px; color: var(--gray-500); max-width: 640px; }
.lede.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--red); color: var(--white); box-shadow: 0 8px 20px rgba(226,36,0,.28); }
.btn--primary:hover { background: var(--red-dark); }
.btn--outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: #1c2a49; }
.btn--full { width: 100%; justify-content: center; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1320px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--serif); font-weight: 700; font-size: 18px;
  flex: none;
}
.brand__logo {
  width: 38px; height: 38px; border-radius: 8px;
  object-fit: cover; flex: none; background: var(--navy);
}
.brand__word { font-family: var(--serif); font-weight: 700; font-size: 16px; line-height: 1.1; color: var(--ink); white-space: nowrap; }
.brand__word span { display: block; font-family: var(--sans); font-weight: 500; font-size: 9px; letter-spacing: .12em; color: var(--gray-500); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; align-items: center; gap: 25px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: var(--gray-700); transition: color .15s ease; white-space: nowrap; }
.nav__links a:hover, .nav__links a.is-active { color: var(--red); }
.nav__phone { font-weight: 600; color: var(--navy); font-size: 14.5px; white-space: nowrap; }
.nav__cta { display: none; }
.nav-toggle {
  display: none; background: none; border: none; padding: 8px; margin-left: 6px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

@media (min-width: 1200px) {
  .nav__cta { display: inline-flex; }
}
@media (max-width: 1199px) {
  .nav__links, .nav__phone-desktop { display: none; }
  .nav-toggle { display: block; }
  .site-header.is-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 12px 24px 20px; border-bottom: 1px solid var(--gray-200);
  }
  .site-header.is-open .nav__links a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
}

/* ---------------- Hero (service pages) ---------------- */
.hero {
  position: relative;
  color: var(--white);
  padding: 220px 0 110px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,16,28,.72) 0%, rgba(11,16,28,.55) 45%, rgba(11,16,28,.85) 100%);
}
.hero__inner { position: relative; max-width: 860px; }
.hero__crumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.hero__crumb a { color: rgba(255,255,255,.8); }
.hero__badge {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(226,36,0,.5); background: rgba(226,36,0,.12);
  color: #ff8a70; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { font-size: 52px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #ff6a45; }
.hero__lede { font-size: 18px; color: rgba(255,255,255,.85); max-width: 620px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Homepage hero is taller / centered */
.hero--home { padding: 240px 0 140px; text-align: center; }
.hero--home .hero__inner { max-width: 780px; margin: 0 auto; }
.hero--home .hero__badge { margin-left: auto; margin-right: auto; }
.hero--home h1 { font-size: 58px; }
.hero--home .hero__lede { margin-left: auto; margin-right: auto; }
.hero--home .hero__actions { justify-content: center; }
.hero__note { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.65); }

@media (max-width: 640px) {
  .hero { padding: 150px 0 70px; }
  .hero h1, .hero--home h1 { font-size: 34px; }
}

/* ---------------- What we build cards ---------------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.card {
  background: var(--gray-100); border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--gray-200);
}
.card__icon { font-size: 30px; margin-bottom: 18px; }
.card h3 { font-size: 24px; margin-bottom: 12px; }
.card p { margin-bottom: 18px; }
.card ul { margin-bottom: 20px; }
.card li { position: relative; padding-left: 18px; margin-bottom: 8px; color: var(--gray-700); font-size: 15px; }
.card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.card__link { font-weight: 600; color: var(--red); font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 760px) { .cards { grid-template-columns: 1fr; } }

.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cards--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards--3 { grid-template-columns: 1fr; } }

/* mini work grid used on service subpages */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.mini-grid .p-item { aspect-ratio: 4/3; }
@media (max-width: 760px) { .mini-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .mini-grid { grid-template-columns: 1fr; } }

.stat-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
@media (max-width: 700px) { .stat-row-3 { grid-template-columns: 1fr; } }

.area-chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; justify-content: center; }
.area-chip { padding: 10px 20px; border-radius: 999px; background: var(--white); border: 1px solid var(--gray-200); font-size: 14.5px; font-weight: 500; color: var(--gray-700); }

/* ---------------- Process ---------------- */
.process { background: var(--navy); color: var(--white); }
.process .eyebrow { color: #ff8a70; }
.process h2 { color: var(--white); }
.process .lede { color: rgba(255,255,255,.65); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin: 60px 0 48px; }
.process__step { text-align: center; }
.process__num {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-family: var(--serif); font-size: 20px; font-weight: 700; color: #ff8a70;
}
.process__step h3 { color: var(--white); font-size: 21px; margin-bottom: 12px; }
.process__step p { color: rgba(255,255,255,.68); font-size: 15px; }
.process__cta { text-align: center; }
.process__cta p { color: rgba(255,255,255,.55); font-size: 13.5px; margin-top: 14px; }
@media (max-width: 760px) { .process__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------------- Philosophy / stats ---------------- */
.philosophy { background: var(--ink); color: var(--white); }
.philosophy__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.philosophy h2 { font-size: 40px; color: var(--white); margin-bottom: 22px; }
.philosophy h2 em { font-style: normal; color: #ff8a70; }
.philosophy p { color: rgba(255,255,255,.68); margin-bottom: 18px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.stat__num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: #ff6a45; }
.stat__label { font-size: 13.5px; color: rgba(255,255,255,.6); margin-top: 6px; }
@media (max-width: 860px) { .philosophy__grid { grid-template-columns: 1fr; } }

/* ---------------- Why us ---------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.why-card { padding: 4px; }
.why-card__dot { width: 12px; height: 12px; background: var(--red); border-radius: 3px; margin-bottom: 18px; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------------- Testimonials ---------------- */
.testimonials { background: var(--ink); color: var(--white); }
.testimonials .eyebrow { color: #ff8a70; }
.testimonials h2 { color: var(--white); }
.stars { color: #ffb02e; letter-spacing: 2px; margin: 14px 0 6px; }
.rating-line { color: rgba(255,255,255,.6); font-size: 14.5px; margin-bottom: 50px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px; }
.t-card .stars { font-size: 14px; margin: 0 0 16px; }
.t-card p.quote { color: rgba(255,255,255,.85); font-size: 15px; margin-bottom: 22px; }
.t-person { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex: none;
}
.t-name { font-weight: 600; font-size: 14.5px; }
.t-meta { color: rgba(255,255,255,.5); font-size: 12.5px; }
.t-foot { text-align: center; margin-top: 56px; }
.t-foot p { color: rgba(255,255,255,.65); margin-bottom: 20px; font-size: 17px; }
.t-foot__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 860px) { .t-grid { grid-template-columns: 1fr; } }

/* ---------------- Portfolio ---------------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.p-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.p-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.p-item:hover img { transform: scale(1.05); }
.p-item__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0) 55%);
}
.p-item__tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ff8a70; margin-bottom: 6px; }
.p-item__title { color: var(--white); font-weight: 600; font-size: 16px; }
.p-item--lead { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.social-row { display: flex; justify-content: center; gap: 14px; margin-top: 48px; flex-wrap: wrap; }
.pill-link {
  padding: 10px 22px; border-radius: 999px; font-weight: 600; font-size: 14px;
  background: var(--gray-100); border: 1px solid var(--gray-200); color: var(--ink);
}
.pill-link:hover { background: var(--navy); color: var(--white); }
@media (max-width: 860px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .p-item--lead { grid-column: span 2; }
}
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } .p-item--lead { grid-column: span 1; } }

/* ---------------- Materials grid (pavers) ---------------- */
.materials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.material-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; }
.material-card h4 { font-size: 17px; margin-bottom: 8px; }
.material-card p { font-size: 14px; }
@media (max-width: 760px) { .materials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .materials-grid { grid-template-columns: 1fr; } }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: var(--white); border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 15.5px;
}
.faq-q__icon {
  width: 26px; height: 26px; border-radius: 50%; background: #fdece7; color: var(--red);
  display: flex; align-items: center; justify-content: center; flex: none; font-size: 16px; transition: transform .2s ease;
}
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a__inner { padding: 0 24px 20px; color: var(--gray-500); font-size: 14.5px; }
.faq-foot { text-align: center; margin-top: 40px; }
.faq-foot p { margin-bottom: 16px; }

/* ---------------- Contact ---------------- */
.contact { background: var(--gray-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.contact h2 { font-size: 38px; margin-bottom: 18px; }
.contact-grid > div:first-child p.lede { margin-bottom: 34px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.info-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #fdece7;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex: none;
}
.info-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-500); }
.info-value { font-weight: 600; font-size: 16px; color: var(--ink); }
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card > p { margin-bottom: 24px; font-size: 14.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--gray-200); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.field { margin-bottom: 18px; }
.field textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 13px; color: var(--gray-500); margin-top: 14px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---------------- Service area chips (locations page) ---------------- */
.county-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
.county-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.county-card__head { padding: 18px 24px; font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--white); }
.county-card__body { padding: 26px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.county-card__body span { font-size: 14.5px; color: var(--gray-700); position: relative; padding-left: 14px; }
.county-card__body span::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.county-card--duval .county-card__head { background: var(--navy); }
.county-card--stjohns .county-card__head { background: var(--red); }
.county-card--nassau .county-card__head { background: #1c2a49; }
.county-card--baker .county-card__head { background: #a81c00; }
@media (max-width: 760px) { .county-grid { grid-template-columns: 1fr; } .county-card__body { grid-template-columns: 1fr 1fr; } }

.cta-band { background: var(--navy); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); font-size: 30px; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.68); max-width: 520px; margin: 0 auto 30px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 56px; }
.footer-grid .brand__word { color: var(--white); }
.footer-grid .brand { margin-bottom: 18px; }
.footer-grid p { color: rgba(255,255,255,.55); font-size: 14.5px; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--sans); font-weight: 700; }
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.footer-social a:hover { background: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------------- Our Work gallery ---------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-pill {
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-700);
  cursor: pointer; transition: all .15s ease;
}
.filter-pill span { color: var(--gray-500); font-weight: 500; margin-left: 4px; }
.filter-pill:hover { border-color: var(--red); color: var(--red); }
.filter-pill.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.filter-pill.is-active span { color: rgba(255,255,255,.6); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 40px 0 8px; }
.video-embed { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); aspect-ratio: 9/16; }
.video-embed iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 1024px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ---------------- Build & Price studio ---------------- */
.studio-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.studio-step { margin-bottom: 56px; }
.studio-step__num { font-family: var(--serif); font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: .1em; margin-bottom: 6px; }
.studio-step h3 { font-size: 22px; margin-bottom: 20px; }

.type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.opt-card {
  background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius);
  padding: 20px; cursor: pointer; transition: all .15s ease; display: flex; flex-direction: column; gap: 4px; position: relative;
}
.opt-card:hover { border-color: var(--red); }
.opt-card.is-selected { border-color: var(--red); background: #fff5f2; }
.opt-card__icon { font-size: 26px; margin-bottom: 6px; }
.opt-card__label { font-weight: 700; font-size: 15.5px; color: var(--ink); }
.opt-card__desc { font-size: 13.5px; color: var(--gray-500); }
.opt-card__price { font-size: 13px; font-weight: 600; color: var(--red); margin-top: 6px; }

.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.addon-card { position: relative; padding-left: 44px; }
.addon-card input[type="checkbox"] { position: absolute; left: 18px; top: 20px; width: 18px; height: 18px; accent-color: var(--red); }

.size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.size-field label { display: flex; justify-content: space-between; font-weight: 600; font-size: 14.5px; margin-bottom: 10px; }
.size-field label span { color: var(--red); font-weight: 700; }
.size-field input[type="range"] { width: 100%; accent-color: var(--red); }
.size-field__range { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.footprint-line { margin-top: 22px; font-size: 15px; color: var(--gray-700); }
.footprint-line strong { color: var(--ink); }

.studio-summary { position: sticky; top: 96px; }
.summary-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 28px; }
.summary-card__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ff8a70; }
.summary-card__price { font-family: var(--serif); font-size: 32px; font-weight: 700; margin: 8px 0 10px; }
.summary-card__note { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.summary-card__breakdown { border-top: 1px solid rgba(255,255,255,.14); padding-top: 16px; margin-bottom: 22px; }
.breakdown-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; color: rgba(255,255,255,.75); }
.breakdown-row--total { border-top: 1px solid rgba(255,255,255,.14); margin-top: 8px; padding-top: 12px; font-weight: 700; color: var(--white); }
.summary-card__cta { width: 100%; text-align: center; margin-bottom: 12px; }
.summary-card__phone { display: block; text-align: center; font-size: 13.5px; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.summary-card__phone:hover { color: var(--white); }
.summary-card__disclaimer { font-size: 11.5px; color: rgba(255,255,255,.4); line-height: 1.5; }

.quote-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.config-summary { margin-top: 28px; background: var(--gray-100); border-radius: var(--radius); padding: 22px; }
.config-summary__row { font-size: 14px; padding: 6px 0; color: var(--gray-700); }
.config-summary__row strong { color: var(--ink); }
.form-card label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 14px; }
.form-card input, .form-card textarea {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--gray-200); font-family: var(--sans); font-size: 14.5px; background: var(--white);
}
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; }

@media (max-width: 960px) {
  .studio-layout { grid-template-columns: 1fr; }
  .studio-summary { position: static; margin-top: 8px; }
  .quote-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .type-grid, .option-grid, .size-grid { grid-template-columns: 1fr; }
}

/* ---------------- Misc ---------------- */
.breadcrumb-space { height: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--white); padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
::selection { background: var(--red); color: #fff; }
