/* ===== Ace's Car Wash ===== */
:root {
  --midnight: #0d1b2e;
  --navy: #16293f;
  --navy2: #1f3a56;
  --navy3: #2d5177;
  --cyan: #24c3e8;
  --cyan-dark: #129cbd;
  --cyan-light: #7de0f5;
  --foam: #d9f4fb;
  --chrome: #b9c4d0;
  --chrome-dark: #8e9bab;
  --ace: #d23b45;
  --ace-dark: #ab2b34;
  --gold: #e0b33a;
  --ink: #16202c;
  --ink-soft: #5a6878;
  --ink-faint: #93a0ae;
  --mist: #eef4f8;
  --mist2: #dfe8f0;
  --mist3: #c6d4e0;
  --cloud: #f7fafc;
  --white: #ffffff;
  --bg: #f7fafc;
  --bg-dark: #0a1524;
  --card: #ffffff;
  --border: #e1e9f0;
  --line: #c6d3de;
  --shadow: 0 12px 32px rgba(13, 27, 46, 0.10);
  --shadow-lg: 0 22px 56px rgba(13, 27, 46, 0.24);
  --radius: 12px;
  --radius-sm: 7px;
  --maxw: 1180px;
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.75; -webkit-font-smoothing: antialiased; }
a { color: var(--cyan-dark); text-decoration: none; transition: color .15s; }
a:hover { color: var(--navy2); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 840px; margin: 0 auto; padding: 0 26px; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.1; text-transform: uppercase; letter-spacing: .01em; color: var(--midnight); font-weight: 700; }
section { scroll-margin-top: 110px; }

/* Utility */
.eyebrow { font-family: var(--display); font-size: 0.88rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan-dark); font-weight: 600; display: inline-block; }
.eyebrow.ace { color: var(--ace); }
.eyebrow.light { color: var(--cyan-light); }

/* Topbar */
.topbar { background: var(--midnight); color: #93a7bd; font-size: 0.85rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--cyan-light); font-weight: 700; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom: 3px solid var(--cyan); box-shadow: 0 2px 14px rgba(13,27,46,.07); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 14px; }
.brand { font-family: var(--display); font-weight: 700; font-size: 1.34rem; color: var(--midnight); text-transform: uppercase; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .logo { width: 50px; height: 50px; border-radius: 8px; background: linear-gradient(140deg, var(--cyan), var(--navy)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.4rem; position: relative; }
.brand .logo::after { content: "\2660"; position: absolute; bottom: 3px; right: 5px; font-size: 0.6rem; color: var(--cyan-light); }
.brand .b-text { line-height: 1.0; }
.brand .b-text b { color: var(--cyan-dark); }
.brand .b-text small { display: block; font-family: var(--sans); font-size: 0.53rem; letter-spacing: .18em; color: var(--ink-faint); font-weight: 700; margin-top: 3px; }
.nav-links { display: flex; gap: 1px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink); font-family: var(--display); text-transform: uppercase; font-size: 0.86rem; letter-spacing: .03em; padding: 9px 13px; font-weight: 500; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; background: var(--cyan); transform: scaleX(0); transition: transform .18s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--cyan-dark); }
.nav-links .cta { background: var(--ace); color: #fff; border-radius: 4px; padding: 10px 20px; margin-left: 8px; font-weight: 700; }
.nav-links .cta::after { display: none; }
.nav-links .cta:hover { background: var(--ace-dark); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: var(--midnight); font-size: 1.7rem; cursor: pointer; }

/* Buttons */
.btn { font-family: var(--display); font-size: 0.95rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 14px 32px; border-radius: 4px; border: 2px solid transparent; cursor: pointer; display: inline-block; transition: all .16s; text-align: center; }
.btn-cyan { background: var(--cyan); color: var(--midnight); }
.btn-cyan:hover { background: var(--cyan-dark); color: #fff; transform: translateY(-2px); }
.btn-ace { background: var(--ace); color: #fff; }
.btn-ace:hover { background: var(--ace-dark); color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--midnight); color: #fff; }
.btn-navy:hover { background: var(--navy2); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--midnight); }
.btn-white:hover { background: var(--mist); color: var(--midnight); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--midnight); border-color: var(--line); }
.btn-line:hover { background: var(--midnight); color: #fff; border-color: var(--midnight); }
.btn-line-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-line-light:hover { background: #fff; color: var(--midnight); }
.btn-lg { font-size: 1.05rem; padding: 16px 40px; }
.btn-sm { font-size: 0.78rem; padding: 9px 18px; }
.btn-block { width: 100%; display: block; }

/* Hero */
.hero { position: relative; background: var(--bg-dark); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 78% 22%, rgba(36,195,232,.30), transparent 46%),
  radial-gradient(circle at 12% 86%, rgba(210,59,69,.20), transparent 48%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: linear-gradient(90deg, var(--cyan), var(--ace), var(--cyan)); }
.hero-inner { position: relative; z-index: 1; padding: 92px 0 98px; }
.hero-inner .max { max-width: 750px; }
.hero .tag { display: inline-flex; align-items: center; gap: 10px; background: rgba(36,195,232,.12); border: 1px solid rgba(36,195,232,.42); color: var(--cyan-light); font-family: var(--display); letter-spacing: .12em; text-transform: uppercase; font-size: 0.86rem; padding: 8px 20px; border-radius: 4px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: 0.98; margin-bottom: 22px; color: #fff; }
.hero h1 .cy { color: var(--cyan-light); }
.hero h1 .ac { color: var(--ace); }
.hero .lede { font-size: 1.22rem; color: #93a7bd; max-width: 560px; margin-bottom: 32px; }
.hero .cta-row { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; }
.hero .call-now { font-family: var(--display); font-size: 1.3rem; color: #fff; display: inline-flex; align-items: center; gap: 10px; }
.hero .call-now a { color: var(--cyan-light); }

/* Marquee */
.strip { background: var(--cyan); color: var(--midnight); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.strip .track { display: inline-block; animation: marquee 30s linear infinite; }
.strip .track span { margin: 0 26px; font-family: var(--display); font-size: 1rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 600; }
.strip .track span.dot { color: #fff; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Quickbar */
.quickbar { background: var(--midnight); color: #fff; }
.quickbar .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.quickbar .q { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-right: 1px solid rgba(255,255,255,.09); }
.quickbar .q:last-child { border-right: 0; }
.quickbar .q .ico { font-size: 1.7rem; }
.quickbar .q h4 { font-size: 1rem; color: #fff; margin-bottom: 1px; }
.quickbar .q p { font-size: 0.85rem; color: #93a7bd; }
.quickbar .q p .fill { background: rgba(36,195,232,.2); border-bottom: 1px dashed var(--cyan-light); border-radius: 3px; padding: 0 5px; color: #fff; }

/* Page head */
.page-head { background: var(--bg-dark); color: #fff; padding: 62px 0 52px; position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 84% 38%, rgba(36,195,232,.24), transparent 46%); }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, var(--cyan), var(--ace), var(--cyan)); }
.page-head .container { position: relative; z-index: 1; }
.page-head .breadcrumb { font-family: var(--display); font-size: 0.86rem; letter-spacing: .08em; text-transform: uppercase; color: #728aa3; margin-bottom: 14px; }
.page-head .breadcrumb a { color: #93a7bd; }
.page-head h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); color: #fff; max-width: 900px; }
.page-head h1 .cy { color: var(--cyan-light); }
.page-head h1 .ac { color: var(--ace); }
.page-head .sub { margin-top: 16px; font-size: 1.14rem; color: #93a7bd; max-width: 660px; }

/* Sections */
section.block { padding: 80px 0; }
section.block.mist { background: var(--mist); }
section.block.foam { background: var(--foam); }
section.block.dark { background: var(--bg-dark); color: #93a7bd; }
section.block.navy { background: var(--midnight); color: #93a7bd; }
.block.dark h1, .block.dark h2, .block.dark h3, .block.navy h1, .block.navy h2, .block.navy h3 { color: #fff; }
.block.dark .eyebrow, .block.navy .eyebrow { color: var(--cyan-light); }

/* Section head */
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.sec-head h2 .cy { color: var(--cyan-dark); }
.sec-head h2 .ac { color: var(--ace); }
.sec-head p { color: var(--ink-soft); font-size: 1.06rem; margin-top: 14px; }
.block.dark .sec-head p, .block.navy .sec-head p { color: #93a7bd; }
.block.dark .sec-head h2 .cy, .block.navy .sec-head h2 .cy { color: var(--cyan-light); }
.sec-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; border-bottom: 3px solid var(--midnight); padding-bottom: 12px; flex-wrap: wrap; gap: 12px; }
.sec-bar h2 { font-size: 1.8rem; }
.sec-bar h2 .cy { color: var(--cyan-dark); }

/* Grids */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service cards */
.svc-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; border-top: 4px solid var(--cyan); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card .s-top { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; color: #fff; }
.svc-card .s-top.t1 { background: linear-gradient(150deg, #8fd8ea, #1f3a56); }
.svc-card .s-top.t2 { background: linear-gradient(150deg, #e8a3a8, #ab2b34); }
.svc-card .s-top.t3 { background: linear-gradient(150deg, #c3d3e0, #5a6878); }
.svc-card .s-top.t4 { background: linear-gradient(150deg, #f0d99a, #b8891a); }
.svc-card .body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.svc-card h3 a { color: var(--midnight); }
.svc-card h3 a:hover { color: var(--cyan-dark); }
.svc-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.svc-card .s-foot { margin-top: 16px; }

/* Pricing / package cards */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.pkg { background: var(--card); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .16s, box-shadow .16s, border-color .16s; position: relative; }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.pkg.featured { border-color: var(--ace); }
.pkg .p-badge { position: absolute; top: 0; right: 0; background: var(--ace); color: #fff; font-family: var(--display); font-size: 0.68rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 0 0 0 8px; }
.pkg .p-head { padding: 28px 24px 20px; text-align: center; background: var(--mist); border-bottom: 1px solid var(--border); }
.pkg.featured .p-head { background: var(--foam); }
.pkg .p-name { font-family: var(--display); font-size: 1.35rem; text-transform: uppercase; color: var(--midnight); margin-bottom: 8px; }
.pkg .p-price { font-family: var(--display); font-size: 2.4rem; color: var(--cyan-dark); line-height: 1; }
.pkg.featured .p-price { color: var(--ace); }
.pkg .p-price .fill { background: var(--mist2); border-bottom: 2px dashed var(--cyan); border-radius: 4px; padding: 0 8px; }
.pkg .p-unit { font-size: 0.8rem; color: var(--ink-faint); margin-top: 4px; }
.pkg .p-body { padding: 24px; flex: 1; }
.pkg ul { list-style: none; }
.pkg ul li { padding-left: 28px; position: relative; margin-bottom: 10px; font-size: 0.9rem; color: var(--ink-soft); }
.pkg ul li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 19px; height: 19px; background: var(--cyan); color: #fff; border-radius: 50%; font-size: 0.68rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.pkg ul li.no { color: var(--ink-faint); }
.pkg ul li.no::before { content: "\2013"; background: var(--mist2); color: var(--ink-faint); }
.pkg ul li .fill { background: var(--mist2); border-bottom: 1px dashed var(--cyan); border-radius: 3px; padding: 0 5px; }
.pkg .p-foot { padding: 0 24px 24px; }

/* Feature icons */
.feat-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat-ico { text-align: center; }
.feat-ico .ico { width: 78px; height: 78px; margin: 0 auto 16px; border-radius: 50%; background: var(--card); display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow); }
.block.dark .feat-ico .ico, .block.navy .feat-ico .ico { background: var(--navy2); }
.feat-ico h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feat-ico p { color: var(--ink-soft); font-size: 0.92rem; }
.block.dark .feat-ico p, .block.navy .feat-ico p { color: #93a7bd; }

/* Feature split */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.feat .f-visual { border-radius: var(--radius); min-height: 420px; display: flex; align-items: center; justify-content: center; font-size: 8rem; box-shadow: var(--shadow); background: linear-gradient(150deg, var(--mist2), var(--mist3)); color: var(--midnight); }
.feat .f-visual.cyan { background: linear-gradient(150deg, var(--cyan), var(--navy)); color: #fff; }
.feat .f-visual.ace { background: linear-gradient(150deg, #e8a3a8, var(--ace-dark)); color: #fff; }
.feat.flip .f-visual { order: 2; }
.feat h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 18px; }
.feat h2 .cy { color: var(--cyan-dark); }
.feat h2 .ac { color: var(--ace); }
.feat p { color: var(--ink-soft); margin-bottom: 16px; }
.feat .lede { font-size: 1.2rem; color: var(--ink); line-height: 1.5; margin-bottom: 18px; font-weight: 600; }
.feat .fill { background: var(--mist2); border-bottom: 1px dashed var(--cyan); border-radius: 3px; padding: 0 5px; color: var(--ink); font-weight: 600; }
.dot-list { list-style: none; margin: 8px 0 24px; }
.dot-list li { padding-left: 34px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.dot-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--cyan); color: #fff; border-radius: 4px; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.block.dark .feat p, .block.navy .feat p { color: #93a7bd; }
.block.dark .feat .lede, .block.navy .feat .lede { color: #fff; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step .num { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%; background: var(--cyan); color: var(--midnight); font-family: var(--display); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }
.block.dark .step p, .block.navy .step p { color: #93a7bd; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .n { font-family: var(--display); font-size: 2.9rem; color: var(--cyan-light); font-weight: 700; line-height: 1; }
.stat .l { font-family: var(--display); font-size: 0.88rem; letter-spacing: .08em; text-transform: uppercase; color: #728aa3; margin-top: 6px; }

/* Add-ons */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 22px 0; }
.addon { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--cyan); border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: var(--shadow); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.addon h4 { font-size: 1rem; margin-bottom: 3px; color: var(--midnight); }
.addon p { font-size: 0.88rem; color: var(--ink-soft); }
.addon .a-price { font-family: var(--display); font-size: 1.2rem; color: var(--cyan-dark); white-space: nowrap; }
.addon .a-price .fill { background: var(--mist2); border-bottom: 1px dashed var(--cyan); border-radius: 3px; padding: 0 6px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--card); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.review .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--ink-soft); font-style: italic; margin-bottom: 14px; }
.review .who { font-family: var(--display); font-weight: 600; font-size: 0.98rem; color: var(--midnight); text-transform: uppercase; }
.review .r-meta { font-size: 0.8rem; color: var(--ink-faint); margin-top: 3px; text-transform: none; font-family: var(--sans); font-weight: 400; }
.review .r-meta .fill { background: var(--mist2); border-bottom: 1px dashed var(--cyan); border-radius: 3px; padding: 0 5px; }

/* FAQ accordion */
.faq-item { background: var(--card); border-radius: var(--radius-sm); box-shadow: var(--shadow); margin-bottom: 12px; overflow: hidden; border-left: 4px solid var(--cyan); }
.faq-head { padding: 19px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.faq-head h3 { font-size: 1.08rem; }
.faq-head .tog { font-family: var(--display); font-size: 1.5rem; color: var(--cyan-dark); flex-shrink: 0; transition: transform .18s; }
.faq-item.open .tog { transform: rotate(45deg); }
.faq-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-body { padding: 0 24px 20px; max-height: 800px; }
.faq-body p { color: var(--ink-soft); font-size: 0.96rem; }
.faq-body .fill { background: var(--mist2); border-bottom: 1px dashed var(--cyan); border-radius: 3px; padding: 0 5px; font-weight: 600; color: var(--ink); }

/* Notice boxes */
.notice-box { background: #fdf7e8; border: 1px solid #f0e2b8; border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0; font-size: 0.93rem; color: #7a5c15; line-height: 1.7; }
.notice-box strong { color: #5c440a; }
.claim-box { background: #fbeeef; border: 1px solid #f2cdd0; border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0; font-size: 0.93rem; color: #8a323a; line-height: 1.7; }
.claim-box strong { color: #6a222a; }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; }
.price-table th, .price-table td { padding: 13px 16px; border: 1px solid var(--line); font-size: 0.95rem; text-align: left; }
.price-table th { background: var(--midnight); color: #fff; font-family: var(--display); text-transform: uppercase; font-size: 0.84rem; letter-spacing: .04em; font-weight: 600; }
.price-table td .fill { background: var(--mist2); border-bottom: 1px dashed var(--cyan); border-radius: 2px; padding: 0 5px; }
.price-table tr:nth-child(even) td { background: var(--cloud); }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-split .c-info { background: var(--bg-dark); color: #93a7bd; padding: 52px 46px; }
.contact-split .c-info h2 { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.contact-split .c-info h2 .cy { color: var(--cyan-light); }
.contact-split .c-info p { color: #93a7bd; margin-bottom: 26px; }
.info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-row .ico { font-size: 1.05rem; width: 44px; height: 44px; flex-shrink: 0; background: rgba(36,195,232,.16); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.info-row .k { font-family: var(--display); font-size: 0.78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan-light); }
.info-row .v { color: #fff; font-size: 1rem; }
.info-row .v .fill { background: rgba(36,195,232,.18); border-bottom: 1px dashed var(--cyan-light); border-radius: 3px; padding: 0 6px; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 0.95rem; color: #93a7bd; }
.hours-list li .fill { background: rgba(36,195,232,.18); border-bottom: 1px dashed var(--cyan-light); border-radius: 3px; padding: 0 6px; }
.hours-list li.today { color: var(--cyan-light); font-weight: 700; }
.contact-split .c-form { background: var(--card); padding: 52px 46px; }
.form-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--display); font-size: 0.82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--cloud); font-family: var(--sans); font-size: 1rem; color: var(--ink); outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--cyan); }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 10px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; display: none; background: var(--foam); color: var(--navy); border: 1px solid var(--cyan); font-size: 0.95rem; }
.form-msg.ok { display: block; }

/* Map */
.map-box { aspect-ratio: 16/9; border-radius: var(--radius); background: linear-gradient(135deg, var(--mist2), var(--mist3)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink-soft); box-shadow: var(--shadow); border: 1px dashed var(--line); }
.map-box .pin { font-size: 2.8rem; margin-bottom: 8px; }

/* Prose */
.prose { font-size: 1.05rem; line-height: 1.85; }
.prose p { color: #3b4653; margin-bottom: 16px; }
.prose h2 { font-size: 1.8rem; margin: 32px 0 12px; }
.prose h2 .cy { color: var(--cyan-dark); }
.prose h2 .ac { color: var(--ace); }
.prose h3 { font-size: 1.26rem; margin: 26px 0 10px; color: var(--navy2); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; color: #3b4653; }
.prose li { margin-bottom: 9px; }
.prose .fill { background: var(--mist2); border-bottom: 1px dashed var(--cyan); padding: 0 5px; border-radius: 2px; font-weight: 600; }
.prose .note { background: var(--mist); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin: 22px 0; font-size: 0.96rem; }
.check-list { list-style: none; padding: 0 !important; }
.check-list li { padding-left: 34px; position: relative; margin-bottom: 12px; color: #3b4653; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; background: var(--cyan); color: #fff; border-radius: 4px; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* CTA band */
.cta-band { padding: 84px 0; text-align: center; background: linear-gradient(140deg, var(--cyan-dark), var(--midnight)); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: "\1F697"; position: absolute; font-size: 13rem; opacity: .12; top: -6px; left: 5%; }
.cta-band::after { content: "\2728"; position: absolute; font-size: 10rem; opacity: .12; bottom: -8px; right: 6%; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; opacity: .97; font-size: 1.12rem; }
.cta-band .phone { font-family: var(--display); font-size: 2.1rem; margin-top: 18px; }
.cta-band .phone a { color: #fff; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #728aa3; padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid #1e3149; }
.footer-brand .fb-name { font-family: var(--display); font-size: 1.4rem; color: #fff; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand .fb-name .logo { width: 40px; height: 40px; border-radius: 8px; background: linear-gradient(140deg, var(--cyan), var(--navy)); }
.footer-brand p { font-size: 0.92rem; max-width: 300px; }
.footer-col h4 { font-family: var(--display); color: #fff; font-size: 0.92rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #728aa3; font-size: 0.9rem; }
.footer-col a:hover { color: var(--cyan-light); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--display); font-size: 0.84rem; letter-spacing: .03em; color: #55708b; }
.footer-bottom a { color: #728aa3; }
.footer-legal { font-size: 0.78rem; color: #55708b; margin-top: 12px; line-height: 1.6; max-width: 780px; }

/* Responsive */
@media (max-width: 1020px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feat-icons, .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .review-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .quickbar .container { grid-template-columns: 1fr; }
  .quickbar .q { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .quickbar .q:last-child { border-bottom: 0; }
  .addon-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .feat, .feat.flip { grid-template-columns: 1fr; gap: 34px; }
  .feat .f-visual, .feat.flip .f-visual { order: 0; min-height: 240px; font-size: 5rem; }
  .contact-split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 82px; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 3px solid var(--cyan); padding: 14px 26px; gap: 2px; display: none; align-items: stretch; }
  .nav-links.show { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links .cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .price-table th, .price-table td { padding: 10px 12px; font-size: 0.88rem; }
}
@media (max-width: 470px) {
  .grid-4, .feat-icons, .steps, .stat-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-split .c-info, .contact-split .c-form { padding: 36px 26px; }
  .form-card { padding: 28px 22px; }
}
