/* ============================================
   관리왕 Landing Page — Design System
   타이포그래피 스케일 · 색상 대비 · 한글 최적화
   ============================================ */

:root {
    /* Brand Colors */
    --navy: #1a2342;
    --navy-deep: #0f1629;
    --navy-light: #243056;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-dark: #b8912e;
    --cream: #f8f5ef;
    --cream-dark: #ede8df;
    --white: #ffffff;

    /* Text Colors — WCAG AA 대비 확보 */
    --text-primary: #1e293b;        /* 밝은 배경 위 본문 */
    --text-secondary: #475569;      /* 밝은 배경 위 보조 (contrast 5.9:1 on #fff) */
    --text-on-dark: rgba(255,255,255,.88);       /* 어두운 배경 위 본문 */
    --text-on-dark-sub: rgba(255,255,255,.62);   /* 어두운 배경 위 보조 */
    --text-on-dark-muted: rgba(255,255,255,.42); /* 어두운 배경 위 캡션 */

    /* Type Scale (desktop) */
    --text-xs: .8125rem;   /* 13px — 캡션, 라벨 최소 */
    --text-sm: .875rem;    /* 14px — 태그, 메타 */
    --text-base: 1rem;     /* 16px — 본문 기준 */
    --text-md: 1.0625rem;  /* 17px — 강조 본문 */
    --text-lg: 1.125rem;   /* 18px — 리드 텍스트 */
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1;
    word-break: keep-all;
    overflow-wrap: break-word;
    letter-spacing: -.012em;
    line-height: 1.8;
    font-weight: 400;
}

/* ──────────────────────────────
   Utility
   ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }
.gold-divider { width: 50px; height: 2px; background: var(--gold); margin: 0 auto; }
@media (max-width: 768px) {
    .positioning-desc br,
    .contact-desc br,
    .gallery-banner p br { display: none; }
}

/* ──────────────────────────────
   Navigation
   ────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
    transition: padding .4s ease, background .4s ease, box-shadow .4s ease;
}
.nav.scrolled {
    background: rgba(26,35,66,.95);
    backdrop-filter: blur(20px);
    padding: 14px 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo-text { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: -.5px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,.78); text-decoration: none;
    font-size: var(--text-sm); font-weight: 500; letter-spacing: .3px;
    transition: color .3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
    background: var(--gold); color: var(--navy-deep);
    padding: 10px 24px; border-radius: 6px;
    font-weight: 700; font-size: var(--text-sm); letter-spacing: 0;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--navy-deep); transform: translateY(-1px); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all .3s; display: block; }

/* ──────────────────────────────
   Hero
   ────────────────────────────── */
.hero {
    min-height: 100vh; background: var(--navy-deep);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212,168,83,.08), transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,168,83,.06), transparent 60%);
}
.hero::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='30' cy='30' r='.8' fill='rgba(212,168,83,.07)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E");
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 140px 24px; width: 100%; max-width: 900px; margin: 0 auto;
}
@keyframes pulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,168,83,.4); }
    50% { opacity: .6; box-shadow: 0 0 0 6px rgba(212,168,83,0); }
}
.hero-logo {
    display: block; width: 120px; height: 120px; object-fit: contain;
    margin: 0 auto 32px;
    filter: drop-shadow(0 20px 40px rgba(212,168,83,.2));
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.02); }
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6.5vw, 5rem); font-weight: 900;
    color: var(--white); line-height: 1.15; margin-bottom: 14px; letter-spacing: -2px;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.25rem); color: var(--text-on-dark-sub);
    font-weight: 400; letter-spacing: 3px; margin-bottom: 44px;
}
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--navy-deep);
    padding: 15px 32px; border-radius: 8px; font-size: var(--text-base); font-weight: 700;
    text-decoration: none; transition: all .3s; border: 2px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light); border-color: var(--gold-light);
    transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212,168,83,.3);
}
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    padding: 15px 32px; border-radius: 8px; font-size: var(--text-base); font-weight: 500;
    text-decoration: none; transition: all .3s; border: 2px solid rgba(255,255,255,.22);
}
.btn-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); transform: translateY(-2px); }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-on-dark-muted); font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(212,168,83,.5), transparent); }
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero Inspect Button */
.btn-inspect-hero {
    display: inline-block; margin-top: 20px; padding: 14px 36px;
    background: transparent; color: var(--gold);
    font-size: var(--text-sm); font-weight: 700; letter-spacing: .3px;
    border: 2px solid var(--gold); border-radius: 8px; text-decoration: none;
    transition: background .3s, transform .3s, box-shadow .3s, color .3s;
}
.btn-inspect-hero:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,168,83,.35); }

/* ──────────────────────────────
   About / Positioning
   ────────────────────────────── */
.section-positioning { background: var(--white); padding: 100px 24px; position: relative; }
.section-positioning::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.positioning-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.section-label {
    display: inline-block; color: var(--gold-dark);
    font-size: var(--text-xs); font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; margin-bottom: 20px;
}
.positioning-inner h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900;
    color: var(--navy); line-height: 1.5; margin-bottom: 20px; letter-spacing: -.5px;
}
.positioning-inner h2 .highlight { position: relative; display: inline; }
.positioning-inner h2 .highlight::after {
    content: ''; position: absolute; bottom: 4px; left: -4px; right: -4px;
    height: 12px; background: rgba(212,168,83,.2); z-index: -1; border-radius: 2px;
}
.positioning-desc {
    font-size: var(--text-md); color: var(--text-secondary); line-height: 1.85;
    max-width: 600px; margin: 0 auto; font-weight: 400;
}
.positioning-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; max-width: 800px; }
.value-item {
    text-align: center; padding: 28px 20px; border-radius: 12px;
    background: var(--cream); border: 1px solid rgba(26,35,66,.04);
}
.value-item strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-item span { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; font-weight: 400; }

/* ──────────────────────────────
   Gallery / Services
   ────────────────────────────── */
.section-gallery { padding: 0; background: var(--cream); }
.gallery-item { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.gallery-item:nth-child(even) { direction: rtl; }
.gallery-item:nth-child(even) > * { direction: ltr; }
.gallery-img-wrap { position: relative; overflow: hidden; background: var(--navy-light); }
.gallery-img-wrap img { width: 100%; display: block; will-change: transform; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.04); }
.gallery-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,35,66,.15), transparent); pointer-events: none; }
.gallery-text-col { position: relative; }
.gallery-text { display: flex; flex-direction: column; justify-content: flex-start; padding: 56px 56px; }
.gallery-text.is-fixed { position: fixed; top: 80px; }
.gallery-text.is-bottom { position: absolute; bottom: 0; left: 0; right: 0; }
.gallery-item:nth-child(odd) .gallery-text-col,
.gallery-item:nth-child(odd) .gallery-text.is-fixed { background: var(--white); }
.gallery-item:nth-child(even) .gallery-text-col,
.gallery-item:nth-child(even) .gallery-text.is-fixed { background: var(--cream-dark); }
.gallery-num {
    font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 900;
    color: rgba(212,168,83,.1); line-height: 1; margin-bottom: 16px; letter-spacing: -3px;
}
.gallery-label {
    color: var(--gold-dark); font-size: var(--text-xs); font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
}
.gallery-text h3 {
    font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800;
    color: var(--navy); line-height: 1.4; margin-bottom: 18px; letter-spacing: -.3px;
}
.gallery-text p {
    font-size: var(--text-base); color: var(--text-secondary);
    line-height: 1.85; font-weight: 400;
}
.gallery-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.gallery-tag {
    background: rgba(26,35,66,.06); color: var(--navy);
    padding: 7px 14px; border-radius: 4px;
    font-size: var(--text-sm); font-weight: 600;
}

/* Gallery Banner */
.gallery-banner { background: var(--navy); padding: 88px 24px; text-align: center; position: relative; overflow: hidden; }
.gallery-banner::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 70% 50% at 30% 100%, rgba(212,168,83,.07), transparent),
                radial-gradient(ellipse 60% 50% at 70% 0%, rgba(212,168,83,.05), transparent);
}
.gallery-banner-inner { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; }
.gallery-banner-label {
    display: inline-block; color: var(--gold);
    font-size: var(--text-xs); font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; margin-bottom: 18px;
}
.gallery-banner h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
    color: var(--white); line-height: 1.4; margin-bottom: 14px; letter-spacing: -.5px;
}
.gallery-banner p {
    font-size: var(--text-base); color: var(--text-on-dark-sub);
    line-height: 1.8; font-weight: 400; margin-bottom: 40px;
}
.gallery-banner-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
a.banner-card { text-decoration: none; }
.banner-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 32px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    transition: background .35s, border-color .35s, transform .35s; cursor: pointer;
}
.banner-card:hover { background: rgba(212,168,83,.08); border-color: rgba(212,168,83,.25); transform: translateY(-4px); }
.banner-card svg { color: var(--gold); margin-bottom: 4px; }
.banner-card-title { font-size: var(--text-base); font-weight: 700; color: var(--white); }
.banner-card-desc { font-size: var(--text-sm); color: var(--text-on-dark-sub); }

/* ──────────────────────────────
   FAQ
   ────────────────────────────── */
.section-faq { background: var(--white); padding: 100px 24px; position: relative; }
.section-faq::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.faq-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.faq-inner h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900;
    color: var(--navy); line-height: 1.4; margin-bottom: 40px; letter-spacing: -.5px;
}
.faq-list { text-align: left; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--cream); border-radius: 10px;
    border: 1px solid rgba(26,35,66,.06); transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: rgba(212,168,83,.3); box-shadow: 0 4px 20px rgba(26,35,66,.06); }
.faq-question {
    padding: 22px 24px; cursor: pointer; font-size: var(--text-base); font-weight: 700;
    color: var(--navy); list-style: none; display: flex; align-items: center;
    justify-content: space-between; gap: 16px; transition: color .3s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--gold-dark);
    flex-shrink: 0; transition: transform .3s;
}
.faq-item[open] .faq-question::after { content: '\2212'; }
.faq-question:hover { color: var(--gold-dark); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.85; font-weight: 400; }

/* ──────────────────────────────
   Contact
   ────────────────────────────── */
.section-contact { background: var(--navy-deep); padding: 100px 24px; text-align: center; position: relative; overflow: hidden; }
.section-contact::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(212,168,83,.06), transparent);
}
.contact-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.contact-inner .section-label { color: var(--gold); }
.contact-inner h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: var(--white);
    font-weight: 800; line-height: 1.5; margin-bottom: 14px;
}
.contact-desc {
    color: var(--text-on-dark-sub); font-size: var(--text-base);
    margin-bottom: 40px; font-weight: 400; line-height: 1.8;
}
.contact-phone { display: flex; align-items: center; justify-content: center; gap: 16px; text-decoration: none; margin-bottom: 40px; }
.contact-phone-icon {
    width: 60px; height: 60px; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform .3s, box-shadow .3s;
}
.contact-phone-icon svg { width: 26px; height: 26px; fill: var(--navy-deep); }
.contact-phone:hover .contact-phone-icon { transform: scale(1.1); box-shadow: 0 8px 30px rgba(212,168,83,.4); }
.contact-phone-num {
    font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900; color: var(--gold); letter-spacing: -1px; transition: color .3s;
}
.contact-phone:hover .contact-phone-num { color: var(--gold-light); }
.contact-sub { color: var(--text-on-dark-muted); font-size: var(--text-sm); }
.btn-inspect {
    display: inline-block; margin-top: 40px; padding: 18px 44px;
    background: var(--gold); color: var(--navy-deep);
    font-size: var(--text-base); font-weight: 800; letter-spacing: .3px;
    border-radius: 8px; text-decoration: none;
    transition: background .3s, transform .3s, box-shadow .3s;
}
.btn-inspect:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,168,83,.35); }

/* ──────────────────────────────
   Footer
   ────────────────────────────── */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.06); padding: 44px 24px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-services { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; font-size: var(--text-sm); }
.footer-services a { color: var(--text-on-dark-sub); text-decoration: none; transition: color .3s; }
.footer-services a:hover { color: var(--gold-light); }
.footer-middle { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 28px; height: 28px; object-fit: contain; opacity: .5; }
.footer-brand-text { color: var(--text-on-dark-muted); font-size: var(--text-sm); font-weight: 500; }
.footer-phone { color: var(--text-on-dark-muted); text-decoration: none; transition: color .3s; }
.footer-phone:hover { color: var(--gold-light); }
.footer-info { color: var(--text-on-dark-muted); font-size: var(--text-xs); }
.footer-sep { margin: 0 8px; opacity: .3; }
.footer-copy { color: var(--text-on-dark-muted); font-size: var(--text-xs); padding-top: 14px; border-top: 1px solid rgba(255,255,255,.06); width: 100%; opacity: .7; }

/* ──────────────────────────────
   Responsive — 1024px (Tablet landscape)
   ────────────────────────────── */
@media (max-width: 1024px) {
    .gallery-item { grid-template-columns: 1fr; }
    .gallery-item:nth-child(even) { direction: ltr; }
    .gallery-img-wrap img { width: 100%; height: auto; }
    .gallery-text { position: static !important; width: auto !important; padding: 44px 36px; }
    .gallery-num { font-size: 3.2rem; }
}

/* ──────────────────────────────
   Responsive — 768px (Tablet portrait)
   ────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --text-xs: .8125rem;
        --text-sm: .875rem;
        --text-base: .9375rem;  /* 15px */
        --text-md: 1rem;
        --text-lg: 1.0625rem;
    }

    .nav { padding: 16px 20px; }
    .nav.scrolled { padding: 12px 20px; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(26,35,66,.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px; gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,.05); }
    .nav-links li:last-child { border: none; }
    .nav-links a { display: block; padding: 14px 0; font-size: var(--text-base); }
    .nav-links a::after { display: none; }
    .nav-links .nav-cta { margin-top: 8px; text-align: center; display: block; border-radius: 6px; }
    .nav-toggle { display: flex; }

    .hero-content { padding: 110px 20px; }
    .hero-logo { width: 96px; height: 96px; margin-bottom: 24px; }
    .hero-sub { margin-bottom: 36px; }

    .section-positioning { padding: 72px 20px; }
    .positioning-values { grid-template-columns: 1fr; gap: 10px; margin-top: 32px; }
    .value-item { padding: 20px 16px; }

    .gallery-img-wrap { height: auto; }
    .gallery-text { padding: 36px 24px; }
    .gallery-num { font-size: 2.8rem; margin-bottom: 12px; }
    .gallery-banner { padding: 64px 20px; }
    .gallery-banner-cards { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

    .section-faq { padding: 72px 20px; }
    .faq-inner h2 { margin-bottom: 28px; }
    .faq-question { padding: 18px 20px; }
    .faq-answer { padding: 0 20px 18px; }

    .section-contact { padding: 72px 20px; }

    .footer-services { flex-direction: column; gap: 6px; }
    .footer-middle { flex-direction: column; gap: 10px; }
    .footer-middle > .footer-sep { display: none; }
    .footer-info { display: flex; flex-direction: column; gap: 2px; }
    .footer-info .footer-sep { display: none; }
}

/* ──────────────────────────────
   Responsive — 480px (Mobile)
   ────────────────────────────── */
@media (max-width: 480px) {
    :root {
        --text-xs: .8125rem;
        --text-sm: .8125rem;
        --text-base: .9375rem;
        --text-md: 1rem;
        --text-lg: 1.0625rem;
    }

    .hero-content { padding: 100px 16px; }
    .hero-cta-group { flex-direction: column; align-items: stretch; padding: 0 8px; }
    .btn-primary, .btn-outline { justify-content: center; padding: 14px 20px; }
    .btn-inspect-hero { padding: 13px 28px; }

    .gallery-text { padding: 28px 20px; }
    .gallery-num { font-size: 2.2rem; margin-bottom: 10px; }
    .gallery-tag { padding: 6px 12px; }

    .contact-phone { flex-direction: column; gap: 12px; }
    .contact-phone-icon { width: 52px; height: 52px; }
    .contact-phone-icon svg { width: 22px; height: 22px; }
}

/* ──────────────────────────────
   Scrollbar
   ────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
