*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #243056;
    --paper: #ffffff;
    --paper-2: #ffffff;
    --line: rgba(36, 48, 86, 0.2);
    --text: #243056;
    --muted: #5b6480;
    --white: #ffffff;
    --blue: #1a6cff;
    --magenta: #e2187a;
    --accent: var(--magenta);
    --radius: 16px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-display: "Plus Jakarta Sans", "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --max: 1120px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(100% - 2.5rem, var(--max));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.on-hero {
    background: var(--white);
    border-bottom-color: var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.5rem;
}

.logo-img {
    height: 42px;
    width: auto;
    transition: transform 0.3s var(--ease);
}

.logo:hover .logo-img {
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.2s ease;
}

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

.nav-cta {
    padding: 0.55rem 1.1rem;
    background: var(--magenta);
    color: var(--white) !important;
    border-radius: 999px;
}

.nav-cta:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0.4rem;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.hamburger[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Hero — bright split, people first */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 7.5rem 0 4rem;
    color: var(--text);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.92;
    margin-bottom: 0.85rem;
    color: var(--magenta);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.1rem;
    max-width: 18ch;
}

.hero-tagline {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 40ch;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-partners {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    margin-top: 1.75rem;
}

.hero-partners img {
    height: 52px;
    width: auto;
}

.partners {
    padding: 3.5rem 0 4.5rem;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.partner-logos {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 1.1rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.partner-card img {
    height: 72px;
    width: auto;
    max-width: 100%;
}

.hero-shot {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(226, 24, 122, 0.16);
    transform: rotate(1.4deg);
}

.hero-photo {
    width: 100%;
    height: min(68vh, 560px);
    object-fit: cover;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.45rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.98rem;
    border-radius: 999px;
    transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary,
.btn-on-light.btn-primary {
    background: var(--magenta);
    color: var(--white);
}

.btn-primary:hover,
.btn-on-light.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--blue);
}

.btn-ghost,
.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 2px solid rgba(36, 48, 86, 0.12);
}

.btn-ghost:hover,
.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

/* Sections */
.section-intro {
    max-width: 560px;
    margin-bottom: 3.5rem;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 0.85rem;
}

.section-intro h2,
.about-panel h2,
.contact-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.section-intro p,
.contact-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.solutions {
    padding: 5.5rem 0 4.5rem;
}

.solutions-list {
    display: grid;
    gap: 1rem;
}

.solution-row {
    display: grid;
    grid-template-columns: 4.5rem 1.4fr 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.6rem 1.5rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-row:nth-child(odd) {
    background: var(--white);
    border-color: var(--ink);
}

.solution-row:nth-child(even) {
    background: var(--white);
    border-color: var(--blue);
}

.solution-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(26, 108, 255, 0.1);
}

.solution-index {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--blue);
}

.solution-copy h3 {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.solution-copy p {
    color: var(--muted);
    max-width: 42ch;
}

.solution-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.solution-tags li {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
}

.industries {
    padding: 5rem 0 2.5rem;
}

.industry-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.industry-pills li {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
}

.industry-pills li:nth-child(3n) { background: var(--blue); }
.industry-pills li:nth-child(3n + 1) { background: var(--magenta); }
.industry-pills li:nth-child(3n + 2) { background: var(--ink); }

.moments {
    padding: 0 0 1rem;
}

.blog-tease,
.blog-page {
    padding: 6.5rem 0 5rem;
}

.blog-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.blog-card {
    display: grid;
    text-decoration: none;
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(36, 48, 86, 0.06);
    transition: transform 0.25s var(--ease);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.blog-card div {
    padding: 1.2rem 1.25rem 1.4rem;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.blog-card p:last-child {
    color: var(--muted);
    font-size: 0.95rem;
}

.blog-more {
    margin-top: 2rem;
}

.article {
    padding: 7.5rem 0 5rem;
}

.article-hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.article-body {
    max-width: 68ch;
}

.article-body h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0.4rem 0 1rem;
}

.article-body p,
.article-body li {
    color: var(--muted);
    margin-bottom: 1rem;
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 1.8rem 0 0.7rem;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    margin: 1.3rem 0 0.5rem;
}

.legal-date {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.15rem;
}

.form-legal {
    font-size: 0.85rem;
    margin-top: 0.85rem;
    color: var(--muted);
}

.form-legal a {
    color: var(--blue);
    font-weight: 700;
}

.article-body ul,
.article-body ol {
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.service-item h3 a {
    color: inherit;
    text-decoration: none;
}

.service-item p a {
    color: var(--blue);
    font-weight: 700;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto;
}

.moments-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 22px;
}

.services {
    padding: 5.5rem 0;
    background: var(--blue);
    color: var(--white);
}

.services .eyebrow {
    color: var(--white);
}

.services .section-intro h2,
.services .section-intro p {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-item {
    padding: 1.6rem 1.4rem;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(226, 24, 122, 0.1);
}

.service-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
    letter-spacing: -0.02em;
}

.service-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

.about {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: 640px;
    background: var(--ink);
}

.about-visual {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.2s var(--ease);
}

.about:hover .about-photo {
    transform: scale(1.06);
}

.about-panel {
    background: var(--paper-2);
    color: var(--text);
    display: flex;
    align-items: center;
}

.about-panel-inner {
    padding: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 520px;
}

.about-panel .lead {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.about-panel p {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.about-points {
    list-style: none;
    margin: 1.75rem 0 2rem;
    display: grid;
    gap: 1rem;
}

.about-points li {
    padding-left: 1rem;
    border-left: 3px solid var(--magenta);
    color: var(--muted);
    font-size: 0.98rem;
}

.about-points strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.testimonials {
    padding: 5.5rem 0;
    background: var(--ink);
    color: var(--white);
}

.testimonials .eyebrow {
    color: var(--white);
}

.testimonials .section-intro h2,
.testimonials .section-intro p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quote {
    padding: 1.4rem;
    border: 2px solid var(--white);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    margin: 0;
}

.quote:nth-child(2n),
.quote:nth-child(3n) {
    background: var(--white);
}

.quote p {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-style: normal;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.quote p::before {
    content: "“";
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: normal;
    font-weight: 800;
    line-height: 0;
    color: var(--magenta);
    margin-right: 0.1rem;
    vertical-align: -0.3rem;
}

.quote footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(36, 48, 86, 0.1);
}

.quote cite {
    font-style: normal;
    font-weight: 800;
    display: block;
}

.quote footer span {
    color: var(--muted);
    font-size: 0.9rem;
}

.quote footer a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.92rem;
}

.quote footer a:hover {
    text-decoration: underline;
}

.contact {
    padding: 5.5rem 0 6.5rem;
    background: var(--ink);
    color: var(--white);
}

.contact .eyebrow {
    color: var(--white);
}

.contact-copy h2,
.contact-copy > p {
    color: var(--white);
}

.contact-details a {
    color: var(--white);
    text-decoration: underline;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 800;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-form {
    background: var(--white);
    color: var(--ink);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(26, 108, 255, 0.08);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.form-hint {
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    font-weight: 700;
}

.quote-goals {
    min-width: 0;
    width: 100%;
    margin: 0 0 1.1rem;
    border: 2px solid var(--ink);
    padding: 0.85rem 0.9rem 0.75rem;
}

.quote-goals legend {
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0 0.35rem;
}

.quote-goals-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}

.quote-goals label,
.contact-form .quote-goals label {
    display: grid;
    grid-template-columns: 1.2rem 1fr;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
}

.contact-form .quote-goals input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.15rem;
    height: 1.15rem;
    margin: 0;
    padding: 0;
    border: 2px solid var(--ink);
    border-radius: 3px;
    background: var(--white);
    flex: none;
    justify-self: start;
}

.contact-form .quote-goals input[type="checkbox"]:checked {
    background: var(--magenta);
    border-color: var(--magenta);
    box-shadow: inset 0 0 0 2px var(--white);
}

@media (min-width: 560px) {
    .quote-goals-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 1rem;
    }
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border: 2px solid var(--ink);
    border-radius: 12px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--magenta);
    background: var(--white);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.form-status {
    margin-top: 0.85rem;
    font-size: 0.92rem;
    min-height: 1.25em;
}

.form-status.is-ok {
    color: var(--white);
    background: var(--magenta);
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.45;
    padding: 1.15rem 1.2rem;
    border-radius: 16px;
}

.form-status.is-ok a {
    color: var(--white);
    text-decoration: underline;
}

.form-status.is-err {
    color: #c0234a;
    font-weight: 800;
}

.contact-form.is-sent .form-group,
.contact-form.is-sent .hp,
.contact-form.is-sent .form-legal,
.contact-form.is-sent .btn-primary {
    display: none;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    background: var(--white);
    color: var(--muted);
    padding: 3.5rem 0 2rem;
    border-top: 6px solid transparent;
    border-image: linear-gradient(90deg, #1a6cff, #e2187a) 1;
}

.locations {
    padding: 5rem 0;
    background: var(--blue);
    color: var(--white);
}

.locations .section-intro .eyebrow {
    color: var(--white);
}

.locations .section-intro h2,
.locations .section-intro p {
    color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    color: var(--ink);
    overflow: hidden;
    transition: transform 0.25s var(--ease);
}

.location-card:hover {
    transform: translateY(-4px);
}

.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.location-card-copy {
    padding: 1.4rem 1.5rem 1.5rem;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.location-card p:last-child {
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.85rem;
}

.footer-brand p {
    max-width: 28ch;
}

.footer-partners {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    margin-top: 1.15rem;
}

.footer-partners img {
    height: 40px;
    width: auto;
}

.site-footer h4 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.site-footer ul {
    list-style: none;
}

.site-footer li + li {
    margin-top: 0.5rem;
}

.site-footer a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}

.site-footer a:hover {
    color: var(--magenta);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

.reveal {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .js-loaded .reveal {
        opacity: 0;
        transform: translateY(22px);
        transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    
    .js-loaded .reveal.is-in {
        opacity: 1;
        transform: none;
    }
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .about-photo {
        transition: none;
    }
}

@media (max-width: 960px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 4.5rem 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0 1.5rem;
        background: var(--paper-2);
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    }

    .nav-menu.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li a {
        display: block;
        padding: 0.9rem 1.5rem;
        color: var(--text) !important;
    }

    .nav-cta {
        margin: 0.5rem 1.5rem 0;
        text-align: center;
    }

    .hero-grid,
    .solution-row,
    .moments-grid,
    .about,
    .location-grid,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-shot {
        transform: none;
    }

    .hero-photo {
        height: 320px;
    }

    .solution-tags {
        justify-content: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-logos {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .testimonials-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 6.5rem 0 3rem;
    }

    .hero-buttons,
    .contact-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost,
    .btn-secondary {
        width: 100%;
    }

    .admin-range .btn-primary,
    .admin-range .btn-secondary,
    .admin-tabs button {
        width: auto;
    }

    .quote footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .moments-grid img {
        height: 180px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.faq-page details {
    border-top: 1px solid var(--line);
    padding: 0.9rem 0;
}

.faq-page details:last-of-type {
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.5rem;
}

.faq-page summary {
    font-family: var(--font-display);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-page summary::-webkit-details-marker {
    display: none;
}

.faq-page details p {
    margin-top: 0.7rem;
}

.iwizz-chat {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 200;
    font-family: var(--font-body);
}

.iwizz-chat-toggle {
    border: 0;
    background: var(--magenta);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(226, 24, 122, 0.28);
}

.iwizz-chat-toggle:hover {
    background: var(--blue);
}

.iwizz-chat-panel {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(380px, calc(100vw - 1.6rem));
    height: min(520px, calc(100vh - 7rem));
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(36, 48, 86, 0.18);
    flex-direction: column;
    overflow: hidden;
}

.iwizz-chat.is-open .iwizz-chat-panel,
.iwizz-chat-panel:not([hidden]) {
    display: flex;
}

.iwizz-chat-panel[hidden] {
    display: none !important;
}

.iwizz-chat.is-open .iwizz-chat-toggle {
    display: none;
}

.iwizz-chat-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    background: var(--ink);
    color: var(--white);
}

.iwizz-chat-title {
    font-family: var(--font-display);
    font-weight: 800;
}

.iwizz-chat-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

.iwizz-chat-head-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.iwizz-chat-call,
.iwizz-chat-close {
    font-weight: 800;
    text-decoration: none;
    border: 0;
    background: var(--magenta);
    color: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    cursor: pointer;
}

.iwizz-chat-close {
    background: var(--white);
    color: var(--ink);
    line-height: 1;
}

.iwizz-chat-log {
    flex: 1;
    overflow: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.iwizz-chat-msg {
    max-width: 90%;
    padding: 0.65rem 0.8rem;
    border-radius: 14px;
    font-size: 0.95rem;
}

.iwizz-chat-msg.is-bot {
    background: var(--white);
    border: 2px solid var(--ink);
    align-self: flex-start;
}

.iwizz-chat-msg.is-user {
    background: var(--blue);
    color: var(--white);
    align-self: flex-end;
}

.iwizz-chat-msg.is-staff {
    background: var(--magenta);
    color: var(--white);
    align-self: flex-start;
}

.iwizz-chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 0.85rem 0.5rem;
}

.iwizz-chat-chips button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--blue);
}

.iwizz-chat-form {
    display: flex;
    gap: 0.45rem;
    padding: 0.75rem;
    border-top: 1px solid var(--line);
}

.iwizz-chat-form input {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    font: inherit;
}

.iwizz-chat-form button {
    border: 0;
    background: var(--magenta);
    color: #fff;
    font-weight: 800;
    border-radius: 12px;
    padding: 0 0.9rem;
    cursor: pointer;
}

.admin-body {
    background: var(--paper-2);
    font-size: 13px;
}

.admin-main {
    padding: 6.4rem 0 3rem;
}

.admin-badge {
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--magenta);
}

.admin-card {
    background: #fff;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: 0 8px 22px rgba(26, 108, 255, 0.05);
    margin-bottom: 0.75rem;
}

.admin-card h1,
.admin-top h1 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0.15rem 0 0.35rem;
}

.admin-card h2 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin: 0 0 0.35rem;
}

.admin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    align-items: center;
}

.admin-card-head h2 {
    margin: 0;
}

.admin-filter {
    margin: 0;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-card label {
    display: block;
    font-weight: 800;
    margin: 0.7rem 0 0.3rem;
}

.admin-card input {
    width: 100%;
    max-width: 28rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
    font: inherit;
    margin-bottom: 0.7rem;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.admin-asof,
.admin-hint {
    color: var(--muted);
    font-size: 0.75rem;
    margin: 0 0 0.45rem;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.7rem;
    align-items: flex-end;
    margin-bottom: 0.75rem;
}

.admin-toolbar-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: flex-end;
}

.admin-client-tools {
    display: grid;
    gap: 0.2rem;
    margin: 0;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-client-tools select {
    width: auto;
    min-width: 12rem;
    max-width: 18rem;
    margin: 0;
    font-size: 0.75rem;
    height: 2.1rem;
    padding: 0.28rem 0.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.admin-range input[type="date"] {
    width: 9.2rem;
    min-width: 9.2rem;
}

.admin-range .btn-primary,
.admin-range .btn-secondary,
.admin-tabs button {
    margin: 0;
    height: 2.1rem;
    padding: 0 0.75rem;
    font-size: 0.75rem;
}

.admin-tabs {
    display: flex;
    gap: 0.3rem;
}

.admin-tabs button {
    border: 1px solid var(--ink);
    background: var(--white);
    color: var(--ink);
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
}

.admin-tabs button.is-on {
    background: var(--ink);
    color: var(--white);
}

.admin-range {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: flex-end;
}

.admin-range label {
    margin: 0;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-range input,
.admin-card select,
.admin-filter select {
    width: auto;
    max-width: none;
    margin: 0.2rem 0 0;
    display: block;
    font-size: 0.75rem;
    padding: 0.28rem 0.4rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.admin-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.admin-kpis article {
    background: #fff;
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
    box-shadow: 0 8px 22px rgba(26, 108, 255, 0.05);
}

.admin-kpis p {
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.admin-kpis strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.admin-chart {
    display: grid;
    grid-template-columns: 2.1rem 1fr;
    gap: 0.35rem;
    height: 200px;
}

.admin-chart-y {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--ink);
    padding: 0 0 1.55rem;
    line-height: 1;
}

.admin-chart-plot {
    position: relative;
    min-width: 0;
    height: 100%;
}

.admin-chart-grid {
    position: absolute;
    inset: 0 0 1.55rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.admin-chart-grid i {
    display: block;
    border-top: 1px dashed var(--line);
    height: 0;
}

.admin-bars {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.28rem;
    align-items: end;
    height: calc(100% - 1.55rem);
    overflow-x: auto;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-scroll {
    max-height: 220px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 0.45rem;
}

.admin-scroll-short {
    max-height: 160px;
}

.admin-scroll-tall {
    max-height: 420px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 0.35rem 0.3rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.75rem;
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: sticky;
    top: 0;
    background: #fff;
}

.admin-heat-wrap {
    border: 1px solid var(--ink);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
}

.admin-heat-wrap canvas {
    display: block;
    width: 100%;
    height: auto;
}

.admin-bar {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 0.12rem;
    min-width: 28px;
    flex: 1 0 28px;
}

.admin-bar span {
    width: 100%;
    min-height: 4px;
    background: var(--blue);
    border-radius: 5px 5px 2px 2px;
}

.admin-bar small,
.admin-bar em {
    font-size: 0.58rem;
    color: var(--muted);
    font-style: normal;
    line-height: 1.1;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-chart-channels .admin-bar {
    min-width: 42px;
    flex-basis: 42px;
}

.admin-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.admin-tri {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

.admin-list {
    list-style: none;
}

.admin-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.32rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.75rem;
}

.admin-enquiries article {
    border-top: 1px solid var(--line);
    padding: 1rem 0;
}

.admin-enq-meta {
    color: var(--magenta);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.admin-enquiries h3 {
    font-family: var(--font-display);
    margin: 0.2rem 0;
}

.admin-log-list {
    max-height: 360px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.admin-log-row {
    display: grid;
    grid-template-columns: 8.4rem 1fr auto auto;
    grid-template-areas: "when title status actions" "when preview status actions";
    gap: 0.1rem 0.6rem;
    width: 100%;
    text-align: left;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 0.45rem 0.55rem;
    cursor: pointer;
    font: inherit;
    align-items: center;
}

.admin-log-row time {
    grid-area: when;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.admin-log-row strong {
    grid-area: title;
    font-size: 0.78rem;
}

.admin-log-row span {
    grid-area: preview;
    color: var(--muted);
    font-size: 0.7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-log-row .admin-status {
    grid-area: status;
    align-self: center;
    margin: 0;
}

.admin-log-row .admin-delete {
    grid-area: actions;
    align-self: center;
}

.admin-delete {
    border: 1px solid var(--line);
    background: #fff;
    color: #9b1c3a;
    border-radius: 8px;
    padding: 0.2rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 800;
    cursor: pointer;
}

.admin-delete:hover {
    background: #9b1c3a;
    color: #fff;
    border-color: #9b1c3a;
}

.admin-modal-actions {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.admin-log-row.is-on,
.admin-log-row:hover {
    background: var(--paper);
}

.admin-inbox {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1rem;
    min-height: 320px;
}

.admin-chat-list button {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.admin-chat-list button.is-on {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.admin-chat-list strong,
.admin-thread-log .iwizz-chat-msg {
    display: block;
}

.admin-thread-log {
    height: 280px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.6rem;
    margin-bottom: 0.6rem;
}

.admin-thread-log .iwizz-chat-msg small {
    display: block;
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.admin-thread-log .iwizz-chat-msg p {
    margin: 0;
    font-size: 0.8rem;
}

.admin-thread-form {
    display: flex;
    gap: 0.5rem;
}

.admin-thread-form input {
    flex: 1;
    margin: 0;
}

.admin-modal {
    width: min(640px, 94vw);
    border: 0;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(36, 48, 86, 0.22);
}

.admin-reply {
    border-top: 1px solid var(--line);
    padding-top: 0.7rem;
    margin-bottom: 0.7rem;
}

.admin-reply textarea,
.admin-reply input[type="text"] {
    width: 100%;
    max-width: none;
    margin: 0.25rem 0 0.55rem;
    font: inherit;
}

.admin-reply textarea {
    min-height: 8.5rem;
    resize: vertical;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
}

.admin-reply-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
}

.admin-reply-actions .btn-primary,
.admin-reply-actions .btn-secondary {
    margin: 0;
    height: 2.1rem;
    padding: 0 0.85rem;
    font-size: 0.75rem;
}

.admin-reply-log {
    margin-top: 0.6rem;
    max-height: 140px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.4rem 0.55rem;
}

.admin-reply-log article {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--line);
}

.admin-reply-log article:last-child {
    border-bottom: 0;
}

.admin-reply-log p {
    margin: 0.15rem 0 0;
    white-space: pre-wrap;
}

.admin-modal::backdrop {
    background: rgba(36, 48, 86, 0.35);
}

.admin-modal-head {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.7rem;
}

.admin-modal-head h2 {
    margin: 0.15rem 0 0;
    font-size: 1.05rem;
}

.admin-modal-body {
    max-height: 280px;
    overflow: auto;
    margin-bottom: 0.7rem;
    font-size: 0.8rem;
}

.admin-modal-body pre {
    background: var(--paper);
    padding: 0.6rem;
    border-radius: 8px;
    white-space: pre-wrap;
    font-size: 0.72rem;
}

@media (max-width: 800px) {
    .admin-inbox {
        grid-template-columns: 1fr;
    }

    .admin-tri,
    .admin-split,
    .admin-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .admin-log-row {
        grid-template-columns: 1fr auto auto;
        grid-template-areas: "when status actions" "title status actions" "preview preview preview";
    }
}

html:has(.desk-body),
.desk-body {
    height: 100%;
    overflow: hidden;
    background: var(--paper);
}

.desk-app {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    background: var(--paper-2);
}

.desk-head {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: max(0.7rem, env(safe-area-inset-top)) 1rem 0.75rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.desk-logo img {
    display: block;
    height: 32px;
    width: auto;
}

.desk-head-copy {
    min-width: 0;
}

.desk-kicker {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--magenta);
}

.desk-head h1 {
    margin: 0.05rem 0 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.2;
}

.desk-head #desk-meta {
    margin: 0.15rem 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.desk-log {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
}

.desk-log .iwizz-chat-msg {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    max-width: min(82%, 26rem);
    font-size: 1.05rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.desk-log .iwizz-chat-msg p {
    margin: 0;
}

.desk-who {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.desk-log .is-user {
    align-self: flex-start;
}

.desk-log .is-staff {
    align-self: flex-end;
    margin-left: auto;
    background: var(--magenta);
    color: var(--white);
}

.desk-log .is-bot {
    align-self: flex-start;
}

.desk-composer {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
    padding: 0.75rem 1rem max(0.9rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #fff;
}

.desk-composer input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
    font: inherit;
    font-size: 16px;
    margin: 0;
}

.desk-composer button {
    min-height: 52px;
    min-width: 4.6rem;
    border: 0;
    border-radius: 14px;
    background: var(--magenta);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
}

.desk-status {
    grid-column: 1 / -1;
    margin: 0;
    min-height: 0;
    color: var(--magenta);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (min-width: 800px) {
    .desk-body {
        background: var(--ink);
    }

    .desk-app {
        top: 1rem;
        bottom: 1rem;
        border: 1px solid var(--line);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 16px 40px rgba(36, 48, 86, 0.08);
    }
}

.admin-enquiries pre {
    background: var(--paper);
    padding: 0.75rem;
    border-radius: 10px;
    white-space: pre-wrap;
    font-size: 0.85rem;
}

@media (max-width: 800px) {
    .admin-kpis,
    .admin-split,
    .admin-tri {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .admin-kpis,
    .admin-split,
    .admin-tri {
        grid-template-columns: 1fr;
    }

    .admin-top {
        flex-direction: column;
    }
}

.local-page {
    background: var(--white);
}

.local-hero {
    position: relative;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: flex-end;
    color: var(--white);
    background: var(--ink);
}

.local-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.local-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 48, 86, 0.2) 0%, rgba(36, 48, 86, 0.92) 78%);
}

.local-hero .container {
    position: relative;
    z-index: 1;
    padding: 8.5rem 0 3.2rem;
}

.local-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    max-width: 16ch;
    color: var(--white);
}

.local-hero .eyebrow {
    color: var(--white);
}

.local-hero p {
    max-width: 42ch;
    margin: 1rem 0 1.6rem;
    color: var(--white);
    font-size: 1.08rem;
}

.local-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.local-hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.local-hero .btn-secondary:hover {
    background: var(--white);
    color: var(--ink);
}

.local-band {
    padding: 4.5rem 0;
}

.local-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0.2rem 0 0.85rem;
}

.local-band p.lead {
    max-width: 58ch;
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.local-band.is-ink,
.local-band.is-blue,
.local-band.is-magenta {
    color: var(--white);
}

.local-band.is-ink {
    background: var(--ink);
}

.local-band.is-blue {
    background: var(--blue);
}

.local-band.is-magenta {
    background: var(--magenta);
}

.local-band.is-white {
    background: var(--white);
    color: var(--ink);
}

.local-band.is-ink .eyebrow,
.local-band.is-blue .eyebrow,
.local-band.is-magenta .eyebrow {
    color: var(--white);
}

.local-photos {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 0.65rem;
}

.local-photos.is-follow {
    margin-top: 2rem;
}

.local-photos figure {
    margin: 0;
}

.local-photos img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.local-photos figcaption,
.local-credit {
    margin-top: 0.7rem;
    font-size: 0.78rem;
    opacity: 0.8;
}

.local-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.local-tile {
    border: 2px solid currentColor;
    padding: 1.25rem 1.2rem;
}

.local-tile h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.local-tile p {
    margin: 0;
    font-size: 0.98rem;
}

.local-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.local-list li {
    padding: 0.85rem 0;
    border-top: 2px solid currentColor;
    font-weight: 700;
}

.local-map {
    margin-top: 2rem;
}

.local-map iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

.local-cta {
    padding: 5rem 0;
    background: var(--magenta);
    color: var(--white);
    text-align: center;
}

.local-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 16ch;
    margin: 0 auto 0.85rem;
    color: var(--white);
}

.local-cta p {
    max-width: 42ch;
    margin: 0 auto 1.6rem;
    font-size: 1.1rem;
}

.local-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.local-cta .btn-secondary {
    background: var(--white);
    color: var(--magenta);
    border-color: var(--white);
}

.local-cta .btn-secondary:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.local-cta .btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.local-cta .btn-ghost:hover {
    background: var(--white);
    color: var(--magenta);
}

.local-page #contact,
.local-page .local-cta {
    scroll-margin-top: 5.5rem;
}

.local-page .contact {
    background: var(--ink);
    color: var(--white);
}

.local-page .contact-copy h2,
.local-page .contact-copy p {
    color: var(--white);
}

.local-page .contact-details a {
    color: var(--white);
    text-decoration: underline;
}

.local-page .contact .eyebrow {
    color: var(--white);
}

.local-page .contact-form {
    box-shadow: none;
    color: var(--ink);
    background: var(--white);
}

.local-page .contact-form h3,
.local-page .form-group label {
    color: var(--ink);
}

.local-page .form-group input,
.local-page .form-group textarea {
    background: #fff;
    border: 2px solid var(--ink);
    color: var(--ink);
}

.local-page .form-legal {
    color: var(--muted);
}

.local-nearby {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.local-nearby a,
.local-nearby span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border: 2px solid currentColor;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    color: inherit;
}

.local-nearby a:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

@media (max-width: 800px) {
    .local-photos,
    .local-tiles,
    .local-list {
        grid-template-columns: 1fr;
    }

    .local-photos img {
        height: 210px;
    }

    .local-hero {
        min-height: 92vh;
    }
}

.instant-quote {
    padding: 5rem 0;
    background: var(--white);
    color: var(--ink);
}

.quote-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 880px) {
    .quote-layout {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.quote-from {
    margin: 1rem 0;
    font-size: 1.15rem;
}

.quote-from strong {
    color: var(--magenta);
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.quote-points {
    list-style: none;
    margin-top: 1rem;
}

.quote-points li {
    padding: 0.45rem 0;
    border-top: 1px solid var(--line);
    font-weight: 700;
}

.quote-page {
    padding: 7.5rem 0 4rem;
}

.quote-lead {
    max-width: 40rem;
    margin-bottom: 1.2rem;
}

.quote-summary {
    margin: 1.4rem 0 1.6rem;
    padding: 1.2rem 1.25rem;
    border: 2px solid var(--ink);
    background: var(--white);
}

.quote-summary h2 {
    margin: 0.2rem 0 0.7rem;
}

.quote-summary p {
    max-width: 44rem;
}

.quote-summary dl {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.35rem 0.8rem;
    margin: 0.9rem 0 0;
}

.quote-summary dt {
    font-weight: 800;
    font-size: 0.82rem;
}

.quote-summary dd {
    margin: 0;
    font-weight: 700;
}

.preview-tools {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0 0.7rem;
}

.preview-tools button {
    font-family: var(--font-display);
    font-weight: 800;
    border: 2px solid var(--ink);
    background: var(--white);
    color: var(--ink);
    padding: 0.45rem 0.9rem;
    cursor: pointer;
}

.preview-tools button.is-on {
    background: var(--ink);
    color: var(--white);
}

.quote-preview-stage {
    background: var(--ink);
    padding: 1rem;
    margin: 0 0 1.2rem;
    display: flex;
    justify-content: center;
}

.quote-preview-wrap {
    border: 2px solid var(--white);
    overflow: hidden;
    background: var(--white);
    width: 100%;
}

.quote-preview-wrap iframe {
    width: 100%;
    height: 720px;
    border: 0;
    background: var(--white);
    display: block;
}

.quote-preview-stage.is-mobile .quote-preview-wrap {
    width: min(390px, 100%);
    border-radius: 28px;
    box-shadow: 0 0 0 10px #1a1f33;
}

.quote-preview-stage.is-mobile iframe {
    height: 760px;
}

.quote-prices {
    margin-top: 2rem;
}

.quote-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}

.quote-option em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}

.quote-option b {
    display: block;
    font-family: var(--font-display);
    margin-top: 0.2rem;
}

.quote-total {
    margin: 1.4rem 0;
    font-size: 1.15rem;
}

.quote-total strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--magenta);
}

/* Report issue (public) */
.report-issue-page {
    padding: 6.5rem 0 4rem;
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(26, 108, 255, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(232, 64, 152, 0.08), transparent 50%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%);
}

.report-issue-wrap {
    max-width: 34rem;
}

.report-issue-lead {
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.report-issue-form.is-drag {
    outline: 2px dashed var(--blue, #1a6cff);
    outline-offset: 4px;
}

.report-drop-hint {
    margin: 0.35rem 0 0;
}

.report-photo-preview {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.6rem;
}

.report-photo-preview img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.report-thanks {
    margin-top: 1.5rem;
    padding: 1.25rem 0;
}

.report-thanks h2 {
    font-family: var(--font-display);
    margin: 0 0 0.5rem;
}

/* Admin: Client Issues */
.admin-tab-badge {
    display: inline-block;
    min-width: 1.2rem;
    margin-left: 0.25rem;
    padding: 0.05rem 0.35rem;
    border-radius: 999px;
    background: #1a6cff;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.2;
    vertical-align: middle;
}

.admin-issue-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.admin-issues-list {
    max-height: 520px;
}

.admin-issue-row {
    grid-template-columns: 8.4rem 1fr auto auto;
    grid-template-areas: "when title sev status" "when preview sev status";
}

.admin-issue-row .admin-sev {
    grid-area: sev;
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--muted);
}

.admin-issue-row .admin-sev.is-high,
.admin-issue-row .admin-sev.is-blocking {
    color: #9b1c3a;
}

.admin-issue-row .admin-issue-status {
    grid-area: status;
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--muted);
}

.admin-issue-photo {
    display: block;
    max-width: 100%;
    max-height: 360px;
    margin-top: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    object-fit: contain;
    background: #f7f9fc;
}

.admin-issue-save {
    display: grid;
    gap: 0.75rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid var(--line);
}

.admin-issue-save label {
    display: grid;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.admin-issue-save select,
.admin-issue-save textarea {
    font: inherit;
    padding: 0.45rem 0.55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
}

