:root {
  --turquoise-950: #063e43;
  --turquoise-800: #08717a;
  --turquoise-600: #0aa7ad;
  --turquoise-400: #52d4d0;
  --turquoise-100: #dff9f7;
  --pearl: #fffefb;
  --pearl-blue: #effcfb;
  --gold: #c99a36;
  --gold-light: #f1d994;
  --ink: #103638;
  --muted: #597577;
  --line: rgba(6, 113, 122, .16);
  --shadow: 0 24px 70px rgba(5, 80, 86, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--pearl);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(22px, 5vw, 78px);
  background: rgba(255, 254, 251, .9);
  border-bottom: 1px solid rgba(8, 113, 122, .08);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 1.52rem; letter-spacing: -.035em; }
.brand-name { display: inline-flex; align-items: baseline; gap: .28em; }
.brand b { color: #111; font-weight: 800; }
.brand em { color: #ffd84d; font-family: "Playfair Display", serif; font-style: italic; font-weight: 700; }
.brand-mark { position: relative; width: 54px; height: 54px; flex: 0 0 auto; display: grid; place-items: center; isolation: isolate; }
.brand-mark::before { content: ""; position: absolute; inset: 8px; z-index: -1; background: radial-gradient(circle, rgba(105,227,222,.72), rgba(255,216,77,.25) 42%, transparent 72%); filter: blur(8px); }
.brand-mark::after { content: "✦"; position: absolute; top: -2px; right: -3px; color: white; font-size: .9rem; text-shadow: 0 0 7px white, 0 0 13px #69e3de; }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: contain; filter: saturate(1.18) contrast(1.06) drop-shadow(0 5px 8px rgba(0,0,0,.42)) drop-shadow(0 0 10px rgba(105,227,222,.55)); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; text-decoration: none; }
.nav a:not(.nav-cta):hover { color: var(--turquoise-800); }
.nav-cta { padding: 11px 18px; color: white; background: var(--turquoise-800); border-radius: 999px; }
.menu-button { display: none; border: 1px solid var(--line); background: white; color: var(--ink); padding: 8px 13px; border-radius: 999px; font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  padding: 94px clamp(22px, 7vw, 108px) 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  background:
    radial-gradient(circle at 72% 20%, rgba(255,255,255,.68) 0 5%, transparent 5.2%),
    linear-gradient(135deg, #f7ffff 0%, #d9f8f5 45%, #78ddd7 100%);
}
.hero::after { content: ""; position: absolute; left: -4%; bottom: -120px; width: 108%; height: 180px; background: var(--pearl); border-radius: 50% 50% 0 0 / 40% 40% 0 0; }
.hero-copy, .hero-card { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 14px; color: var(--turquoise-800); font-size: .79rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Playfair Display", serif; line-height: 1.02; letter-spacing: -.045em; }
h1 { max-width: 740px; font-size: clamp(3.7rem, 7vw, 6.6rem); color: var(--turquoise-950); }
h1 span { color: var(--turquoise-800); font-style: italic; }
.business-headline { max-width: 790px; color: #0e1111; font-size: clamp(4.15rem, 8.4vw, 7.8rem); }
.business-headline span { color: #ffd84d; }
.hero-text { max-width: 610px; margin: 25px 0 30px; color: #315d60; font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 22px; border: 0; border-radius: 999px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--turquoise-800), var(--turquoise-600)); box-shadow: 0 14px 32px rgba(8, 113, 122, .24); }
.button-secondary { color: var(--turquoise-950); background: rgba(255,255,255,.65); border: 1px solid rgba(6,62,67,.14); }
.trust-list { display: flex; flex-wrap: wrap; gap: 20px; margin: 28px 0 0; padding: 0; list-style: none; color: #315d60; font-size: .9rem; font-weight: 700; }
.trust-list li::before { content: "✦"; margin-right: 7px; color: var(--gold); }

.hero-card { min-height: 440px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.9); border-radius: 38px 38px 92px 38px; background: white; box-shadow: var(--shadow); }
.hero-card::before { content: ""; position: absolute; inset: 16px; z-index: 1; border: 1px solid rgba(255,255,255,.68); border-radius: 27px 27px 78px 27px; pointer-events: none; }
.shine-badge { position: relative; z-index: 2; width: 245px; height: 245px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; padding: 35px; text-align: center; color: var(--turquoise-950); background: radial-gradient(circle at 35% 20%, #fff 0, #f7ffff 38%, #c9f4f0 100%); border: 1px solid white; border-radius: 50%; box-shadow: 0 22px 50px rgba(8,113,122,.15); }
.shine-badge > span { color: var(--gold); font-size: 2rem; }
.shine-badge strong { font-family: "Playfair Display", serif; font-size: 1.65rem; line-height: 1.08; }
.shine-badge small { color: var(--muted); line-height: 1.4; }
.service-note { position: absolute; right: -20px; bottom: 38px; min-width: 220px; padding: 16px 19px; display: flex; flex-direction: column; background: var(--pearl); border-left: 3px solid var(--gold); border-radius: 12px; box-shadow: var(--shadow); }
.service-note span { color: var(--muted); font-size: .78rem; }
.service-note b { color: var(--turquoise-800); }
.cleaner-duo { position: relative; z-index: 2; width: min(86%, 430px); height: auto; filter: drop-shadow(0 20px 24px rgba(0,0,0,.38)); pointer-events: none; }
.sparkle { position: absolute; z-index: 1; color: #fff7c8; text-shadow: 0 0 6px white, 0 0 16px rgba(105,227,222,.9), 0 0 28px rgba(255,216,77,.65); }
.sparkle-one { top: 16%; left: 48%; font-size: 2rem; }
.sparkle-two { bottom: 26%; right: 3%; font-size: 2.7rem; }

.section { padding: 96px clamp(22px, 7vw, 108px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 38px; }
.section-heading > p { max-width: 510px; margin: 0; color: var(--muted); }
h2 { color: var(--turquoise-950); font-size: clamp(2.45rem, 4.5vw, 4.2rem); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-grid.five-services { grid-template-columns: repeat(3, 1fr); }
.service-grid.home-services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { position: relative; min-height: 330px; padding: 28px; display: flex; flex-direction: column; background: #f7fffe; border: 1px solid var(--line); border-radius: 22px; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card.featured { background: var(--turquoise-950); color: white; }
.service-number { position: absolute; top: 23px; right: 25px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.service-icon { width: 72px; height: 72px; display: grid; place-items: center; background: white; border: 1px solid var(--gold-light); border-radius: 22px; overflow: hidden; }
.service-art { width: 100%; height: 100%; display: block; object-fit: cover; }
.service-card h3 { margin: 48px 0 10px; font-family: "Playfair Display", serif; font-size: 1.55rem; line-height: 1.12; }
.service-card p { margin: 0 0 24px; color: var(--muted); }
.service-card.featured p { color: #cae2e2; }
.service-card a { margin-top: auto; color: var(--turquoise-800); font-weight: 800; text-decoration: none; }
.service-card.featured a { color: var(--gold-light); }
.service-card a span { float: right; }

.about { display: grid; grid-template-columns: 1.08fr .92fr; gap: 20px; background: var(--pearl-blue); }
.about-panel, .steps { padding: clamp(32px, 5vw, 64px); border-radius: 28px; }
.about-panel { position: relative; overflow: hidden; color: white; background: var(--turquoise-950); }
.about-panel::after { content: ""; position: absolute; width: 180px; height: 180px; right: -50px; top: -45px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: inset 0 0 35px rgba(255,255,255,.1); }
.about-panel .eyebrow { color: var(--gold-light); }
.about-panel h2 { color: white; }
.about-panel > p:not(.eyebrow) { max-width: 650px; color: #cde3e3; }
.values { margin-top: 40px; display: grid; gap: 8px; }
.values div { padding: 13px 0; display: flex; gap: 18px; border-top: 1px solid rgba(255,255,255,.13); }
.values b { color: var(--gold-light); }
.steps { background: white; border: 1px solid var(--line); }
.steps ol { margin: 34px 0 0; padding: 0; list-style: none; }
.steps li { padding: 21px 0; display: grid; grid-template-columns: 48px 1fr; gap: 17px; border-top: 1px solid var(--line); }
.steps li > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--turquoise-800); background: var(--turquoise-100); border: 1px solid var(--gold-light); border-radius: 50%; font-weight: 800; }
.steps b { font-size: 1.05rem; }
.steps p { margin: 3px 0 0; color: var(--muted); }

.information-section { background: var(--pearl); }
.information-card { padding: clamp(32px, 6vw, 72px); background: linear-gradient(145deg, #f7ffff, #e0f8f6); border: 1px solid var(--line); border-radius: 28px; }
.terms-copy { max-width: 900px; margin-top: 26px; color: var(--muted); }
.terms-copy p { margin: 0 0 14px; }
.terms-copy strong { color: var(--turquoise-800); }
.terms-download-panel { max-width: 900px; margin: 24px 0 28px; padding: 22px; border: 1px solid rgba(255,255,255,.72); border-radius: 18px; background: rgba(255,255,255,.08); box-shadow: 0 16px 38px rgba(0,0,0,.14); }
.legal-draft-note { margin: 0 0 18px; color: #d4eaea; line-height: 1.7; }
.legal-draft-note strong { color: #ffd35a; }
.terms-download { display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.terms-page { background: #effcfb; }
.terms-page .terms-page-hero { min-height: 390px; padding-top: 58px; padding-bottom: 58px; display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 7vw, 90px); background: radial-gradient(circle at 78% 22%, rgba(255,255,255,.52), transparent 25%), linear-gradient(135deg, #dffaf7 0%, #9aebe5 55%, #4dc6c6 100%); }
.terms-page .terms-page-hero::after { display: none; }
.terms-page .terms-page-hero h1 { position: relative; z-index: 2; margin: 0; color: #073f43; text-shadow: 0 3px 20px rgba(255,255,255,.45); }
.contract-animation { position: relative; z-index: 2; width: min(32vw, 250px); min-width: 190px; filter: drop-shadow(0 20px 24px rgba(6,62,67,.22)); animation: contract-float 3.6s ease-in-out infinite; }
.contract-animation svg { display: block; width: 100%; height: auto; overflow: visible; }
.contract-shadow { fill: rgba(6,62,67,.18); transform: translate(7px, 8px); }
.contract-paper { fill: #fff; stroke: #0b777e; stroke-width: 4; stroke-linejoin: round; }
.contract-fold { fill: #d9f8f5; stroke: #0b777e; stroke-width: 4; stroke-linejoin: round; }
.contract-line { fill: none; stroke: #74aaa9; stroke-width: 6; stroke-linecap: round; }
.contract-seal { fill: #f3c94b; stroke: #fff; stroke-width: 5; }
.contract-check { fill: none; stroke: #073f43; stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 42; animation: contract-check 2.8s ease-in-out infinite; }
.pdf-label { fill: #08717a; font: 800 18px "DM Sans", sans-serif; letter-spacing: 2px; }
.contract-sparkle { fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round; transform-box: fill-box; transform-origin: center; animation: contract-sparkle 2s ease-in-out infinite; }
.sparkle-b { animation-delay: .75s; }
.terms-page .information-section { background: linear-gradient(180deg, #effcfb 0%, #d8f5f2 100%); }
.terms-page .information-card { background: linear-gradient(145deg, #ffffff, #e8fbf9); border-color: rgba(8,113,122,.2); box-shadow: 0 24px 60px rgba(5,80,86,.12); }
.terms-page .terms-copy { color: #315d60; }
.terms-page .terms-download-panel { background: linear-gradient(145deg, #0d555a, #08717a); border-color: rgba(255,255,255,.82); }
@keyframes contract-float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes contract-check { 0%, 18% { stroke-dashoffset: 42; opacity: .3; } 42%, 84% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 42; opacity: .3; } }
@keyframes contract-sparkle { 0%, 100% { opacity: .35; transform: scale(.7) rotate(0); } 50% { opacity: 1; transform: scale(1.2) rotate(90deg); } }
@media (max-width: 680px) {
  .terms-page .terms-page-hero { min-height: auto; padding-top: 46px; padding-bottom: 46px; flex-direction: column; text-align: center; }
  .terms-page .terms-page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.25rem); }
  .contract-animation { width: min(58vw, 230px); min-width: 170px; }
  .terms-page .terms-download { width: 100%; }
}
.contact-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(35px, 7vw, 90px); background: var(--turquoise-950); color: white; }
.contact-section h2 { color: white; }
.contact-copy > p:not(.eyebrow) { color: #cde3e3; }
.contact-section .eyebrow { color: var(--gold-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-item { min-height: 135px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; }
.contact-item span { color: #a9cccc; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-item b { color: white; font-size: 1.05rem; overflow-wrap: anywhere; }
.contact-phone-link, .contact-email-link { color: inherit; text-decoration: none; }
.contact-phone-link:hover b, .contact-email-link:hover b { color: var(--gold-light); }

.quote-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(38px, 7vw, 100px); background: linear-gradient(145deg, var(--pearl) 0%, #f5ffff 100%); }
.quote-intro { padding-top: 20px; }
.quote-intro > p:not(.eyebrow) { color: var(--muted); }
.quote-details { margin-top: clamp(76px, 9vw, 132px); }
.quote-detail { padding: 17px 0; display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.quote-detail span { color: var(--muted); }
.quote-detail b { color: var(--turquoise-800); text-align: right; }
.quote-form { padding: clamp(25px, 4vw, 46px); display: grid; gap: 18px; background: white; border: 1px solid rgba(201,154,54,.28); border-radius: 26px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; color: var(--turquoise-950); font-size: .88rem; font-weight: 800; }
input, select, textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fbffff; border: 1px solid #bcdedd; border-radius: 10px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--turquoise-600); box-shadow: 0 0 0 3px rgba(10,167,173,.12); }
textarea { resize: vertical; }
.submit-button { width: 100%; margin-top: 4px; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: .8rem; text-align: center; }
.form-message { min-height: 1.5em; color: var(--turquoise-800); font-weight: 800; text-align: center; }
.conditional-fields { padding: 20px; background: var(--pearl-blue); border: 1px solid var(--line); border-radius: 15px; }
.conditional-fields[hidden] { display: none; }
.field-group-title { margin: 0 0 14px; color: var(--turquoise-800); font-size: .85rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cleaning-level { margin: 0; padding: 0; border: 0; }
.cleaning-level legend { margin-bottom: 8px; color: var(--turquoise-950); font-size: .88rem; font-weight: 800; }
.cleaning-level legend span { color: var(--gold); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-card { min-height: 88px; padding: 15px; display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 12px; background: #fbffff; border: 1px solid #bcdedd; border-radius: 14px; cursor: pointer; }
.choice-card:has(input:checked) { background: var(--turquoise-100); border-color: var(--turquoise-600); box-shadow: 0 0 0 3px rgba(10,167,173,.1); }
.choice-card input { width: 19px; height: 19px; accent-color: var(--turquoise-800); }
.choice-card span { display: grid; gap: 2px; }
.choice-card b { font-size: .95rem; }
.choice-card small { color: var(--muted); font-size: .78rem; font-weight: 500; line-height: 1.35; }
.upload-zone { min-height: 130px; padding: 22px; display: flex; grid-template-columns: auto 1fr; align-items: center; gap: 16px; text-align: left; background: linear-gradient(145deg, #fbffff, var(--turquoise-100)); border: 1px dashed var(--turquoise-600); border-radius: 16px; cursor: pointer; }
.upload-zone:hover { border-style: solid; }
.upload-zone input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.upload-zone > span:not(.upload-icon) { display: grid; gap: 4px; }
.upload-zone small { color: var(--muted); font-size: .8rem; font-weight: 500; line-height: 1.4; }
.upload-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; color: white; background: var(--turquoise-800); border-radius: 50%; font-size: 1.45rem; }
.file-preview { display: grid; gap: 9px; }
.file-chip { padding: 10px 12px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 12px; color: var(--ink); background: var(--pearl-blue); border: 1px solid var(--line); border-radius: 12px; }
.file-chip img, .file-chip video { width: 48px; height: 42px; object-fit: cover; border-radius: 8px; background: var(--turquoise-950); }
.file-chip b { overflow: hidden; font-size: .84rem; text-overflow: ellipsis; white-space: nowrap; }
.file-chip small { color: var(--muted); font-size: .75rem; }

.editor-trigger { position: fixed; right: 20px; bottom: 20px; z-index: 30; display: flex; align-items: center; gap: 8px; padding: 11px 16px; color: white; background: var(--turquoise-950); border: 1px solid var(--gold); border-radius: 999px; box-shadow: 0 12px 34px rgba(6,62,67,.25); font: 700 .9rem "DM Sans", sans-serif; cursor: pointer; }
.content-editor { width: min(760px, calc(100% - 28px)); max-height: 88vh; padding: 0; border: 0; border-radius: 24px; box-shadow: 0 28px 90px rgba(4,42,46,.35); }
.content-editor::backdrop { background: rgba(4,42,46,.55); backdrop-filter: blur(4px); }
.editor-shell { padding: clamp(24px, 5vw, 45px); }
.editor-header { display: flex; align-items: start; justify-content: space-between; gap: 24px; }
.editor-header h2 { font-size: clamp(2rem, 5vw, 3.1rem); }
.editor-close { width: 42px; height: 42px; flex: 0 0 auto; color: var(--ink); background: var(--turquoise-100); border: 0; border-radius: 50%; font-size: 1.7rem; cursor: pointer; }
.editor-help { margin: 18px 0 24px; color: var(--muted); }
.editor-fields { display: grid; gap: 16px; }
.editor-actions { position: sticky; bottom: -1px; margin: 25px -5px -5px; padding: 15px 5px 5px; display: flex; justify-content: flex-end; gap: 10px; background: white; }

footer { padding: 45px clamp(22px, 7vw, 108px); display: grid; grid-template-columns: 1fr auto; gap: 10px 30px; align-items: center; color: #cce5e5; background: #052f33; }
.footer-brand b { color: white; }
footer p { margin: 0; text-align: right; }
.footer-small { grid-column: 2; color: #88acad; font-size: .82rem; }
.admin-footer-link { color: #a8d8d6; text-decoration: underline; text-underline-offset: 3px; }
.submit-button:disabled { opacity: .65; cursor: wait; }
.form-message { min-height: 1.5rem; font-weight: 800; }
.form-message.success { padding: 13px 15px; color: #0c6038; background: #dff7e9; border: 1px solid #8ad1a7; border-radius: 9px; }
.form-message.error { padding: 13px 15px; color: #8a2727; background: #fff0f0; border: 1px solid #e9aaaa; border-radius: 9px; }
.terms-copy { white-space: pre-line; }

.page-hero { position: relative; overflow: hidden; padding: 90px clamp(22px, 7vw, 108px) 78px; background: linear-gradient(135deg, #f7ffff 0%, #d9f8f5 58%, #8be2dc 100%); }
.page-hero::after { content: ""; position: absolute; width: 210px; height: 210px; right: 8%; top: 18%; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; box-shadow: inset 0 0 45px rgba(255,255,255,.45); }
.page-hero h1 { max-width: 920px; font-size: clamp(3rem, 6vw, 5.5rem); }
.page-hero p:not(.eyebrow) { position: relative; z-index: 2; max-width: 680px; color: #315d60; font-size: 1.08rem; }
.quote-page-hero { min-height: 430px; padding-right: clamp(330px, 38vw, 560px); }
.quote-page-hero h1, .quote-page-hero p:not(.eyebrow) { position: relative; z-index: 2; }
.quote-hero-visual { position: absolute; top: 50%; right: clamp(32px, 7vw, 108px); z-index: 2; width: clamp(240px, 27vw, 380px); aspect-ratio: 1145 / 1374; animation: quote-float 4.2s ease-in-out infinite; filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .42)); }
.quote-hero-visual img { width: 100%; height: 100%; display: block; object-fit: contain; }
.quote-hero-visual span { position: absolute; top: 48%; left: 53%; width: 58%; color: #061112; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.28rem, 2.35vw, 2.05rem); font-weight: 800; letter-spacing: .08em; line-height: 1; text-align: center; text-shadow: 0 1px 0 white; transform: translate(-50%, -50%) rotate(1.5deg); animation: quote-glow 2.2s ease-in-out infinite; }
@keyframes quote-float { 0%, 100% { transform: translateY(-50%) rotate(-1.5deg); } 50% { transform: translateY(calc(-50% - 12px)) rotate(1deg); } }
@keyframes quote-glow { 0%, 100% { color: #061112; text-shadow: 0 1px 0 white; } 50% { color: #9b6800; text-shadow: 0 0 12px rgba(255, 216, 77, .7); } }
.contact-page-hero { min-height: 420px; padding-right: clamp(330px, 38vw, 560px); display: flex; align-items: center; }
.contact-page-hero h1 { position: relative; z-index: 2; margin: 0; }
.contact-phone-visual { position: absolute; top: 50%; right: clamp(38px, 8vw, 118px); z-index: 2; width: clamp(220px, 24vw, 320px); aspect-ratio: 1230 / 1278; transform-origin: 50% 55%; animation: phone-ring 2.8s ease-in-out infinite; filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .48)); }
.contact-phone-visual img { width: 100%; height: 100%; display: block; object-fit: contain; }
@keyframes phone-ring { 0%, 72%, 100% { transform: translateY(-50%) rotate(-2deg); } 77% { transform: translateY(-50%) rotate(4deg); } 82% { transform: translateY(-50%) rotate(-5deg); } 87% { transform: translateY(-50%) rotate(3deg); } 92% { transform: translateY(-50%) rotate(-2deg); } }
.page-main { min-height: 65vh; }
.page-main .quote-section, .page-main .contact-section, .page-main .about, .page-main .information-section { scroll-margin-top: 75px; }
.nav a.active { color: var(--turquoise-800); }
.nav a.nav-cta.active { color: white; box-shadow: 0 0 0 3px rgba(201,154,54,.26); }
.return-link { display: inline-flex; margin-top: 24px; color: var(--turquoise-800); font-weight: 800; text-decoration: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 74px; }
  .hero-copy { max-width: 760px; }
  .hero-card { width: min(600px, 90%); min-height: 380px; justify-self: center; }
  .service-grid, .service-grid.five-services, .service-grid.home-services { grid-template-columns: repeat(2, 1fr); }
  .about, .quote-section, .contact-section { grid-template-columns: 1fr; }
  .quote-details { margin-top: 48px; }
}

@media (max-width: 680px) {
  .site-header { min-height: 68px; }
  .menu-button { display: block; }
  .nav { position: absolute; top: 68px; left: 0; right: 0; padding: 18px 22px 24px; display: none; align-items: stretch; flex-direction: column; gap: 13px; background: var(--pearl); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(6,62,67,.1); }
  .nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; padding-top: 60px; gap: 55px; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .brand { font-size: 1.28rem; }
  .brand-mark { width: 46px; height: 46px; }
  .hero-card { width: 100%; min-height: 330px; }
  .service-note { right: -5px; bottom: 15px; min-width: 190px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .service-grid, .service-grid.five-services, .service-grid.home-services, .field-row, .contact-grid, .choice-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .about-panel, .steps { padding: 30px 24px; }
  footer { grid-template-columns: 1fr; }
  footer p { text-align: left; }
  .footer-small { grid-column: 1; }
  .editor-trigger span { display: none; }
  .editor-trigger { width: 48px; height: 48px; justify-content: center; padding: 0; }
  .editor-actions { flex-direction: column-reverse; }
  .quote-page-hero { padding-right: clamp(22px, 7vw, 108px); padding-bottom: 48px; }
  .quote-hero-visual { position: relative; top: auto; right: auto; width: min(78vw, 315px); margin: 38px auto 0; transform: none; animation-name: quote-float-mobile; }
  .quote-hero-visual span { font-size: clamp(1.18rem, 5.5vw, 1.72rem); }
  .contact-page-hero { min-height: auto; padding-right: clamp(22px, 7vw, 108px); display: block; text-align: center; }
  .contact-phone-visual { position: relative; top: auto; right: auto; width: min(68vw, 270px); margin: 34px auto 0; animation-name: phone-ring-mobile; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@keyframes quote-float-mobile { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes phone-ring-mobile { 0%, 72%, 100% { transform: rotate(-2deg); } 77% { transform: rotate(4deg); } 82% { transform: rotate(-5deg); } 87% { transform: rotate(3deg); } 92% { transform: rotate(-2deg); } }

/* Black crystal theme */
:root { --muted: #a9c2c3; --line: rgba(82, 212, 208, .18); }
body { color: #eefafa; background: #050708; }
.site-header { background: rgba(5, 7, 8, .94); border-bottom-color: rgba(82, 212, 208, .18); }
.brand-name { padding: 5px 12px 6px; background: #fff; border: 1px solid rgba(201, 154, 54, .68); border-radius: 7px; box-shadow: 0 3px 12px rgba(0, 0, 0, .2); }
.brand-name em { color: #9a6900; text-shadow: none; }
.nav a { color: #efffff; }
.nav a:not(.nav-cta):hover, .nav a.active { color: #69e3de; }
.menu-button { color: #efffff; background: #101718; border-color: rgba(82, 212, 208, .28); }
.hero { background: radial-gradient(circle at 76% 18%, rgba(82, 212, 208, .12), transparent 25%), linear-gradient(135deg, #030505 0%, #071112 56%, #09383b 100%); }
.hero::after { background: #050708; }
.business-headline, h1, h2 { color: #f6ffff; }
.business-headline span { color: #ffd84d; text-shadow: 0 0 24px rgba(255, 216, 77, .16); }
.eyebrow, .field-group-title, .quote-detail b, .form-message, .terms-copy strong { color: #69e3de; }
.hero-text, .trust-list { color: #b7d0d1; }
.button-secondary { color: #f4ffff; background: #10191a; border-color: rgba(82, 212, 208, .32); }
.service-card { color: #eefafa; background: #0c1314; border-color: rgba(82, 212, 208, .18); }
.service-card.featured { background: #073639; }
.service-card h3, .steps b { color: #f6ffff; }
.service-card p, .section-heading > p, .steps p, .terms-copy, .quote-intro > p:not(.eyebrow), .form-note, .file-chip small { color: #a9c2c3; }
.service-card a, .return-link { color: #69e3de; }
.about { background: #080d0e; }
.about-panel { background: linear-gradient(145deg, #071a1c, #08363a); }
.steps { background: #0d1415; border-color: rgba(82, 212, 208, .18); }
.steps li, .values div, .quote-detail { border-color: rgba(82, 212, 208, .17); }
.information-section { background: #050708; }
.information-card { background: linear-gradient(145deg, #0d1516, #071d1f); border-color: rgba(82, 212, 208, .2); }
.contact-section { background: linear-gradient(145deg, #020404, #071d1f); }
.contact-item { background: rgba(82, 212, 208, .07); border-color: rgba(82, 212, 208, .18); }
.quote-section { background: linear-gradient(145deg, #050708, #081415); }
.quote-form { background: #0d1415; border: 2px solid rgba(255, 255, 255, .82); box-shadow: 0 0 0 5px rgba(82, 212, 208, .08), 0 24px 70px rgba(0, 0, 0, .52); }
label, .cleaning-level legend { color: #efffff; }
.field-label { display: inline-flex; align-items: baseline; gap: 5px; }
.required-mark { color: #ffd84d; font-size: 1.08em; text-shadow: 0 0 10px rgba(255, 216, 77, .35); }
input, select, textarea { color: #f3ffff; background: #101b1c; border-color: #31595b; color-scheme: dark; }
.quote-form input:required:not([type="radio"]), .quote-form select:required { color: #071112; background: #fff; border-color: #fff; color-scheme: light; }
.quote-form select:required option { color: #071112; background: #fff; }
input::placeholder, textarea::placeholder { color: #87a4a5; }
select option { color: #f3ffff; background: #101b1c; }
.conditional-fields { background: #081112; border-color: rgba(82, 212, 208, .18); }
.choice-card { color: #efffff; background: #101b1c; border-color: #31595b; }
.quote-form .choice-card { color: #071112; background: #fff; border-color: #fff; }
.quote-form .choice-card small { color: #405f61; }
.choice-card:has(input:checked) { background: #0b3436; border-color: #52d4d0; }
.quote-form .choice-card:has(input:checked) { color: #071112; background: #d8fbf8; border-color: #52d4d0; }
.choice-card small, .upload-zone small { color: #a9c2c3; }
.upload-zone { background: linear-gradient(145deg, #101b1c, #0a2729); }
.file-chip { color: #efffff; background: #0a1d1f; border-color: rgba(82, 212, 208, .2); }
.content-editor, .editor-shell { color: #efffff; background: #0b1112; }
.editor-actions { background: #0b1112; }
.editor-close { color: #efffff; background: #123638; }
.page-hero { background: radial-gradient(circle at 86% 20%, rgba(201, 154, 54, .12), transparent 20%), linear-gradient(135deg, #030505 0%, #071112 58%, #09383b 100%); }
.page-hero p:not(.eyebrow) { color: #b7d0d1; }
.contact-page { background: #0b2527; }
.contact-page .site-header { background: rgba(10, 34, 36, .96); border-bottom-color: rgba(255, 255, 255, .18); }
.contact-page .contact-page-hero { background: radial-gradient(circle at 78% 24%, rgba(255, 255, 255, .18), transparent 22%), linear-gradient(135deg, #0c2d30 0%, #176166 58%, #289092 100%); }
.contact-page .contact-page-hero::after { display: none; }
.contact-page .contact-section { background: linear-gradient(145deg, #0c2d30, #155b60); }
.contact-page .contact-copy > p:not(.eyebrow) { color: #e2f6f5; }
.contact-page .contact-item { background: linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.09)); border-color: rgba(255,255,255,.28); box-shadow: 0 16px 34px rgba(0,0,0,.18); }
.contact-page .contact-item span { color: #d5eeee; }
.contact-page .contact-item b[data-edit="businessEmail"] { font-size: clamp(.78rem, 1.2vw, 1rem); letter-spacing: -.025em; white-space: nowrap; overflow-wrap: normal; }
.contact-page footer { background: #0a2022; }
.services-page { background: #0b2527; }
.services-page .site-header { background: rgba(10, 34, 36, .96); border-bottom-color: rgba(255, 255, 255, .18); }
.services-page .services-page-hero { min-height: 430px; padding-right: clamp(340px, 39vw, 580px); display: flex; align-items: center; background: radial-gradient(circle at 78% 25%, rgba(255,255,255,.2), transparent 23%), linear-gradient(135deg, #0c3033 0%, #17686c 58%, #2a9999 100%); }
.services-page .services-page-hero::after { display: none; }
.services-page .services-page-hero h1 { position: relative; z-index: 2; margin: 0; }
.services-hero-visual { position: absolute; top: 50%; right: clamp(42px, 8vw, 120px); z-index: 2; width: clamp(235px, 25vw, 345px); aspect-ratio: 1; animation: services-float 4s ease-in-out infinite; filter: drop-shadow(0 24px 30px rgba(0,0,0,.34)); }
.services-hero-visual img { width: 100%; height: 100%; display: block; object-fit: contain; }
@keyframes services-float { 0%, 100% { transform: translateY(-50%) rotate(-2deg); } 50% { transform: translateY(calc(-50% - 13px)) rotate(2deg); } }
.services-page .services { background: linear-gradient(145deg, #0d3033, #176166); }
.services-page .service-card { background: linear-gradient(155deg, #17484c, #0d3033); border-color: rgba(255,255,255,.24); box-shadow: 0 18px 38px rgba(0,0,0,.22); }
.services-page .service-card.featured { background: linear-gradient(155deg, #24777a, #15575b); }
.services-page .service-card p { color: #d7eded; }
.services-page .service-icon { position: relative; width: 84px; height: 84px; padding: 6px; overflow: visible; background: linear-gradient(145deg, #fff, #e7fafa); border: 2px solid #efd783; border-radius: 24px; box-shadow: 0 0 0 4px rgba(255,255,255,.08), 0 12px 24px rgba(0,0,0,.28); }
.services-page .service-icon::after { content: "✦"; position: absolute; top: -13px; right: -11px; color: #fff; font-size: 1.25rem; text-shadow: 0 0 7px white, 0 0 14px #f0d578; animation: icon-sparkle 2s ease-in-out infinite; }
.services-page .service-art { border-radius: 17px; filter: saturate(1.16) contrast(1.04) drop-shadow(0 5px 7px rgba(4,49,52,.18)); }
.services-page .service-card h3 { margin-top: 40px; }
.services-page footer { background: #0a2022; }
@keyframes icon-sparkle { 0%, 100% { opacity: .55; transform: scale(.82) rotate(0); } 50% { opacity: 1; transform: scale(1.12) rotate(16deg); } }

@media (max-width: 680px) {
  .services-page .services-page-hero { min-height: auto; padding-right: clamp(22px, 7vw, 108px); padding-bottom: 48px; display: block; text-align: center; }
  .services-hero-visual { position: relative; top: auto; right: auto; width: min(72vw, 290px); margin: 34px auto 0; animation-name: services-float-mobile; }
}

@keyframes services-float-mobile { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-11px) rotate(2deg); } }
footer { color: #cce5e5; background: #010202; border-top: 1px solid rgba(82, 212, 208, .16); }
.footer-brand b { color: #111; }
.cleaner-showcase { position: relative; overflow: visible; padding: 0 28px 26px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 20px; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.cleaner-showcase::before, .cleaner-showcase::after { display: none; }
.showcase-kicker { position: static; z-index: 3; width: max-content; max-width: 100%; padding: 0 8px; color: #ffd84d; font-family: "Lobster Two", Georgia, serif; font-size: clamp(1.65rem, 2.55vw, 2.25rem); font-weight: 700; letter-spacing: .025em; line-height: 1.25; text-align: center; text-shadow: 0 2px 2px rgba(0,0,0,.85), 0 0 14px rgba(255,216,77,.22); }

@media (max-width: 680px) {
  .nav { background: #080d0e; border-bottom-color: rgba(82, 212, 208, .2); box-shadow: 0 18px 30px rgba(0, 0, 0, .45); }
  .cleaner-showcase { gap: 16px; }
  .showcase-kicker { font-size: clamp(1.4rem, 6vw, 1.7rem); }
}

/* Brighter, stacked About Us page */
.about-page { color: #103638; background: #0b2527; }
.about-page .site-header { background: rgba(10, 34, 36, .96); border-bottom-color: rgba(255, 255, 255, .18); }
.about-page .nav a:not(.nav-cta) { color: #e8f8f7; }
.about-page .nav a.active { color: #69e3de; }
.about-page-hero { padding-top: 58px; padding-bottom: 58px; background: radial-gradient(circle at 78% 24%, rgba(255, 255, 255, .15), transparent 22%), linear-gradient(135deg, #0c2d30 0%, #176166 58%, #288f92 100%); }
.about-page-hero::after { display: none; }
.about-hero-title { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: clamp(22px, 5vw, 72px); }
.about-page-hero h1 { flex: 1 1 auto; margin: 0; color: #ffffff; line-height: 1.04; text-shadow: 0 4px 20px rgba(0, 0, 0, .2); }
.about-hero-title img { width: clamp(150px, 20vw, 250px); height: clamp(150px, 20vw, 250px); flex: 0 0 auto; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(8, 113, 122, .18)); }
.about-page .about { grid-template-columns: minmax(0, 1fr); gap: 30px; background: linear-gradient(145deg, #0d3033 0%, #155b60 100%); }
.about-page .about-panel,
.about-page .steps { width: min(100%, 1000px); margin: 0 auto; color: #103638; background: #ffffff; border: 1px solid rgba(8, 113, 122, .2); box-shadow: 0 18px 46px rgba(5, 80, 86, .1); }
.about-page .about-panel::after { border-color: rgba(8, 113, 122, .16); box-shadow: inset 0 0 35px rgba(82, 212, 208, .12); }
.about-page .about-panel .eyebrow,
.about-page .steps .eyebrow { color: #08717a; }
.about-page .about-panel h2,
.about-page .steps b { color: #063e43; }
.about-page .about-panel > p:not(.eyebrow),
.about-page .steps p { color: #315d60; font-size: 1rem; line-height: 1.7; }
.about-page .values div,
.about-page .steps li { border-color: rgba(8, 113, 122, .16); }
.about-page .values b { color: #9b6f12; }
.about-page .values span { color: #103638; }
.about-page .steps li > span { color: #063e43; background: #dff9f7; }
.about-page .return-link { color: #08717a; }
.about-page footer { background: #0a292b; }

@media (max-width: 680px) {
  .about-page .nav { background: #0a2224; border-bottom-color: rgba(255, 255, 255, .18); box-shadow: 0 18px 30px rgba(0, 0, 0, .28); }
  .about-page-hero { padding-top: 42px; padding-bottom: 42px; }
  .about-hero-title { gap: 14px; }
  .about-page-hero h1 { font-size: clamp(2.45rem, 11vw, 3.6rem); }
  .about-hero-title img { width: clamp(105px, 29vw, 145px); height: clamp(105px, 29vw, 145px); }
}

/* Brighter Home page to match the completed tabs */
.home-page { background: #0b2527; }
.home-page .site-header { background: rgba(10, 34, 36, .96); border-bottom-color: rgba(255, 255, 255, .18); }
.home-page .hero { background: radial-gradient(circle at 76% 18%, rgba(255, 255, 255, .16), transparent 25%), linear-gradient(135deg, #0c2d30 0%, #176166 58%, #288f92 100%); }
.home-page .hero::after { background: #0b2527; }
.home-page .hero-text,
.home-page .trust-list { color: #e0f4f3; }
.home-page .services { background: linear-gradient(145deg, #0b2527, #124b4f); }
.home-page .service-card { background: linear-gradient(155deg, #17484c, #0e3437); border-color: rgba(255, 255, 255, .22); box-shadow: 0 18px 38px rgba(0, 0, 0, .2); }
.home-page .service-card.featured { background: linear-gradient(155deg, #24777a, #15575b); }
.home-page .service-card p,
.home-page .section-heading > p { color: #d7eded; }
.home-page .about { background: linear-gradient(145deg, #0d3033, #155b60); }
.home-page .about-panel { background: linear-gradient(145deg, #0b3d41, #17686c); }
.home-page .steps { background: #123f43; border-color: rgba(255, 255, 255, .2); }
.home-page .steps p { color: #d4eaea; }
.home-page .information-section { background: #0c292c; }
.home-page .information-card { background: linear-gradient(145deg, #17484c, #10565b); border-color: rgba(255, 255, 255, .2); }
.home-page .terms-copy { color: #d4eaea; }
.home-page .contact-section { background: linear-gradient(145deg, #0c3033, #176166); }
.home-page .quote-section { background: linear-gradient(145deg, #0b2527, #12474b); }

@media (max-width: 680px) {
  .home-page .nav { background: #0a2224; border-bottom-color: rgba(255, 255, 255, .18); box-shadow: 0 18px 30px rgba(0, 0, 0, .28); }
}

/* Phone layout safeguards */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, iframe { max-width: 100%; }
.hero-copy, .hero-card, .section-heading > *, .service-card, .about-panel, .steps, .quote-intro, .quote-form, .contact-copy, .contact-grid, .information-card { min-width: 0; }

@media (max-width: 680px) {
  .site-header { width: 100%; padding: 10px 14px; gap: 10px; }
  .brand { min-width: 0; gap: 7px; font-size: clamp(.96rem, 4.4vw, 1.18rem); }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { min-width: 0; padding: 4px 7px 5px; gap: .18em; white-space: nowrap; }
  .menu-button { flex: 0 0 auto; padding: 8px 11px; }
  .nav { top: 61px; max-height: calc(100vh - 61px); overflow-y: auto; padding: 16px; }
  .nav a { width: 100%; min-height: 44px; padding: 10px 12px; display: flex; align-items: center; border-radius: 9px; }
  .nav-cta { justify-content: center; }

  .hero, .section, .page-hero, footer { width: 100%; padding-left: 16px; padding-right: 16px; }
  .hero { padding-top: 44px; padding-bottom: 62px; gap: 36px; }
  .hero::after { left: -10%; width: 120%; }
  h1, .business-headline { max-width: 100%; font-size: clamp(2.65rem, 14vw, 4rem); overflow-wrap: anywhere; }
  h2 { font-size: clamp(2rem, 10.5vw, 3rem); }
  .hero-text { margin: 18px 0 22px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .trust-list { gap: 10px 16px; margin-top: 22px; }
  .hero-card { min-height: 285px; padding-left: 10px; padding-right: 10px; border-radius: 26px 26px 58px 26px; }
  .cleaner-showcase { padding: 0 8px 18px; }
  .cleaner-duo { width: min(96%, 390px); }
  .showcase-kicker { width: 100%; padding: 0; font-size: clamp(1.25rem, 5.8vw, 1.65rem); overflow-wrap: anywhere; }
  .service-note { right: 10px; bottom: 12px; min-width: 0; max-width: calc(100% - 20px); }

  .section { padding-top: 54px; padding-bottom: 54px; }
  .section-heading { margin-bottom: 26px; }
  .service-grid, .service-grid.five-services, .service-grid.home-services { gap: 13px; }
  .service-card { width: 100%; min-height: 250px; padding: 22px; }
  .service-card h3 { margin-top: 34px; }
  .about-panel, .steps, .information-card { width: 100%; padding: 24px 18px; border-radius: 20px; }
  .values div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .steps li { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; }
  .steps li > span { width: 38px; height: 38px; }

  .page-hero { padding-top: 48px; padding-bottom: 44px; }
  .page-hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .page-hero::after { width: 150px; height: 150px; right: -55px; }
  .quote-page-hero, .contact-page-hero, .services-page .services-page-hero { padding-right: 16px; padding-left: 16px; }
  .quote-hero-visual, .services-hero-visual, .contact-phone-visual { max-width: 78%; }
  .quote-section { gap: 30px; }
  .quote-details { margin-top: 30px; }
  .quote-detail { align-items: flex-start; flex-direction: column; gap: 3px; }
  .quote-detail b { max-width: 100%; text-align: left; overflow-wrap: anywhere; }
  .quote-form { width: 100%; padding: 20px 14px; gap: 16px; border-radius: 18px; }
  .conditional-fields { padding: 16px 12px; }
  input, select, textarea { min-width: 0; font-size: 16px; }
  .choice-card { width: 100%; min-width: 0; }
  .upload-zone { width: 100%; min-width: 0; padding: 17px 13px; align-items: flex-start; }
  .upload-zone > span:not(.upload-icon) { min-width: 0; overflow-wrap: anywhere; }
  .file-chip { grid-template-columns: 42px minmax(0, 1fr); }
  .file-chip img, .file-chip video { width: 42px; height: 38px; }
  .file-chip small { grid-column: 2; }
  .contact-item { width: 100%; min-width: 0; padding: 20px 16px; }
  .contact-page .contact-item b[data-edit="businessEmail"] { max-width: 100%; font-size: .75rem; letter-spacing: -.04em; white-space: normal; overflow-wrap: anywhere; }
  .terms-download-panel { width: 100%; padding: 18px 14px; }
  .about-hero-title { align-items: center; flex-direction: column; text-align: center; }
  .about-page-hero h1 { flex: none; overflow-wrap: normal; }
  footer { gap: 16px; }
  footer .brand { width: fit-content; max-width: 100%; }
  footer p, .footer-small { max-width: 100%; overflow-wrap: anywhere; }
  .content-editor { width: calc(100% - 16px); max-height: 94vh; }
  .editor-shell { padding: 20px 14px; }
}

@media (max-width: 360px) {
  .site-header { padding-left: 10px; padding-right: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand { font-size: .92rem; }
  .brand-name { padding-left: 5px; padding-right: 5px; }
  .menu-button { padding-left: 9px; padding-right: 9px; font-size: .88rem; }
  .hero, .section, .page-hero, footer { padding-left: 12px; padding-right: 12px; }
  .quote-form { padding-left: 11px; padding-right: 11px; }
}
