:root {
    --page: #f7f9f6;
    --page-soft: #eef4f1;
    --paper: #ffffff;
    --paper-warm: #fbfaf5;
    --ink: #24302f;
    --ink-soft: #4c5a56;
    --muted: #6e7b76;
    --sage: #597d70;
    --sage-deep: #294f47;
    --sage-soft: #e0ece7;
    --clay: #9c7359;
    --accent: #315f55;
    --accent-strong: #244b43;
    --accent-soft: #e1ece7;
    --line: #dce4df;
    --line-strong: #c2d0c9;
    --danger: #9f3345;
    --shadow-lg: 0 18px 42px rgba(31, 45, 39, 0.14);
    --shadow-md: 0 10px 26px rgba(31, 45, 39, 0.1);
    --shadow-sm: 0 4px 14px rgba(31, 45, 39, 0.08);
    --radius-xl: 12px;
    --radius-lg: 8px;
    --radius-md: 6px;
    --max-width: 1140px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(224, 236, 231, 0.78) 0%, rgba(247, 249, 246, 0) 420px),
        linear-gradient(135deg, #f9faf7 0%, #f2f6f3 52%, #edf3f0 100%);
    min-height: 100vh;
    line-height: 1.55;
    letter-spacing: 0;
    overflow-x: hidden;
}

.modal-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", "Trebuchet MS", sans-serif;
    margin: 0;
    line-height: 1.16;
    letter-spacing: 0;
}

p {
    margin: 0;
}

figure {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(89, 125, 112, 0.35);
    outline-offset: 3px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(220, 228, 223, 0.82);
    transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 24px rgba(31, 45, 39, 0.08);
}

.site-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.brand-mark {
    width: 2.6rem;
    aspect-ratio: 1;
    border-radius: 10px;
    border: 1px solid rgba(89, 125, 112, 0.35);
    box-shadow: 0 0 0 4px rgba(224, 236, 231, 0.85);
    object-fit: cover;
}

.brand-copy {
    display: grid;
    gap: 0.04rem;
    min-width: 0;
}

.brand-title {
    color: var(--ink);
    font-size: 1.03rem;
    font-weight: 800;
}

.brand-sub {
    color: var(--sage-deep);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.nav-links {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
}

.nav-link {
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.94rem;
    padding: 0.5rem 0.62rem;
    border-radius: 8px;
    transition: color 180ms ease, background-color 180ms ease;
}

.nav-link:hover {
    color: var(--sage-deep);
    background: rgba(224, 236, 231, 0.65);
}

.nav-link[aria-current="page"] {
    color: var(--sage-deep);
    background: var(--sage-soft);
}

.menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    border: 1px solid var(--line-strong);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 0 0 1rem;
}

.mobile-menu-inner {
    display: grid;
    gap: 0.45rem;
    padding: 0.75rem;
    background: var(--paper);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.mobile-menu .nav-link {
    border: 1px solid transparent;
    padding: 0.7rem 0.8rem;
}

.mobile-menu .nav-link[aria-current="page"] {
    border-color: rgba(89, 125, 112, 0.26);
}

.mobile-menu.is-open {
    display: block;
}

.page-hero {
    padding: clamp(3rem, 7vw, 5.4rem) 0 clamp(1.7rem, 4vw, 3.4rem);
    position: relative;
}

.page-hero.with-image {
    min-height: clamp(520px, 75vh, 690px);
    display: grid;
    align-items: center;
}

.page-hero.slim {
    padding-bottom: clamp(1.1rem, 3vw, 2rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(330px, 0.97fr);
    gap: clamp(1.5rem, 4vw, 3.4rem);
    align-items: center;
}

.hero-grid > *,
.split > *,
.info-grid > *,
.pricing-grid > *,
.contact-grid > *,
.gallery-grid > *,
.form-grid > * {
    min-width: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--sage-deep);
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(89, 125, 112, 0.3);
    background: rgba(224, 236, 231, 0.72);
    font-weight: 800;
    font-size: 0.76rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-title {
    margin-top: 1rem;
    font-size: clamp(2.35rem, 5vw, 4.55rem);
    max-width: 15ch;
    color: var(--ink);
}

.hero-title .accent-text,
.section-title .accent-text {
    color: var(--sage-deep);
}

.hero-lead {
    margin-top: 1rem;
    max-width: 58ch;
    color: var(--ink-soft);
    font-size: clamp(1rem, 2vw, 1.14rem);
}

.button-row {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.button-row.compact-actions {
    margin-top: 0.15rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.8rem;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0.72rem 1rem;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 200ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

.btn-primary {
    color: #fbfdfb;
    background: linear-gradient(135deg, var(--sage) 0%, var(--accent-strong) 100%);
    box-shadow: 0 10px 22px rgba(36, 75, 67, 0.16);
}

.btn-primary:hover {
    box-shadow: 0 12px 26px rgba(36, 75, 67, 0.24);
}

.btn-secondary {
    color: var(--sage-deep);
    border-color: rgba(89, 125, 112, 0.3);
    background: var(--paper);
}

.btn-secondary:hover {
    border-color: rgba(89, 125, 112, 0.5);
    background: var(--sage-soft);
}

.btn-soft {
    color: var(--sage-deep);
    border-color: rgba(89, 125, 112, 0.24);
    background: var(--sage-soft);
}

.btn-soft:hover {
    border-color: rgba(89, 125, 112, 0.45);
    background: #d4e5de;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    min-height: 390px;
    background: var(--paper);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(24, 34, 31, 0.5) 100%);
}

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

.hero-visual-note {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0.95rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.hero-visual-note strong {
    display: block;
    color: var(--ink);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.hero-visual-note span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.kpi-strip {
    margin-top: 1.45rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 0.86rem 0.9rem;
    box-shadow: var(--shadow-sm);
}

.kpi-card strong {
    display: block;
    font-family: "Sora", sans-serif;
    color: var(--sage-deep);
    font-size: 1.08rem;
}

.kpi-card span {
    color: var(--muted);
    font-size: 0.86rem;
}

.section {
    padding: clamp(2.25rem, 5vw, 4.3rem) 0;
}

.section-tight {
    padding-top: clamp(0.8rem, 2vw, 1.25rem);
}

.section-head {
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

.section-head.compact {
    margin-bottom: 1rem;
}

.eyebrow {
    color: var(--sage);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    font-weight: 800;
}

.section-title {
    margin-top: 0.48rem;
    font-size: clamp(1.62rem, 3.5vw, 2.75rem);
    color: var(--ink);
    overflow-wrap: break-word;
}

.section-copy {
    margin-top: 0.72rem;
    color: var(--muted);
    max-width: 64ch;
}

.page-subtitle {
    color: var(--ink-soft);
    max-width: 66ch;
    margin-top: 0.82rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.muted-text {
    color: var(--muted);
}

.link-inline {
    color: var(--sage-deep);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

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

.card,
.plan,
.faq-item,
.contact-card,
.form-shell,
.surface-band,
.success-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
}

.card {
    border-radius: var(--radius-lg);
    padding: 1.15rem;
    transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(89, 125, 112, 0.42);
    background: var(--paper);
    box-shadow: var(--shadow-md);
}

.card h3 {
    font-size: 1.06rem;
    margin-bottom: 0.35rem;
}

.card p,
.card li {
    color: var(--muted);
    font-size: 0.95rem;
}

.icon-token {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 8px;
    margin-bottom: 0.72rem;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--sage-deep);
    background: var(--sage-soft);
    border: 1px solid rgba(89, 125, 112, 0.18);
}

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

.surface-band {
    border-radius: var(--radius-xl);
    padding: clamp(1.1rem, 3vw, 1.8rem);
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.feature-list.with-space {
    margin-top: 0.8rem;
}

.feature-list li {
    padding-left: 1.18rem;
    position: relative;
}

.feature-list li::before {
    content: "";
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    background: var(--sage);
    position: absolute;
    top: 0.48rem;
    left: 0;
}

.timeline {
    display: grid;
    gap: 0.82rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: 2.1rem 1fr;
    gap: 0.75rem;
}

.step-no {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--sage-deep);
    background: var(--sage-soft);
    border: 1px solid rgba(89, 125, 112, 0.24);
}

.step-copy strong {
    display: block;
    margin-bottom: 0.12rem;
}

.step-copy p {
    color: var(--muted);
    font-size: 0.92rem;
}

.cta-band {
    margin-top: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(89, 125, 112, 0.24);
    background:
        linear-gradient(135deg, rgba(224, 236, 231, 0.88), rgba(255, 255, 255, 0.94)),
        var(--paper);
    padding: clamp(1.15rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
}

.cta-band h3 {
    font-size: clamp(1.2rem, 3vw, 1.72rem);
}

.cta-band p {
    margin-top: 0.55rem;
    color: var(--ink-soft);
}

.site-footer {
    margin-top: 1.6rem;
    border-top: 1px solid var(--line);
    background: #f0f5f2;
}

.footer-shell {
    padding: 2rem 0;
    display: grid;
    gap: 1.2rem;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--sage-deep);
}

.footer-bottom {
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.86rem;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    cursor: zoom-in;
    min-height: 230px;
    aspect-ratio: 4 / 3;
    background: #e4ebe7;
    padding: 0;
    text-align: left;
    appearance: none;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
    transform: scale(1.045);
    filter: saturate(1.04) brightness(1.03);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.94) 100%);
}

.gallery-overlay span {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(28, 38, 34, 0.72);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 90;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-frame {
    max-width: min(1080px, 96vw);
    max-height: 88vh;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
}

.lightbox-frame img {
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    background: #18221f;
}

.lightbox-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 0.82rem 0.95rem;
}

.icon-btn {
    border: 1px solid var(--line-strong);
    background: var(--paper);
    color: var(--ink);
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 8px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

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

.plan {
    border-radius: var(--radius-lg);
    padding: 1.08rem;
    position: relative;
    overflow: hidden;
}

.plan.popular {
    border-color: rgba(89, 125, 112, 0.34);
    background: linear-gradient(180deg, #f5faf7, #ffffff 72%);
    box-shadow: var(--shadow-md);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sage-deep);
    background: var(--sage-soft);
    border: 1px solid rgba(89, 125, 112, 0.18);
}

.badge.popular {
    background: var(--accent-soft);
    color: var(--accent-strong);
    border-color: rgba(89, 125, 112, 0.26);
}

.plan h3 {
    margin-top: 0.65rem;
    font-size: 1.12rem;
}

.plan-sub {
    margin-top: 0.28rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.price {
    margin-top: 0.95rem;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.price strong {
    color: var(--sage-deep);
    font-size: 2.2rem;
}

.price span {
    color: var(--muted);
}

.card-actions {
    margin-top: 0.95rem;
}

.faq-list {
    display: grid;
    gap: 0.72rem;
}

.faq-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 800;
}

.faq-trigger:hover {
    background: rgba(224, 236, 231, 0.5);
}

.faq-trigger svg {
    flex-shrink: 0;
    color: var(--sage);
    transition: transform 220ms ease;
}

.faq-item.open .faq-trigger svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.faq-answer p {
    padding: 0 1rem 1rem;
    color: var(--muted);
}

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

.contact-card {
    display: grid;
    align-content: start;
    gap: 0.58rem;
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.contact-card small {
    color: var(--muted);
}

.form-shell {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

form > .form-shell + .form-shell {
    margin-top: 1rem;
}

.form-header {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: #f4f7f5;
}

.form-header h2 {
    font-size: 1.04rem;
}

.form-body {
    padding: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.form-grid + .form-grid {
    margin-top: 0.85rem;
}

.form-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
    display: grid;
    gap: 0.36rem;
}

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

.field label {
    font-size: 0.84rem;
    color: var(--ink-soft);
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: #fbfcfa;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--ink);
    padding: 0.7rem 0.76rem;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #8c9994;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(89, 125, 112, 0.72);
    box-shadow: 0 0 0 4px rgba(89, 125, 112, 0.16);
    background: var(--paper);
}

.field-check {
    display: flex;
    align-items: flex-start;
    gap: 0.58rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-top: 0.95rem;
}

.field-check input {
    margin-top: 0.24rem;
    accent-color: var(--sage);
}

.notice {
    border: 1px solid rgba(89, 125, 112, 0.32);
    border-radius: var(--radius-lg);
    padding: 0.86rem 0.95rem;
    background: rgba(224, 236, 231, 0.62);
    color: var(--sage-deep);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.form-actions {
    margin-top: 1rem;
}

.u-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.success-wrap {
    min-height: calc(100vh - 250px);
    display: grid;
    place-items: center;
    padding: 2rem 0;
}

.success-card {
    max-width: 720px;
    border-radius: var(--radius-xl);
    padding: 1.35rem;
    box-shadow: var(--shadow-md);
}

.success-check {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--sage-soft);
    color: var(--sage-deep);
    border: 1px solid rgba(89, 125, 112, 0.25);
    font-weight: 900;
    margin-bottom: 0.9rem;
}

.success-title {
    margin-bottom: 0.65rem;
}

.success-copy {
    margin-top: 0;
}

.success-sequence {
    margin-top: 1rem;
}

.success-sequence-title {
    font-size: 1.35rem;
}

.success-note {
    margin-top: 1rem;
    color: var(--muted);
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 240ms ease, transform 240ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 80ms;
}

.reveal.delay-2 {
    transition-delay: 160ms;
}

.reveal.delay-3 {
    transition-delay: 240ms;
}

@media (max-width: 1024px) {
    .info-grid,
    .pricing-grid,
    .contact-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-visual {
        min-height: 340px;
    }
}

@media (max-width: 900px) {
    .menu-button {
        display: inline-grid;
        flex: 0 0 2.75rem;
    }

    .nav-links {
        display: none;
    }

    .hero-visual {
        order: -1;
    }

    .kpi-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .form-grid,
    .form-grid.three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 1.5rem, var(--max-width));
    }

    .page-hero {
        padding-top: 1.6rem;
    }

    .page-hero.with-image {
        min-height: 0;
    }

    .hero-title {
        font-size: clamp(1.95rem, 10vw, 2.55rem);
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-visual {
        width: 100%;
        min-height: 240px;
    }

    .hero-visual-note {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.8rem;
    }

    .section-title {
        font-size: clamp(1.55rem, 8vw, 2.15rem);
    }

    .info-grid,
    .pricing-grid,
    .contact-grid,
    .gallery-grid,
    .kpi-strip {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 220px;
    }

    .site-nav {
        min-height: 72px;
    }

    .brand-title {
        font-size: 0.96rem;
    }

    .brand-sub {
        font-size: 0.66rem;
    }

    .btn {
        width: 100%;
    }

    .button-row {
        display: grid;
    }

    .lightbox-meta {
        align-items: flex-start;
    }

    body {
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
