/* ============================================================
   GULLIVER KIKAKU — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg:          #171411;
  --bg-surface:  #1c1914;
  --bg-card:     #222018;
  --border:      #2a2620;
  --border-light:#332e26;
  --text-primary:#f0ece3;
  --text-muted:  #888880;
  --text-dim:    #555550;
  --accent:      #b8975a;
  --accent-light:#d4b07a;
  --accent-dark: #8a6e3c;
  --white:       #ffffff;
  --nav-h:       72px;
  --max-w:       1200px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
.en { font-family: 'Cormorant Garamond', 'Georgia', serif; }
.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(9, 9, 9, 0.97);
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.site-logo .logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.site-logo .logo-ja {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.25s;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

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

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-contact {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent) !important;
  border: 1px solid var(--accent-dark);
  padding: 8px 18px;
  transition: background 0.25s, color 0.25s !important;
}

.nav-contact::after { display: none !important; }

.nav-contact:hover {
  background: var(--accent);
  color: var(--bg) !important;
  border-color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,9,9,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--accent); }

/* ---------- Hero (top page) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f0a04 0%, #080808 40%, #04060f 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(184,151,90,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(184,151,90,0.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0.85;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.hero-title-ja {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid currentColor;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
  font-weight: 400;
}

.btn-outline {
  color: var(--text-primary);
  border-color: var(--border-light);
}
.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg);
}

.btn-gold {
  color: var(--accent);
  border-color: var(--accent-dark);
}
.btn-gold:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn-arrow::after { content: '→'; font-size: 0.85em; }

/* ---------- Section Layout ---------- */
.section {
  padding: 100px 48px;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center { text-align: center; }

.section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-title-ja {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.9;
}

.section-desc.center { margin: 0 auto; }

.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 20px 0;
}
.divider.center { margin: 20px auto; }

/* ---------- Restaurant Grid ---------- */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.restaurant-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  background: var(--bg-card);
}

.restaurant-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* imgタグにしたとき写真がカードいっぱいに広がる */
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.restaurant-card:hover .restaurant-card-bg {
  transform: scale(1.06);
}

.restaurant-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: background 0.4s;
}

.restaurant-card:hover .restaurant-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.1) 100%);
}

.restaurant-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  z-index: 2;
}

.restaurant-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease) 0.05s;
}

.restaurant-card:hover .restaurant-card-label {
  opacity: 1;
  transform: none;
}

.restaurant-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.restaurant-card-ja {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 16px;
  display: block;
}

.restaurant-card-arrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}

.restaurant-card-arrow::after {
  content: '→';
  font-size: 0.9em;
}

.restaurant-card:hover .restaurant-card-arrow {
  opacity: 1;
  transform: none;
}

/* ---------- Feature Cards (About/Recruit) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.feature-card {
  background: var(--bg-surface);
  padding: 52px 48px;
  display: block;
  transition: background 0.3s;
}

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

.feature-icon {
  width: 40px; height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
}

.feature-card-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.feature-card:hover .feature-card-en { color: var(--accent-light); }

.feature-card-ja {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 2;
  font-weight: 300;
  max-width: 400px;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 28px;
}

.feature-card-link::after { content: '→'; }

/* ---------- News ---------- */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 140px 80px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.news-item:first-child { border-top: 1px solid var(--border); }

.news-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 300;
}

.news-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.news-title {
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: color 0.2s;
  line-height: 1.6;
}

.news-item:hover .news-title { color: var(--accent-light); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding-top: var(--nav-h);
  height: 44vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 52px;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.page-hero-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.page-hero-ja {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---------- Restaurant Detail Hero ---------- */
.rest-hero {
  padding-top: var(--nav-h);
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
  overflow: hidden;
}

.rest-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 10;
}
.hero-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s, transform 0.3s;
  display: block;
}
.hero-dot.active::after {
  background: rgba(255,255,255,0.9);
  transform: scale(1.4);
}

.rest-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.rest-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.rest-hero-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.rest-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

.rest-hero-ja {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---------- Restaurant Detail Sections ---------- */
.rest-concept {
  background: var(--bg-surface);
}

.rest-concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.rest-concept-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  line-height: 1.3;
}

.rest-concept-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 16px;
}

.rest-concept-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.rest-concept-img .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.rest-info {
  background: var(--bg);
}

.rest-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--border);
}

.info-table th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  width: 100px;
  padding: 16px 0;
  text-align: left;
  vertical-align: top;
}

.info-table td {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 16px 0 16px 24px;
  line-height: 1.8;
}

.rest-reserve-banner {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 64px 48px;
}

.rest-reserve-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.rest-reserve-banner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

/* ---------- About Page ---------- */
.about-philosophy {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.philosophy-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 32px;
}

.philosophy-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 20px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr { border-bottom: 1px solid var(--border); }

.company-table th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  width: 130px;
  padding: 18px 0;
  text-align: left;
  vertical-align: top;
}

.company-table td {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 18px 0 18px 24px;
  line-height: 1.8;
}

/* ---------- Recruit Page ---------- */
.recruit-message {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.recruit-msg-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 28px;
}

.recruit-msg-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 20px;
}

.job-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.job-card {
  background: var(--bg-surface);
  padding: 40px 36px;
  transition: background 0.3s;
}

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

.job-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 20px;
}

.job-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.job-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 2;
  font-weight: 300;
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: var(--bg-surface);
  text-align: center;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

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

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s, opacity 0.25s;
}

.btn-submit:hover { background: var(--accent-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 48px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand .logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-ja {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.9;
  font-weight: 300;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }
.info-table a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.info-table a:hover { color: var(--accent); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul a {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 300;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--text-primary); }

.footer-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
}

.footer-logo-grid a {
  display: block;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-logo-grid a:hover { opacity: 1; }

.footer-logo-grid img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ---------- Color Accents per restaurant ---------- */
.accent-sherlock { --r-accent: #8b6914; --r-bg: linear-gradient(160deg, #0f0800 0%, #1a1000 100%); }
.accent-gulliver  { --r-accent: #3a6ea8; --r-bg: linear-gradient(160deg, #020810 0%, #04101e 100%); }
.accent-true      { --r-accent: #4a7c59; --r-bg: linear-gradient(160deg, #020a04 0%, #051208 100%); }
.accent-hana      { --r-accent: #b86080; --r-bg: linear-gradient(160deg, #0f0208 0%, #180510 100%); }
.accent-american  { --r-accent: #b84040; --r-bg: linear-gradient(160deg, #0f0202 0%, #1a0404 100%); }
.accent-globe     { --r-accent: #3a8888; --r-bg: linear-gradient(160deg, #020c0c 0%, #051818 100%); }
.accent-rose      { --r-accent: #c07878; --r-bg: linear-gradient(160deg, #100406 0%, #1c0608 100%); }
.accent-zero      { --r-accent: #909090; --r-bg: linear-gradient(160deg, #050505 0%, #0e0e0e 100%); }
.accent-piemonte  { --r-accent: #b87048; --r-bg: linear-gradient(160deg, #0f0600 0%, #1a0d00 100%); }

/* ---------- Img Placeholder ---------- */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding: 80px 32px; }
  .page-hero { padding-left: 32px; padding-right: 32px; }
  .rest-hero { padding-left: 32px; padding-right: 32px; }
  .site-header { padding: 0 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .restaurant-grid { grid-template-columns: repeat(2, 1fr); }
  .rest-concept-grid { grid-template-columns: 1fr; gap: 48px; }
  .rest-info-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-philosophy { grid-template-columns: 1fr; gap: 48px; }
  .recruit-message { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 20px; }
  .site-header { padding: 0 20px; }
  .page-hero { padding-left: 20px; padding-right: 20px; padding-bottom: 36px; height: 36vh; }
  .rest-hero { padding-left: 20px; padding-right: 20px; padding-bottom: 40px; height: 55vh; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .restaurant-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .news-item { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .site-footer { padding: 48px 20px 24px; }
  .job-cards { grid-template-columns: 1fr; }
}
