/* ================================
   더봄재활주간보호센터
   style.css
================================ */

/* --- Variables --- */
:root {
    --green-dark:   #1B4332;
    --green:        #2D6A4F;
    --green-mid:    #40916C;
    --green-light:  #74C69D;
    --green-pale:   #D8F3DC;
    --accent:       #E07B54;
    --accent-light: #FFF0EB;
    --bg:           #F7FAF8;
    --white:        #FFFFFF;
    --text-dark:    #1C2B24;
    --text-mid:     #4B6358;
    --text-light:   #8FA898;
    --border:       #E0EAE4;
    --shadow-sm:    0 2px 8px rgba(45,106,79,.07);
    --shadow-md:    0 8px 32px rgba(45,106,79,.10);
    --shadow-lg:    0 16px 48px rgba(45,106,79,.14);
    --radius:       16px;
    --radius-sm:    10px;
    --radius-lg:    24px;
    --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section --- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45,106,79,.3);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45,106,79,.4);
}
.btn-ghost {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.7);
}
.btn-white {
    background: var(--white);
    color: var(--green);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.15);
}
.btn-kakao {
    background: #FEE500;
    color: #3C1E1E;
    font-weight: 600;
}
.btn-kakao:hover {
    background: #F0D800;
    transform: translateY(-2px);
}

/* ================================
   HEADER / NAV
================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all var(--transition);
}
.header.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.logo-mark {
    background: var(--green);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: -0.02em;
    transition: background var(--transition);
}
.header.scrolled .logo-mark { background: var(--green); }
.logo-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
}
.header.scrolled .logo-sub { color: var(--text-dark); }
.nav-menu {
    display: flex;
    gap: 8px;
    margin-left: auto;
}
.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: all var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.15); }
.header.scrolled .nav-link { color: var(--text-mid); }
.header.scrolled .nav-link:hover { color: var(--green); background: var(--green-pale); }
.btn-call {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,.2);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.4);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-call:hover { background: var(--white); color: var(--green); border-color: var(--white); }
.header.scrolled .btn-call { background: var(--green); color: var(--white); border-color: var(--green); }
.header.scrolled .btn-call:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 22px;
    background: var(--white);
    color: var(--green);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.btn-blog-link:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.header.scrolled .nav-toggle span { background: var(--text-dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================
   HERO
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0F2D1E 0%, #1B4332 30%, #2D6A4F 60%, #40916C 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(116,198,157,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(64,145,108,.2) 0%, transparent 40%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15,45,30,.4) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 72px;
}
.hero-content { max-width: 680px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-title em {
    font-style: normal;
    color: var(--green-light);
}
.hero-desc {
    font-size: clamp(15px, 2vw, 17px);
    color: rgba(255,255,255,.75);
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.hero-regions span {
    padding: 6px 16px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255,255,255,.85);
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: .5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ================================
   STATS BAR
================================ */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid var(--border);
}
.stat-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    animation-delay: var(--delay, 0s);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 6px;
    line-height: 1;
}
.stat-lbl {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* ================================
   ABOUT
================================ */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.visual-card {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    color: var(--white);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}
.visual-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.visual-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.visual-sub {
    font-size: 15px;
    font-weight: 600;
    opacity: .9;
}
.visual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vtag {
    padding: 7px 16px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}
.about-text-wrap .section-badge { text-align: left; }
.body-text {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 18px;
    line-height: 1.8;
}
.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-row { display: flex; gap: 16px; align-items: flex-start; }
.fcheck {
    width: 28px;
    height: 28px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-row strong { font-size: 15px; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 3px; }
.feature-row p { font-size: 14px; color: var(--text-mid); }

/* ================================
   ABOUT — PHOTO GRID
================================ */
.about-photo-grid {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 12px;
    height: 100%;
    min-height: 440px;
}
.about-photo-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex: 1;
}
.about-photo-main img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-photo-main:hover img { transform: scale(1.03); }
.about-photo-sub {
    border-radius: var(--radius);
    overflow: hidden;
    height: 130px;
}
.about-photo-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 0.5s ease;
}
.about-photo-sub:hover img { transform: scale(1.03); }

/* ================================
   DIRECTOR CARD
================================ */
.director-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    margin-top: 56px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.director-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
    text-align: center;
    gap: 12px;
}
.director-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,.15);
    border: 4px solid rgba(255,255,255,.3);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    position: relative;
    flex-shrink: 0;
}
.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.director-photo-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
}
.director-photo-fallback svg { stroke: rgba(255,255,255,.6); }
.director-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255,255,255,.25);
}
.director-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}
.director-title {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}
.director-right {
    padding: 36px 40px;
    background: var(--white);
}
.director-greeting {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.director-greeting p {
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.9;
}
.director-sign {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 14px !important;
    color: var(--text-dark) !important;
    line-height: 1.7 !important;
}
.director-sign strong {
    font-size: 14px;
    color: var(--green-dark);
    font-weight: 700;
}

/* ================================
   GALLERY
================================ */
.gallery { background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--border);
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-wide {
    grid-column: span 2;
}
.gallery-wide img { height: 360px; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px 20px 14px;
    background: linear-gradient(to top, rgba(27,67,50,.7), transparent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--transition);
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   PROGRAMS — BENTO GRID
================================ */
.programs { background: var(--bg); }
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.bento-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    opacity: 0;
    transition: opacity var(--transition);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-pale); }
.bento-card:hover::before { opacity: 1; }
.bento-lg { grid-column: span 2; }
.bento-wide { grid-column: span 2; }
.bento-icon {
    width: 52px;
    height: 52px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.bento-icon svg { stroke: var(--green); }
.bento-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.bento-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.bento-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* ================================
   DAILY — TIMELINE
================================ */
.daily { background: var(--white); }
.timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0; bottom: 0;
    width: 1px;
    background: var(--border);
}
.tl-item {
    display: grid;
    grid-template-columns: 100px 24px 1fr;
    gap: 0 24px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg);
}
.tl-time {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    padding-top: 4px;
    text-align: right;
}
.tl-dot {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 50%;
    margin-top: 8px;
    margin-left: 6px;
    flex-shrink: 0;
    transition: all var(--transition);
}
.tl-highlight .tl-dot {
    background: var(--green);
    box-shadow: 0 0 0 4px var(--green-pale);
}
.tl-highlight .tl-time { color: var(--green); }
.tl-body h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.tl-body p { font-size: 14px; color: var(--text-mid); }

/* ================================
   PROCESS
================================ */
.process { background: var(--bg); }
.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 32px;
}
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-pale); }
.step-final { background: var(--green); border-color: var(--green); color: var(--white); }
.step-final h4, .step-final p { color: var(--white); }
.step-final .step-num { background: rgba(255,255,255,.2); color: var(--white); }
.step-num {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    margin: 0 auto 16px;
}
.step-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.step-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
.step-arrow {
    padding: 0 16px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}
.process-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--green-pale);
    border: 1px solid rgba(45,106,79,.15);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    color: var(--green-dark);
    font-size: 14px;
}
.process-note svg { stroke: var(--green); flex-shrink: 0; }

/* ================================
   LOCATION
================================ */
.location { background: var(--white); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}
.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
    height: 100%;
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(255,255,255,.06) 0%, transparent 60%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.map-card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.map-pin {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,.2);
    margin-bottom: 4px;
}
.map-pin svg { stroke: var(--white); }
.map-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}
.map-addr {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}
.map-btns {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
}
.map-btn-naver {
    background: var(--white);
    color: var(--green-dark);
}
.map-btn-naver:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.map-btn-route {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.35);
}
.map-btn-route:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-2px);
}
.map-info-row {
    display: flex;
    gap: 20px;
    margin-top: 4px;
    flex-wrap: wrap;
    justify-content: center;
}
.map-info-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
}
.map-info-row svg { stroke: rgba(255,255,255,.5); flex-shrink: 0; }
.location-info { display: flex; flex-direction: column; gap: 24px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.loc-icon svg { stroke: var(--green); }
.loc-item strong { font-size: 14px; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 4px; }
.loc-item p { font-size: 14px; color: var(--text-mid); }
.loc-item a { color: var(--green); font-weight: 600; }
.sub-p { font-size: 13px; color: var(--text-light); }
.loc-btns { display: flex; gap: 12px; margin-top: 8px; }
.loc-btns .btn { flex: 1; justify-content: center; padding: 12px 20px; font-size: 14px; }

/* ================================
   CTA BANNER
================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 80px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; }

/* ================================
   FOOTER
================================ */
.footer { background: var(--text-dark); padding: 64px 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    transition: all var(--transition);
}
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.footer-nav h4, .footer-contact h4, .footer-area h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact p, .footer-area p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }

/* ================================
   ANIMATIONS
================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .visual-card { min-height: auto; }
    .steps {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    .step-arrow { display: none; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu .nav-link { color: var(--text-mid); padding: 12px 16px; }
    .nav-menu .nav-link:hover { color: var(--green); background: var(--green-pale); }
    .nav-toggle { display: flex; }
    .btn-call { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .about-photo-grid { min-height: auto; }
    .director-card { grid-template-columns: 1fr; }
    .director-left { flex-direction: row; padding: 24px 28px; gap: 20px; text-align: left; }
    .director-photo { width: 80px; height: 80px; flex-shrink: 0; }
    .director-right { padding: 24px 28px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-wide { grid-column: span 1; }
    .gallery-wide img { height: 240px; }
    .gallery-item img { height: 220px; }
    .bento { grid-template-columns: 1fr; }
    .bento-lg, .bento-wide { grid-column: span 1; }
    .timeline::before { left: 80px; }
    .tl-item { grid-template-columns: 64px 20px 1fr; gap: 0 16px; }
    .steps { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .cta-btns { flex-direction: column; width: 100%; }
    .cta-btns .btn { justify-content: center; }
    .loc-btns { flex-direction: column; }
    .br-desktop { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { justify-content: center; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 24px 16px; }
}
