:root {
    --bg: oklch(0.99 0.006 240);
    --surface: oklch(0.97 0.008 240);
    --surface-deep: oklch(0.94 0.012 240);
    --ink: oklch(0.20 0.006 80);
    --ink-soft: oklch(0.32 0.006 80);
    --ink-muted: oklch(0.46 0.005 80);
    --ink-faint: oklch(0.62 0.005 80);
    --rule: oklch(0.90 0.012 240);
    --rule-soft: oklch(0.94 0.01 240);
    --brand: oklch(0.51 0.13 245);
    --brand-dark: oklch(0.44 0.13 245);
    --brand-light: oklch(0.96 0.025 245);
    --brand-fg: oklch(0.99 0.006 240);
    --backdrop: oklch(0.18 0.04 245 / 0.6);
    --shadow-card: 0 1px 2px oklch(0.22 0.03 245 / 0.06), 0 8px 24px oklch(0.22 0.03 245 / 0.08);
    --shadow-card-strong: 0 4px 12px oklch(0.22 0.03 245 / 0.12), 0 16px 40px oklch(0.22 0.03 245 / 0.14);
    --maxw: 1180px;
    --radius: 6px;
    --radius-lg: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    margin: 0;
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.18s ease-out;
}

a:hover {
    color: var(--brand-dark);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4 {
    margin: 0;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h1 {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0;
    max-width: 70ch;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.625rem;
}

.lead {
    font-size: 1.0625rem;
    color: var(--ink-soft);
}

.topbar {
    background: var(--ink);
    color: oklch(0.85 0.005 80);
    font-size: 0.8125rem;
    border-bottom: 1px solid oklch(0.32 0.006 80);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    flex-wrap: wrap;
}

.topbar-text {
    margin: 0;
    color: oklch(0.85 0.005 80);
    line-height: 1.4;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: oklch(0.92 0.005 80);
    font-weight: 500;
    transition: color 0.18s ease-out;
}

.topbar-link:hover {
    color: var(--bg);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--rule-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
    margin-right: auto;
    flex-shrink: 0;
    line-height: 0;
}

.brand:hover {
    color: var(--ink);
}

.brand-logo {
    width: 12rem;
    height: auto;
    display: block;
}

.primary-nav .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand);
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    transition: border-color 0.18s ease-out, background 0.18s ease-out, color 0.18s ease-out;
}

.primary-nav .nav-phone:hover {
    border-color: var(--brand);
    background: var(--brand-light);
    color: var(--brand);
}

.primary-nav .nav-phone svg {
    flex-shrink: 0;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.primary-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.18s ease-out;
}

.primary-nav a:hover {
    color: var(--brand);
}

.primary-nav .nav-cta {
    background: var(--brand);
    color: var(--brand-fg);
    padding: 0.6rem 1.125rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: background 0.18s ease-out;
}

.primary-nav .nav-cta:hover {
    background: var(--brand-dark);
    color: var(--brand-fg);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -1rem;
    right: -1rem;
    height: 0.875rem;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    transition: transform 0.18s ease-out;
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -0.75rem;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 14rem;
    box-shadow: var(--shadow-card-strong);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.primary-nav .nav-dropdown-menu a {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    padding: 0.625rem 0.875rem;
    border-radius: 4px;
    transition: background 0.15s ease-out, color 0.15s ease-out;
}

.primary-nav .nav-dropdown-menu a:hover {
    background: var(--brand-light);
    color: var(--brand);
}

.primary-nav .nav-dropdown-menu a.is-active {
    color: var(--brand);
    background: var(--brand-light);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition: background 0.18s ease-out;
    color: var(--ink);
    flex-shrink: 0;
}

.nav-toggle:hover {
    background: var(--surface);
}

.nav-toggle-bars {
    display: inline-flex;
    flex-direction: column;
    gap: 0.3125rem;
    width: 1.375rem;
}

.nav-toggle-bars span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.22s ease-out, opacity 0.18s ease-out;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: background 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out, transform 0.18s ease-out;
    line-height: 1;
    text-align: center;
}

.btn-primary {
    background: var(--brand);
    color: var(--brand-fg);
    border-color: var(--brand);
}

.btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--brand-fg);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg);
    color: var(--brand);
    border-color: var(--brand);
}

.btn-secondary:hover {
    background: var(--brand);
    color: var(--brand-fg);
}

.btn-block {
    width: 100%;
    padding: 1rem 1.5rem;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem 0;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    margin: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, oklch(0.18 0.006 80 / 0.72) 0%, oklch(0.18 0.006 80 / 0.50) 55%, oklch(0.18 0.006 80 / 0.30) 100%);
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: var(--bg);
    max-width: 36rem;
}

.hero-text h1 {
    color: var(--bg);
    font-size: 3.25rem;
    margin-bottom: 0.75rem;
}

.hero-sub {
    font-size: 1.375rem;
    font-weight: 500;
    color: oklch(0.92 0.005 80);
    margin: 0 0 1.5rem 0;
}

.hero-lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: oklch(0.94 0.01 240);
    margin: 0 0 2rem 0;
    max-width: 32rem;
}

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

.hero-text .btn-primary {
    background: var(--bg);
    color: var(--brand);
    border-color: var(--bg);
}

.hero-text .btn-primary:hover {
    background: var(--brand-dark);
    color: var(--brand-fg);
    border-color: var(--brand-dark);
}

.btn svg {
    flex-shrink: 0;
}

.hero-text .btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-form-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 2rem 1.875rem;
    box-shadow: var(--shadow-card-strong);
    width: 100%;
    max-width: 26rem;
    justify-self: end;
}

.hero-form-card h2 {
    font-size: 1.375rem;
    margin: 0 0 0.4rem 0;
    color: var(--ink);
}

.hero-form-sub {
    font-size: 0.875rem;
    color: var(--ink-muted);
    margin: 0 0 1.25rem 0;
}

.hero-form {
    display: grid;
    gap: 0.875rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.hero-form input,
.hero-form textarea,
.hero-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 0.75rem 0.875rem;
    width: 100%;
    transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out;
}

.hero-form input:focus,
.hero-form textarea:focus,
.hero-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px oklch(0.51 0.13 245 / 0.18);
}

.hero-form textarea,
.contact-form textarea {
    resize: vertical;
    min-height: 5.5rem;
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

.why {
    padding: 6rem 0;
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-image {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-deep);
    box-shadow: var(--shadow-card);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-text h2 {
    margin-bottom: 1.25rem;
    max-width: 22rem;
}

.why-text p {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    margin-bottom: 1rem;
}

.why-text p.why-lead {
    color: var(--ink);
    font-size: 1.1875rem;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.why-text p:last-child {
    margin-bottom: 0;
}

.why-benefits {
    background: var(--surface);
    padding: 6rem 0;
}

.why-benefits-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.why-image-wrap {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-deep);
    box-shadow: var(--shadow-card);
}

.why-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-eyebrow {
    color: var(--brand);
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0;
}

.why-benefits h2 {
    color: var(--ink);
    font-size: 2.25rem;
    margin: 0;
    max-width: 24rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.why-benefits .why-lead {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0;
    max-width: 32rem;
    font-weight: 400;
}

.benefits-list {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--rule);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--rule);
}

.benefit-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefit-item-body h3 {
    font-size: 1.0625rem;
    color: var(--ink);
    margin: 0 0 0.25rem 0;
}

.benefit-item-body p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.services {
    padding: 6rem 0;
}

.services-head {
    margin-bottom: 3rem;
    max-width: 38rem;
}

.section-sub {
    color: var(--ink-muted);
    font-size: 1.0625rem;
    margin: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
    color: var(--ink);
    box-shadow: 0 1px 2px oklch(0.22 0.006 80 / 0.04);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-strong);
    border-color: var(--brand);
    color: var(--ink);
}

.service-card-img {
    margin: 0;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: var(--surface-deep);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.625rem 1.625rem 1.75rem 1.625rem;
    flex: 1;
}

.service-card h3 {
    color: var(--ink);
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand);
    font-weight: 500;
    font-size: 0.9375rem;
    align-self: flex-start;
    padding-bottom: 1px;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.18s ease-out, gap 0.18s ease-out;
    margin-top: 0.25rem;
}

.card-link::after {
    content: "→";
    font-size: 1.0625rem;
    line-height: 1;
    transition: transform 0.18s ease-out;
}

.service-card:hover .card-link {
    border-bottom-color: var(--brand);
}

.service-card:hover .card-link::after {
    transform: translateX(3px);
}

.detail {
    padding: 6rem 0;
    border-top: 1px solid var(--rule-soft);
}

.detail-alt {
    background: var(--surface);
}

.detail-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.detail-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.detail-reverse .detail-text {
    order: 2;
}

.detail-reverse .detail-image {
    order: 1;
}

.detail-text h2 {
    margin-bottom: 1rem;
}

.detail-text .lead {
    margin-bottom: 1.75rem;
    max-width: 36rem;
}

.detail-image {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-deep);
    box-shadow: var(--shadow-card);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qa {
    margin: 0 0 2rem 0;
    padding: 1.5rem 1.75rem 1.75rem 1.75rem;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
}

.detail-alt .qa {
    background: var(--bg);
}

.qa h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--brand);
    font-size: 1.0625rem;
    font-weight: 600;
}

.qa h3:first-child {
    margin-top: 0;
}

.qa p {
    color: var(--ink-soft);
    margin-bottom: 0;
    line-height: 1.65;
}

.qa p + h3 {
    border-top: 1px solid var(--rule-soft);
    padding-top: 1.25rem;
}

.data-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.micro-note {
    margin-top: 1.25rem;
    color: var(--ink-faint);
    font-size: 0.875rem;
    font-style: italic;
}

.feature-list {
    list-style: none;
    margin: 1.75rem 0 1.75rem 0;
    padding: 1.25rem 1.375rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--brand);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-alt .feature-list {
    background: var(--bg);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.feature-list strong {
    color: var(--ink);
    font-weight: 600;
}

.feature-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    background: var(--brand);
    color: var(--brand-fg);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.part-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.75rem 0;
}

.part-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: border-color 0.18s ease-out, color 0.18s ease-out, background 0.18s ease-out;
}

.detail-alt .part-chip {
    background: var(--surface);
}

.part-chip:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}

.about {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    isolation: isolate;
    color: var(--bg);
}

.about-bg {
    position: absolute;
    inset: 0;
    margin: 0;
    z-index: -2;
}

.about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, oklch(0.18 0.006 80 / 0.88) 0%, oklch(0.22 0.008 80 / 0.80) 100%);
    z-index: -1;
}

.about-inner {
    max-width: 60rem;
    margin: 0 auto;
}

.about-kicker {
    color: oklch(0.85 0.04 245);
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
}

.about h2 {
    color: var(--bg);
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    max-width: 28rem;
}

.about p.about-lead {
    color: oklch(0.95 0.012 240);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 1.25rem 0;
    max-width: 36rem;
}

.about p {
    color: oklch(0.92 0.012 240);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 50rem;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid oklch(0.95 0.012 240 / 0.2);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.about-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg);
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum' 1;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.875rem;
    color: oklch(0.85 0.005 80);
    line-height: 1.4;
}

.contact {
    background: var(--surface);
    color: var(--ink);
    padding: 6rem 0;
}

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

.contact-info h2 {
    color: var(--ink);
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    max-width: 22rem;
}

.contact-eyebrow {
    color: var(--brand);
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
}

.contact-intro {
    color: var(--ink-soft);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    max-width: 32rem;
}

.contact-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    max-width: 30rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    transition: border-color 0.18s ease-out, transform 0.18s ease-out;
}

.contact-card:hover {
    border-color: var(--brand);
    transform: translateX(2px);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.contact-card-label {
    color: var(--ink-faint);
    font-size: 0.75rem;
    font-weight: 500;
}

.contact-card-value {
    color: var(--ink);
    font-size: 0.9375rem;
    font-weight: 500;
    word-wrap: break-word;
}

a.contact-card-value {
    color: var(--brand);
}

a.contact-card-value:hover {
    color: var(--brand-dark);
}

.contact-form-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    background: var(--bg);
    padding: 2.25rem 2rem 2rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 36px oklch(0.18 0.04 245 / 0.35);
}

.contact-form-card h3 {
    grid-column: 1 / -1;
    color: var(--ink);
    font-size: 1.375rem;
    margin: 0;
}

.form-card-sub {
    grid-column: 1 / -1;
    color: var(--ink-muted);
    font-size: 0.875rem;
    margin: -0.5rem 0 0.5rem 0;
}

.contact-form-card .field-full {
    grid-column: 1 / -1;
}

.contact-form-card .btn-block {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
}

.contact-form-card .field label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    color: var(--ink-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.site-footer {
    background: var(--ink);
    color: oklch(0.78 0.005 80);
    padding: 4.5rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col-brand {
    gap: 1.25rem;
    max-width: 22rem;
}

.footer-brand {
    display: inline-block;
    align-self: flex-start;
    line-height: 0;
    width: max-content;
}

.footer-logo {
    width: 13rem;
    height: auto;
    display: block;
    opacity: 0.95;
}

.footer-tagline {
    color: oklch(0.78 0.005 80);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
    max-width: 22rem;
}

.footer-heading {
    color: var(--bg);
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.005em;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-list li {
    color: oklch(0.78 0.005 80);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.footer-list a {
    color: oklch(0.82 0.02 240);
    transition: color 0.18s ease-out;
}

.footer-list a:hover {
    color: var(--bg);
}

.footer-contact li:first-child {
    color: var(--bg);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid oklch(0.32 0.006 80);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    color: oklch(0.62 0.005 80);
    font-size: 0.8125rem;
    margin: 0;
}

.section-head {
    margin-bottom: 3rem;
    max-width: 42rem;
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    max-width: none;
    flex-wrap: wrap;
}

.section-head-row > div {
    max-width: 42rem;
}

.gallery-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--brand);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border: 1px solid var(--rule);
    background: var(--bg);
    border-radius: var(--radius);
    transition: border-color 0.18s ease-out, background 0.18s ease-out, transform 0.18s ease-out;
    flex-shrink: 0;
}

.gallery-cta:hover {
    border-color: var(--brand);
    background: var(--brand-light);
    transform: translateX(2px);
}

.process {
    padding: 6rem 0;
    color: var(--bg);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.process-bg {
    position: absolute;
    inset: 0;
    margin: 0;
    z-index: -2;
}

.process-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, oklch(0.18 0.006 80 / 0.92) 0%, oklch(0.22 0.008 80 / 0.85) 100%);
    z-index: -1;
}

.process > .container {
    position: relative;
    z-index: 1;
}

.process .section-title {
    color: var(--bg);
}

.process .section-sub {
    color: oklch(0.78 0.02 245);
}

.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    counter-reset: process;
}

.process-step {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 1.875rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease-out;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow-card-strong);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 10px;
    background: var(--brand-light);
    color: var(--brand);
    flex-shrink: 0;
    transition: background 0.22s ease-out, color 0.22s ease-out;
}

.process-step:hover .process-icon {
    background: var(--brand);
    color: var(--brand-fg);
}

.process-num {
    color: var(--ink-faint);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-feature-settings: 'tnum' 1;
}

.process-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-body h3 {
    font-size: 1.1875rem;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.process-body p {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0;
}

.rw-scale {
    padding: 6rem 0;
}

.rw-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.rw-card {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.5rem 1.625rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.rw-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: var(--shadow-card);
}

.rw-card-bar {
    position: relative;
    height: 0.5rem;
    background: var(--surface);
    border-radius: 999px;
    margin-bottom: 1.125rem;
    overflow: visible;
}

.rw-card-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 999px;
    transition: width 0.5s ease-out;
}

.rw-card-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--brand);
    box-shadow: 0 1px 4px oklch(0.22 0.03 245 / 0.18);
}

.rw-card-low .rw-card-fill {
    background: oklch(0.72 0.13 30);
}

.rw-card-low .rw-card-marker {
    border-color: oklch(0.55 0.16 30);
}

.rw-card-mid .rw-card-fill {
    background: oklch(0.78 0.13 75);
}

.rw-card-mid .rw-card-marker {
    border-color: oklch(0.62 0.15 75);
}

.rw-card-good .rw-card-fill {
    background: oklch(0.65 0.13 215);
}

.rw-card-good .rw-card-marker {
    border-color: oklch(0.51 0.13 245);
}

.rw-card-high .rw-card-fill {
    background: var(--brand);
}

.rw-card-high .rw-card-marker {
    border-color: var(--brand-dark);
}

.rw-card-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    font-feature-settings: 'tnum' 1;
    letter-spacing: -0.01em;
}

.rw-card-tag {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand);
    margin: 0;
}

.rw-card-desc {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0;
}

.rw-note {
    margin-top: 2rem;
    color: var(--ink-muted);
    font-size: 0.9375rem;
    max-width: 52rem;
}

.gallery {
    padding: 6rem 0;
    background: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 14rem;
    gap: 1rem;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-deep);
    box-shadow: var(--shadow-card);
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    font-family: inherit;
    transition: transform 0.2s ease-out;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: oklch(0.18 0.006 80 / 0);
    transition: background 0.2s ease-out;
    pointer-events: none;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    background: oklch(0.18 0.006 80 / 0.25);
}

.gallery-item:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.cta-banner {
    background: var(--brand);
    color: var(--brand-fg);
    padding: 4.5rem 0;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-eyebrow {
    color: oklch(0.92 0.02 240);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

.cta-banner .btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-text h2 {
    color: var(--brand-fg);
    margin-bottom: 0.5rem;
    font-size: 1.875rem;
}

.cta-text p {
    color: oklch(0.94 0.012 240);
    font-size: 1.0625rem;
    margin: 0;
    max-width: 36rem;
}

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

.cta-banner .btn-primary {
    background: var(--bg);
    color: var(--brand);
    border-color: var(--bg);
}

.cta-banner .btn-primary:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.btn-ghost-light {
    color: var(--brand-fg);
    border: 1.5px solid oklch(0.95 0.012 240 / 0.5);
    background: transparent;
}

.btn-ghost-light:hover {
    border-color: var(--brand-fg);
    background: oklch(0.95 0.012 240 / 0.12);
    color: var(--brand-fg);
}

.contact-form-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.contact-form-block .field-full {
    grid-column: 1 / -1;
}

.contact-form-block .btn-block {
    grid-column: 1 / -1;
}

.contact-form-block label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    color: var(--ink-muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.lightbox-panel {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-panel img {
    max-width: 100%;
    max-height: calc(90vh - 4rem);
    width: auto;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px oklch(0.18 0.006 80 / 0.6);
}

.lightbox-caption {
    color: oklch(0.95 0.005 80);
    font-size: 0.9375rem;
    margin: 0;
    text-align: center;
    max-width: 60ch;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: oklch(0.95 0.005 80 / 0.15);
    color: var(--bg);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.18s ease-out;
}

.lightbox-close:hover {
    background: oklch(0.95 0.005 80 / 0.3);
    color: var(--bg);
}

.lightbox .modal-backdrop {
    background: oklch(0.18 0.006 80 / 0.92);
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--backdrop);
    cursor: pointer;
}

.modal-panel {
    position: relative;
    background: var(--bg);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.25rem 2rem 2.25rem;
    box-shadow: 0 30px 60px -20px oklch(0.18 0.04 245 / 0.4);
}

.modal-close {
    position: absolute;
    top: 0.875rem;
    right: 1rem;
    font-size: 1.875rem;
    color: var(--ink-muted);
    line-height: 1;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.18s ease-out, color 0.18s ease-out;
}

.modal-close:hover {
    background: var(--surface);
    color: var(--ink);
}

.modal-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--rule);
}

.modal-kicker {
    color: var(--brand);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0 0.4rem 0;
}

.modal-head h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-meta {
    color: var(--ink-muted);
    font-size: 0.875rem;
    margin: 0;
}

.modal-foot {
    margin-top: 1.5rem;
    color: var(--ink-muted);
    font-size: 0.8125rem;
}

.table-block {
    margin-bottom: 1.75rem;
}

.table-block h3 {
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-size: 1rem;
}

.table-scroll {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.data-table thead th {
    text-align: left;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.875rem;
    padding: 0.7rem 0.75rem;
    background: var(--surface);
    border-bottom: 2px solid var(--brand);
}

.data-table tbody td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid var(--rule-soft);
    color: var(--ink-soft);
    font-feature-settings: 'tnum' 1;
}

.data-table tbody tr:hover td {
    background: var(--brand-light);
}

.data-table thead th:nth-child(n+3),
.data-table tbody td:nth-child(n+3) {
    text-align: right;
    font-weight: 500;
}

.primary-nav a.is-active {
    color: var(--brand);
    font-weight: 600;
}

.eyebrow-mini {
    color: var(--brand);
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.02em;
}

.page-hero {
    position: relative;
    padding: 6rem 0 5rem 0;
    overflow: hidden;
    isolation: isolate;
    color: var(--bg);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    margin: 0;
    z-index: -2;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, oklch(0.18 0.006 80 / 0.72) 0%, oklch(0.18 0.006 80 / 0.48) 100%);
    z-index: -1;
}

.page-hero-inner {
    position: relative;
}

.page-hero-eyebrow {
    color: oklch(0.85 0.05 245);
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 0.875rem 0;
    letter-spacing: 0.02em;
}

.page-hero h1 {
    color: var(--bg);
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 1.25rem 0;
    max-width: 32rem;
}

.page-hero-lead {
    font-size: 1.1875rem;
    color: oklch(0.92 0.005 80);
    max-width: 36rem;
    line-height: 1.55;
    margin: 0;
    font-weight: 400;
}

.page-hero-compact {
    min-height: auto;
    padding: 5rem 0 4rem 0;
    background: var(--ink);
}

.page-hero-eyebrow-light {
    color: oklch(0.78 0.04 245);
}

.page-hero-title-light {
    color: var(--bg);
}

.page-hero-lead-light {
    color: oklch(0.85 0.005 80);
}

.story {
    padding: 6rem 0;
    background: var(--bg);
}

.story-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-text h2 {
    margin: 0.25rem 0 0.25rem 0;
    font-size: 2.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.story-text .lead {
    margin: 0.25rem 0 0 0;
}

.story-text p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

.story-image {
    margin: 0;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-deep);
    box-shadow: var(--shadow-card);
    align-self: center;
    max-height: 28rem;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-stats {
    list-style: none;
    margin: 1.25rem 0 0 0;
    padding: 1.5rem 0 0 0;
    display: grid;
    gap: 0.875rem;
    border-top: 1px solid var(--rule);
}

.story-stats li {
    display: grid;
    grid-template-columns: 11rem 1fr;
    gap: 1rem;
    align-items: baseline;
}

.story-stats strong {
    color: var(--brand);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-feature-settings: 'tnum' 1;
}

.story-stats span {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.section-head-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.about-stats-light {
    background: var(--bg);
    padding: 0;
    margin-top: 0;
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    overflow: hidden;
    grid-template-columns: repeat(3, 1fr);
}

.about-stats-light .about-stat {
    padding: 2rem 1.875rem;
    border-right: 1px solid var(--rule);
    background: var(--bg);
    transition: background 0.2s ease-out;
}

.about-stats-light .about-stat:last-child {
    border-right: none;
}

.about-stats-light .about-stat:hover {
    background: var(--surface);
}

.about-stats-light .about-stat-num {
    color: var(--brand);
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 0.625rem;
    letter-spacing: -0.025em;
}

.about-stats-light .about-stat-label {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.45;
}

.cross-links {
    padding: 5rem 0 6rem 0;
    background: var(--bg);
    border-top: 1px solid var(--rule);
}

.cross-links-alt {
    background: var(--surface);
}

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

.cross-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    color: var(--ink);
}

.cross-card:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    color: var(--ink);
}

.cross-card h3 {
    color: var(--ink);
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.3;
}

.cross-card p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.cross-card .card-link {
    margin-top: 0.5rem;
}

.featured-project {
    padding: 6rem 0;
}

.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-deep);
    box-shadow: var(--shadow-card);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-text h2 {
    font-size: 2.25rem;
    margin: 0.5rem 0 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.featured-text .lead {
    margin: 0 0 1.75rem 0;
}

.featured-stats {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.featured-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.featured-stat-num {
    color: var(--brand);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-feature-settings: 'tnum' 1;
}

.featured-stat-label {
    color: var(--ink-muted);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.gallery-page {
    padding: 6rem 0;
    background: var(--surface);
}

.lammin-tables {
    padding: 6rem 0;
    background: var(--bg);
}

.lammin-tabs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lammin-block {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.lammin-block-head {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule-soft);
}

.lammin-block-head h3 {
    margin: 0 0 0.4rem 0;
    color: var(--ink);
    font-size: 1.125rem;
}

.lammin-block-head p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.875rem;
}

.lammin-sub h4 {
    margin: 1.5rem 0 0.625rem 0;
    color: var(--ink);
    font-size: 0.9375rem;
    font-weight: 600;
}

.lammin-sub h4:first-child {
    margin-top: 0;
}

.lammin-note {
    margin-top: 2rem;
    color: var(--ink-muted);
    font-size: 0.9375rem;
    max-width: 56rem;
}

.lammin-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.lammin-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 2rem 1.875rem 1.875rem 1.875rem;
    text-align: left;
    cursor: pointer;
    color: var(--ink);
    transition: transform 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    font-family: inherit;
    width: 100%;
}

.lammin-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: var(--shadow-card);
}

.lammin-card-tag {
    color: var(--brand);
    background: var(--brand-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.625rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.lammin-card h3 {
    color: var(--ink);
    font-size: 1.375rem;
    margin: 0.25rem 0 0 0;
    letter-spacing: -0.01em;
}

.lammin-card > p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.lammin-card-stats {
    list-style: none;
    margin: 0.625rem 0 0.5rem 0;
    padding: 1rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
    border-top: 1px solid var(--rule);
}

.lammin-card-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lammin-card-stats strong {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-feature-settings: 'tnum' 1;
}

.lammin-card-stats span {
    color: var(--ink-faint);
    font-size: 0.75rem;
}

.lammin-card-cta {
    color: var(--brand);
    font-weight: 500;
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.18s ease-out;
    padding-bottom: 1px;
}

.lammin-card:hover .lammin-card-cta {
    border-bottom-color: var(--brand);
}

.material-compare {
    padding: 6rem 0;
    background: var(--surface);
}

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

.material-card {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.material-card:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.material-card h3 {
    color: var(--ink);
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: -0.02em;
}

.material-tag {
    color: var(--brand);
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.02em;
}

.material-list {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.material-list li {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.5;
    padding-left: 1.375rem;
    position: relative;
}

.material-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 500;
}

.material-card-accent {
    background: var(--brand);
    color: var(--brand-fg);
    border-color: var(--brand);
}

.material-card-accent h3 {
    color: var(--brand-fg);
}

.material-card-accent .material-tag {
    color: var(--brand-fg);
    opacity: 0.85;
}

.material-card-accent .material-list li {
    color: var(--brand-fg);
}

.material-card-accent .material-list li::before {
    color: var(--brand-fg);
}

.parts-categories {
    padding: 6rem 0;
    background: var(--surface);
}

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

.parts-card {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.parts-card:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.parts-card-head h3 {
    margin: 0 0 0.4rem 0;
    color: var(--brand);
    font-size: 1.375rem;
    letter-spacing: -0.01em;
}

.parts-card-head p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.875rem;
}

.parts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.parts-list li {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--rule-soft);
}

.parts-list li:last-child {
    border-bottom: none;
}

.parts-process {
    padding: 6rem 0;
    background: var(--bg);
}

.parts-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.parts-step {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.parts-step-num {
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.parts-step h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.parts-step p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}

.parts-note {
    margin-top: 2rem;
    color: var(--ink-faint);
    font-style: italic;
    font-size: 0.9375rem;
}

.lammin-lines {
    padding: 6rem 0;
    background: var(--surface);
}

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

.line-card {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.line-card:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.line-card-tag {
    align-self: flex-start;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.625rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.line-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.line-card p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}

.line-list {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.line-list li {
    color: var(--ink-soft);
    font-size: 0.875rem;
    padding-left: 1.125rem;
    position: relative;
    line-height: 1.5;
}

.line-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: -0.15rem;
    color: var(--brand);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.line-card-accent {
    background: var(--brand);
    color: var(--brand-fg);
    border-color: var(--brand);
}

.line-card-accent h3 {
    color: var(--brand-fg);
}

.line-card-accent p {
    color: oklch(0.94 0.005 80);
}

.line-card-accent .line-card-tag {
    background: oklch(0.96 0.005 80 / 0.18);
    color: var(--brand-fg);
}

.line-card-accent .line-list li {
    color: oklch(0.94 0.005 80);
}

.line-card-accent .line-list li::before {
    color: var(--brand-fg);
}

.faq {
    padding: 6rem 0;
    background: var(--bg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 48rem;
}

.faq-list-center {
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 1.125rem 1.375rem;
    transition: border-color 0.2s ease-out;
}

.faq-item:hover {
    border-color: var(--brand);
}

.faq-item[open] {
    border-color: var(--brand);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
}

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

.faq-item summary::after {
    content: "+";
    color: var(--brand);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease-out;
    display: inline-block;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0.875rem 0 0 0;
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-page {
    padding: 5rem 0 6rem 0;
}

.rw-scale-light {
    background: var(--surface);
}



@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 13rem;
    }

    .gallery-tall {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }
}

@media (max-width: 1023px) {
    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--rule);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.25rem 1.25rem 1.25rem;
        box-shadow: var(--shadow-card);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.28s ease-out, opacity 0.18s ease-out;
    }

    .primary-nav.is-open {
        max-height: calc(100vh - 5rem);
        opacity: 1;
        pointer-events: auto;
        overflow-y: auto;
    }

    .primary-nav a {
        padding: 0.875rem 0.5rem;
        border-bottom: 1px solid var(--rule-soft);
        font-size: 1rem;
    }

    .primary-nav a:last-child {
        border-bottom: none;
    }

    .primary-nav .nav-cta {
        margin-top: 0.875rem;
        text-align: center;
        padding: 0.95rem 1rem;
        border-bottom: none;
        font-size: 0.9375rem;
    }

    .primary-nav .nav-phone {
        display: flex;
        justify-content: center;
        margin-top: 0.625rem;
        padding: 0.875rem 1rem;
        border-bottom: none;
        background: var(--brand-light);
        border-color: transparent;
        font-size: 0.9375rem;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 0.875rem 0.5rem;
        border-bottom: 1px solid var(--rule-soft);
        font-size: 1rem;
        cursor: pointer;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 0.75rem;
        min-width: 0;
        margin-top: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.28s ease-out, padding 0.2s ease-out;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        max-height: 22rem;
        padding: 0.25rem 0 0.625rem 0.75rem;
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg,
    .nav-dropdown:focus-within .nav-dropdown-trigger svg {
        transform: none;
    }

    .nav-dropdown.is-open .nav-dropdown-trigger svg {
        transform: rotate(180deg);
    }

    .primary-nav .nav-dropdown-menu a {
        padding: 0.625rem 0.5rem;
        font-size: 0.9375rem;
        border-radius: 4px;
    }

    .hero {
        min-height: 0;
        padding: 4rem 0 4rem 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-form-card {
        justify-self: stretch;
        max-width: 36rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .why-inner,
    .detail-inner,
    .contact-inner,
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .cta-inner {
        gap: 1.75rem;
    }

    .detail-reverse .detail-text,
    .detail-reverse .detail-image {
        order: initial;
    }

    .why-image {
        max-height: 24rem;
    }

    .story-inner,
    .featured-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image,
    .featured-image {
        max-height: 26rem;
    }

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

    .material-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .parts-grid,
    .lines-grid,
    .parts-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .page-hero {
        padding: 5rem 0 4rem 0;
        min-height: auto;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .lammin-tables,
    .material-compare,
    .parts-categories,
    .parts-process,
    .lammin-lines,
    .featured-project,
    .story,
    .faq,
    .cross-links {
        padding: 4.5rem 0;
    }

    .detail-image {
        aspect-ratio: 3 / 4;
        max-height: 30rem;
    }

    .why,
    .services,
    .detail,
    .process,
    .rw-scale,
    .gallery,
    .contact {
        padding: 4.5rem 0;
    }

    .about {
        padding: 5rem 0;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .about h2 {
        font-size: 1.875rem;
    }

    .featured-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .rw-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-benefits-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-image-wrap {
        aspect-ratio: 16 / 11;
        max-height: 26rem;
    }

    .why-benefits {
        padding: 5rem 0;
    }

    .why-benefits h2 {
        font-size: 1.875rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 12rem;
    }

    .gallery-tall {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .cta-actions {
        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
        max-width: 32rem;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lammin-block {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .section-head {
        margin-bottom: 2rem;
    }

    .section-sub {
        font-size: 0.9375rem;
    }

    .hero {
        padding: 3rem 0 3rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1.0625rem;
        margin-bottom: 1.125rem;
    }

    .hero-lead {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .why,
    .benefits,
    .services,
    .detail,
    .process,
    .rw-scale,
    .gallery,
    .contact,
    .cta-banner {
        padding: 3.5rem 0;
    }

    .about {
        padding: 4rem 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
        padding-top: 1.75rem;
    }

    .about-stat-num {
        font-size: 1.625rem;
    }

    .benefits {
        padding: 3rem 0;
    }

    .benefits-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .why-benefits {
        padding: 4rem 0;
    }

    .why-head {
        margin-bottom: 2.25rem;
    }

    .why-benefits h2 {
        font-size: 1.75rem;
    }

    .why-benefits .why-lead {
        font-size: 0.9375rem;
    }

    .topbar-text {
        font-size: 0.8125rem;
    }

    .topbar-text-extra {
        display: none;
    }

    .topbar-link {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .brand-logo {
        width: 10.5rem;
    }

    .hero-form input,
    .hero-form textarea,
    .hero-form select,
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 0.875rem 0.875rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .faq-item {
        padding: 1.25rem 1.25rem;
    }

    .faq-item summary {
        min-height: 2.5rem;
    }

    .data-table tbody td,
    .data-table thead th {
        padding: 0.7rem 0.625rem;
    }

    .primary-nav.is-open {
        max-height: min(calc(100vh - 5rem), 76vh);
    }

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

    .service-card-img {
        aspect-ratio: 16 / 9;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step {
        padding: 1.5rem 1.25rem;
    }

    .rw-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .rw-card {
        padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 12rem;
    }

    .gallery-tall,
    .gallery-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .hero-form-card {
        padding: 1.625rem 1.25rem;
    }

    .hero-form input:focus,
    .hero-form textarea:focus,
    .hero-form select:focus,
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        box-shadow: 0 0 0 2px oklch(0.51 0.13 245 / 0.18);
    }

    .contact-form-block {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .contact-form-card {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.375rem;
    }

    .contact {
        padding: 3.5rem 0;
    }

    .contact-info h2 {
        font-size: 1.625rem;
    }

    .cta-banner {
        padding: 3rem 0;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 0.9375rem;
    }

    .cta-actions .btn {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        padding-bottom: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .modal {
        padding: 0.75rem;
    }

    .modal-panel {
        padding: 2rem 1rem 1.25rem 1rem;
        max-height: 86vh;
    }

    .contact-list li {
        grid-template-columns: 4.5rem 1fr;
        gap: 0.5rem;
        padding: 0.95rem 0;
    }

    .btn-block {
        padding: 0.875rem 1rem;
    }

    .qa {
        padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    }

    .page-hero {
        padding: 4rem 0 3rem 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero-lead {
        font-size: 1rem;
    }

    .story-text h2,
    .featured-text h2 {
        font-size: 1.75rem;
    }

    .cross-grid,
    .parts-grid,
    .lines-grid,
    .parts-steps,
    .lammin-cards {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .featured-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .featured-stat-num {
        font-size: 1.25rem;
    }

    .lammin-block {
        padding: 1.375rem 1rem;
    }

    .lammin-tables,
    .material-compare,
    .parts-categories,
    .parts-process,
    .lammin-lines,
    .featured-project,
    .story,
    .faq,
    .cross-links {
        padding: 3.5rem 0;
    }

    .material-card,
    .parts-card,
    .line-card,
    .parts-step,
    .cross-card {
        padding: 1.5rem 1.25rem;
    }

    .about-stats-light {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .header-inner {
        gap: 0.75rem;
    }

    .brand-logo {
        width: 9rem;
    }

    .btn {
        padding: 0.95rem 1.25rem;
    }

    .btn-block {
        padding: 1rem 1.25rem;
    }

    .page-hero {
        padding: 3rem 0 2.5rem 0;
    }

    .page-hero h1 {
        font-size: 1.875rem;
    }

    .contact-card {
        padding: 0.875rem 1rem;
    }

    .faq-item summary {
        font-size: 0.9375rem;
    }
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha,
    #quick-contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha,
    #quick-contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

@media (max-width: 640px) {
    section,
    section > div {
        max-width: 100%;
        box-sizing: border-box;
    }

    #contact-form,
    #quick-contact-form {
        max-width: 100%;
        overflow: hidden;
    }

    #quick-contact-form .g-recaptcha {
        transform-origin: left center;
        max-width: 100%;
    }
}
