/* ==========================================================================
   SEO Hunt — site styles (dark theme, layered on Bootstrap 5)
   ========================================================================== */

:root {
    color-scheme: dark;

    --sh-bg: #0B0D11;
    --sh-bg-alt: #10141B;
    --sh-surface: #171C25;
    --sh-surface-raised: #202734;
    --sh-surface-hover: #161B24;
    --sh-border: #303A48;
    --sh-border-soft: #242C38;
    --sh-border-strong: #3F4A5A;
    --sh-text: #F5F6F8;
    --sh-text-muted: #ADB6C5;
    --sh-text-subtle: #8D97A8;
    --sh-text-body: #D4DAE4;
    --sh-accent: #FF9366;
    --sh-accent-hover: #FFAD89;
    --sh-accent-busy: #C8836A;
    --sh-warm-bg: #2C1F1B;
    --sh-warm-border: #5E3A2C;
    --sh-error-bg: #2A1512;
    --sh-error-border: #5E2A20;
    --sh-error-text: #FFB4A0;
    --sh-success-bg: #1B2418;
    --sh-success-border: #2E3D28;
    --sh-success-text: #C6D4BE;
    --sh-success-icon: #9DBE8F;

    --sh-font-heading: Manrope, "Helvetica Neue", Arial, sans-serif;
    --sh-font-body: Inter, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    --sh-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --sh-header-height: 72px;

    --bs-body-bg: var(--sh-bg);
    --bs-body-color: var(--sh-text);
    --bs-body-font-family: var(--sh-font-body);
    --bs-body-font-size: 17px;
    --bs-body-line-height: 1.6;
    --bs-border-color: var(--sh-border);
    --bs-link-color-rgb: 255, 147, 102;
    --bs-link-hover-color-rgb: 255, 173, 137;
}

/* Base
   ========================================================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--sh-header-height) + 20px);
}

body {
    min-height: 100vh;
    padding-top: calc(var(--sh-header-height) + 1px);
    background: var(--sh-bg);
    color: var(--sh-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--sh-accent);
    text-decoration: none;
}

a:hover {
    color: var(--sh-accent-hover);
}

:focus-visible {
    outline: 2px solid var(--sh-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

p {
    margin: 0;
}

::placeholder {
    color: #7E8798 !important;
}

h1, h2, h3 {
    text-wrap: pretty;
}

.container {
    max-width: 1248px;
    padding-left: 24px;
    padding-right: 24px;
}

.container--narrow {
    max-width: 928px;
}

.min-w-0 {
    min-width: 0;
}

.text-accent {
    color: var(--sh-accent) !important;
}

.text-subtle {
    color: var(--sh-text-subtle);
}

.icon {
    display: inline-block;
    vertical-align: middle;
}

.dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sh-accent);
}

.dot--muted {
    width: 6px;
    height: 6px;
    background: #5F6B7D;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1100;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--sh-accent);
    color: var(--sh-bg);
    font-weight: 600;
}

@keyframes shPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 147, 102, 0.5); }
    70% { box-shadow: 0 0 0 11px rgba(255, 147, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 147, 102, 0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons
   ========================================================================== */

.btn {
    --bs-btn-font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 20px;
    font-size: 15px;
    border-radius: 11px;
    transition: background-color 150ms var(--sh-ease), border-color 150ms var(--sh-ease), color 150ms var(--sh-ease), transform 150ms var(--sh-ease), box-shadow 150ms var(--sh-ease);
}

.btn:active {
    transform: translateY(1px);
}

.btn-accent {
    color: var(--sh-bg);
    background-color: var(--sh-accent);
    border: 1px solid var(--sh-accent);
}

.btn-accent:hover,
.btn-accent:focus-visible {
    color: var(--sh-bg);
    background-color: var(--sh-accent-hover);
    border-color: var(--sh-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 147, 102, 0.26);
}

.btn-accent:disabled,
.btn-accent.is-busy {
    color: var(--sh-bg);
    background-color: var(--sh-accent-busy);
    border-color: var(--sh-accent-busy);
    cursor: progress;
    opacity: 1;
}

.btn-ghost {
    color: var(--sh-text);
    background: var(--sh-surface-raised);
    border: 1px solid var(--sh-border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    color: var(--sh-text);
    background: var(--sh-surface-raised);
    border-color: var(--sh-text);
}

.btn-outline-light-soft {
    margin-top: 24px;
    min-height: 44px;
    padding: 0 18px;
    color: var(--sh-text);
    background: transparent;
    border: 1px solid var(--sh-text);
}

.btn-outline-light-soft:hover {
    color: var(--sh-bg);
    background: var(--sh-text);
    border-color: var(--sh-text);
    transform: translateY(-1px);
}

.btn-sm-pill {
    min-height: 44px;
    padding: 0 18px;
}

.btn-lg-pill {
    min-height: 54px;
    padding: 0 26px;
    font-size: 16.5px;
    border-radius: 13px;
}

.icon-button {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--sh-text-muted);
    background: var(--sh-surface-raised);
    border: 1px solid var(--sh-border);
    border-radius: 11px;
    transition: border-color 150ms var(--sh-ease), background 150ms var(--sh-ease);
}

.icon-button:hover {
    background: var(--sh-border-soft);
    border-color: var(--sh-text);
}

.icon-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--sh-accent);
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 12px;
    transition: background 220ms var(--sh-ease), border-color 220ms var(--sh-ease);
}

.icon-box--sm {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    color: var(--sh-text-muted);
    background: var(--sh-surface-raised);
    border-color: #3A4453;
}

.icon-box--warm {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    color: var(--sh-accent);
    background: var(--sh-warm-bg);
    border-color: var(--sh-warm-border);
}

.icon-box--sm.icon-box--warm {
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

/* Header
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(11, 13, 17, 0.78);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(10px);
    transition: background 180ms var(--sh-ease), border-color 180ms var(--sh-ease), box-shadow 180ms var(--sh-ease);
}

.site-header.is-scrolled {
    background: rgba(16, 20, 27, 0.94);
    border-bottom-color: var(--sh-border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 28px rgba(0, 0, 0, 0.5);
}

.site-header__bar {
    height: var(--sh-header-height);
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-header__brand img {
    display: block;
    width: 167px;
    height: 28px;
    object-fit: contain;
}

.site-header__nav {
    margin-left: auto;
    align-items: center;
    gap: 4px;
}

.site-header__link {
    padding: 9px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--sh-text-muted);
    border-radius: 9px;
    transition: background 150ms var(--sh-ease), color 150ms var(--sh-ease), transform 150ms var(--sh-ease);
}

.site-header__link:hover {
    color: var(--sh-text);
    background: var(--sh-surface-raised);
    transform: translateY(-1px);
}

.site-header__link.is-active {
    color: var(--sh-accent);
    background: var(--sh-surface-raised);
}

.site-header__toggle {
    margin-left: auto;
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 11px;
}

.site-header__toggle-bar {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--sh-text);
    border-radius: 2px;
    transition: transform 220ms var(--sh-ease), opacity 180ms;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.site-header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 24px 20px;
    background: var(--sh-surface);
    border-top: 1px solid var(--sh-border);
}

.site-header__mobile-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--sh-text-muted);
    border-bottom: 1px solid var(--sh-border-soft);
}

.site-header__mobile-link.is-active {
    color: var(--sh-accent);
}

/* Footer
   ========================================================================== */

.site-footer {
    background: var(--sh-bg-alt);
    border-top: 1px solid var(--sh-border);
}

.site-footer__grid {
    padding: 64px 0 40px;
}

.site-footer img {
    display: block;
    width: 179px;
    height: 30px;
    object-fit: contain;
}

.site-footer__statement {
    max-width: 340px;
    margin-top: 18px;
    font-size: 16px;
    color: var(--sh-text-muted);
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-footer__column > a {
    padding: 7px 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--sh-text-muted);
    transition: color 150ms var(--sh-ease);
}

.site-footer__column a:hover {
    color: var(--sh-accent);
}

.site-footer__heading {
    margin: 0 0 14px;
    font-family: var(--sh-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sh-text);
}

.site-footer__heading a {
    color: var(--sh-text);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0 40px;
    border-top: 1px solid var(--sh-border);
    font-size: 14px;
    color: var(--sh-text-muted);
}

/* Sections & typography
   ========================================================================== */

.section {
    padding: 64px 0;
}

.section--alt {
    background: var(--sh-bg-alt);
    border-top: 1px solid var(--sh-border);
    border-bottom: 1px solid var(--sh-border);
}

.section--flush-top {
    padding-top: 0;
}

.section--page-hero {
    padding: 52px 0 36px;
}

.section--catalogue {
    padding: 32px 0 64px;
}

.section--contact-hero {
    padding-bottom: 32px;
}

.section--contact-form {
    padding: 12px 0 64px;
}

.section-intro {
    max-width: 720px;
}

.section-intro--narrow {
    max-width: 640px;
}

.section-intro--wide {
    max-width: 760px;
}

.eyebrow {
    margin-bottom: 16px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sh-accent);
}

.section-title {
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 29px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--sh-text);
}

.section-title--sm {
    max-width: 640px;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.page-title {
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 36px;
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -1.6px;
    color: var(--sh-text);
}

.page-title--contact {
    font-size: 33px;
}

.section-lead {
    max-width: 620px;
    margin-top: 18px;
    font-size: 17.5px;
    line-height: 1.65;
    color: var(--sh-text-muted);
    text-wrap: pretty;
}

.section-lead--narrow {
    max-width: 360px;
    font-size: 16.5px;
}

.small-note {
    margin-top: 14px;
    font-size: 14.5px;
    color: var(--sh-text-muted);
}

.fine-print {
    display: flex;
    gap: 9px;
    max-width: 760px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--sh-text-subtle);
}

.callout {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    max-width: 360px;
    margin-top: 24px;
    padding: 15px 17px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--sh-text-muted);
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 14px;
}

.callout--compact {
    max-width: none;
    margin-top: 4px;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 13px;
}

.sticky-lg {
    position: relative;
}

.anchor-offset {
    scroll-margin-top: 100px;
}

/* Reveal animations (JS adds html.js; content stays visible without JS) */
.js [data-reveal],
.js [data-hero-item] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 420ms var(--sh-ease), transform 420ms var(--sh-ease);
}

.js [data-hero-item] {
    transform: translateY(14px);
    transition-duration: 460ms;
}

.js [data-hero-art] {
    opacity: 0;
    transition: opacity 600ms var(--sh-ease) 160ms;
}

.js [data-workflow-card] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 420ms var(--sh-ease), transform 420ms var(--sh-ease);
}

.js .is-revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* Home — hero
   ========================================================================== */

.hero {
    padding: 56px 0 64px;
}

.hero__title {
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 36px;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--sh-text);
}

.hero__lead {
    max-width: 560px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--sh-text-muted);
    text-wrap: pretty;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.hero__audience {
    margin-top: 24px;
    font-size: 14.5px;
    color: var(--sh-text-muted);
}

.hero-art {
    margin: 0;
}

.hero-art__frame {
    padding: 14px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.hero-art__svg {
    display: block;
    height: auto;
    border-radius: 12px;
    background: var(--sh-bg-alt);
}

.hero-art__caption {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--sh-text-muted);
}

/* Home — value strip
   ========================================================================== */

.value-strip {
    background: var(--sh-bg-alt);
    border-top: 1px solid var(--sh-border);
    border-bottom: 1px solid var(--sh-border);
}

.value-strip__list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.value-strip__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--sh-border-soft);
}

.value-strip__item:last-child {
    border-bottom: 0;
}

.value-strip__title {
    font-family: var(--sh-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--sh-text);
}

.value-strip__text {
    margin-top: 5px;
    font-size: 15.5px;
    color: var(--sh-text-muted);
}

/* Home — bento service families
   ========================================================================== */

.family-groups {
    display: grid;
    gap: 48px;
    margin-top: 44px;
}

.bento {
    display: grid;
    grid-auto-flow: row dense;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.bento__feature,
.bento__tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--sh-text);
    transition: border-color 150ms var(--sh-ease), transform 150ms var(--sh-ease);
}

.bento__feature:hover,
.bento__tile:hover {
    color: var(--sh-text);
    border-color: var(--sh-accent);
    transform: translateY(-1px);
}

.bento__feature {
    min-height: 212px;
    padding: 24px;
    background: var(--sh-surface-raised);
    border: 1px solid var(--sh-border-strong);
    border-radius: 20px;
}

.bento__feature-title {
    display: block;
    margin-top: 18px;
    font-family: var(--sh-font-heading);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.bento__feature-tagline {
    display: block;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--sh-accent);
}

.bento__feature-text {
    display: block;
    max-width: 400px;
    margin-top: 10px;
    font-size: 15.5px;
    color: var(--sh-text-muted);
}

.bento__feature-price {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: baseline;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--sh-border);
}

.bento__tile {
    min-height: 158px;
    padding: 20px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 16px;
}

.bento__tile-title {
    display: block;
    margin-top: 14px;
    font-family: var(--sh-font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.bento__tile-text {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--sh-text-muted);
}

.bento__tile-price {
    display: block;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--sh-border-soft);
}

.price-lg {
    font-family: var(--sh-font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--sh-accent);
}

.price-sm {
    font-family: var(--sh-font-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--sh-accent);
}

.price-unit {
    font-size: 13px;
    color: var(--sh-text-muted);
}

.bento__feature .price-unit {
    font-size: 14.5px;
}

/* Home — process
   ========================================================================== */

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list__item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding-bottom: 28px;
}

.process-list__item:last-child {
    padding-bottom: 0;
}

.process-list__marker {
    position: relative;
    display: none;
}

.process-list__number {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sh-accent);
    color: var(--sh-bg);
    font-family: var(--sh-font-heading);
    font-size: 16px;
    font-weight: 800;
}

.process-list__rail {
    position: absolute;
    left: 50%;
    top: 44px;
    bottom: -28px;
    width: 2px;
    margin-left: -1px;
    background: linear-gradient(var(--sh-accent), #2A3341);
}

.process-list__card {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    min-width: 0;
    padding: 22px 24px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 16px;
}

.process-list__title {
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 19.5px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--sh-text);
}

.process-list__text {
    max-width: 560px;
    margin-top: 8px;
    font-size: 15.5px;
    line-height: 1.62;
    color: var(--sh-text-muted);
}

/* Home — sample delivery (proof)
   ========================================================================== */

.proof {
    margin-top: 22px;
}

.proof-paper {
    overflow: hidden;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 20px;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

.proof-paper__bar {
    display: flex;
    justify-content: flex-end;
    padding: 15px 24px;
    background: var(--sh-bg-alt);
    border-bottom: 1px solid var(--sh-border);
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sh-text-muted);
    background: #1B212B;
    border: 1px solid var(--sh-border);
    border-radius: 999px;
}

.proof-paper__body {
    padding: 24px 20px 26px;
}

.proof-paper__title {
    max-width: 540px;
    margin: 14px 0 0;
    font-family: var(--sh-font-heading);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.7px;
    color: var(--sh-text);
}

.proof-paper__text {
    max-width: 580px;
    margin-top: 20px;
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--sh-text-body);
}

.proof-paper__bullets {
    display: grid;
    gap: 10px;
    max-width: 480px;
    margin: 24px 0 0;
    padding: 20px 0 0;
    list-style: none;
    border-top: 1px solid var(--sh-border-soft);
}

.proof-paper__bullets li {
    display: flex;
    gap: 11px;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--sh-text-body);
}

.proof-mark {
    padding: 1px 4px;
    border-radius: 4px;
    box-shadow: inset 0 -2px 0 rgba(255, 147, 102, 0.22);
    transition: background 260ms var(--sh-ease), box-shadow 260ms var(--sh-ease);
}

.proof-mark.is-active {
    background: rgba(255, 147, 102, 0.16);
    box-shadow: inset 0 -2px 0 rgba(255, 147, 102, 0.6);
}

.proof-pin {
    position: relative;
    top: -9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    padding: 0;
    font-family: var(--sh-font-heading);
    font-size: 11px;
    font-weight: 800;
    color: var(--sh-text-muted);
    background: #2A3341;
    border: 0;
    border-radius: 50%;
    vertical-align: baseline;
    transition: background 200ms var(--sh-ease), transform 200ms var(--sh-ease);
}

.proof-pin:hover {
    transform: scale(1.14);
}

.proof-mark.is-active .proof-pin {
    color: var(--sh-bg);
    background: var(--sh-accent);
}

.proof.is-pulsing .proof-mark:not(.is-active) .proof-pin {
    animation: shPulse 1400ms var(--sh-ease) 1;
}

.proof-notes {
    display: grid;
    gap: 12px;
    align-content: start;
}

.proof-notes__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sh-text-muted);
}

.proof-note {
    padding: 20px;
    background: var(--sh-surface-raised);
    border: 1px solid var(--sh-accent);
    border-radius: 16px;
}

.proof-note.is-changing {
    animation: fadeUp 300ms var(--sh-ease);
}

.proof-note__head {
    display: flex;
    gap: 10px;
    align-items: center;
}

.proof-note__number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sh-accent);
    color: var(--sh-bg);
    font-family: var(--sh-font-heading);
    font-size: 12px;
    font-weight: 800;
}

.proof-note__title {
    font-family: var(--sh-font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--sh-text);
}

.proof-note__body {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--sh-text-muted);
}

.proof-note__source {
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid var(--sh-border);
    font-size: 13.5px;
    color: var(--sh-text-subtle);
}

.proof-note__source span {
    font-weight: 600;
    color: var(--sh-text-muted);
}

.proof-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-text-muted);
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 11px;
    transition: background 150ms var(--sh-ease), border-color 150ms var(--sh-ease), color 150ms var(--sh-ease), transform 150ms var(--sh-ease);
}

.proof-chip:hover {
    color: var(--sh-text);
    background: var(--sh-surface-raised);
    border-color: var(--sh-text);
    transform: translateY(-1px);
}

.proof-chip.is-active {
    color: var(--sh-text);
    background: var(--sh-surface-raised);
    border-color: var(--sh-accent);
}

.proof-chip__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2A3341;
    color: var(--sh-text-muted);
    font-family: var(--sh-font-heading);
    font-size: 11px;
    font-weight: 800;
}

.proof-chip.is-active .proof-chip__number {
    background: var(--sh-accent);
    color: var(--sh-bg);
}

/* Home — why cards
   ========================================================================== */

.why-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px 22px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 18px;
    transition: border-color 200ms var(--sh-ease), transform 200ms var(--sh-ease), box-shadow 200ms var(--sh-ease), opacity 420ms var(--sh-ease);
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sh-accent), rgba(255, 147, 102, 0));
}

.why-card:hover {
    border-color: var(--sh-accent);
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.why-card__number {
    font-family: var(--sh-font-heading);
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #222A36;
}

.why-card__title {
    margin: 22px 0 0;
    font-family: var(--sh-font-heading);
    font-size: 20px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--sh-text);
}

.why-card__rule {
    display: block;
    width: 26px;
    height: 2px;
    margin-top: 14px;
    border-radius: 2px;
    background: var(--sh-accent);
}

.why-card__text {
    margin-top: 14px;
    font-size: 15.5px;
    line-height: 1.68;
    color: var(--sh-text-muted);
}

/* Home — FAQ
   ========================================================================== */

.faq {
    overflow: hidden;
    margin-top: 40px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 20px;
}

.faq__item {
    border-bottom: 1px solid var(--sh-border-soft);
}

.faq__item:last-child {
    border-bottom: 0;
}

.faq__button {
    width: 100%;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 20px 26px;
    text-align: left;
    font-family: var(--sh-font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: var(--sh-text);
    background: var(--sh-surface-raised);
    border: 0;
    transition: background 150ms var(--sh-ease);
}

.faq__button.collapsed {
    background: var(--sh-surface);
}

.faq__button:hover {
    background: var(--sh-surface-raised);
}

.faq__icon {
    flex-shrink: 0;
    color: var(--sh-accent);
    transform: rotate(135deg);
    transition: transform 260ms var(--sh-ease);
}

.faq__button.collapsed .faq__icon {
    transform: rotate(0deg);
}

.faq__answer {
    max-width: 680px;
    padding: 0 26px 26px;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--sh-text-muted);
}

/* CTA panel
   ========================================================================== */

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 48px 26px;
    background: var(--sh-bg-alt);
    border: 1px solid var(--sh-border);
    border-radius: 24px;
}

.cta-panel__rings {
    position: absolute;
    right: -60px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    opacity: 0.5;
    pointer-events: none;
}

.cta-panel__content {
    position: relative;
    max-width: 620px;
}

.cta-panel__title {
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--sh-text);
}

.cta-panel__text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--sh-text-muted);
}

/* Services — groups & service boxes
   ========================================================================== */

.service-group {
    margin-bottom: 64px;
}

.service-group:last-child {
    margin-bottom: 0;
}

.service-group__head {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 20px;
}

.service-group__title {
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 25px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.9px;
    color: var(--sh-text);
}

.service-group__tagline {
    margin-top: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--sh-accent);
}

.service-group__blurb {
    max-width: 460px;
    font-size: 16px;
    color: var(--sh-text-muted);
}

.service-box {
    margin-top: 14px;
    background: var(--sh-bg-alt);
    border: 1px solid var(--sh-border);
    border-radius: 18px;
}

.service-box__head {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 16px;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 17px;
    transition: background-color 150ms var(--sh-ease);
}

.service-box__head:hover {
    background-color: var(--sh-surface-hover);
}

.service-box__icon {
    background: var(--sh-warm-bg);
    border-color: var(--sh-warm-border);
}

.service-box__head.collapsed .service-box__icon {
    background: var(--sh-surface-raised);
    border-color: var(--sh-border);
}

.service-box__name {
    display: block;
    font-family: var(--sh-font-heading);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--sh-text);
}

.service-box__description {
    display: block;
    max-width: 600px;
    margin-top: 5px;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--sh-text-muted);
}

.service-box__summary {
    display: none;
    max-width: 640px;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--sh-text-subtle);
}

.service-box__summary span {
    font-weight: 600;
    color: var(--sh-text-muted);
}

.service-box__from {
    display: none;
    text-align: right;
    white-space: nowrap;
}

.service-box__from-price {
    display: block;
    font-family: var(--sh-font-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--sh-accent);
}

.service-box__from-unit {
    display: block;
    margin-top: 1px;
    font-size: 12.5px;
    color: var(--sh-text-subtle);
}

.service-box__toggle-label {
    display: block;
    margin-top: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--sh-accent);
}

.service-box__head.collapsed .service-box__toggle-label {
    color: var(--sh-text-muted);
}

.service-box__chevron {
    display: none;
    color: var(--sh-text-subtle);
    transform: rotate(180deg);
    transition: transform 280ms var(--sh-ease);
}

.service-box__head.collapsed .service-box__chevron {
    transform: rotate(0deg);
}

.service-box__divider {
    height: 1px;
    margin: 0 16px;
    background: var(--sh-border-soft);
}

.service-box__note {
    padding: 4px 20px 18px;
}

.service-box__spacer {
    height: 14px;
}

/* Services — package cards
   ========================================================================== */

.package-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    padding: 16px 16px 4px;
}

.package-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 18px;
    transition: border-color 180ms var(--sh-ease), transform 180ms var(--sh-ease), box-shadow 180ms var(--sh-ease);
}

.collapse.show .package-card,
.collapsing .package-card {
    animation: fadeUp 420ms var(--sh-ease) both;
}

.package-card:nth-child(2) { animation-delay: 65ms !important; }
.package-card:nth-child(3) { animation-delay: 130ms !important; }
.package-card:nth-child(4) { animation-delay: 195ms !important; }
.package-card:nth-child(5) { animation-delay: 260ms !important; }

.package-card:hover {
    border-color: var(--sh-accent);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.package-card__head {
    padding: 22px 20px 18px;
    border-bottom: 1px solid var(--sh-border-soft);
}

.package-card__prefix {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sh-text-subtle);
}

.package-card__price {
    margin-top: 8px;
    font-family: var(--sh-font-heading);
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--sh-accent);
}

.package-card__unit {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--sh-text-muted);
}

.package-card__title {
    margin-top: 18px;
    font-family: var(--sh-font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--sh-text);
}

.package-card__subtitle {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--sh-text-muted);
}

.package-card__rows {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--sh-border-soft);
}

.word-option {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 12px;
    text-align: left;
    background: var(--sh-bg-alt);
    border: 1px solid var(--sh-border-soft);
    border-radius: 10px;
    transition: background 180ms var(--sh-ease), border-color 180ms var(--sh-ease);
}

.word-option:hover {
    border-color: var(--sh-accent);
}

.word-option__radio {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1.5px solid #5F6B7D;
    transition: background 180ms var(--sh-ease), border-color 180ms var(--sh-ease);
}

.word-option__label {
    font-size: 13.5px;
    color: var(--sh-text-muted);
    transition: color 180ms var(--sh-ease);
}

.word-option__price {
    font-family: var(--sh-font-heading);
    font-size: 14.5px;
    font-weight: 800;
    color: var(--sh-accent);
}

.word-option.is-selected {
    background: var(--sh-warm-bg);
    border-color: var(--sh-accent);
}

.word-option.is-selected .word-option__radio {
    background: var(--sh-accent);
    border-color: var(--sh-accent);
    box-shadow: inset 0 0 0 3.5px var(--sh-accent), inset 0 0 0 6px var(--sh-bg);
}

.word-option.is-selected .word-option__label {
    color: var(--sh-text);
}

.package-card__toggle {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 20px;
    text-align: left;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--sh-text-muted);
    background: none;
    border: 0;
    transition: color 180ms var(--sh-ease);
}

.package-card__toggle:hover,
.package-card__toggle[aria-expanded="true"] {
    color: var(--sh-accent);
}

.package-card__toggle-icon {
    flex-shrink: 0;
    transition: transform 300ms var(--sh-ease);
}

.package-card__toggle[aria-expanded="true"] .package-card__toggle-icon {
    transform: rotate(180deg);
}

.package-card__features {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 2px 20px 16px;
    list-style: none;
    animation: fadeDown 340ms var(--sh-ease) both;
}

.package-card__features[hidden] {
    display: none;
}

.package-card__features li {
    display: flex;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--sh-text-body);
}

.package-card__foot {
    margin-top: auto;
    padding: 14px 16px 16px;
    border-top: 1px solid var(--sh-border-soft);
}

.package-card__footnote {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: var(--sh-text-subtle);
}

/* Services — supply cards & quote card
   ========================================================================== */

.supply-card {
    overflow: hidden;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 18px;
}

.supply-card__head {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 18px 22px;
    background: #1B222C;
    border-bottom: 1px solid var(--sh-border);
}

.supply-card--warm {
    border-color: #4A2E24;
}

.supply-card--warm .supply-card__head {
    background: #221A16;
    border-bottom-color: #4A2E24;
}

.supply-card__step {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sh-text-subtle);
}

.supply-card--warm .supply-card__step {
    color: #C79680;
}

.supply-card__title {
    margin-top: 2px;
    font-family: var(--sh-font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--sh-text);
}

.supply-card__list {
    margin: 0;
    padding: 8px 10px;
    list-style: none;
}

.supply-card__row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 13px 12px;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--sh-text);
    border-radius: 11px;
    transition: background 180ms var(--sh-ease);
}

.supply-card__row:hover {
    background: #1B222C;
}

.supply-card--warm .supply-card__row {
    color: var(--sh-text-body);
}

.supply-card--warm .supply-card__row:hover {
    background: #221A16;
}

.supply-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sh-surface-raised);
    border: 1px solid #3A4453;
    font-family: var(--sh-font-heading);
    font-size: 11px;
    font-weight: 800;
    color: var(--sh-text-muted);
}

.quote-card {
    padding: 30px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 18px;
}

.quote-card__title {
    font-family: var(--sh-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--sh-text);
}

.quote-card__steps {
    margin: 18px 0 0;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--sh-text-muted);
}

.quote-card__note {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--sh-border-soft);
    font-size: 15px;
    color: var(--sh-text-muted);
}

/* Forms (contact page + order dialog)
   ========================================================================== */

.panel {
    padding: 26px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 20px;
}

.panel__title {
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--sh-text);
}

.panel__text {
    margin-top: 7px;
    font-size: 15px;
    color: var(--sh-text-muted);
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--sh-text-muted);
}

.form-control {
    min-height: 48px;
    padding: 0 13px;
    font-size: 16px;
    color: var(--sh-text);
    background-color: var(--sh-bg-alt);
    border: 1px solid var(--sh-border);
    border-radius: 11px;
    transition: border-color 150ms var(--sh-ease), box-shadow 150ms var(--sh-ease);
}

textarea.form-control {
    padding: 12px 13px;
    line-height: 1.6;
    resize: vertical;
}

.form-control:focus {
    color: var(--sh-text);
    background-color: var(--sh-bg-alt);
    border-color: var(--sh-accent);
    box-shadow: 0 0 0 3px rgba(255, 147, 102, 0.18);
}

.form-control[aria-invalid="true"] {
    border-color: var(--sh-accent);
}

.field-help {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--sh-text-subtle);
}

.field-error {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--sh-error-text);
}

.field-error:empty {
    display: none;
}

.form-alert {
    padding: 15px 16px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 13px;
}

.form-alert--error {
    margin-bottom: 20px;
    color: var(--sh-error-text);
    background: var(--sh-error-bg);
    border: 1px solid var(--sh-error-border);
}

.form-alert--error p {
    margin-bottom: 12px;
}

.form-alert--error ul {
    margin: 0;
    padding-left: 18px;
}

.form-alert--error a {
    color: var(--sh-error-text);
    text-decoration: underline;
}

.form-alert--success {
    display: flex;
    gap: 12px;
    color: var(--sh-success-text);
    background: var(--sh-success-bg);
    border: 1px solid var(--sh-success-border);
    animation: fadeUp 340ms var(--sh-ease) both;
}

.form-alert--success .icon {
    color: var(--sh-success-icon);
}

.form-alert__title {
    margin-bottom: 5px !important;
    font-family: var(--sh-font-heading);
    font-size: 16px;
    font-weight: 700;
}

.form-alert--success .form-alert__title {
    color: var(--sh-text);
}

[data-enquiry-errors] .form-alert__title {
    margin-bottom: 6px !important;
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 600;
}

/* Contact page aside
   ========================================================================== */

.contact-aside {
    display: grid;
    gap: 14px;
    align-content: start;
}

.aside-card {
    padding: 22px;
    background: var(--sh-bg-alt);
    border: 1px solid var(--sh-border);
    border-radius: 18px;
}

.aside-card__title {
    font-family: var(--sh-font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--sh-text);
}

.aside-card__text {
    margin-top: 8px;
    font-size: 14.5px;
    color: var(--sh-text-muted);
}

.aside-card__note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--sh-border-soft);
    font-size: 13.5px;
    color: var(--sh-text-subtle);
}

.next-steps {
    display: grid;
    gap: 12px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.next-steps li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--sh-text-muted);
}

.next-steps__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--sh-accent);
    color: var(--sh-bg);
    font-family: var(--sh-font-heading);
    font-size: 11px;
    font-weight: 800;
}

.link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 0 15px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--sh-text);
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 11px;
    transition: border-color 180ms var(--sh-ease), transform 180ms var(--sh-ease);
}

.link-row:hover {
    color: var(--sh-text);
    border-color: var(--sh-accent);
    transform: translateY(-1px);
}

/* Order dialog
   ========================================================================== */

.order-modal {
    --bs-modal-width: 520px;
    --bs-modal-bg: var(--sh-surface);
    --bs-modal-color: var(--sh-text);
    --bs-modal-border-color: var(--sh-border);
    --bs-modal-border-radius: 20px;
    --bs-modal-inner-border-radius: 19px;
    --bs-modal-header-border-color: var(--sh-border);
    --bs-modal-footer-border-color: var(--sh-border);
    --bs-modal-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    --bs-modal-padding: 22px 24px 24px;
}

.modal-backdrop {
    --bs-backdrop-bg: #05070A;
    --bs-backdrop-opacity: 0.72;
}

.order-modal .modal-header {
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px 18px;
}

.order-modal .modal-title {
    font-family: var(--sh-font-heading);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    margin-top: 6px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--sh-text-muted);
}

.order-modal .modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    padding: 16px 24px;
}

.order-modal .modal-footer > * {
    margin: 0;
}

.modal-footnote {
    max-width: 240px;
    margin-right: auto !important;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--sh-text-subtle);
}

.order-summary {
    margin-bottom: 20px;
    padding: 14px 16px;
    background: var(--sh-bg-alt);
    border: 1px solid var(--sh-border);
    border-radius: 13px;
}

.order-summary__label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sh-text-subtle);
}

.order-summary__line {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    align-items: baseline;
    margin-top: 7px;
}

.order-summary__service {
    font-family: var(--sh-font-heading);
    font-size: 16px;
    font-weight: 700;
}

.order-summary__package {
    font-size: 14px;
    color: var(--sh-text-muted);
}

.order-summary__price {
    font-family: var(--sh-font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--sh-accent);
}

.order-summary__unit {
    font-size: 13.5px;
    color: var(--sh-text-subtle);
}

/* Responsive
   ========================================================================== */

@media (min-width: 420px) {
    .hero__title { font-size: 40px; }
    .page-title { font-size: 40px; }
    .page-title--contact { font-size: 38px; }
    .proof-chips { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 480px) {
    .section-title { font-size: 34px; }
    .section-title--sm { font-size: 28px; }
    .service-group__title { font-size: 28px; }
    .cta-panel__title { font-size: 32px; }
}

@media (min-width: 520px) {
    .process-list__item { grid-template-columns: 44px minmax(0, 1fr); }
    .process-list__marker { display: block; }
}

@media (min-width: 560px) {
    .service-box__head {
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 20px 22px;
    }

    .service-box__from { display: block; }
}

@media (min-width: 620px) {
    .package-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

@media (min-width: 680px) {
    .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bento__feature { grid-column: span 2; }
    .bento__tile--wide-md { grid-column: span 2; }
}

@media (min-width: 700px) {
    .proof-paper__body { padding: 32px 30px 34px; }
    .proof-paper__title { font-size: 25px; }
    .why-card { padding: 30px 28px; }
    .service-box__summary { display: block; }
}

@media (min-width: 780px) {
    .section { padding: 96px 0; }
    .section--flush-top { padding-top: 0; }
    .section--page-hero { padding: 72px 0 48px; }
    .section--contact-hero { padding-bottom: 40px; }
    .section--catalogue { padding: 48px 0 88px; }
    .section--contact-form { padding: 16px 0 88px; }
    .hero { padding: 88px 0 96px; }
    .hero__title { font-size: 48px; }
    .page-title { font-size: 48px; }
    .page-title--contact { font-size: 48px; }
    .bento__feature { padding: 30px; }
    .cta-panel { padding: 72px 48px; }
}

@media (min-width: 860px) {
    .service-box__head { grid-template-columns: auto minmax(0, 1fr) auto auto; }
    .service-box__chevron { display: block; }
}

@media (min-width: 900px) {
    .section-title { font-size: 40px; }
    .section-title--sm { font-size: 32px; }
    .service-group__title { font-size: 30px; }
    .cta-panel__title { font-size: 38px; }

    .value-strip__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px;
    }

    .value-strip__item { border-bottom: 0; }
}

@media (min-width: 992px) {
    .sticky-lg {
        position: sticky;
        top: 105px;
    }

    .contact-aside { width: 340px; }
}

@media (min-width: 1000px) {
    .hero__title { font-size: 58px; }
    .page-title { font-size: 56px; }
    .page-title--contact { font-size: 56px; }

    .bento { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .bento__feature { grid-row: span 2; min-height: 0; }
    .bento__tile--wide-md { grid-column: auto; }
    .bento__tile--wide-lg { grid-column: span 2; }
}

@media (min-width: 1060px) {
    .package-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (min-width: 1100px) {
    .page-title { font-size: 64px; }
    .page-title--contact { font-size: 56px; }
}

@media (min-width: 1160px) {
    .hero__title { font-size: 70px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Blog
   ========================================================================== */

.blog-hero {
    padding: 64px 0 52px;
    background: var(--sh-bg-alt);
    border-bottom: 1px solid var(--sh-border);
}

.blog-hero__title {
    max-width: 16ch;
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 33px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.4px;
    color: var(--sh-text);
    text-wrap: balance;
}

.blog-hero__lead {
    max-width: 62ch;
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--sh-text-muted);
}

.blog-list {
    padding: 48px 0 72px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 28px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 18px;
    transition: border-color 180ms var(--sh-ease), transform 180ms var(--sh-ease), box-shadow 180ms var(--sh-ease), opacity 420ms var(--sh-ease);
}

.blog-card:hover {
    border-color: var(--sh-accent);
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--sh-bg-alt);
    border-bottom: 1px solid var(--sh-border);
}

.blog-card__image svg,
.article__image svg {
    display: block;
}

.blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 24px 24px 26px;
}

.blog-meta {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7E8798;
}

.blog-meta__divider {
    color: #394456;
}

.blog-card__title {
    margin: 0;
    font-family: var(--sh-font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.4px;
}

.blog-card__title a {
    color: var(--sh-text);
}

.blog-card__title a:hover {
    color: var(--sh-accent);
}

.blog-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.65;
    color: var(--sh-text-muted);
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-card__button {
    align-self: flex-start;
    margin-top: auto;
}

.article__container {
    max-width: 848px;
    padding-top: 44px;
    padding-bottom: 72px;
}

.article__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-text-muted);
}

.article__back:hover {
    color: var(--sh-accent);
}

.article__title {
    margin: 14px 0 0;
    font-family: var(--sh-font-heading);
    font-size: 29px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.1px;
    color: var(--sh-text);
    text-wrap: balance;
}

.article__image {
    overflow: hidden;
    aspect-ratio: 16 / 7;
    margin: 34px 0 40px;
    background: var(--sh-bg-alt);
    border: 1px solid var(--sh-border);
    border-radius: 18px;
}

.article-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--sh-text-muted);
}

.article-body p,
.article-body ul {
    margin: 0 0 20px;
    text-wrap: pretty;
}

.article-body .article-lead {
    margin-bottom: 22px;
    font-size: 19px;
    line-height: 1.7;
    color: var(--sh-text);
}

.article-body h2 {
    margin: 44px 0 14px;
    font-family: var(--sh-font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--sh-text);
}

.article-body ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding-left: 22px;
    line-height: 1.7;
}

.article-body strong {
    font-weight: 600;
    color: var(--sh-text);
}

.article-cta {
    margin-top: 44px;
    padding: 30px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-left: 3px solid var(--sh-accent);
    border-radius: 16px;
}

.article-cta p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--sh-text);
}

@media (min-width: 600px) {
    .blog-hero__title { font-size: 40px; }
    .article__title { font-size: 35px; }
    .article-body h2 { font-size: 27px; }
}

@media (min-width: 780px) {
    .blog-hero { padding: 78px 0 62px; }
    .blog-list { padding: 64px 0 88px; }
    .article__container { padding-bottom: 96px; }
}

@media (min-width: 900px) {
    .blog-hero__title { font-size: 52px; }
    .article__title { font-size: 44px; }
}
