:root {
    --green-950: #102e2b;
    --green-900: #183c37;
    --green-800: #23524a;
    --green-700: #2f6b60;
    --green-100: #dfebe7;
    --green-50: #f0f6f3;
    --gold: #d6a955;
    --gold-light: #f4dfb3;
    --cream: #f7f3ea;
    --white: #ffffff;
    --text: #24322f;
    --muted: #65736f;
    --border: #dfe7e3;
    --danger: #a83c3c;
    --shadow: 0 24px 70px rgba(16, 46, 43, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family:
        "Noto Sans SC",
        "Microsoft YaHei",
        "PingFang SC",
        Arial,
        sans-serif;
    line-height: 1.75;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.25;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 2000;
    padding: 10px 18px;
    color: var(--white);
    background: var(--green-900);
}

.skip-link:focus {
    top: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(24, 60, 55, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--green-900);
}

.brand-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 14px 14px 14px 4px;
    color: var(--white);
    background: var(--green-900);
    font-size: 23px;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 19px;
    letter-spacing: 0.04em;
}

.brand small {
    margin-top: 2px;
    color: var(--green-700);
    font-size: 9px;
    letter-spacing: 0.18em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #3a4a46;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a {
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--green-700);
}

.main-nav .nav-phone {
    padding: 10px 19px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green-900);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--green-50);
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--green-900);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 72px;
    background:
        radial-gradient(circle at 12% 20%, rgba(214, 169, 85, 0.15), transparent 25%),
        linear-gradient(135deg, #f8f6ef 0%, #f0f6f3 60%, #e4eeea 100%);
}

.hero::after {
    position: absolute;
    right: -80px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(35, 82, 74, 0.1);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--gold-light);
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 24px;
    color: var(--green-950);
    font-size: clamp(42px, 5.2vw, 74px);
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
    color: var(--green-700);
}

.hero-description {
    max-width: 650px;
    margin-bottom: 32px;
    color: #566762;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--green-900);
    box-shadow: 0 10px 28px rgba(24, 60, 55, 0.22);
}

.button-light {
    border-color: rgba(24, 60, 55, 0.14);
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.75);
}

.button-outline {
    border-color: var(--green-900);
    color: var(--green-900);
    background: transparent;
}

.button-gold {
    color: var(--green-950);
    background: var(--gold-light);
}

.hero-points {
    display: flex;
    gap: 42px;
    margin: 45px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points strong,
.hero-points span {
    display: block;
}

.hero-points strong {
    color: var(--green-900);
    font-size: 25px;
}

.hero-points span {
    color: var(--muted);
    font-size: 12px;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    height: 610px;
    border-radius: 220px 220px 24px 24px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.floating-card {
    position: absolute;
    right: -30px;
    bottom: 55px;
    display: flex;
    max-width: 300px;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: var(--green-900);
    font-size: 14px;
}

.floating-card span:not(.floating-icon) {
    color: var(--muted);
    font-size: 11px;
}

.floating-icon {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--green-700);
    font-weight: 800;
}

.trust-bar {
    padding: 20px 0;
    color: var(--green-100);
    background: var(--green-950);
}

.trust-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.trust-list span::before {
    margin-right: 8px;
    color: var(--gold);
    content: "◆";
    font-size: 8px;
}

.section {
    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
}

.section-heading h2,
.equipment-content h2,
.rehab-copy h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2,
.charity-content h2 {
    margin-bottom: 0;
    color: var(--green-950);
    font-size: clamp(31px, 4vw, 48px);
    letter-spacing: -0.04em;
}

.section-heading > p {
    max-width: 470px;
    margin-bottom: 4px;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 270px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(24, 60, 55, 0.1);
}

.service-card-featured {
    color: var(--white);
    border-color: var(--green-900);
    background: var(--green-900);
}

.service-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 16px;
    color: var(--green-900);
    background: var(--green-100);
    font-size: 18px;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--green-950);
    font-size: 20px;
}

.service-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.service-card-featured h3,
.service-card-featured p {
    color: var(--white);
}

.service-card-featured p {
    opacity: 0.76;
}

.card-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #aebbb7;
    font-size: 12px;
    font-weight: 800;
}

.equipment-section {
    background: var(--green-50);
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 80px;
}

.equipment-photo {
    position: relative;
}

.equipment-photo img {
    height: 650px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.photo-label {
    position: absolute;
    right: 25px;
    bottom: 25px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.equipment-content > p:not(.eyebrow) {
    margin: 25px 0 28px;
    color: var(--muted);
}

.equipment-list {
    margin-bottom: 30px;
}

.equipment-list > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid #cedbd6;
}

.equipment-list span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}

.equipment-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.equipment-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--green-900);
    font-size: 16px;
}

.text-link {
    color: var(--green-700);
    font-weight: 800;
}

.rehabilitation {
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(16, 46, 43, 0.98), rgba(35, 82, 74, 0.93)),
        url("https://placehold.co/1600x900/183c37/ffffff?text=犬猫康复理疗背景图") center/cover;
}

.rehab-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 100px;
}

.rehab-copy h2 {
    color: var(--white);
}

.rehab-copy > p:not(.eyebrow) {
    max-width: 700px;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.76);
}

.check-list {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.check-list li {
    margin: 9px 0;
}

.check-list li::before {
    margin-right: 12px;
    color: var(--gold-light);
    content: "✓";
    font-weight: 900;
}

.rehab-panel {
    display: grid;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.rehab-panel > span {
    margin-bottom: 25px;
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 0.14em;
}

.rehab-panel strong {
    padding: 5px 0;
    font-size: 21px;
}

.rehab-panel i {
    width: 1px;
    height: 25px;
    margin: 6px 0 6px 8px;
    background: var(--gold);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--green-50);
}

.team-card img {
    height: 355px;
    filter: saturate(0.9);
    object-fit: cover;
    object-position: center top;
}

.team-card > div {
    padding: 22px;
}

.team-card h3 {
    margin-bottom: 10px;
    color: var(--green-950);
}

.team-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.team-card .team-role {
    margin-bottom: 7px;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.team-note {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.charity-section {
    padding-top: 0;
}

.charity-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--green-900);
}

.charity-content {
    padding: 65px;
}

.charity-content h2 {
    color: var(--white);
}

.charity-content > p:not(.eyebrow) {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.75);
}

.charity-content .text-link {
    color: var(--gold-light);
}

.charity-number {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: var(--green-950);
    background: var(--gold-light);
    text-align: center;
}

.charity-number strong {
    font-size: 58px;
    line-height: 1;
}

.charity-number span {
    margin: 14px 0;
    font-size: 22px;
    font-weight: 800;
}

.charity-number small {
    max-width: 280px;
    color: #6f6044;
}

.article-section {
    background: var(--cream);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(24, 60, 55, 0.1);
    border-radius: var(--radius-md);
    background: var(--white);
}

.article-meta {
    margin-bottom: 18px;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.article-card h3 {
    margin-bottom: 14px;
    color: var(--green-950);
    font-size: 21px;
}

.article-card > p {
    display: -webkit-box;
    margin-bottom: 24px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.article-read-button {
    margin-top: auto;
    padding: 0;
    border: 0;
    color: var(--green-700);
    background: transparent;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.empty-articles {
    padding: 60px;
    border: 1px dashed #b8c8c1;
    border-radius: var(--radius-md);
    color: var(--muted);
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 100px;
}

.about-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.about-copy blockquote {
    margin: 30px 0 0;
    padding: 20px 0 20px 25px;
    border-left: 3px solid var(--gold);
    color: var(--green-900);
    font-size: 18px;
    font-weight: 700;
}

.about-gallery {
    position: relative;
    min-height: 650px;
}

.about-gallery img {
    object-fit: cover;
}

.about-image-large {
    width: 73%;
    height: 610px;
    border-radius: 220px 220px 24px 24px;
}

.about-gallery .about-image-small {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 55%;
    height: 280px;
    border: 10px solid var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.faq-section {
    background: var(--green-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 90px;
}

.faq-intro {
    align-self: start;
    position: sticky;
    top: 120px;
}

.faq-intro > p:not(.eyebrow) {
    margin: 25px 0;
    color: var(--muted);
}

.faq-item {
    border-bottom: 1px solid #cbd9d4;
}

.faq-item summary {
    position: relative;
    padding: 24px 45px 24px 0;
    color: var(--green-950);
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 22px;
    right: 0;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--green-900);
    background: var(--white);
    content: "+";
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item div {
    padding: 0 45px 25px 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-section {
    padding: 100px 0;
    color: var(--white);
    background: var(--green-950);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 100px;
}

.contact-copy h2 {
    color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.7);
}

.contact-phone {
    color: var(--gold-light);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.contact-card {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
}

.contact-card > div {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card span {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.contact-card p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    padding: 65px 0 25px;
    color: #bbcbc6;
    background: #0b211f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 80px;
}

.footer-brand {
    color: var(--white);
}

.footer-grid h3 {
    color: var(--white);
    font-size: 15px;
}

.footer-grid a:not(.brand),
.footer-grid p {
    display: block;
    margin: 7px 0;
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 25px;
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
}

.floating-phone {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    color: var(--green-950);
    background: var(--gold-light);
    box-shadow: 0 15px 40px rgba(16, 46, 43, 0.25);
}

.floating-phone span,
.floating-phone strong {
    display: block;
}

.floating-phone span {
    font-size: 10px;
}

.floating-phone strong {
    font-size: 15px;
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    padding: 25px;
    place-items: center;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 24, 22, 0.75);
    backdrop-filter: blur(8px);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 50px);
    padding: 40px;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: var(--green-900);
    background: var(--green-50);
    font-size: 24px;
    cursor: pointer;
}

.form-note {
    color: var(--muted);
    font-size: 13px;
}

.modal form label {
    display: block;
    margin-bottom: 18px;
    color: var(--green-900);
    font-size: 13px;
    font-weight: 800;
}

.modal input,
.modal select,
.modal textarea {
    width: 100%;
    margin-top: 7px;
    padding: 12px 14px;
    border: 1px solid #cad8d3;
    border-radius: 10px;
    outline: none;
    color: var(--text);
    background: var(--white);
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(47, 107, 96, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-submit {
    width: 100%;
}

.article-admin {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border);
}

.article-admin h3 {
    color: var(--green-950);
}

.admin-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.admin-item span {
    font-size: 13px;
}

.delete-article {
    flex: 0 0 auto;
    padding: 5px 10px;
    border: 1px solid #e4bcbc;
    border-radius: 8px;
    color: var(--danger);
    background: #fff7f7;
    cursor: pointer;
}

.reader-panel {
    width: min(820px, 100%);
}

.reader-content {
    color: #4c5c57;
}

.reader-content p {
    margin-bottom: 1.2em;
    white-space: pre-wrap;
}

/* 即使 JavaScript 加载失败，内容也正常显示 */
.reveal {
    opacity: 1;
    transform: none;
}

/* 只有确认 JavaScript 可用后才启用入场动画 */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.js-enabled .reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1050px) {
    .main-nav {
        gap: 15px;
    }

    .hero-grid,
    .equipment-grid,
    .about-grid {
        gap: 45px;
    }

    .service-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual img {
        height: 540px;
    }
}

@media (max-width: 860px) {
    .menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: grid;
    }

    .main-nav a {
        padding: 8px 5px;
    }

    .main-nav .nav-phone {
        text-align: center;
    }

    .hero-grid,
    .equipment-grid,
    .rehab-inner,
    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 600px;
        margin-inline: auto;
    }

    .equipment-grid,
    .about-grid,
    .faq-grid,
    .contact-grid {
        gap: 50px;
    }

    .rehab-inner {
        gap: 45px;
    }

    .faq-intro {
        position: static;
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

    .charity-content {
        padding: 45px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 78px 0;
    }

    .hero {
        padding: 58px 0;
    }

    .hero h1 {
        font-size: 41px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-points {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-points strong {
        font-size: 20px;
    }

    .hero-visual img {
        height: 430px;
    }

    .floating-card {
        right: 10px;
        bottom: 20px;
        left: 10px;
    }

    .service-grid,
    .team-grid,
    .article-grid,
    .charity-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .equipment-photo img {
        height: 450px;
    }

    .about-gallery {
        min-height: 520px;
    }

    .about-image-large {
        width: 88%;
        height: 480px;
    }

    .about-gallery .about-image-small {
        width: 65%;
        height: 210px;
    }

    .charity-content,
    .charity-number {
        padding: 38px 25px;
    }

    .faq-grid,
    .contact-grid {
        gap: 40px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal {
        padding: 12px;
    }

    .modal-panel {
        max-height: calc(100vh - 24px);
        padding: 30px 20px;
    }

    .floating-phone {
        right: 12px;
        bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .button,
    .service-card {
        transition: none;
    }
}
.reveal {
    opacity: 1 !important;
    transform: none !important;
}