@charset "UTF-8";

/* =========================================
   Google Fonts Import
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Noto+Serif+JP:wght@300;400&display=swap');

/* =========================================
   カラー変数
   ========================================= */
:root {
    --bg-base:      #0f0e0b;
    --bg-surface:   #1a1810;
    --bg-raised:    #221f15;
    --bg-card:      #1e1c13;
    --border:       rgba(197, 160, 89, 0.2);
    --border-hover: rgba(197, 160, 89, 0.5);
    --gold:         #c5a059;
    --gold-light:   #f0d080;
    --gold-dark:    #7d5520;
    --text-primary: #e8e0d0;
    --text-muted:   #b8ad9e;   /* ↑ #9a9080 → 視認性向上 */
    --text-faint:   #8a7e6e;   /* ↑ #5a5448 → コントラスト確保 */
}

/* =========================================
   Reset & Base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Noto Serif JP', "Hiragino Mincho ProN", "Yu Mincho", serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    padding-bottom: 130px;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}

a:hover {
    color: var(--gold-light);
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul, ol { margin: 0; padding: 0; list-style: none; }

p { margin: 0 0 0.8em; }
p:last-child { margin-bottom: 0; }

/* sr-only を表示させる（ナビ用） */
.sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}

/* =========================================
   Layout
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.mag { margin-top: 20px; margin-bottom: 20px; }

.row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
[class*="col-"] { padding: 0 10px; box-sizing: border-box; }

.col-md-9  { width: 75%; }
.col-md-8  { width: 66.66%; }
.col-md-4  { width: 33.33%; }
.col-md-3  { width: 25%; }
.col-sm-3  { width: 25%; }
.col-xs-6  { width: 50%; }
.col-xs-4  { width: 33.33%; }
.col-xs-3  { width: 25%; }
.col-lg-3  { width: 25%; }
.col-md-2  { width: 16.66%; }

.clearfix::after { content: ''; display: table; clear: both; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.center-block { display: block; margin: 0 auto; }

/* =========================================
   Header
   ========================================= */
header {
    background: var(--bg-base);
}

/* ── サイトタイトル（ヒーロー） ─────────────────── */
.site-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 40px 20px;
    margin: 0;
    gap: 16px;
    background:
        linear-gradient(160deg,
            rgba(18, 14, 10, 0.0) 0%,
            rgba(197, 160, 89, 0.06) 50%,
            rgba(18, 14, 10, 0.0) 100%),
        linear-gradient(180deg, #111009 0%, #1e1a12 60%, #161208 100%);
    position: relative;
    overflow: hidden;
}

.site-title::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; height: 60%;
    background: radial-gradient(ellipse, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.site-title__en {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 300;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.9);
    display: block;
    position: relative;
}

.site-title__ornament {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 560px;
    gap: 12px;
    position: relative;
}

.site-title__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.6), transparent);
}

.site-title__diamond {
    font-size: 14px;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.8));
}

.site-title__ja {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-size: clamp(40px, 10vw, 80px);
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 1.1;
    display: block;
    position: relative;
    background: linear-gradient(135deg,
        #7d5520 0%, #c5a059 25%, #f0d080 50%, #c5a059 75%, #7d5520 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.4))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    animation: gold-shimmer 4s linear infinite;
}

@keyframes gold-shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.site-title__area { margin-left: 0.25em; }

.site-title__sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(12px, 1.8vw, 16px);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.4em;
    color: rgba(197, 160, 89, 0.8);
    display: block;
    position: relative;
}

/* ── ヒーロー ─────────────────── */
.hero-wrap {
    min-height: 60vh;
    display: flex;
    align-items: stretch;
    background:
        linear-gradient(160deg,
            rgba(18, 14, 10, 0.0) 0%,
            rgba(197, 160, 89, 0.06) 50%,
            rgba(18, 14, 10, 0.0) 100%),
        linear-gradient(180deg, #111009 0%, #1e1a12 60%, #161208 100%);
}

.hero-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center top;
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* 暗くするオーバーレイ＋中央に向かってフェード */
.hero-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-panel--left::after {
    background: linear-gradient(
        to right,
        rgba(10, 8, 5, 0.50) 0%,
        rgba(20, 18, 12, 0.82) 55%,
        rgba(30, 26, 18, 1.00) 100%
    );
}

.hero-panel--right::after {
    background: linear-gradient(
        to left,
        rgba(10, 8, 5, 0.50) 0%,
        rgba(20, 18, 12, 0.82) 55%,
        rgba(30, 26, 18, 1.00) 100%
    );
}

.hero-title {
    flex: 0 0 33.33%;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    padding: 40px 20px;
}

.hero-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(12px, 1.8vw, 16px);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5em;
    color: rgba(197, 160, 89, 0.85);
    margin: 0;
}

.hero-ornament {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 480px;
    gap: 12px;
}

.hero-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.6), transparent);
}

.hero-diamond {
    font-size: 13px;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.8));
}

.hero-title h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.hero-name-tia {
    font-family: 'Felipa', serif;
    font-size: clamp(80px, 20vw, 150px);
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1;
    display: block;
    background: linear-gradient(135deg,
        #7d5520 0%, #c5a059 25%, #f0d080 50%, #c5a059 75%, #7d5520 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.5))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9));
    animation: gold-shimmer 4s linear infinite;
}

.hero-name-phonetic {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-size: clamp(20px, 5vw, 42px);
    font-weight: 300;
    letter-spacing: 0.25em;
    line-height: 1.2;
    display: block;
    background: linear-gradient(135deg,
        #7d5520 0%, #c5a059 25%, #f0d080 50%, #c5a059 75%, #7d5520 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 4s linear infinite;
    animation-delay: 0.5s;
}

.hero-name-area {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-size: clamp(14px, 3.2vw, 26px);
    font-weight: 300;
    letter-spacing: 0.3em;
    line-height: 1.2;
    display: block;
    color: rgba(197, 160, 89, 0.9);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.4), 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* 営業時間・電話バー */
#opentel {
    background: var(--bg-surface);
    color: var(--text-muted);
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

#opentel a {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.15em;
    margin-left: 12px;
}

#opentel a:hover { color: var(--gold-light); }

.fa {
    display: inline-block;
    font-style: normal;
    font-size: 1em;
    vertical-align: middle;
}

/* =========================================
   Navigation
   ========================================= */
#collapse-nav {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    position: relative;
}

#collapse-nav .container { position: relative; }

.nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.nav li { margin: 0; }

.nav li a {
    display: block;
    padding: 12px 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    text-align: center;
    transition: color 0.3s, background 0.3s;
}

.nav li a small {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 300;
    text-transform: none;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

.nav li.active > a,
.nav li > a:hover {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.06);
}

.nav li.active > a small,
.nav li > a:hover small {
    color: rgba(197, 160, 89, 0.9);
}

.nav li.active > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.toggle {
    display: none;
    position: absolute;
    right: 15px; top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    font-size: 20px;
    color: var(--text-muted);
}

/* =========================================
   Breadcrumb
   ========================================= */
.breadcrumb {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 0;
    gap: 6px;
}

.breadcrumb li { display: flex; align-items: center; }

.breadcrumb li + li::before {
    content: '›';
    margin-right: 6px;
    color: var(--text-faint);
}

/* =========================================
   Content Area
   ========================================= */
.content { padding-top: 10px; }

/* =========================================
   Panel（共通カード）
   ========================================= */
.panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 28px;
    overflow: hidden;
}

.panel-default { border-color: var(--border); }

.panel-heading {
    padding: 13px 20px;
    background: linear-gradient(135deg, #1a1608 0%, #2a2010 100%);
    border-bottom: 1px solid var(--border);
}

.panel-title {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--gold);
}

.panel-title small {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.72em;
    margin-left: 10px;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.75;
}

.panel-body { padding: 20px; }

/* =========================================
   Slide（ヒーロースライダー）
   ========================================= */
.slide {
    margin-bottom: 28px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* スライド画像: 高さを直値で固定する（aspect-ratio は slick と干渉するため使用しない） */
.slide img {
    display: block;
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
}

/* スタッフ写真・ピックアップ写真 */
.list-staff .photo img,
#pickup .photo img {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
}

/* カスタムスライドショー */
#slideContainer > div {
    display: none;
    position: relative;
}

#slideContainer > div.slide-active {
    display: block;
    animation: slideshow-fadein 0.6s ease;
}

@keyframes slideshow-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#slideContainer > div .label_text {
    position: absolute;
    bottom: 10px; left: 10px; right: 10px;
}

/* =========================================
   Information
   ========================================= */
#information .list-group {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.4) rgba(197, 160, 89, 0.06);
}

#information .list-group::-webkit-scrollbar {
    width: 5px;
}

#information .list-group::-webkit-scrollbar-track {
    background: rgba(197, 160, 89, 0.06);
    border-radius: 3px;
}

#information .list-group::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.4);
    border-radius: 3px;
}

#information .list-group::-webkit-scrollbar-thumb:hover {
    background: rgba(197, 160, 89, 0.7);
}

#information .list-group-item {
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding: 16px 0;
}

#information .list-group-item:last-child { border-bottom: none; }

#information .list-group-item .title {
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 6px;
    font-size: 15px;
    letter-spacing: 0.05em;
}

#information .list-group-item .message {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.85;
}

.list-group-item .date {
    display: inline-block;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.35);
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* =========================================
   Pick Up
   ========================================= */
#pickup .row {
    display: flex;
    align-items: center;
}

#pickup .photo img {
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
    aspect-ratio: 2 / 3;
}

#pickup .prodata { margin-bottom: 15px; }

/* セラピスト名 */
#pickup .prodata .title {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.25em;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.3));
}

/* スリーサイズ */
#pickup .size {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    margin-top: 10px;
    letter-spacing: 0.08em;
}

#pickup .sizeC,
.sizeC {
    font-weight: 400;
    color: var(--gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* スタッフコメント見出し */
#pickup .ctitle {
    background: rgba(197, 160, 89, 0.06);
    padding: 8px 14px;
    font-size: 13px;
    margin-bottom: 0;
    border-left: 2px solid var(--gold);
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* コメントスクロール */
#pickup .ccom {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(197,160,89,0.4) rgba(197,160,89,0.06);
}
#pickup .ccom::-webkit-scrollbar { width: 5px; }
#pickup .ccom::-webkit-scrollbar-track { background: rgba(197,160,89,0.06); border-radius: 3px; }
#pickup .ccom::-webkit-scrollbar-thumb { background: rgba(197,160,89,0.4); border-radius: 3px; }
#pickup .ccom::-webkit-scrollbar-thumb:hover { background: rgba(197,160,89,0.7); }

/* テーブル */
#pickup table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.8;
}

#pickup table td {
    vertical-align: top;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    color: var(--text-primary);
}

/* ラベル列 */
#pickup table td:first-child {
    width: 30%;
    min-width: 120px;
    color: rgba(197, 160, 89, 0.75);
    font-size: 12px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding-right: 12px;
}

/* CMSが付けた緑背景を打ち消す */
#pickup table td span[style*="background-color"] {
    background-color: transparent !important;
}

#pickup .plink { margin-top: 15px; font-size: 14px; }

#pickup .plink a { color: var(--gold); }

#pickup .plink a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}


/* =========================================
   Staff List（New Face / Today）
   ========================================= */
.list-staff {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.list-staff > li { padding: 8px; }

.list-staff .item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
    height: 100%;
}

.list-staff .item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(197, 160, 89, 0.4);
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.list-staff .photo { overflow: hidden; }

.list-staff .photo img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background-size: cover;
    background-position: center top;
    display: block;
    transition: transform 0.4s;
    filter: brightness(0.9) contrast(1.05);
}

.list-staff .item:hover .photo img {
    transform: scale(1.04);
    filter: brightness(1.0) contrast(1.05);
}

.list-staff .info {
    padding: 10px 8px;
    text-align: center;
}

.list-staff .prof a {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
}

.list-staff .prof a:hover { color: var(--gold-light); }

.list-staff .prof div {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.list-staff .tsche {
    background: linear-gradient(135deg, #1a1305 0%, rgba(197, 160, 89, 0.15) 100%);
    border-top: 1px solid var(--border);
    color: var(--gold);
    text-align: center;
    padding: 6px 4px;
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.list-staff .tsche p { margin: 0; }

/* =========================================
   Sidebar
   ========================================= */
.block-right .panel-heading {
    background: linear-gradient(135deg, #1a1608 0%, #221c0e 100%);
}

.twitter-widget-wrapper {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #080807;
    color: var(--text-faint);
    padding: 36px 0 130px;
    font-size: 13px;
    border-top: 1px solid var(--border);
}

footer nav {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

footer nav a {
    color: var(--text-muted);
    padding: 4px 14px;
    border-right: 1px solid var(--border);
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

footer nav a:last-child { border-right: none; }

footer nav a:hover { color: var(--gold); }

footer .copyright {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

footer .copyright a { color: var(--text-muted); }
footer .copyright a:hover { color: var(--gold); }
footer .text-center a { color: var(--text-muted); font-size: 13px; }
footer .text-center a:hover { color: var(--gold); }
footer > div > p:empty { display: none; }

/* =========================================
   Quick Contact（下部固定バー）
   ========================================= */
.quick-contact {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: rgba(15, 14, 11, 0.97);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 15px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    gap: 10px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
}

.quick-contact a[href^="tel"] {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.quick-contact a[href^="tel"]:hover { color: var(--gold-light); }

.quick-contact .opentime {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

#fline { display: flex; gap: 8px; }

.quick-contact .line {
    background: #06c755;
    color: #fff !important;
    padding: 9px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    transition: opacity 0.3s, box-shadow 0.3s;
}

.quick-contact .line:hover {
    opacity: 0.9;
    box-shadow: 0 0 12px rgba(6, 199, 85, 0.4);
}

.quick-contact .liner {
    background: #c0185e;
}

.quick-contact .liner:hover {
    box-shadow: 0 0 12px rgba(192, 24, 94, 0.4);
}

/* =========================================
   Back to Top Button
   ========================================= */
.back2top {
    position: fixed;
    right: 20px; bottom: 110px;
    z-index: 9998;
}

.back2top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--border);
    color: var(--gold);
    border-radius: 2px;
    font-size: 18px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.back2top a:hover {
    background: rgba(197, 160, 89, 0.2);
    box-shadow: 0 0 16px rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
    opacity: 1;
    color: var(--gold-light);
}

/* =========================================
   Responsive — Tablet
   ========================================= */
@media (max-width: 992px) {
    .col-md-9 { width: 100%; }
    .col-md-3 { width: 100%; }
    .col-md-2 { width: 25%; }
    .col-lg-3 { width: 25%; }
}

/* =========================================
   Responsive — Mobile
   ========================================= */
@media (max-width: 768px) {
    body { padding-bottom: 120px; }
    .hero-panel { display: none; }

    .site-title { min-height: 45vh; padding: 30px 15px; gap: 12px; }
    .site-title__ornament { max-width: 320px; }
    .site-title__sub { letter-spacing: 0.25em; }

    .hero-wrap { min-height: 55vh; }
    .hero-title { flex: 0 0 100%; gap: 10px; padding: 30px 15px; }
    .hero-ornament { max-width: 300px; }
    .hero-sub { letter-spacing: 0.3em; }

    .nav { flex-direction: column; display: none; }
    .nav.nav-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border);
        z-index: 200;
    }

    #collapse-nav { min-height: 50px; }

    .nav li a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border);
        text-align: left;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .toggle { display: block; }

    .col-md-9, .col-md-8, .col-md-4, .col-md-3 { width: 100%; }
    .col-sm-3 { width: 50%; }
    .col-xs-4 { width: 33.33%; }
    .col-xs-6 { width: 50%; }
    .col-md-2 { width: 33.33%; }
    .col-lg-3 { width: 50%; }

    .slide img { height: 220px; }

    #pickup .row { flex-direction: column; }
    #pickup .col-md-4 { width: 60%; margin: 0 auto 20px; }
    #pickup table td:first-child { width: 40%; }

    .quick-contact { padding: 8px 10px; gap: 6px; }
    .quick-contact .opentime { display: none; }
    .quick-contact a[href^="tel"] { font-size: 17px; }
}

@media (max-width: 480px) {
    .site-title { min-height: 40vh; }
    .hero-wrap { min-height: 45vh; }
    .col-md-2 { width: 50%; }
    .col-lg-3 { width: 50%; }
    .col-sm-3 { width: 50%; }
    .col-xs-4 { width: 33.33%; }
    footer nav a { padding: 4px 8px; font-size: 11px; }
}
