/* ===== Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #080706;
  --bg2:         #0d0a07;
  --bg3:         #131008;
  --border:      #2a2218;
  --gold:        #c9a96e;
  --gold-lt:     #e0c48a;
  --text:        #e8dcc8;
  --muted:       #9a8c70;
  --dim:         #5a4c3e;
  --green:       #5a9a6e;
  --red:         #c96e6e;
  --font-ja:     'Noto Serif JP', serif;
  --font-en:     'Cormorant Garamond', serif;
  --font-display:'Shippori Mincho B1', 'Noto Serif JP', serif;
  --ember:       rgba(160, 80, 20, 0.05);
}

/* ── Film grain overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ── Gold shimmer ── */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-en {
  background: linear-gradient(90deg, var(--gold) 0%, #f5e4b8 38%, var(--gold-lt) 52%, var(--gold) 70%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 5s linear infinite;
}

html { font-size: 15px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-ja);
       line-height: 1.7; min-height: 100vh; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }
img { display: block; max-width: 100%; }

/* ===== Customer Nav ===== */
.c-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 60px;
  background: rgba(8,7,6,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.c-nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-family: var(--font-en); font-size: 18px; letter-spacing: 3px;
}
.c-nav-brand img { width: 26px; height: 26px; }
.c-nav-links { display: flex; gap: 18px; list-style: none; }
.c-nav-links a { font-size: 12px; letter-spacing: 1px; color: var(--muted); white-space: nowrap; }
.c-nav-links a:hover { color: var(--gold); }
/* 採用はレストラン客向けではないためPC非表示 */
/* PC nav: お客様向け4リンクのみ表示（産地・牧場・出張・配送・WORLDWIDE はモバイルメニューに残す） */
.c-nav-links li:nth-child(4),
.c-nav-links li:nth-child(5),
.c-nav-links li:nth-child(7),
.c-nav-links li:nth-child(8) { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative; height: 100svh; min-height: 560px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: zoomIn 12s ease-out forwards;
}
@keyframes zoomIn { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,7,6,.5) 0%, rgba(8,7,6,.65) 100%),
    radial-gradient(ellipse at center bottom, rgba(140,65,15,.18) 0%, transparent 65%);
}
.hero-content { position: relative; text-align: center; padding: 24px; }
.hero-logo { width: 64px; height: 64px; margin: 0 auto 20px; }
.hero-en   { font-family: var(--font-en); font-size: 13px; letter-spacing: 4px; margin-bottom: 12px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px,7vw,80px); font-weight: 800;
  letter-spacing: .2em; margin-bottom: 14px; line-height: 1.1;
  color: var(--text);
}
.hero-sub   { font-size: 13px; color: var(--muted); letter-spacing: 3px; margin-bottom: 36px; }
.hero-cta a {
  display: inline-block; padding: 14px 40px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 13px; letter-spacing: 3px; transition: background .2s, color .2s;
}
.hero-cta a:hover { background: var(--gold); color: var(--bg); }

/* ===== Booking Section ===== */
.booking { max-width: 720px; margin: 80px auto; padding: 0 20px 80px; }
.section-label { text-align: center; margin-bottom: 48px; }
.section-label .en {
  font-family: var(--font-en); font-size: 11px; letter-spacing: 5px; color: var(--gold);
  display: block; margin-bottom: 10px;
}
.section-label h2 { font-size: 22px; font-weight: 300; letter-spacing: .1em; }

.form-card { background: var(--bg2); border: 1px solid var(--border); padding: 40px 36px; }

.form-row { display: grid; gap: 20px; margin-bottom: 24px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; letter-spacing: 2px; color: var(--muted); }
.form-group label .req { color: var(--gold); margin-left: 2px; }

input[type=text], input[type=tel], input[type=email],
input[type=date], input[type=number], select, textarea {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  padding: 12px 14px; font-size: 14px; font-family: var(--font-ja);
  width: 100%; outline: none; appearance: none; transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 80px; }

/* Time slot grid */
.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.slot-btn {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 10px 16px; font-size: 13px;
  cursor: pointer; transition: all .15s; font-family: var(--font-ja);
}
.slot-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.slot-btn.selected { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.slot-btn:disabled { opacity: .35; cursor: not-allowed; }
.slot-btn .cap { font-size: 11px; color: var(--muted); margin-left: 4px; }
.slot-btn.selected .cap { color: rgba(8,7,6,.7); }
.slot-msg { color: var(--muted); font-size: 13px; padding: 12px 0; }

.btn-submit {
  display: block; width: 100%; margin-top: 32px;
  background: none; border: 1px solid var(--gold);
  color: var(--gold); padding: 16px; font-size: 14px;
  letter-spacing: 3px; cursor: pointer; font-family: var(--font-ja);
  transition: background .2s, color .2s;
}
.btn-submit:hover { background: var(--gold); color: var(--bg); }

.errors {
  background: rgba(201,110,110,.1); border: 1px solid rgba(201,110,110,.4);
  padding: 14px 18px; margin-bottom: 24px;
}
.errors li { font-size: 13px; color: #e09090; margin-left: 16px; line-height: 1.8; }

/* ===== Done / Cancelled ===== */
.msg-page { max-width: 580px; margin: 100px auto 80px; padding: 0 20px; text-align: center; }
.msg-page .chara { width: 110px; margin: 0 auto 28px; object-fit: contain; }
.msg-page .en { font-family: var(--font-en); letter-spacing: 4px; color: var(--gold); font-size: 12px; margin-bottom: 10px; }
.msg-page h1 { font-size: 24px; font-weight: 300; letter-spacing: .08em; margin-bottom: 28px; }
.detail-box {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 28px 32px; text-align: left; margin-bottom: 28px;
}
.detail-box table { width: 100%; border-collapse: collapse; font-size: 14px; }
.detail-box td { padding: 10px 0; border-bottom: 1px solid var(--border); }
.detail-box td:first-child { color: var(--muted); width: 110px; font-size: 13px; }
.detail-box tr:last-child td { border-bottom: none; }
.msg-note { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.msg-page a.btn-link {
  display: inline-block; border: 1px solid var(--border);
  padding: 12px 32px; font-size: 13px; color: var(--muted);
}
.msg-page a.btn-link:hover { border-color: var(--gold); color: var(--gold); }
.cancel-link { font-size: 12px; color: var(--dim); margin-top: 20px; }
.cancel-link a { color: var(--dim); text-decoration: underline; }

/* ===== Info Strip ===== */
.info-strip {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  max-width: 840px; margin: 0 auto 80px; padding: 0 20px;
}
.info-item { padding: 36px 24px; border-right: 1px solid var(--border); }
.info-item:last-child { border-right: none; }
.info-item .label { font-size: 11px; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; }
.info-item p { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--border); padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--dim);
}

/* ===== Admin Login ===== */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.login-box { width: 320px; background: var(--bg2); border: 1px solid var(--border); padding: 40px; }
.login-box .logo { text-align: center; margin-bottom: 32px; }
.login-box .logo .en { font-family: var(--font-en); letter-spacing: 4px; color: var(--gold); font-size: 18px; }
.login-box .logo .sub { font-size: 11px; color: var(--dim); margin-top: 4px; }
.login-box .error { color: #e09090; font-size: 13px; margin-bottom: 16px; }
.login-box input { margin-bottom: 16px; }
.login-box button {
  width: 100%; background: none; border: 1px solid var(--gold); color: var(--gold);
  padding: 13px; font-size: 14px; letter-spacing: 2px; cursor: pointer;
  transition: background .2s, color .2s; font-family: var(--font-ja);
}
.login-box button:hover { background: var(--gold); color: var(--bg); }

/* ===== Admin Layout ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px; flex-shrink: 0; background: var(--bg2);
  border-right: 1px solid var(--border); padding: 24px 0;
  position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 50;
}
.admin-sidebar .brand { padding: 0 24px 24px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.admin-sidebar .brand .en { font-family: var(--font-en); letter-spacing: 3px; color: var(--gold); font-size: 16px; }
.admin-sidebar .brand .sub { font-size: 11px; color: var(--dim); margin-top: 2px; }
.admin-sidebar nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 24px; font-size: 13px; color: var(--muted); letter-spacing: 1px;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active { color: var(--text); background: rgba(201,169,110,.07); }
.admin-sidebar nav a.active { border-left: 2px solid var(--gold); }
.admin-sidebar .sidebar-footer { padding: 20px 24px 0; margin-top: 16px; border-top: 1px solid var(--border); }
.admin-sidebar .sidebar-footer a { font-size: 12px; color: var(--dim); }

.admin-main { margin-left: 220px; flex: 1; padding: 32px 36px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.admin-header h1 { font-size: 20px; font-weight: 300; letter-spacing: .06em; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--bg2); border: 1px solid var(--border); padding: 20px 24px; }
.stat-card .label { font-size: 11px; color: var(--muted); letter-spacing: 2px; margin-bottom: 10px; }
.stat-card .value { font-size: 28px; font-weight: 200; }
.stat-card .unit  { font-size: 13px; color: var(--muted); margin-left: 4px; }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  text-align: left; padding: 10px 14px; font-size: 11px; letter-spacing: 2px;
  color: var(--muted); border-bottom: 1px solid var(--border); font-weight: 400;
}
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:hover td { background: rgba(201,169,110,.04); }
.data-table tr:last-child td { border-bottom: none; }

/* Badges */
.badge { display: inline-block; padding: 3px 10px; font-size: 11px; border-radius: 2px; }
.badge-confirmed { background: rgba(90,154,110,.15); color: #7ac08a; border: 1px solid rgba(90,154,110,.3); }
.badge-cancelled { background: rgba(201,110,110,.12); color: #e09090; border: 1px solid rgba(201,110,110,.25); }
.badge-no_show   { background: rgba(154,140,112,.12); color: var(--muted); border: 1px solid var(--border); }

/* Buttons */
.btn { display: inline-block; padding: 6px 14px; font-size: 12px; cursor: pointer; border: 1px solid var(--border); background: none; color: var(--muted); font-family: var(--font-ja); transition: all .15s; }
.btn:hover { border-color: var(--gold); color: var(--gold); }
.btn-danger { border-color: rgba(201,110,110,.4); color: #c09090; }
.btn-danger:hover { border-color: var(--red); color: var(--red); }
.btn-primary { border-color: var(--gold); color: var(--gold); }
.btn-primary:hover { background: var(--gold); color: var(--bg); }
.btn-sm { padding: 4px 10px; font-size: 11px; }

/* Filter bar */
.filter-bar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.filter-bar input, .filter-bar select { width: auto; padding: 8px 12px; font-size: 13px; }

/* Card */
.card { background: var(--bg2); border: 1px solid var(--border); padding: 24px 28px; margin-bottom: 24px; }
.card h2 { font-size: 12px; font-weight: 400; letter-spacing: 3px; color: var(--muted); margin-bottom: 18px; }

/* Timeline */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.tl-item:last-child { border-bottom: none; }
.tl-time { font-family: var(--font-en); font-size: 18px; letter-spacing: 1px; color: var(--gold); width: 56px; flex-shrink: 0; padding-top: 2px; }
.tl-body { flex: 1; }
.tl-name { font-size: 15px; margin-bottom: 3px; }
.tl-meta { font-size: 12px; color: var(--muted); }
.tl-actions { display: flex; gap: 8px; flex-shrink: 0; align-items: flex-start; }

/* Calendar */
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cal-header h2 { font-size: 20px; font-weight: 300; }
.cal-grid { width: 100%; border-collapse: collapse; }
.cal-grid th { padding: 10px; text-align: center; font-size: 12px; color: var(--muted); border-bottom: 1px solid var(--border); }
.cal-grid td { width: 14.28%; height: 80px; vertical-align: top; padding: 8px 10px; border: 1px solid var(--border); }
.cal-grid td.empty { background: var(--bg2); }
.cal-grid td.today { border-color: var(--gold); }
.cal-grid td.holiday { background: rgba(201,110,110,.06); }
.cal-day { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.cal-count { font-size: 12px; color: var(--gold); }
.cal-people { font-size: 11px; color: var(--muted); }
.cal-grid td a { display: block; height: 100%; color: inherit; }
.cal-grid td a:hover .cal-day { color: var(--gold); }

/* Settings */
.settings-section { margin-bottom: 36px; }
.settings-section h3 { font-size: 12px; letter-spacing: 3px; color: var(--muted); margin-bottom: 18px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.settings-group { margin-bottom: 18px; }
.settings-group label { display: block; font-size: 12px; color: var(--muted); letter-spacing: 1px; margin-bottom: 6px; }
.settings-group textarea { font-family: monospace; font-size: 13px; }
.settings-group input[type=number] { max-width: 120px; }
.holiday-item { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; gap: 12px; }
.holiday-item:last-child { border-bottom: none; }
.holiday-item .note { color: var(--muted); font-size: 12px; flex: 1; }

/* ===== Hero Slideshow ===== */
.hero-slides { position:absolute; inset:0; }
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0;
  animation: heroSlide 24s ease-in-out infinite;
  will-change: transform, opacity;
  transform: scale(1.06);
}
/* 1枚目は即座に表示 */
.hero-slide:nth-child(1){ animation-delay:0s; opacity:1; }
.hero-slide:nth-child(2){ animation-delay:6s; }
.hero-slide:nth-child(3){ animation-delay:12s; }
.hero-slide:nth-child(4){ animation-delay:18s; }
.hero-slide:nth-child(5){ animation-delay:24s; }
@keyframes heroSlide {
  0%    { opacity:0; transform:scale(1.07); }
  4%    { opacity:1; }
  20%   { opacity:1; transform:scale(1.0); }
  27%   { opacity:0; transform:scale(1.0); }
  100%  { opacity:0; transform:scale(1.07); }
}

/* ===== Scroll-to-top ===== */
.scroll-top {
  position:fixed; bottom:28px; left:28px; z-index:89;
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  background:rgba(13,10,7,.8); border:1px solid var(--border);
  color:var(--muted); cursor:pointer; opacity:0; pointer-events:none;
  transition:opacity .3s, color .2s, border-color .2s;
  backdrop-filter:blur(4px);
}
.scroll-top.visible { opacity:1; pointer-events:auto; }
.scroll-top:hover { color:var(--gold); border-color:var(--gold); }
@media (max-width:700px) {
  .scroll-top { bottom:16px; left:16px; width:36px; height:36px; }
}

/* ===== Scroll Indicator ===== */
.scroll-ind {
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  opacity:.45; pointer-events:none;
}
.scroll-ind span {
  font-family:var(--font-en); font-size:9px; letter-spacing:4px; color:var(--gold);
}
.scroll-ind-line {
  width:1px; height:44px;
  background:linear-gradient(var(--gold), transparent);
  animation:scrollDrop 2s ease-in-out infinite;
  transform-origin:top;
}
@keyframes scrollDrop {
  0%,100%{ transform:scaleY(0); opacity:0; }
  30%    { opacity:1; }
  60%    { transform:scaleY(1); opacity:1; }
  90%    { transform:scaleY(1); opacity:0; }
}

/* ===== THE CUT section ===== */
.cut-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  height: 76vh; min-height: 540px;
  overflow: hidden;
}

/* Main photo */
.cut-main {
  position: relative; overflow: hidden;
}
.cut-main img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.12) contrast(1.06) brightness(.85);
  transition: transform 10s ease;
}
.cut-section:hover .cut-main img { transform: scale(1.03); }
.cut-main-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 55%, rgba(8,5,2,.85) 100%),
    linear-gradient(to top, rgba(8,5,2,.25) 0%, transparent 35%),
    radial-gradient(ellipse at 40% 50%, rgba(110,50,8,.1) 0%, transparent 65%);
}

/* Editorial sidebar */
.cut-side {
  background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 44px; gap: 36px;
}
.cut-side-label {
  font-family: var(--font-en); font-size: 9px; letter-spacing: 6px;
  color: var(--dim); display: block;
}

/* Cut entries list */
.cut-entries {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.cut-entry {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cut-entry-num {
  font-family: var(--font-en); font-size: 10px; letter-spacing: 1px;
  color: var(--dim); min-width: 20px; padding-top: 3px;
}
.cut-entry-body {
  display: flex; flex-direction: column; gap: 5px;
}
.cut-entry-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--text); letter-spacing: .08em; line-height: 1.1;
}
.cut-entry-detail {
  font-size: 10px; color: var(--muted); letter-spacing: 2px;
}

.cut-side-note {
  font-size: 12px; color: var(--dim); line-height: 2.0;
  letter-spacing: .04em; border-top: 1px solid rgba(42,34,24,.4);
  padding-top: 28px;
}
.cut-side-link {
  font-size: 10px; letter-spacing: 3px; color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,.2); padding-bottom: 2px;
  align-self: flex-start; transition: border-color .2s;
}
.cut-side-link:hover { border-color: var(--gold); color: var(--gold-lt); }

@media (max-width: 900px) {
  .cut-section { grid-template-columns: 1fr; height: auto; }
  .cut-main { height: 55vw; min-height: 260px; }
  .cut-main-fade { background: linear-gradient(to top, rgba(8,5,2,.4) 0%, transparent 50%); }
  .cut-side { padding: 40px 28px; gap: 28px; }
}

/* ===== Story Teaser ===== */
.story-teaser {
  max-width:1000px; margin:0 auto 100px; padding:0 24px;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.st-badge {
  font-family:var(--font-en); font-size:10px; letter-spacing:5px;
  color:var(--gold); border:1px solid rgba(201,169,110,.35);
  padding:5px 18px; display:inline-block; margin-bottom:20px;
}
.story-teaser h2 {
  font-size:clamp(28px,4vw,48px); font-weight:200; letter-spacing:.15em;
  margin-bottom:16px; color:var(--text);
}
.story-teaser p {
  font-size:14px; color:var(--muted); line-height:1.9; margin-bottom:28px;
}
.st-links { display:flex; gap:14px; flex-wrap:wrap; }
.st-btn-primary {
  display:inline-block; padding:13px 28px;
  background:var(--gold); color:var(--bg);
  font-size:13px; letter-spacing:2px; font-family:var(--font-en);
  transition:opacity .2s;
}
.st-btn-primary:hover { opacity:.85; color:var(--bg); }
.st-btn-sub {
  display:inline-block; padding:12px 24px;
  border:1px solid var(--border); color:var(--muted);
  font-size:12px; letter-spacing:2px; font-family:var(--font-en);
  transition:all .2s;
}
.st-btn-sub:hover { border-color:var(--gold); color:var(--gold); }
.st-visual { text-align:center; display:flex; align-items:center; justify-content:center; }
.st-visual img { max-height:280px; width:auto; max-width:100%; height:auto; display:block; margin:0 auto; filter:drop-shadow(0 0 40px rgba(201,169,110,.2)); }

/* ===== Concept Section ===== */
.concept {
  border-top:1px solid var(--border);
  padding:80px 24px 80px; margin-bottom:0;
  background:var(--bg2);
}
.concept-header { text-align:center; margin-bottom:60px; }
.concept-header .en {
  font-family:var(--font-en); font-size:11px; letter-spacing:5px;
  color:var(--gold); display:block; margin-bottom:10px;
}
.concept-header h2 { font-size:22px; font-weight:200; letter-spacing:.1em; }
.concept-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:0;
  max-width:900px; margin:0 auto;
}
.concept-item {
  padding:36px 40px; border-right:1px solid var(--border); text-align:center;
}
.concept-item:last-child { border-right:none; }
.ci-num {
  font-family:var(--font-en); font-size:36px; font-weight:200;
  color:rgba(201,169,110,.25); margin-bottom:16px; letter-spacing:2px;
}
.concept-item h3 { font-size:16px; font-weight:300; letter-spacing:.1em; margin-bottom:14px; line-height:1.6; }
.concept-item p { font-size:13px; color:var(--muted); line-height:1.9; }

/* ===== Hero secondary CTA ===== */
.hero-ctas { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.hero-ctas a { display:inline-block; padding:13px 36px; font-size:13px; letter-spacing:3px; transition:all .2s; }
.hero-cta-primary { border:1px solid var(--gold); color:var(--gold); }
.hero-cta-primary:hover { background:var(--gold); color:var(--bg); }
.hero-cta-secondary { color:rgba(232,220,200,.5); font-family:var(--font-en); }
.hero-cta-secondary:hover { color:var(--gold); }

/* ===== Footer improved ===== */
.footer-main {
  border-top:1px solid var(--border);
  display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px;
  max-width:1000px; margin:0 auto; padding:52px 32px 40px;
}
.fm-brand .brand-en { font-family:var(--font-en); font-size:20px; letter-spacing:4px; color:var(--text); margin-bottom:8px; }
.fm-brand .brand-ja { font-size:13px; color:var(--muted); letter-spacing:2px; }
.fm-brand .brand-desc { font-size:12px; color:var(--dim); margin-top:14px; line-height:1.8; }
.fm-col h4 { font-size:10px; letter-spacing:4px; color:var(--gold); margin-bottom:16px; }
.fm-col a { display:block; font-size:12px; color:var(--muted); letter-spacing:1px; margin-bottom:9px; transition:color .2s; }
.fm-col a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid var(--border); padding:18px 32px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:11px; color:var(--dim);
}

/* ===== Scroll-triggered fade ===== */
.fade-up { opacity:0; transform:translateY(32px); transition:opacity .8s ease, transform .8s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-up.d1 { transition-delay:.1s; }
.fade-up.d2 { transition-delay:.2s; }
.fade-up.d3 { transition-delay:.3s; }

/* ===== Mobile overrides ===== */
@media(max-width:700px){
  .story-teaser { grid-template-columns:1fr; gap:32px; }
  .st-visual { order:-1; }
  .st-visual img { max-width:220px; }
  .concept-grid { grid-template-columns:1fr; }
  .concept-item { border-right:none; border-bottom:1px solid var(--border); padding:28px 20px; }
  .footer-main { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .hero-ctas { flex-direction:column; align-items:center; }
  .hero-ctas a { width:240px; text-align:center; }
}

/* ===== Language Switch ===== */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: 2px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--dim); padding: 4px 6px; font-family: var(--font-en);
  font-size: 11px; letter-spacing: 2px; transition: color .2s;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }
.lang-sep { color: var(--border); }
@media (max-width: 1100px) { .lang-switch { display: none; } }

/* ===== Mobile Nav Burger ===== */
.c-nav-burger {
  display: none; background: none; border: none; color: var(--text);
  font-size: 22px; padding: 8px; cursor: pointer; line-height: 1;
}
.c-mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(8,7,6,.98); z-index: 150; flex-direction: column;
  padding: 32px 24px; gap: 4px; overflow-y: auto;
}
.c-mobile-menu.open { display: flex; }
.c-mobile-menu a {
  font-size: 20px; color: var(--text); letter-spacing: .1em;
  padding: 16px 0; border-bottom: 1px solid var(--border);
  font-family: var(--font-ja);
}
.c-mobile-menu a:last-child { border: none; }

/* ===== Responsive ===== */
@media (max-width: 700px) {
  .form-row.cols-2, .form-row.cols-3 { grid-template-columns: 1fr; }
  .form-card { padding: 24px 16px; }
  .info-strip { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 16px; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ===== Nav responsive ===== */
@media (max-width: 1100px) {
  .c-nav-links { display: none; }
  .c-nav-burger { display: block; }
  .c-nav { padding: 0 16px; }
}

/* ===== LINE Nav Button ===== */
.nav-line-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; letter-spacing: 2px; color: #06C755;
  border: 1px solid rgba(6,199,85,.3); padding: 6px 12px;
  text-decoration: none; border-radius: 4px;
  transition: background .2s, border-color .2s;
  font-family: var(--font-en);
}
.nav-line-btn:hover { background: rgba(6,199,85,.1); border-color: #06C755; }
@media (max-width: 1100px) { .nav-line-btn { display: none; } }

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 80px 40px 60px;
  max-width: 1200px; margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px; margin-top: 48px;
}
.gallery-item {
  position: relative; overflow: hidden; display: block;
  aspect-ratio: 1; cursor: pointer;
}
.gallery-item.gi-large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(8,7,6,.5);
  display: flex; align-items: flex-end;
  padding: 16px;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 11px; letter-spacing: 2px; color: var(--text);
  font-family: var(--font-ja);
}
@media (max-width: 700px) {
  .gallery-section { padding: 60px 16px 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-large { grid-column: span 2; aspect-ratio: 16/9; }
}

/* ===== Reviews Section ===== */
.reviews-section {
  padding: 80px 40px 80px;
  max-width: 900px; margin: 0 auto; text-align: center;
}
.review-cta-note {
  font-size: 13px; color: var(--dim); line-height: 2;
  margin: 20px auto 32px; max-width: 500px;
}
.review-cta-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.rcta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; padding: 12px 24px;
  border: 1px solid; text-decoration: none;
  transition: background .2s, color .2s;
}
.rcta-tabelog {
  color: var(--gold); border-color: rgba(201,169,110,.4);
}
.rcta-tabelog:hover { background: rgba(201,169,110,.1); color: var(--gold); }
.rcta-google {
  color: var(--muted); border-color: rgba(154,140,112,.3);
}
.rcta-google:hover { background: rgba(154,140,112,.1); color: var(--text); }
.review-rating-summary {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; padding-bottom: 32px;
  margin-bottom: 24px !important;
  border-bottom: 1px solid var(--border);
}
.rrs-score {
  font-family: var(--font-en); font-size: 48px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.rrs-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.rrs-count { font-size: 12px; color: var(--dim); margin-top: 4px; }
.rrs-link {
  font-size: 11px; letter-spacing: 2px; color: var(--dim);
  text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.rrs-link:hover { color: var(--gold); border-color: var(--gold); }

/* ===== FAQ Section ===== */
.faq-section {
  padding: 80px 40px 100px;
  max-width: 800px; margin: 0 auto;
}
.faq-list {
  margin-top: 48px; display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 20px 0; cursor: pointer;
  font-size: 14px; color: var(--text); letter-spacing: .05em;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none; outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-en); font-size: 20px;
  color: var(--gold); font-weight: 200; flex-shrink: 0;
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold); }
.faq-item p {
  font-size: 13px; color: var(--dim); line-height: 2;
  padding-bottom: 20px; padding-right: 40px;
}

@media (max-width:700px) {
  .reviews-section, .faq-section { padding-left: 20px; padding-right: 20px; }
  .review-rating-summary { flex-wrap: wrap; gap: 8px; }
  .review-cta-btns { flex-direction: column; align-items: center; }
}

/* ===== Floating Reserve Button (sub-pages) ===== */
.float-reserve {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  background: var(--gold); color: #080706;
  font-family: var(--font-ja); font-size: 11px; letter-spacing: 3px;
  padding: 14px 22px; text-decoration: none;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 24px rgba(201,169,110,.25);
  transition: background .2s, box-shadow .2s;
}
.float-reserve:hover { background: #f0d898; box-shadow: 0 4px 32px rgba(201,169,110,.4); }
@media (max-width:700px) {
  .float-reserve { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 10px; }
}

/* ===== Custom Date Picker ===== */
.date-picker-wrap { position:relative; }
.date-display {
  background:var(--bg3); border:1px solid var(--border); color:var(--text);
  padding:12px 14px; font-size:14px; font-family:var(--font-ja);
  width:100%; cursor:pointer; display:flex; align-items:center; justify-content:space-between;
  transition:border-color .2s; user-select:none;
}
.date-display:hover, .date-display.open { border-color:var(--gold); }
.date-display .placeholder { color:var(--muted); }
.date-display .cal-icon { font-size:14px; color:var(--muted); }
.cal-popup {
  display:none; position:absolute; top:calc(100% + 4px); left:0; right:0;
  background:var(--bg2); border:1px solid var(--border); z-index:200;
  padding:16px; box-shadow:0 8px 32px rgba(0,0,0,.5);
}
.cal-popup.open { display:block; }
.cal-popup-nav {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:12px;
}
.cal-popup-nav button {
  background:none; border:none; color:var(--muted); cursor:pointer;
  font-size:18px; padding:4px 8px; transition:color .2s; line-height:1;
}
.cal-popup-nav button:hover { color:var(--gold); }
.cal-popup-nav span { font-size:13px; letter-spacing:2px; color:var(--text); }
.cal-popup-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
.cal-popup-grid .dow {
  text-align:center; font-size:10px; letter-spacing:1px; color:var(--muted);
  padding:4px 0 8px;
}
.cal-popup-day {
  text-align:center; padding:8px 4px; font-size:13px; cursor:pointer;
  border:1px solid transparent; border-radius:0; transition:all .15s; color:var(--muted);
}
.cal-popup-day:hover:not(.disabled):not(.other) { border-color:var(--gold); color:var(--gold); }
.cal-popup-day.today { color:var(--text); font-weight:400; }
.cal-popup-day.selected { background:var(--gold); color:var(--bg); border-color:var(--gold); }
.cal-popup-day.disabled { opacity:.25; cursor:not-allowed; }
.cal-popup-day.other { opacity:0; pointer-events:none; }

/* ===== Quick Tags (reservation form) ===== */
.quick-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.quick-tag {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 7px 16px; font-size: 12px; letter-spacing: 1px;
  cursor: pointer; font-family: var(--font-ja); transition: all .2s; border-radius: 0;
}
.quick-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.06); }
.quick-tag.active { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.12); }

/* ===== Instagram Section ===== */
.ig-section { padding: 80px 40px 60px; max-width: 1200px; margin: 0 auto; text-align: center; }
.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin: 32px 0;
}
.ig-tile {
  position: relative; aspect-ratio: 1; overflow: hidden; display: block;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ig-tile:hover img { transform: scale(1.06); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(8,7,6,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-overlay span {
  color: var(--gold); font-size: 10px; letter-spacing: 4px;
  font-family: var(--font-en); border: 1px solid rgba(201,169,110,.4);
  padding: 8px 16px;
}
.ig-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); padding: 13px 32px;
  font-size: 12px; letter-spacing: 2px; color: var(--muted);
  transition: all .2s;
}
.ig-follow-btn:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 640px) {
  .ig-section { padding: 60px 20px 40px; }
  .ig-grid { gap: 2px; }
}

/* ===== Admin Calendar Capacity Bar ===== */
.cal-bar { height: 3px; background: var(--border); margin-top: 4px; border-radius: 2px; overflow: hidden; }
.cal-bar-fill { height: 100%; border-radius: 2px; transition: width .3s; }
.cal-bar-fill.low  { background: #5a9a6e; }
.cal-bar-fill.mid  { background: #c9a96e; }
.cal-bar-fill.high { background: #c96e6e; }

/* ===== YouTube Promo Banner (index.html) ===== */
.yt-promo {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,60,10,.04) 0%, rgba(8,7,6,0) 50%);
}
.yt-promo-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 100px 1fr auto;
  align-items: center; gap: 24px;
  padding: 28px 32px;
}
.yt-promo-left img {
  width: 100px; height: 100px; object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255,100,20,.2));
}
.yt-promo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 3px; color: #ff5014;
  margin-bottom: 8px;
}
.yt-promo-title {
  font-size: 20px; font-weight: 300; letter-spacing: .08em;
  color: var(--text); margin-bottom: 6px;
}
.yt-promo-desc {
  font-size: 12px; color: var(--muted); line-height: 1.8;
}
.yt-promo-btn {
  display: inline-block; white-space: nowrap;
  background: var(--gold); color: #080706;
  font-family: var(--font-en); font-size: 11px; letter-spacing: 3px;
  padding: 12px 24px; border: 1px solid var(--gold);
  transition: background .2s;
}
.yt-promo-btn:hover { background: var(--gold-light); }
@media (max-width: 768px) {
  .yt-promo-inner {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    padding: 24px 20px;
  }
  .yt-promo-left img { width: 72px; height: 72px; }
  .yt-promo-right { grid-column: 1 / -1; }
  .yt-promo-btn { display: block; text-align: center; }
}
@media (max-width: 480px) {
  .yt-promo-title { font-size: 16px; }
}

/* ===== Delivery Service Section ===== */
.delivery-section {
  border-top: 1px solid var(--border);
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201,169,110,.025) 50%, var(--bg) 100%);
}
.delivery-inner { max-width: 1100px; margin: 0 auto; }

/* Legacy (keep for safety) */
.delivery-header { text-align: center; margin-bottom: 72px; }
.delivery-header .en {
  display: block; font-family: var(--font-en); font-size: 11px;
  letter-spacing: 6px; color: var(--gold); margin-bottom: 16px;
}
.delivery-header h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 200;
  letter-spacing: .1em; color: var(--text); margin-bottom: 20px; line-height: 1.4;
}
.delivery-header p { font-size: 14px; color: var(--muted); line-height: 2.2; }

/* Asymmetric split header */
.delivery-header-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 72px;
  padding-bottom: 56px; border-bottom: 1px solid var(--border);
}
.dhs-label {
  display: block; font-family: var(--font-en); font-size: 10px;
  letter-spacing: 6px; color: var(--gold); margin-bottom: 20px;
}
.dhs-left h2 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 200;
  letter-spacing: .08em; color: var(--text); line-height: 1.35; margin: 0;
}
.dhs-right { display: flex; flex-direction: column; gap: 24px; }
.dhs-line {
  width: 40px; height: 1px; background: var(--gold); opacity: .5;
}
.dhs-right p { font-size: 13px; color: var(--muted); line-height: 2.2; margin: 0; }

/* Plan I strip */
.dp-strip {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center; gap: 32px;
  border: 1px solid var(--border); padding: 28px 32px;
  margin-bottom: 48px; background: var(--bg2);
  transition: border-color .2s;
}
.dp-strip:hover { border-color: rgba(201,169,110,.25); }
.dp-strip-num {
  font-family: var(--font-en); font-size: 20px; font-weight: 300;
  color: var(--dim); letter-spacing: .05em;
}
.dp-strip-body { display: flex; flex-direction: column; gap: 6px; }
.dp-strip-title {
  font-size: 14px; font-weight: 300; letter-spacing: .06em;
  color: var(--text);
}
.dp-strip-specs { font-size: 11px; color: var(--muted); letter-spacing: .02em; }
.dp-strip-price {
  font-family: var(--font-en); font-size: 20px; font-weight: 300;
  color: var(--gold); letter-spacing: .02em; white-space: nowrap;
  text-align: right;
}
.dp-strip-price span {
  display: block; font-size: 10px; color: var(--muted); font-family: var(--font-ja);
  letter-spacing: 0; margin-top: 2px;
}
.dp-strip-btn {
  display: block; border: 1px solid var(--border); color: var(--muted);
  font-size: 10px; letter-spacing: 2px; padding: 10px 20px;
  white-space: nowrap; transition: border-color .2s, color .2s;
}
.dp-strip-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Chef section label */
.dp-chef-label {
  font-size: 10px; letter-spacing: 5px; color: var(--dim);
  margin-bottom: 20px; font-family: var(--font-en);
}

/* Chef cards 2-column — featured left is wider */
.dp-chef-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 16px;
}
.dp-mood {
  font-size: 12px; color: var(--muted); line-height: 2;
  margin-bottom: 24px; letter-spacing: .02em;
}

@media (max-width: 860px) {
  .delivery-header-split { grid-template-columns: 1fr; gap: 40px; }
  .dp-strip { grid-template-columns: 32px 1fr; gap: 20px; }
  .dp-strip-price, .dp-strip-btn { grid-column: 2; }
  .dp-chef-grid { grid-template-columns: 1fr; }
  .dp-card { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .dp-strip { padding: 20px; }
}

/* Plans grid */
.delivery-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px; margin-bottom: 64px; align-items: start;
}
.dp-card {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 48px 36px; position: relative; transition: border-color .2s;
  display: flex; flex-direction: column;
}
.dp-card:hover { border-color: rgba(201,169,110,.35); }
.dp-featured {
  border-color: rgba(201,169,110,.4);
  background: linear-gradient(180deg, rgba(201,169,110,.04) 0%, var(--bg2) 100%);
}
.dp-popular {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #080706;
  font-size: 10px; letter-spacing: 2px; padding: 4px 16px;
  white-space: nowrap;
}
.dp-plan-num {
  font-family: var(--font-en); font-size: 48px; font-weight: 300;
  color: var(--dim); letter-spacing: .05em; margin-bottom: 20px;
  line-height: 1;
}
.dp-check {
  display: inline-block; width: 12px; color: var(--gold);
  font-family: var(--font-en); font-size: 10px; flex-shrink: 0;
}
.dp-badge {
  display: inline-block; font-size: 9px; letter-spacing: 2px;
  border: 1px solid var(--border); color: var(--muted);
  padding: 3px 10px; margin-bottom: 12px; white-space: nowrap;
}
.dp-card h3 {
  font-size: 17px; font-weight: 300; letter-spacing: .04em;
  color: var(--text); margin-bottom: 10px; line-height: 1.5;
}
.dp-card > p {
  font-size: 12px; color: var(--muted); line-height: 1.9;
  margin-bottom: 18px;
}
.dp-features {
  list-style: none; margin-bottom: 20px; flex: 1;
}
.dp-features li {
  font-size: 11px; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid rgba(42,34,24,.5); line-height: 1.5;
  display: flex; gap: 10px; align-items: baseline;
  letter-spacing: .02em;
}
.dp-features li:last-child { border: none; }
.dp-price {
  font-family: var(--font-en); font-size: 26px; font-weight: 300;
  color: var(--gold); margin-bottom: 16px; letter-spacing: .02em;
  line-height: 1.2;
}
.dp-price span {
  display: block; font-size: 12px; color: var(--muted);
  letter-spacing: 0; margin-top: 2px; font-family: var(--font-ja);
}
.dp-btn {
  display: block; text-align: center;
  border: 1px solid var(--border); color: var(--muted);
  font-size: 11px; letter-spacing: 2px; padding: 12px 16px;
  transition: border-color .2s, color .2s; white-space: nowrap;
}
.dp-btn:hover { border-color: var(--gold); color: var(--gold); }
.dp-btn-gold {
  background: var(--gold); border-color: var(--gold); color: #080706;
}
.dp-btn-gold:hover { background: #e0c48a; border-color: #e0c48a; color: #080706; }

/* Coverage */
.delivery-coverage { margin-bottom: 80px; }
.dc-title {
  font-size: 10px; letter-spacing: 4px; color: var(--gold);
  text-align: center; margin-bottom: 28px;
}
.dc-areas {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dc-area {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 28px 24px; text-align: center;
}
.dc-area-icon { font-size: 24px; margin-bottom: 12px; }
.dc-area-name {
  font-size: 13px; color: var(--text); letter-spacing: .05em;
  margin-bottom: 10px;
}
.dc-area-regions {
  font-size: 11px; color: var(--muted); line-height: 1.8;
  margin-bottom: 12px;
}
.dc-area-label {
  display: inline-block; font-size: 9px; letter-spacing: 2px;
  border: 1px solid rgba(201,169,110,.4); color: var(--gold);
  padding: 3px 10px;
}

/* Chef showcase */
.delivery-chef {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 64px; align-items: center;
  border-top: 1px solid var(--border); padding-top: 64px;
}
.dc-chef-photo img {
  width: 100%; max-width: 320px; margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(201,169,110,.15));
}
.dc-chef-badge {
  font-size: 10px; letter-spacing: 5px; color: var(--gold); margin-bottom: 16px;
}
.dc-chef-text h3 {
  font-size: clamp(24px, 3vw, 38px); font-weight: 200;
  letter-spacing: .08em; color: var(--text);
  margin-bottom: 20px; line-height: 1.4;
}
.dc-chef-text p {
  font-size: 14px; color: var(--muted); line-height: 2.2;
  margin-bottom: 32px;
}
.dc-chef-stats {
  display: flex; gap: 32px;
}
.dc-stat strong {
  display: block; font-family: var(--font-en);
  font-size: 28px; color: var(--gold); letter-spacing: .04em;
}
.dc-stat span { font-size: 11px; color: var(--muted); letter-spacing: 1px; }

/* Delivery photo grid */
.delivery-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px; margin-bottom: 64px;
}
.delivery-photo-grid picture { display: block; }
.delivery-photo-grid img {
  width: 100%; height: 300px; object-fit: cover; display: block;
}

@media (max-width: 900px) {
  .dc-areas { grid-template-columns: 1fr; }
  .delivery-chef { grid-template-columns: 1fr; gap: 40px; }
  .dc-chef-photo { display: flex; justify-content: center; }
  .delivery-photo-grid img { height: 200px; }
}
@media (max-width: 600px) {
  .delivery-section { padding: 64px 16px; }
  .dp-card { padding: 28px 20px; }
  .dp-price { font-size: 22px; }
  .dc-chef-stats { flex-direction: column; gap: 16px; }
  .delivery-photo-grid { grid-template-columns: 1fr; }
  .delivery-photo-grid img { height: 180px; }
}
