/* roulang page: index */
/* ========== 设计变量 ========== */
:root {
    --bg-deep: #101418;
    --bg-panel: #1b232a;
    --bg-elevated: #232e36;
    --primary-gold: #c9a86a;
    --primary-amber: #e8c88a;
    --secondary-jade: #4f8f6e;
    --accent-crimson: #a0463a;
    --text-main: #e9e2d4;
    --text-dim: #9aa5ad;
    --text-faint: #616e78;
    --line-border: rgba(201,168,106,0.25);
    --line-strong: rgba(201,168,106,0.55);
    --glow-gold: rgba(201,168,106,0.18);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201,168,106,0.18);
    --font-sans: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
    --container-w: 1140px;
}

/* ========== Reset / Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    background: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.8;
    font-size: 15px;
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--primary-amber); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--primary-gold); outline-offset: 3px; }

/* ========== 容器与通用布局 ========== */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section-alt { background: var(--bg-panel); }
.section-dark { background: var(--bg-deep); }

/* 区块标题体系 */
.section-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 32px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-gold);
    border: 1px solid var(--line-border);
    border-radius: 4px;
    background: rgba(201,168,106,0.05);
    flex-shrink: 0;
}
.section-title-block { flex: 1; }
.section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    border-left: 3px solid var(--primary-gold);
    padding-left: 16px;
    margin-bottom: 8px;
}
.section-desc { color: var(--text-dim); font-size: 15px; line-height: 1.9; max-width: 760px; }

/* HUD 分割线 */
.hud-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(201,168,106,0.18) 60%, transparent);
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
    margin-bottom: 64px;
    border: none;
}

/* ========== 按钮 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.btn-primary { background: var(--primary-gold); color: #101418; border-color: var(--primary-gold); }
.btn-primary:hover { background: var(--primary-amber); border-color: var(--primary-amber); color: #101418; box-shadow: 0 4px 24px var(--glow-gold); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary-gold); border-color: var(--line-strong); }
.btn-outline:hover { background: rgba(201, 168, 106, 0.1); color: var(--primary-amber); border-color: var(--primary-amber); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 5px; clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%); }

/* ========== 徽章 / 标签 ========== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-gold);
    background: rgba(201, 168, 106, 0.08);
    border: 1px solid var(--line-border);
    white-space: nowrap;
    letter-spacing: .5px;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--primary-gold);
    background: rgba(201,168,106,0.06);
    border: 1px solid var(--line-border);
    border-radius: 3px;
    transition: all .2s ease;
}
.tag:hover { background: rgba(201,168,106,0.14); border-color: var(--line-strong); color: var(--primary-amber); }

/* ========== Header ========== */
.header {
    background: rgba(16, 20, 24, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: .5px;
    white-space: nowrap;
}
.brand:hover { color: var(--primary-amber); }
.brand-logo {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    background: rgba(201,168,106,0.1);
    box-shadow: 0 0 16px var(--glow-gold);
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}
.brand-logo svg { width: 18px; height: 18px; }
.brand-meta { color: var(--text-dim); font-size: 13px; letter-spacing: 1px; white-space: nowrap; }

/* 图标导航 */
.icon-nav { border-top: 1px solid rgba(201,168,106,0.12); }
.icon-nav-inner {
    display: flex;
    gap: 6px;
    padding: 8px 0;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.icon-nav-inner::-webkit-scrollbar { display: none; }
.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dim);
    border: 1px solid transparent;
    transition: all .25s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.icon-link svg { width: 18px; height: 18px; stroke-width: 1.8; }
.icon-link:hover { color: var(--primary-amber); background: rgba(201,168,106,0.05); border-color: var(--line-border); }
.icon-link.active {
    color: var(--primary-amber);
    background: rgba(201,168,106,0.08);
    border-color: var(--line-strong);
    box-shadow: inset 0 -2px 0 var(--primary-gold);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-deep);
    overflow: hidden;
    text-align: center;
    padding: 72px 0 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/backpic/back-2.webp') center / cover no-repeat;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16,20,24,0.78) 0%, rgba(16,20,24,0.85) 55%, var(--bg-deep) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; padding: 20px 24px 48px; }
.hero-eyebrow {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-gold);
    border: 1px solid var(--line-border);
    padding: 5px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    background: rgba(16,20,24,0.6);
}
.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--text-main);
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-title .highlight { color: var(--primary-amber); }
.hero-desc {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dim);
    max-width: 720px;
    margin: 0 auto 32px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-band {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(16,20,24,0.72);
    border-top: 1px solid var(--line-border);
    backdrop-filter: blur(6px);
}
.hero-band-inner {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px 24px;
    flex-wrap: wrap;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-amber);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 8px 20px;
    background: rgba(201,168,106,0.06);
    box-shadow: 0 0 12px var(--glow-gold);
}
.hero-badge svg { width: 16px; height: 16px; }

/* ========== 服务板块 ========== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.svc-card {
    background: var(--bg-panel);
    border: 1px solid var(--line-border);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: all .3s ease;
    box-shadow: var(--shadow-card);
}
.svc-card::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 24px;
    height: 24px;
    border-top: 2px solid var(--primary-gold);
    border-right: 2px solid var(--primary-gold);
    border-top-right-radius: 6px;
    opacity: .6;
    transition: opacity .3s ease;
}
.svc-card:hover {
    background: var(--bg-elevated);
    border-color: var(--line-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}
.svc-card:hover::after { opacity: 1; }
.svc-icon {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid var(--line-border);
    background: rgba(201,168,106,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all .3s ease;
}
.svc-icon svg { width: 22px; height: 22px; stroke-width: 1.7; }
.svc-card:hover .svc-icon { box-shadow: 0 0 18px var(--glow-gold); border-color: var(--line-strong); }
.svc-card h3 { font-size: 17px; font-weight: 600; }
.svc-card p { font-size: 14px; line-height: 1.85; color: var(--text-dim); flex: 1; }
.svc-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-gold);
    border-top: 1px solid rgba(201,168,106,0.18);
    padding-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s ease;
}
.svc-link:hover { gap: 8px; color: var(--primary-amber); }

/* ========== 优势数据 ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    margin-top: 24px;
}
.stat-item {
    padding: 32px 20px;
    background: var(--bg-panel);
    border: 1px solid var(--line-border);
    border-radius: var(--radius-md);
    position: relative;
    transition: all .3s ease;
}
.stat-item:hover { border-color: var(--line-strong); background: var(--bg-elevated); box-shadow: var(--shadow-card-hover); }
.stat-value {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-amber);
    text-shadow: 0 0 28px var(--glow-gold);
    line-height: 1.15;
    letter-spacing: 1px;
}
.stat-value small { font-size: 20px; color: var(--primary-gold); }
.stat-label { display: block; margin-top: 10px; font-size: 13px; color: var(--text-dim); letter-spacing: 1px; }

/* ========== 案例展示 ========== */
.case-stack { display: flex; flex-direction: column; gap: 48px; margin-top: 48px; }
.case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    background: var(--bg-panel);
    border: 1px solid var(--line-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all .3s ease;
}
.case-card:hover { border-color: var(--line-strong); background: var(--bg-elevated); box-shadow: var(--shadow-card-hover); }
.case-card.rev .case-media { order: 2; }
.case-card.rev .case-info { order: 1; }
.case-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line-border);
    aspect-ratio: 16 / 10;
}
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.case-card:hover .case-media img { transform: scale(1.03); }
.case-media .case-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}
.case-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--primary-amber); }
.case-info p { font-size: 15px; line-height: 1.95; color: var(--text-dim); margin-bottom: 18px; }
.case-info .tag-list { margin-bottom: 18px; }
.case-more { text-align: center; margin-top: 48px; }

/* ========== 品茗方案 ========== */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: stretch;
}
.plan-card {
    background: var(--bg-panel);
    border: 1px solid var(--line-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .3s ease;
    box-shadow: var(--shadow-card);
}
.plan-card:hover { border-color: var(--line-strong); background: var(--bg-elevated); transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.plan-card.recommend { border-color: var(--line-strong); box-shadow: 0 0 0 1px var(--line-strong), var(--shadow-card); }
.plan-recommend-edge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    background: var(--primary-gold);
    color: #101418;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%);
}
.plan-media { width: 100%; aspect-ratio: 16 / 8; overflow: hidden; border-bottom: 1px solid var(--line-border); }
.plan-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.plan-card:hover .plan-media img { transform: scale(1.04); }
.plan-body { padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.plan-name { font-size: 18px; font-weight: 700; }
.plan-price { color: var(--primary-amber); font-size: 22px; font-weight: 800; }
.plan-price small { font-size: 13px; color: var(--text-dim); font-weight: 400; }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}
.plan-features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--primary-gold); }
.plan-cta { padding: 16px 20px 20px; border-top: 1px solid rgba(201,168,106,0.14); }

/* ========== 资讯板块 ========== */
.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; margin-top: 40px; }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--bg-panel);
    border: 1px solid var(--line-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: all .25s ease;
}
.news-item:hover { border-color: var(--line-strong); background: var(--bg-elevated); transform: translateX(4px); }
.news-item .news-title { font-size: 16px; font-weight: 600; color: var(--text-main); line-height: 1.5; }
.news-item .news-title:hover { color: var(--primary-amber); }
.news-item .news-meta { font-size: 13px; color: var(--text-faint); }
.news-sider { display: flex; flex-direction: column; gap: 20px; }
.news-panel {
    background: var(--bg-panel);
    border: 1px solid var(--line-border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.news-panel h3 { font-size: 16px; font-weight: 600; margin-bottom: 14px; border-left: 3px solid var(--primary-gold); padding-left: 10px; }
.news-panel .tag-list { gap: 6px; }

/* ========== FAQ ========== */
.faq-list { max-width: 860px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: var(--bg-panel);
    border: 1px solid var(--line-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .3s ease;
}
.faq-item:hover { border-color: var(--line-strong); background: var(--bg-elevated); }
.faq-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    content: '';
    width: 3px;
    height: 18px;
    background: var(--primary-gold);
    border-radius: 2px;
    flex-shrink: 0;
}
.faq-item summary::after {
    content: '+';
    margin-left: auto;
    font-size: 20px;
    color: var(--primary-gold);
    transition: transform .3s ease;
    font-weight: 400;
}
.faq-item[open] summary { color: var(--primary-amber); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px 40px; font-size: 14px; line-height: 1.9; color: var(--text-dim); }

/* ========== 联系板块 ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item .ci-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid var(--line-border);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    background: rgba(201,168,106,0.06);
}
.contact-item .ci-icon svg { width: 18px; height: 18px; }
.contact-item h4 { font-size: 15px; font-weight: 600; }
.contact-item p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.contact-wechat {
    margin-top: 12px;
    background: var(--bg-panel);
    border: 1px solid var(--line-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.wechat-qr {
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1.6;
}
.wechat-text { font-size: 13px; color: var(--text-dim); }
.wechat-text strong { display: block; font-size: 14px; color: var(--text-main); margin-bottom: 4px; }

/* 预约表单 */
.reserve-form { background: var(--bg-panel); border: 1px solid var(--line-border); border-radius: var(--radius-md); padding: 32px; }
.reserve-form .form-row { margin-bottom: 20px; }
.reserve-form label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text-main); }
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
    width: 100%;
    background: var(--bg-deep);
    border: none;
    border-bottom: 1px solid var(--line-border);
    padding: 12px 4px;
    font-size: 14px;
    color: var(--text-main);
    border-radius: 0;
    transition: border-color .25s ease, box-shadow .25s ease;
    appearance: none;
    -webkit-appearance: none;
}
.reserve-form textarea { min-height: 76px; resize: vertical; }
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-gold);
    box-shadow: 0 2px 12px rgba(201,168,106,0.12);
}
.reserve-form input::placeholder,
.reserve-form textarea::placeholder { color: var(--text-faint); }
.form-select-wrap { position: relative; }
.form-select-wrap select { padding-right: 28px; }
.form-select-wrap::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--primary-gold);
    border-bottom: 1px solid var(--primary-gold);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}
.form-privacy { font-size: 12px; color: var(--text-faint); text-align: center; margin-top: 12px; }
.form-alert {
    background: rgba(79, 143, 110, 0.12);
    border: 1px solid rgba(79, 143, 110, 0.45);
    color: var(--secondary-jade);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ========== 页脚 ========== */
.footer {
    background: #0a0d10;
    border-top: 1px solid var(--line-border);
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand { margin-bottom: 14px; }
.footer-brand .brand { margin-bottom: 10px; }
.footer-desc { font-size: 14px; color: var(--text-dim); line-height: 1.9; max-width: 320px; }
.footer h4 { font-size: 15px; font-weight: 600; margin-bottom: 16px; color: var(--text-main); border-left: 3px solid var(--primary-gold); padding-left: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-dim); transition: all .2s ease; }
.footer-links a:hover { color: var(--primary-amber); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-dim); }
.footer-bottom {
    border-top: 1px solid rgba(201,168,106,0.12);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-faint);
}
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--primary-gold); }

/* ========== 响应式 ========== */
@media (max-width: 1023px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }
    .news-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .case-card { grid-template-columns: 1fr; }
    .case-card.rev .case-media { order: 0; }
    .case-card.rev .case-info { order: 0; }
}
@media (max-width: 767px) {
    .section { padding: 56px 0; }
    .hero { min-height: 70vh; padding-top: 56px; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 15px; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-btn { width: 100%; }
    .hero-band-inner { gap: 10px; }
    .hero-badge { font-size: 13px; padding: 7px 14px; }
    .svc-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-value { font-size: 34px; }
    .plan-grid { grid-template-columns: 1fr; }
    .plan-card:last-child { grid-column: auto; max-width: none; }
    .news-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .reserve-form { padding: 24px 20px; }
    .logo-bar { padding: 12px 0; }
    .brand { font-size: 15px; }
    .brand-meta { font-size: 12px; }
    .icon-link { padding: 8px 12px; font-size: 13px; }
    .icon-link svg { width: 16px; height: 16px; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-value { font-size: 30px; }
    .container { padding: 0 16px; }
}
