@font-face {
    font-family: "IBM Plex Sans Arabic";
    src: url("fonts/IBMPlexSansArabic-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "IBM Plex Sans Arabic";
    src: url("fonts/IBMPlexSansArabic-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "IBM Plex Sans Arabic";
    src: url("fonts/IBMPlexSansArabic-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "IBM Plex Sans Arabic";
    src: url("fonts/IBMPlexSansArabic-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --site-bg: #f6f1e7;
    --site-surface: #fffdf9;
    --site-panel: #ffffff;
    --site-line: #e7dcc7;
    --site-primary: #0c5d47;
    --site-primary-2: #14795c;
    --site-primary-3: #08392c;
    --site-accent: #d4a64b;
    --site-text: #173128;
    --site-muted: #5f7069;
    --site-shadow: 0 18px 40px rgba(15, 54, 41, 0.09);
    --site-shadow-soft: 0 14px 30px rgba(15, 54, 41, 0.08);
    --font-body: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 166, 75, 0.14), transparent 22%),
        radial-gradient(circle at bottom left, rgba(12, 93, 71, 0.08), transparent 28%),
        linear-gradient(180deg, #fbf7ef 0%, var(--site-bg) 100%);
    color: var(--site-text);
    font-family: var(--font-body);
    font-weight: 400;
}

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

img {
    max-width: 100%;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h4,
h5,
h6,
.short-title,
.site-nav a,
.site-button,
.site-chip,
button,
label {
    font-weight: 600;
}

p,
input,
textarea {
    font-weight: 400;
}

.site-shell {
    min-height: 100vh;
}

.site-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-right: 12px;
    padding-left: 12px;
}

@media (min-width: 576px) {
    .site-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .site-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .site-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .site-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .site-container {
        max-width: 1320px;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(251, 247, 239, 0.86);
    border-bottom: 1px solid rgba(231, 220, 199, 0.92);
}

.site-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    padding: 8px 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 0;
    transition: transform 0.2s ease;
}

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

.site-brand-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-brand-copy {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}

.site-brand-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--site-primary-3);
    font-size: clamp(1.08rem, 1.45vw, 1.4rem);
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.site-brand-title::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--site-accent), #e0b96a);
    box-shadow: 0 0 0 4px rgba(212, 166, 75, 0.12);
    flex-shrink: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(231, 220, 199, 0.88);
    box-shadow: var(--site-shadow-soft);
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--site-muted);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--site-primary);
    background: rgba(12, 93, 71, 0.08);
    box-shadow: inset 0 0 0 1px rgba(12, 93, 71, 0.08);
}

.site-nav a:hover {
    transform: translateY(-1px);
}

.site-main {
    padding: 20px 0 48px;
}

.site-main-home {
    padding-top: 0;
    padding-bottom: 0;
}

.home-main-layout {
    width: 100%;
}

.home-fluid-band {
    padding-right: 0;
    padding-left: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-2));
    border-radius: 32px;
    color: #fff;
    padding: 34px;
    box-shadow: 0 24px 48px rgba(12, 93, 71, 0.16);
}

.hero-wide {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    padding: 52px 0 46px;
    background-color: #0b4b39;
    background-image:
        radial-gradient(circle at top right, rgba(24, 111, 84, 0.38), transparent 24%),
        radial-gradient(circle at 14% 78%, rgba(4, 39, 31, 0.44), transparent 30%),
        linear-gradient(136deg, rgba(6, 42, 33, 0.96) 0%, rgba(9, 58, 45, 0.95) 24%, rgba(12, 93, 71, 0.95) 52%, rgba(14, 79, 61, 0.96) 73%, rgba(5, 36, 29, 0.97) 100%),
        url("../img/Islamic-Pattern-08-min.jpg");
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-position: top right, bottom left, center, center;
    background-size: auto, auto, auto, 320px auto;
}

.hero-home {
    box-shadow: 0 26px 56px rgba(8, 57, 44, 0.24);
}

.hero-home-inner {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -60px -70px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 14% auto auto -70px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(35, 142, 107, 0.14);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.hero-copy {
    max-width: none;
}

.hero-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 8px;
}

.hero-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.hero-title-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.hero-logo {
    width: clamp(62px, 8vw, 96px);
    display: block;
    margin: 0;
    flex: 0 0 auto;
}

.hero-side-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 0 0 auto;
    padding-top: 4px;
}

.hero-app-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 63px;
    padding: 12px;
    border-radius: 21px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 34px rgba(4, 30, 23, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-app-link:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 224, 162, 0.48);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
    box-shadow: 0 20px 38px rgba(4, 30, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-app-link img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(5, 37, 29, 0.16));
}

.hero-volunteer-callout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 206px;
}

.hero-volunteer-kicker {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(4, 30, 23, 0.22);
}

.hero-volunteer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 194px;
    min-height: 56px;
    padding: 14px 24px;
    border: 1px solid rgba(255, 222, 126, 0.54);
    border-radius: 18px;
    background: linear-gradient(180deg, #f3d97a 0%, #e0ae2d 52%, #c78c1d 100%);
    color: #173128;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 0 0 1px rgba(255, 233, 161, 0.18) inset, 0 14px 30px rgba(233, 186, 66, 0.24), 0 0 24px rgba(238, 203, 104, 0.22);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.hero-volunteer-button:hover {
    transform: translateY(-2px);
    color: #173128;
    box-shadow: 0 0 0 1px rgba(255, 233, 161, 0.24) inset, 0 18px 34px rgba(233, 186, 66, 0.28), 0 0 30px rgba(238, 203, 104, 0.28);
    filter: saturate(1.04);
}

.hero-volunteer-button:focus-visible {
    outline: 3px solid rgba(255, 240, 190, 0.52);
    outline-offset: 3px;
}

.volunteer-modal .modal-dialog {
    max-width: 860px;
}

.volunteer-modal .modal-content {
    border: 1px solid rgba(231, 220, 199, 0.92);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 248, 241, 0.98));
    box-shadow: 0 28px 52px rgba(8, 38, 30, 0.2);
    overflow: hidden;
}

.volunteer-modal .modal-header {
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 12px;
    border-bottom: 0;
}

.volunteer-modal .modal-body {
    padding: 0 24px 24px;
}

.volunteer-modal .btn-close {
    box-shadow: none;
}

.volunteer-modal-kicker {
    color: var(--site-primary);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.volunteer-modal .modal-title {
    margin: 0;
    color: var(--site-primary-3);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.volunteer-modal-intro {
    margin: 0 0 16px;
    color: var(--site-muted);
    line-height: 1.9;
}

.volunteer-form-feedback {
    display: none;
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    line-height: 1.8;
    font-weight: 600;
}

.volunteer-form-feedback.is-visible {
    display: block;
}

.volunteer-form-feedback.is-success {
    background: #e6f5ee;
    color: #0d654c;
    border: 1px solid rgba(13, 101, 76, 0.12);
}

.volunteer-form-feedback.is-error {
    background: #fbe8e4;
    color: #9a392d;
    border: 1px solid rgba(154, 57, 45, 0.12);
}

.volunteer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.volunteer-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.volunteer-field label {
    color: var(--site-primary-3);
    font-weight: 800;
}

.volunteer-field input,
.volunteer-field select,
.volunteer-field textarea {
    width: 100%;
    border: 1px solid rgba(231, 220, 199, 0.96);
    border-radius: 18px;
    background: #fff;
    padding: 13px 15px;
    color: var(--site-primary-3);
    font-family: var(--font-body);
    font-size: 0.98rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.volunteer-field input:focus,
.volunteer-field select:focus,
.volunteer-field textarea:focus {
    outline: none;
    border-color: rgba(12, 93, 71, 0.32);
    box-shadow: 0 0 0 4px rgba(12, 93, 71, 0.08);
}

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

.volunteer-form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 18px;
}

.volunteer-submit-button {
    min-width: 160px;
}

.hero-chip {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(1.9rem, 4.15vw, 2.75rem);
    margin: 0;
    line-height: 1.15;
    white-space: nowrap;
}

.hero-years-line {
    position: relative;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 0 0 14px;
    color: #f4e0a2;
    font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    font-weight: 700;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(33, 23, 4, 0.14);
}

.hero-years-line::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(228, 195, 102, 0), rgba(245, 219, 144, 0.98) 50%, rgba(228, 195, 102, 0));
}

.hero-tagline {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(1.08rem, 2vw, 1.34rem);
    font-weight: 700;
    line-height: 1.95;
    max-width: 860px;
    text-wrap: balance;
}

.hero-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.hero-summary-text {
    flex: 1 1 auto;
}

.hero p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 2.05;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.94);
}

.hero-feature-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.hero-feature-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.hero-panels,
.hero-overview {
    display: grid;
    gap: 14px;
}

.hero-stat-card,
.hero-note-card {
    border-radius: 24px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.hero-highlight-card {
    padding: 24px 22px;
}

.hero-highlight-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-highlight-card h2 {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    line-height: 1.6;
    margin-bottom: 10px;
    color: #fff;
}

.hero-highlight-card p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-stat-card strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.hero-stat-card {
    display: block;
    transition: transform 0.18s ease, background 0.18s ease;
}

.hero-stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.hero-stat-card span,
.hero-note-card p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.hero-note-card h3 {
    margin-bottom: 8px;
    color: #fff;
}

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 18px;
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    cursor: pointer;
}

.site-button.primary {
    background: var(--site-accent);
    color: var(--site-text);
}

.site-button.secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
    margin-top: 32px;
}

.section-panel {
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 244, 0.92));
    border: 1px solid rgba(231, 220, 199, 0.88);
    box-shadow: var(--site-shadow-soft);
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-header p {
    margin: 0;
    color: var(--site-muted);
}

.section-header-compact {
    margin-bottom: 18px;
}

.section-chip {
    margin-bottom: 10px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(12, 93, 71, 0.08);
    color: var(--site-primary);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(12, 93, 71, 0.1);
}

.home-banners-wrap {
    position: relative;
    z-index: 3;
    margin-top: -22px;
}

.home-banners-slider {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    isolation: isolate;
    clip-path: inset(0 round 32px);
}

.home-banners-slider-stage {
    position: relative;
    min-height: clamp(300px, 35vw, 420px);
    overflow: hidden;
    border-radius: inherit;
    clip-path: inset(0 round 32px);
}

.home-banner-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(300px, 35vw, 420px);
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(10, 57, 44, 0.14);
    background: #0a3d30;
    box-shadow: 0 22px 42px rgba(8, 57, 44, 0.18);
    isolation: isolate;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    inset: 0;
    transform: scale(1.01);
    transition: opacity 0.55s ease, transform 0.55s ease;
    border-radius: inherit;
    clip-path: inset(0 round 32px);
}

.home-banner-card.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.home-banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 57, 44, 0.04) 0%, rgba(8, 57, 44, 0.14) 28%, rgba(8, 57, 44, 0.46) 56%, rgba(8, 57, 44, 0.78) 78%, rgba(8, 57, 44, 0.9) 100%);
    z-index: 0;
}

.home-banner-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}

.home-banner-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    clip-path: inset(0 round 32px);
    transition: transform 0.45s ease;
}

.home-banner-card-clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-banner-card-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 48px rgba(8, 57, 44, 0.24);
}

.home-banner-card.is-active.home-banner-card-clickable:hover {
    transform: translateY(-4px) scale(1);
}

.home-banner-card-clickable:hover .home-banner-card-image {
    transform: scale(1.04);
}

.home-banner-card-clickable:focus-visible {
    outline: 3px solid rgba(244, 224, 162, 0.56);
    outline-offset: 4px;
}

.home-banner-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: clamp(92px, 18vw, 150px) 30px 28px;
    background: linear-gradient(180deg, rgba(8, 57, 44, 0) 0%, rgba(8, 57, 44, 0.12) 14%, rgba(8, 57, 44, 0.5) 44%, rgba(8, 57, 44, 0.82) 72%, rgba(8, 57, 44, 0.95) 100%);
    border-radius: inherit;
}

.home-banner-card-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.35;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.home-banner-card-divider {
    display: block;
    width: min(240px, 68%);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212, 166, 75, 0) 0%, rgba(212, 166, 75, 0.4) 18%, rgba(248, 229, 168, 0.98) 50%, rgba(212, 166, 75, 0.4) 82%, rgba(212, 166, 75, 0) 100%);
    box-shadow: 0 0 18px rgba(212, 166, 75, 0.2);
}

.home-banner-card-subtitle {
    color: rgba(255, 240, 198, 0.94);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.8;
}

.home-banner-card-details {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.95;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
}

.home-banner-slider-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(6, 52, 41, 0.54);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
}

.home-banner-slider-control:hover {
    background: rgba(6, 52, 41, 0.76);
}

.home-banner-slider-control.is-prev {
    right: 18px;
}

.home-banner-slider-control.is-next {
    left: 18px;
}

.home-banner-slider-dots {
    position: absolute;
    right: 50%;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateX(50%);
}

.home-banner-slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.home-banner-slider-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, rgba(212, 166, 75, 0.86), rgba(248, 229, 168, 0.98));
}

.banner-detail-page {
    display: grid;
    gap: 24px;
}

.banner-detail-media-card,
.banner-detail-content-card {
    border-radius: 30px;
    border: 1px solid rgba(231, 220, 199, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.95));
    box-shadow: var(--site-shadow-soft);
    overflow: hidden;
}

.banner-detail-media-card img {
    width: 100%;
    max-height: 620px;
    display: block;
    object-fit: cover;
    background: #f8fbfa;
}

.banner-detail-content-card {
    padding: 28px;
}

.banner-detail-content-card h1 {
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.4;
}

.banner-detail-subtitle {
    margin: 0 0 16px;
    color: var(--site-primary-2);
    font-size: clamp(1.06rem, 2vw, 1.22rem);
    font-weight: 600;
    line-height: 1.95;
}

.team-home-shell {
    display: grid;
    gap: 22px;
}

.team-home-hero-block,
.team-home-services-block,
.team-home-vision-block,
.team-home-closing {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.team-home-hero-block {
    isolation: isolate;
    padding: 32px 30px;
    background:
        radial-gradient(circle at top right, rgba(212, 166, 75, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(12, 93, 71, 0.14), rgba(255, 255, 255, 0.97));
    border: 1px solid rgba(215, 230, 224, 0.92);
    box-shadow: var(--site-shadow-soft);
}

.team-home-hero-block::before {
    content: "";
    position: absolute;
    inset: auto auto -90px -40px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(12, 93, 71, 0.08);
    z-index: 0;
}

.team-home-hero-block::after {
    content: "";
    position: absolute;
    inset: -40px -20px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(12, 93, 71, 0.14), rgba(12, 93, 71, 0.02));
    transform: rotate(18deg);
    z-index: 0;
}

.team-home-kicker,
.team-home-section-head h3,
.team-home-vision-block h3,
.team-home-closing p,
.team-home-service-number {
    position: relative;
    z-index: 1;
}

.team-home-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(12, 93, 71, 0.1);
    color: var(--site-primary);
    font-size: 0.92rem;
    font-weight: 600;
}

.team-home-hero-block h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 14px;
    color: var(--site-primary-3);
}

.team-home-hero-block p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 920px;
    color: var(--site-muted);
    line-height: 2;
    font-size: 1.03rem;
}

.team-home-services-block {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.94));
    border: 1px solid rgba(231, 220, 199, 0.92);
    box-shadow: var(--site-shadow-soft);
}

.team-home-section-head {
    margin-bottom: 18px;
}

.team-home-section-head h3 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    color: var(--site-primary-3);
}

.team-home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.team-home-service-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 100%;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(217, 230, 225, 0.94);
    box-shadow: 0 16px 30px rgba(15, 54, 41, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.team-home-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 34px rgba(15, 54, 41, 0.1);
}

.team-home-service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(12, 93, 71, 0.16), rgba(20, 121, 92, 0.08));
    color: var(--site-primary-3);
    font-size: 1.18rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.team-home-service-card p {
    margin: 0;
    color: var(--site-text);
    font-size: 0.99rem;
    font-weight: 500;
    line-height: 1.95;
}

.team-home-bank-accounts-block {
    position: relative;
    padding: 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(212, 166, 75, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 250, 0.95));
    border: 1px solid rgba(231, 220, 199, 0.92);
    box-shadow: var(--site-shadow-soft);
}

.team-home-bank-accounts-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.team-home-bank-accounts-head p {
    margin: 10px 0 0;
    color: var(--site-muted);
    line-height: 1.9;
}

.team-home-bank-accounts-head p a {
    color: var(--site-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.team-home-bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.team-home-bank-account-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(217, 230, 225, 0.94);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(15, 54, 41, 0.06);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.team-home-bank-account-card:hover,
.team-home-bank-account-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(12, 93, 71, 0.26);
    box-shadow: 0 22px 36px rgba(15, 54, 41, 0.12);
}

.team-home-bank-account-card:focus-visible {
    outline: none;
}

.team-home-bank-account-card.is-copying,
.team-home-bank-account-card.is-copied {
    border-color: rgba(12, 93, 71, 0.34);
    background: linear-gradient(180deg, #ffffff, #f4fbf8);
}

.team-home-bank-account-logo {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 93, 71, 0.14), rgba(20, 121, 92, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--site-primary);
    font-size: 1.05rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.team-home-bank-account-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-home-bank-account-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}

.team-home-bank-account-name {
    color: var(--site-primary);
    font-size: 1rem;
    font-weight: 700;
}

.team-home-bank-account-label {
    color: var(--site-muted);
    font-size: 0.88rem;
}

.team-home-bank-account-number {
    direction: ltr;
    unicode-bidi: isolate;
    width: 100%;
    color: var(--site-text);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: left;
    word-break: break-all;
}

.team-home-bank-account-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 120;
    min-width: min(88vw, 320px);
    padding: 16px 24px;
    border-radius: 18px;
    background: rgba(8, 57, 44, 0.94);
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 28px 50px rgba(8, 57, 44, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.94);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
}

.team-home-bank-account-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.team-home-vision-block {
    isolation: isolate;
    padding: 30px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, rgba(8, 57, 44, 0.97), rgba(12, 93, 71, 0.96) 55%, rgba(18, 108, 82, 0.94));
    box-shadow: 0 24px 46px rgba(8, 57, 44, 0.18);
}

.team-home-vision-block::before {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.team-home-vision-block h3 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 3vw, 2rem);
    color: #fff;
}

.team-home-vision-block p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 940px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 2;
    font-size: 1.03rem;
}

.team-home-vision-section {
    padding-right: 0;
    padding-left: 0;
}

.team-home-vision-block-wide {
    border-radius: 0;
    padding: 38px 0;
}

.team-home-vision-inner {
    position: relative;
    z-index: 1;
}

.team-home-closing {
    padding: 22px 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 230, 0.95) 52%, rgba(236, 245, 240, 0.94) 100%);
    border: 1px solid rgba(232, 219, 190, 0.78);
    box-shadow: 0 18px 32px rgba(8, 57, 44, 0.12);
    text-align: center;
}

.team-home-closing p {
    margin: 0;
    color: var(--site-primary-3);
    font-size: clamp(1.06rem, 2vw, 1.28rem);
    font-weight: 700;
    line-height: 1.9;
}

.team-home-closing-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    margin-right: auto;
    margin-left: auto;
    width: min(760px, 100%);
    box-shadow: none;
    text-align: center;
}

.instagram-home-band {
    position: relative;
    margin-top: 26px;
    padding: 28px 0 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(12, 93, 71, 0.08), transparent 26%),
        radial-gradient(circle at 12% 24%, rgba(224, 185, 106, 0.1), transparent 18%),
        linear-gradient(180deg, rgba(250, 248, 242, 0.98), rgba(244, 249, 246, 0.94));
    border-top: 1px solid rgba(12, 93, 71, 0.08);
    border-bottom: 1px solid rgba(12, 93, 71, 0.08);
}

.instagram-home-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(12, 93, 71, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.38;
    pointer-events: none;
}

.instagram-home-band-inner {
    position: relative;
    z-index: 1;
}

.instagram-home-section {
    margin-top: 0;
    margin-bottom: 0;
}

.instagram-home-header {
    margin-bottom: 18px;
}

.instagram-home-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    border: 1px solid rgba(12, 93, 71, 0.14);
    box-shadow: 0 10px 24px rgba(7, 59, 49, 0.08);
}

.instagram-home-chip.section-chip {
    margin-bottom: 12px;
}

.instagram-home-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(180deg, #0f6858 0%, #0b4f45 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 18px rgba(6, 55, 47, 0.16);
    flex-shrink: 0;
}

.instagram-home-chip-icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.instagram-home-chip-text {
    margin-bottom: 0;
}

.instagram-home-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.instagram-home-grid-card {
    height: 100%;
}

.instagram-carousel-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.instagram-carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(231, 220, 199, 0.92);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fbf8f2);
    color: var(--site-primary);
    box-shadow: var(--site-shadow-soft);
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.instagram-carousel-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--site-shadow);
}

.instagram-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 2px 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.instagram-carousel-track::-webkit-scrollbar {
    height: 10px;
}

.instagram-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(12, 93, 71, 0.22);
    border-radius: 999px;
}

.instagram-embed-card {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.94));
    border: 1px solid rgba(231, 220, 199, 0.92);
    box-shadow: var(--site-shadow-soft);
    padding: 14px;
}

.instagram-embed-card-home {
    flex: 0 0 352px;
    min-width: 326px;
    max-width: calc(100vw - 34px);
    scroll-snap-align: start;
}

.instagram-embed-card-grid {
    min-width: 0;
}

.instagram-embed-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.instagram-embed-open {
    color: var(--site-primary);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.instagram-embed-frame {
    min-height: 200px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.instagram-embed-frame .instagram-media {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.instagram-home-meta {
    margin-top: 12px;
    color: var(--site-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.home-download-band-section {
    padding: 14px 0 0;
}

.home-download-band {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 0;
}

.home-download-band::before {
    display: none;
}

.home-download-band::after {
    display: none;
}

.home-download-band-inner {
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;
}

.home-download-card {
    position: relative;
    overflow: hidden;
    padding: 26px 28px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 240, 194, 0.05), rgba(255, 240, 194, 0.02)),
        linear-gradient(135deg, rgba(6, 56, 43, 0.9), rgba(9, 78, 58, 0.72));
    border: 1px solid rgba(245, 220, 143, 0.2);
    box-shadow: 0 28px 48px rgba(2, 24, 18, 0.22), inset 0 1px 0 rgba(255, 240, 194, 0.08);
}

.home-download-head,
.home-download-actions {
    position: relative;
    z-index: 1;
}

.home-download-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.home-download-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 227, 133, 0.34), rgba(255, 227, 133, 0.08));
    color: #ffd866;
    box-shadow: 0 0 24px rgba(255, 216, 102, 0.22);
    font-size: 1.28rem;
    flex: 0 0 auto;
}

.home-download-head h2 {
    margin: 0 0 8px;
    color: #ffe797;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    line-height: 1.2;
    text-shadow: 0 0 18px rgba(255, 225, 123, 0.16);
}

.home-download-head p {
    margin: 0;
    max-width: 860px;
    color: rgba(255, 246, 214, 0.88);
    font-size: 1.02rem;
    line-height: 1.95;
}

.home-download-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.home-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 227, 133, 0.13), rgba(255, 227, 133, 0.08));
    border: 1px solid rgba(255, 226, 130, 0.34);
    box-shadow: 0 0 0 1px rgba(255, 223, 116, 0.08) inset, 0 0 20px rgba(255, 216, 102, 0.09);
    color: #fff0be;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-download-link:hover {
    color: #fff6da;
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(255, 227, 133, 0.18), rgba(255, 227, 133, 0.11));
    border-color: rgba(255, 229, 145, 0.52);
    box-shadow: 0 0 0 1px rgba(255, 223, 116, 0.14) inset, 0 0 28px rgba(255, 216, 102, 0.16);
}

.home-download-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex: 0 0 auto;
}

.home-download-link-text {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1;
}

.instagram-archive-section {
    margin-top: 32px;
}

.instagram-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.grid-3,
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

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

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

.card,
.content-card,
.form-card,
.info-card {
    background: var(--site-panel);
    border: 1px solid rgba(231, 220, 199, 0.84);
    border-radius: 24px;
    box-shadow: var(--site-shadow);
}

.card {
    padding: 20px;
}

.card h3,
.content-card h3,
.form-card h3,
.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p,
.info-card p,
.content-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.85;
}

.site-code {
    display: block;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    direction: ltr;
    background: #f4f6f6;
    color: var(--site-primary);
    font-weight: 500;
    word-break: break-all;
}

.content-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content-card-clickable {
    cursor: pointer;
}

.content-card-clickable:focus-visible {
    outline: 3px solid rgba(12, 93, 71, 0.22);
    outline-offset: 4px;
}

.content-card-elevated {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.content-card-elevated:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(15, 54, 41, 0.12);
}

.content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #edf3f0;
}

.content-card-body {
    padding: 18px;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
}

.content-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.content-card h3 {
    font-size: 1.16rem;
    line-height: 1.65;
    margin: 0;
}

.content-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    line-height: 1.9;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.content-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.content-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(12, 93, 71, 0.08);
    color: var(--site-primary);
    border: 1px solid rgba(12, 93, 71, 0.14);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease;
}

.content-card-action:hover {
    transform: translateY(-2px);
    background: rgba(12, 93, 71, 0.12);
}

.content-card-note {
    margin-top: auto;
    color: var(--site-primary);
    font-size: 0.92rem;
    font-weight: 600;
}

.site-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(12, 93, 71, 0.08);
    color: var(--site-primary);
    font-size: 0.92rem;
}

.page-intro {
    margin-bottom: 18px;
}

.page-intro h1 {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    margin-bottom: 10px;
}

.page-intro p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.9;
    max-width: 760px;
}

.listing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
    gap: 18px;
    align-items: stretch;
    padding: 26px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(212, 166, 75, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(12, 93, 71, 0.09), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(231, 220, 199, 0.92);
    box-shadow: var(--site-shadow-soft);
}

.listing-intro-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.listing-intro-card h1 {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    line-height: 1.5;
    margin: 0;
}

.listing-intro-card p {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.95;
    max-width: 760px;
}

.listing-summary {
    display: grid;
    gap: 12px;
}

.listing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.listing-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(12, 93, 71, 0.08);
    color: var(--site-primary);
    font-size: 0.92rem;
    font-weight: 600;
}

.listing-summary-card {
    background: linear-gradient(180deg, #fff, #fbf8f2);
    border: 1px solid rgba(231, 220, 199, 0.88);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--site-shadow);
}

.listing-summary-card strong {
    display: block;
    font-size: 1.9rem;
    color: var(--site-primary);
    margin-bottom: 6px;
}

.listing-summary-card span {
    color: var(--site-muted);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.78fr);
    gap: 18px;
    align-items: start;
    padding: 26px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(212, 166, 75, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(12, 93, 71, 0.09), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(231, 220, 199, 0.92);
    box-shadow: var(--site-shadow-soft);
}

.detail-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--site-muted);
    font-size: 0.92rem;
}

.detail-breadcrumbs a {
    color: var(--site-primary);
}

.detail-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4.3vw, 2.9rem);
    line-height: 1.45;
}

.detail-summary {
    margin: 0;
    max-width: 820px;
    color: var(--site-muted);
    line-height: 2;
    font-size: 1.04rem;
}

.detail-inline-link {
    color: var(--site-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    word-break: break-word;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.detail-inline-link:hover {
    color: var(--site-primary-3);
}

.detail-hashtag-link {
    font-weight: 700;
}

.detail-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-actions {
    margin-top: 2px;
}

.detail-side-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, #fff, #fbf8f2);
    border: 1px solid rgba(231, 220, 199, 0.88);
    box-shadow: var(--site-shadow);
}

.detail-side-card h2 {
    margin: 0;
    font-size: 1.18rem;
    color: var(--site-primary-3);
}

.detail-side-card .section-link {
    align-self: flex-start;
}

.detail-meta-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.detail-meta-item {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(12, 93, 71, 0.04);
    border: 1px solid rgba(12, 93, 71, 0.08);
}

.detail-meta-item dt {
    margin-bottom: 4px;
    color: var(--site-muted);
    font-size: 0.9rem;
}

.detail-meta-item dd {
    margin: 0;
    color: var(--site-primary-3);
    font-weight: 700;
    line-height: 1.8;
}

.detail-main-card {
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.94));
    border: 1px solid rgba(231, 220, 199, 0.92);
    box-shadow: var(--site-shadow-soft);
}

.detail-block + .detail-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(231, 220, 199, 0.88);
}

.detail-block-head {
    margin-bottom: 16px;
}

.detail-primary-image {
    position: relative;
    display: block;
    margin: 0 0 18px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(231, 220, 199, 0.92);
    background: linear-gradient(180deg, #fff, #f7fbf9);
    box-shadow: var(--site-shadow);
    cursor: zoom-in;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
}

.detail-primary-image:hover,
.detail-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(10, 56, 45, 0.12);
    border-color: rgba(12, 93, 71, 0.22);
}

.detail-primary-image::after,
.detail-gallery-item::after {
    content: "+";
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(6, 52, 41, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(8, 32, 26, 0.22);
    pointer-events: none;
    z-index: 1;
}

.detail-primary-image img {
    width: 100%;
    max-height: 540px;
    object-fit: contain;
    display: block;
    background: #f8fbfa;
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.detail-gallery-item {
    position: relative;
    display: block;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(231, 220, 199, 0.88);
    background: linear-gradient(180deg, #fff, #f7fbf9);
    box-shadow: var(--site-shadow);
    cursor: zoom-in;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
}

.detail-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    background: #f8fbfa;
}

.detail-lightbox-open {
    overflow: hidden;
}

.detail-lightbox[hidden] {
    display: none !important;
}

.detail-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}

.detail-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(6, 20, 16, 0.82);
    cursor: zoom-out;
}

.detail-lightbox-dialog {
    position: relative;
    z-index: 1;
    max-width: min(96vw, 1480px);
    max-height: calc(100vh - 52px);
}

.detail-lightbox-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(6, 29, 23, 0.72);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.detail-lightbox-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 250, 0.96));
    border: 1px solid rgba(231, 220, 199, 0.88);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.detail-lightbox-frame img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(92vw, 1400px);
    max-height: calc(100vh - 110px);
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}

.detail-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.detail-video-card {
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(231, 220, 199, 0.88);
    box-shadow: var(--site-shadow);
}

.detail-video-card h3 {
    margin: 0 0 14px;
    color: var(--site-primary-3);
    font-size: 1.04rem;
}

.detail-video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: #000;
}

.detail-youtube-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.detail-youtube-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.detail-richtext {
    color: var(--site-text);
    font-size: 1.04rem;
    line-height: 2.15;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 18px;
}

.form-card,
.info-card {
    padding: 24px;
}

.notice {
    padding: 14px 16px;
    border-radius: 18px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.notice.success {
    background: #e1f2ea;
    color: #12513c;
}

.notice.error {
    background: #fbe5e1;
    color: #8a2f23;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    color: var(--site-text);
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--site-line);
    border-radius: 18px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fff;
    color: var(--site-text);
}

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

.field-help {
    color: var(--site-muted);
    font-size: 0.92rem;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-item {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, #fbf8f2);
    border: 1px solid rgba(231, 220, 199, 0.9);
}

.contact-info-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-info-item a {
    color: var(--site-primary);
}

.social-links-stack {
    display: grid;
    gap: 10px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(231, 220, 199, 0.92);
    background: linear-gradient(180deg, #fff, #fbf8f2);
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-link-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--site-shadow);
}

.social-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(12, 93, 71, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--site-primary);
    font-weight: 700;
    flex: 0 0 auto;
}

.social-link-icon.is-platform-icon {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 0 0 1px rgba(12, 93, 71, 0.08);
}

.social-link-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 9px;
}

.social-link-icon svg,
.footer-contact-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.social-link-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-link-text strong {
    color: var(--site-text);
}

.social-link-text small {
    color: var(--site-muted);
    font-size: 0.9rem;
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #0b4b39;
    background-image:
        radial-gradient(circle at top right, rgba(24, 111, 84, 0.36), transparent 24%),
        radial-gradient(circle at 12% 80%, rgba(4, 39, 31, 0.44), transparent 30%),
        linear-gradient(136deg, rgba(6, 42, 33, 0.98) 0%, rgba(9, 58, 45, 0.97) 24%, rgba(12, 93, 71, 0.96) 52%, rgba(14, 79, 61, 0.97) 73%, rgba(5, 36, 29, 0.98) 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: -80px auto auto -60px;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: auto -70px -90px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.site-footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 1fr));
    gap: 18px;
    padding: 34px 0 30px;
}

.site-footer-home .site-footer-inner {
    padding-top: 0;
}

.site-footer-brand {
    display: flex;
    align-items: start;
    gap: 14px;
}

.site-footer-brand img {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px;
}

.site-footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.site-footer-credit span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.site-footer-credit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer-credit-link img {
    width: 19.5px;
    height: 19.5px;
    object-fit: contain;
}

.site-footer h4 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #fff;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

.site-footer a {
    transition: color 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.site-footer a:hover {
    color: #fff;
}

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

.footer-contact-list {
    display: grid;
    gap: 8px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
}

.footer-contact-link:hover {
    color: #fff;
}

.footer-contact-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-contact-value {
    direction: ltr;
    unicode-bidi: plaintext;
}

.site-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer-social-link {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.site-footer-social-link:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.site-footer-social-link .social-link-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.site-footer-social-link .social-link-icon.is-platform-icon {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.site-footer-social-link .social-link-icon img {
    padding: 11px;
}

.site-footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-image: linear-gradient(90deg, rgba(4, 39, 31, 0.92) 0%, rgba(12, 93, 71, 0.92) 50%, rgba(6, 42, 33, 0.92) 100%);
}

.site-footer-bottom .site-container {
    padding: 12px 0;
}

.site-footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 0.82rem;
    text-align: center;
    letter-spacing: 0.01em;
}

.site-empty {
    padding: 22px;
    text-align: center;
    border: 1px dashed var(--site-line);
    border-radius: 24px;
    color: var(--site-muted);
    background: rgba(255, 255, 255, 0.55);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-meta {
    text-align: center;
    margin-bottom: 14px;
    color: var(--site-muted);
    font-weight: 600;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    padding: 11px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(231, 220, 199, 0.92);
    box-shadow: var(--site-shadow);
    color: var(--site-primary);
    font-weight: 600;
}

.pagination-link.active {
    background: var(--site-primary);
    color: #fff;
    border-color: var(--site-primary);
}

@media (max-width: 980px) {
    .site-nav-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    .site-brand,
    .site-nav {
        width: 100%;
    }

    .site-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .site-nav a {
        white-space: nowrap;
    }

    .hero-grid,
    .listing-hero,
    .contact-layout,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

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

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

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

    .team-home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-home-bank-accounts-grid {
        grid-template-columns: 1fr;
    }

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

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

    .home-download-band-inner {
        padding-top: 28px;
        padding-bottom: 30px;
    }

    .home-download-card {
        padding: 24px 22px;
    }

    .instagram-carousel-shell {
        grid-template-columns: 1fr;
    }

    .instagram-carousel-button {
        min-width: 0;
    }

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

@media (max-width: 720px) {
    .instagram-home-band {
        margin-top: 20px;
        padding: 22px 0 26px;
    }

    .site-container {
        width: 100%;
        max-width: 100%;
    }

    .site-brand {
        gap: 10px;
    }

    .site-brand-title {
        white-space: normal;
        font-size: 1.05rem;
    }

    .site-nav {
        padding: 5px;
        border-radius: 20px;
    }

    .hero {
        padding: 26px 22px;
        border-radius: 26px;
    }

    .hero-wide {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 0;
        padding: 34px 0 32px;
        background-size: auto, auto, auto, 240px auto;
    }

    .hero-home-inner {
        width: 100%;
    }

    .hero-title-row {
        gap: 12px;
        margin-bottom: 0;
    }

    .hero-head-row {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-title-stack {
        gap: 8px;
    }

    .hero-logo {
        width: clamp(52px, 16vw, 72px);
    }

    .hero-app-links {
        gap: 10px;
    }

    .hero-app-link {
        width: 53px;
        height: 53px;
        padding: 10px;
        border-radius: 17px;
    }

    .hero-app-link img {
        width: 29px;
        height: 29px;
    }

    .hero-side-actions {
        width: 100%;
        align-items: flex-start;
        padding-top: 0;
    }

    .hero-summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-summary-text {
        width: 100%;
    }

    .hero-volunteer-button {
        min-width: 176px;
        min-height: 52px;
        padding: 13px 20px;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 5.9vw, 1.95rem);
    }

    .volunteer-modal .modal-header {
        padding: 20px 20px 10px;
    }

    .volunteer-modal .modal-body {
        padding: 0 20px 20px;
    }

    .volunteer-form-grid {
        grid-template-columns: 1fr;
    }

    .section-panel,
    .listing-hero {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .home-banner-card {
        min-height: 280px;
        border-radius: 24px;
    }

    .home-banners-wrap {
        margin-top: -12px;
    }

    .home-banners-slider {
        border-radius: 24px;
        clip-path: inset(0 round 24px);
    }

    .home-banners-slider-stage,
    .home-banner-card,
    .home-banner-card-image {
        clip-path: inset(0 round 24px);
    }

    .home-banner-card-content {
        padding: 88px 20px 22px;
    }

    .home-banner-card-title {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .home-banner-card-divider {
        width: min(190px, 72%);
    }

    .home-banner-slider-control {
        width: 44px;
        height: 44px;
        font-size: 1.7rem;
    }

    .home-banner-slider-control.is-prev {
        right: 12px;
    }

    .home-banner-slider-control.is-next {
        left: 12px;
    }

    .banner-detail-content-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .banner-detail-media-card {
        border-radius: 24px;
    }

    .team-home-shell {
        gap: 16px;
    }

    .team-home-hero-block,
    .team-home-services-block,
    .team-home-bank-accounts-block,
    .team-home-vision-block {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .team-home-vision-block-wide {
        padding: 28px 0;
        border-radius: 0;
    }

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

    .team-home-service-card {
        padding: 16px;
        border-radius: 20px;
    }

    .team-home-bank-account-card {
        padding: 16px;
        border-radius: 20px;
    }

    .team-home-bank-account-logo {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .team-home-bank-account-number {
        font-size: 1rem;
    }

    .team-home-service-number {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 1.05rem;
    }

    .team-home-closing {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .team-home-closing-inline {
        display: flex;
        width: 100%;
        margin-top: 18px;
        border-radius: 20px;
    }

    .detail-hero,
    .detail-main-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .detail-gallery-grid,
    .detail-video-grid {
        grid-template-columns: 1fr;
    }

    .detail-lightbox {
        padding: 16px;
    }

    .detail-lightbox-close {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.7rem;
    }

    .detail-lightbox-frame {
        padding: 12px;
        border-radius: 24px;
    }

    .instagram-home-grid {
        grid-template-columns: 1fr;
    }

    .home-download-band-inner {
        padding-top: 0;
        padding-bottom: 0;
    }

    .home-download-card {
        padding: 22px 18px;
        border-radius: 28px;
    }

    .home-download-head {
        gap: 12px;
    }

    .home-download-head h2 {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
    }

    .home-download-actions {
        gap: 8px;
        margin-top: 16px;
    }

    .home-download-link {
        min-height: 42px;
        padding: 8px 12px;
    }

    .home-download-link-text {
        font-size: 0.92rem;
    }

    .instagram-carousel-track {
        padding-bottom: 10px;
    }

    .instagram-embed-card,
    .instagram-embed-card-grid {
        border-radius: 22px;
        padding: 12px;
    }

    .instagram-embed-card-home {
        flex-basis: max(326px, calc(100vw - 54px));
    }

    .instagram-embed-card-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .instagram-archive-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .content-grid-3 {
        grid-template-columns: 1fr;
    }

    .content-grid-12 {
        grid-template-columns: 1fr;
    }

    .site-button {
        width: 100%;
    }
}
