/* ===================================================================
   TASUI Design System 2026 — 日本の水栓金具ブランド
   設計理念：余白・引き算の美学・素材感・陰影・間
   =================================================================== */

/* ----- CSS Variables ----- */
:root {
    --font-jp: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
    --font-en: "Inter", "Helvetica Neue", -apple-system, sans-serif;

    --color-primary: #1B3A4B;
    --color-primary-light: #2C5A6E;
    --color-primary-pale: #E8F0F4;
    --color-accent: #C8A96E;
    --color-accent-light: #D4BC82;
    --color-accent-pale: #F9F4EB;
    --color-text: #2C2C2C;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #FFFFFF;
    --color-bg-warm: #FAF8F5;
    --color-bg-gray: #F4F2EE;
    --color-border: #E5E1DA;
    --color-border-light: #EDEAE5;
    --color-success: #3D7A5C;
    --color-danger: #B8383A;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);

    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.2s;
    --duration-base: 0.35s;
    --duration-slow: 0.55s;

    --header-height: 72px;
    --container-max: 1280px;
    --container-narrow: 900px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-jp);
    color: var(--color-text);
    line-height: 1.75;
    background: var(--color-bg);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration-fast) var(--ease-out); }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
::selection { background: var(--color-primary); color: var(--color-white); }

/* ----- Scrollbar ----- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg-gray); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }

/* ----- Container ----- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--color-text); }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fs-sm { font-size: 13px; }
.fs-base { font-size: 15px; }
.fs-lg { font-size: 18px; }
.tracking-wide { letter-spacing: 0.08em; }
.tracking-wider { letter-spacing: 0.15em; }

/* ----- Utility ----- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.mt-xl { margin-top: 80px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }
.hidden { display: none !important; }

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
    letter-spacing: 0.04em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--duration-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
}
.btn-accent:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    padding: 10px 20px;
}
.btn-ghost:hover { background: var(--color-primary-pale); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

.btn-icon { padding: 12px; border-radius: 50%; }

/* ----- Section Headers ----- */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    margin-top: 16px;
    max-width: 600px;
    line-height: 1.7;
}
.section-header-center { text-align: center; margin-bottom: 64px; }
.section-header-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ----- Cards ----- */
.card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}
.card-bordered { border: 1px solid var(--color-border); }
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-light);
}

/* ----- Grids ----- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* ----- Breadcrumb ----- */
.breadcrumb {
    background: var(--color-bg-gray);
    padding: 14px 0;
    font-size: 12px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border-light);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-primary); text-decoration: underline; }
.breadcrumb .sep { margin: 0 10px; color: var(--color-border); }

/* ----- Page Header (Subpage) ----- */
.page-header {
    background: linear-gradient(160deg, var(--color-primary) 0%, #1a2f3a 100%);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200,169,110,0.08) 0%, transparent 70%);
}
.page-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    position: relative;
}
.page-header p {
    font-size: 15px;
    opacity: 0.8;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

/* ----- Section Spacing ----- */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-xs { padding: 48px 0; }
.bg-warm { background: var(--color-bg-warm); }
.bg-gray { background: var(--color-bg-gray); }
.bg-primary { background: var(--color-primary); color: var(--color-white); }
.bg-dark { background: #141414; color: #aaa; }

/* ----- Divider ----- */
.divider {
    width: 100%;
    height: 1px;
    background: var(--color-border-light);
    margin: 0;
}
.divider-thick {
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    width: 80px;
    margin: 24px auto;
}

/* ----- Tag / Badge ----- */
.tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.tag-new { background: var(--color-primary-pale); color: var(--color-primary); }
.tag-hot { background: #FFF0EE; color: var(--color-danger); }
.tag-accent { background: var(--color-accent-pale); color: var(--color-accent); }

/* ----- Form ----- */
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--duration-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(27,58,75,0.08);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ----- Table ----- */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th, .table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border-light);
}
.table th {
    width: 30%;
    background: var(--color-bg-warm);
    font-weight: 600;
    color: var(--color-text);
}
.table td { color: var(--color-text-light); }

/* ----- Image placeholder ----- */
.img-placeholder {
    background: var(--color-bg-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--color-text-muted);
    overflow: hidden;
}
.img-placeholder.lg { min-height: 400px; }
.img-placeholder.md { min-height: 240px; }
.img-placeholder.sm { min-height: 160px; }

/* ----- Loader ----- */
.page-loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.page-loader .loader-logo {
    width: 60px; height: 60px;
    animation: pulse-loader 1.2s ease-in-out infinite;
}
@keyframes pulse-loader {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.75; }
}

/* ----- Fade In Animation ----- */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Stagger children ----- */
.stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* ===================================================================
   HEADER — 2026 Japanese Premium Style
   Transparent on top → solid on scroll
   =================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--duration-base) var(--ease-out);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xs);
    height: 64px;
}
.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.site-logo svg { width: 160px; height: 44px; }
.site-logo .logo-text { display: none; }
.site-logo .logo-sub { display: none; }

/* Nav */
.header-nav { display: flex; gap: 0; }
.header-nav > li { position: relative; }
.header-nav > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.06em;
    transition: color var(--duration-fast);
    position: relative;
}
.header-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20px; right: 20px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-base) var(--ease-out);
}
.header-nav > li > a:hover { color: var(--color-primary); }
.header-nav > li > a:hover::after { transform: scaleX(1); }

/* Mega Dropdown */
.header-nav .mega-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--color-white);
    min-width: 640px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-out);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    border: 1px solid var(--color-border-light);
}
.header-nav > li:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-dropdown .mega-col h4 {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.mega-dropdown .mega-col a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text);
    transition: all var(--duration-fast);
    border-bottom: 1px solid var(--color-bg-gray);
}
.mega-dropdown .mega-col a:last-child { border-bottom: none; }
.mega-dropdown .mega-col a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}
.mega-dropdown .mega-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 180px;
    position: relative;
}
.mega-dropdown .mega-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.mega-dropdown .mega-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* Header Actions */
.header-actions { display: flex; gap: 8px; align-items: center; }

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-fast);
    background: var(--color-bg);
}
.lang-switch:hover { border-color: var(--color-primary); }
.lang-switch .lang-option {
    padding: 4px 10px;
    border-radius: 14px;
    transition: all var(--duration-fast);
    cursor: pointer;
}
.lang-switch .lang-option.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Mobile Trigger */
.mobile-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-trigger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--color-text);
    transition: all var(--duration-base) var(--ease-out);
}
.mobile-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-trigger.active span:nth-child(2) { opacity: 0; }
.mobile-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Mobile Nav Panel */
.mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 88%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    padding: 88px 32px 40px;
    overflow-y: auto;
    transition: right var(--duration-base) var(--ease-out);
    box-shadow: var(--shadow-xl);
}
.mobile-nav.active { right: 0; }
.mobile-nav .mobile-group { margin-bottom: 24px; }
.mobile-nav .mobile-group h5 {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border-light);
}
.mobile-nav a:hover { color: var(--color-primary); }
.mobile-nav .lang-switch-mobile { margin-top: 32px; display: flex; gap: 12px; }
.mobile-nav .lang-switch-mobile button {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
}
.mobile-nav .lang-switch-mobile button.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ===================================================================
   FOOTER — Trust & Completeness
   =================================================================== */
.site-footer {
    background: #1A1A1A;
    color: #999;
    padding: 80px 0 0;
}
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.site-footer .footer-brand h3 {
    color: var(--color-white);
    font-size: 20px;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.site-footer .footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.site-footer .footer-brand .address {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}
.site-footer .footer-col h5 {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
}
.site-footer .footer-col a {
    display: block;
    font-size: 13px;
    padding: 7px 0;
    color: #888;
    transition: all var(--duration-fast);
}
.site-footer .footer-col a:hover { color: var(--color-accent-light); padding-left: 3px; }

.site-footer .footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    gap: 16px;
}
.site-footer .footer-bottom a { color: #777; margin-left: 20px; font-size: 12px; }
.site-footer .footer-bottom a:hover { color: var(--color-accent-light); }

.site-footer .footer-legal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    border-top: 1px solid #2a2a2a;
    padding: 32px 0;
    margin-bottom: 0;
}
.site-footer .footer-legal h5 {
    color: var(--color-accent-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
}
.site-footer .footer-legal p {
    font-size: 12px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 2px;
}
.site-footer .footer-privacy-officer {
    border-right: 1px solid #2a2a2a;
    padding-right: 32px;
}
.site-footer .footer-disaster {
    padding-left: 0;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1199px) {
    .header-nav > li > a { padding: 8px 14px; font-size: 12px; }
    .section-title { font-size: 32px; }
    .section { padding: 80px 0; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1023px) {
    :root { --header-height: 60px; }
    .container, .container-narrow { padding: 0 24px; }
    .header-nav { display: none; }
    .header-actions .btn { display: none; }
    .mobile-trigger { display: flex; }
    .section-title { font-size: 28px; }
    .section { padding: 64px 0; }
    .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header { padding: 56px 0; }
    .page-header h2 { font-size: 28px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    :root { --header-height: 56px; }
    .container, .container-narrow { padding: 0 20px; }
    .section-title { font-size: 24px; }
    .section { padding: 48px 0; }
    .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { grid-template-columns: 1fr; gap: 24px; }
    .footer-privacy-officer { border-right: none; padding-right: 0; border-bottom: 1px solid #2a2a2a; padding-bottom: 24px; }
    .site-logo svg { width: 130px; height: 36px; }
    .page-header h2 { font-size: 24px; }
    .breadcrumb { font-size: 11px; padding: 10px 0; }
    .btn-lg { padding: 14px 28px; font-size: 14px; }
    .section-header-center { margin-bottom: 40px; }
    .lang-switch { display: none; }
}