:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --primary-dark: #0f0f1a;
    --accent: #e94560;
    --accent-light: #ff6b85;
    --accent-dark: #c42d47;
    --gold: #f5a623;
    --gold-light: #ffc547;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-bg-hover: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans SC", "PingFang SC", sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(22, 33, 62, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .sub {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-title h2 {
    font-family: "Noto Serif SC", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(26, 26, 46, 0.9);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.topbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    box-shadow: var(--shadow-md);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif SC", serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.brand-text h1 {
    font-family: "Noto Serif SC", serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.05em;
}

.brand-text span {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
}

.nav {
    display: flex;
    gap: 32px;
    font-size: 13px;
    font-weight: 500;
}

.nav a {
    position: relative;
    color: var(--text-secondary);
}

.nav a:hover {
    color: var(--text-primary);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -10%;
    top: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(233, 69, 96, 0.15);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-text h2 {
    font-family: "Noto Serif SC", serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h2 span {
    color: var(--gold);
}

.hero-text .lead {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 500px;
}

.hero-text .sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 450px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.stat strong {
    display: block;
    font-family: "Noto Serif SC", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    border-radius: var(--radius-xl);
    opacity: 0.2;
    filter: blur(30px);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.about {
    background: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.portrait {
    position: relative;
}

.portrait::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

.portrait img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.portrait-note {
    margin-top: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.portrait-note strong {
    font-family: "Noto Serif SC", serif;
    font-size: 16px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.portrait-note p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-info .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.about-info h3 {
    font-family: "Noto Serif SC", serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.metric {
    text-align: center;
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.metric strong {
    display: block;
    font-family: "Noto Serif SC", serif;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.metric span {
    font-size: 11px;
    color: var(--text-muted);
}

.list {
    display: grid;
    gap: 12px;
}

.list p {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.list p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
}

.services {
    background: rgba(255, 255, 255, 0.02);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(233, 69, 96, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(233, 69, 96, 0.25);
}

.service-card h4 {
    font-family: "Noto Serif SC", serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--gold);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.process {
    background: rgba(255, 255, 255, 0.02);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px);
}

.process-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(245, 166, 35, 0.1));
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif SC", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    transition: var(--transition);
}

.process-card:hover .process-num {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.3), rgba(245, 166, 35, 0.2));
}

.process-card h4 {
    font-family: "Noto Serif SC", serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cases {
    background: rgba(255, 255, 255, 0.02);
}

.case-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(245, 166, 35, 0.1));
    border-color: var(--gold);
    color: var(--gold);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.case-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.case-result {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.case-result.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.case-result.warning {
    background: rgba(245, 166, 35, 0.15);
    color: var(--gold);
}

.case-card h4 {
    font-family: "Noto Serif SC", serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.case-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.case-quote {
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

.charges {
    background: rgba(255, 255, 255, 0.02);
}

.charge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.charge-card {
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.charge-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--gold));
}

.charge-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-2px);
}

.charge-card h4 {
    font-family: "Noto Serif SC", serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.charge-penalty {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.charge-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.charge-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.charge-card li {
    margin-bottom: 8px;
}

.philosophy {
    background: rgba(255, 255, 255, 0.02);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.philosophy-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.philosophy-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(245, 166, 35, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
}

.philosophy-card h4 {
    font-family: "Noto Serif SC", serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.gallery {
    background: rgba(255, 255, 255, 0.02);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover figcaption {
    opacity: 1;
}

.faq {
    background: rgba(255, 255, 255, 0.02);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-bg);
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--card-bg-hover);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: "Noto Serif SC", serif;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.85;
}

.testimonials {
    background: rgba(255, 255, 255, 0.02);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px);
}

.quote-mark {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 48px;
    color: rgba(233, 69, 96, 0.1);
    font-family: "Noto Serif SC", serif;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-style: italic;
    margin-top: 32px;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif SC", serif;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.author-info {
    font-size: 13px;
}

.author-name {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.author-case {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
}

.contact {
    padding-bottom: 120px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(245, 166, 35, 0.05));
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: var(--radius-xl);
}

.contact-info h3 {
    font-family: "Noto Serif SC", serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-details {
    display: grid;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.contact-details div {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details strong {
    color: var(--gold);
    font-weight: 600;
}

.contact-form {
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.contact-form h4 {
    font-family: "Noto Serif SC", serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

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

.form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.footer {
    padding: 40px 0;
    background: var(--primary-dark);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif SC", serif;
    font-size: 16px;
    color: #fff;
}

.footer-brand-text h4 {
    font-family: "Noto Serif SC", serif;
    font-size: 16px;
    margin: 0;
}

.footer-brand-text span {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact strong {
    color: var(--gold);
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .service-grid,
    .process-grid,
    .case-grid,
    .charge-grid,
    .philosophy-grid,
    .gallery-grid,
    .testimonial-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        gap: 20px;
    }

    .hero-text h2 {
        font-size: clamp(32px, 5vw, 48px);
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-content {
        gap: 32px;
    }

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

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 24px);
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }

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

    .portrait img {
        height: 300px;
    }
}