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

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

:root {
  --gold: #b8986a;
  --gold-light: #d4b483;
  --dark: #1a1a18;
  --dark-mid: #252520;
  --cream: #f5f0e8;
  --cream-mid: #ede6d8;
  --text: #2c2c28;
  --text-light: #6b6558;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.8;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(26, 26, 24, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 152, 106, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-style: normal;
  letter-spacing: 0.3em;
  color: rgba(184, 152, 106, 0.7);
  text-transform: uppercase;
  margin-top: -4px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.5) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 3rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

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

.btn-solid {
  background: var(--gold);
  color: var(--dark);
}

.btn-solid:hover {
  background: var(--gold-light);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--dark);
  padding: 140px 2rem 80px;
  text-align: center;
  color: var(--white);
}

.page-header .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(245, 240, 232, 0.65);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lead {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 2;
}

.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ===== TOP: CONCEPT ===== */
.concept {
  background: var(--white);
}

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

.concept-image {
  position: relative;
}

.concept-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.concept-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* ===== TOP: FEATURED RECIPES ===== */
.featured {
  background: var(--cream);
}

.featured-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-header .section-lead {
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.recipe-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.recipe-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.recipe-card:hover img {
  transform: scale(1.05);
}

.recipe-card-body {
  padding: 1.5rem;
}

.recipe-card-category {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.recipe-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.recipe-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

.recipe-card-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-mid);
}

.recipe-meta-item {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.recipe-meta-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

/* ===== TOP: CTA ===== */
.cta-section {
  background: var(--dark);
  text-align: center;
  padding: 100px 2rem;
  color: var(--white);
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-lead {
  color: rgba(245, 240, 232, 0.65);
  margin: 0 auto 2.5rem;
}

.cta-section .gold-line {
  margin: 0 auto 2rem;
}

/* ===== MENU PAGE ===== */
.menu-filter {
  background: var(--white);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--cream-mid);
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--cream-mid);
  background: transparent;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.menu-section {
  background: var(--cream);
  padding: 80px 2rem;
}

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-category-title span {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 60px;
}

.menu-item {
  background: var(--white);
  display: grid;
  grid-template-columns: 120px 1fr;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.menu-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.menu-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.menu-item-body {
  padding: 1rem 1.2rem;
}

.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.menu-item-name-fr {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
}

.menu-item-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.65rem;
  padding: 2px 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ===== CHEF PAGE ===== */
.chef-section {
  background: var(--cream);
}

.chef-profile {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.chef-image-wrap {
  position: relative;
}

.chef-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.chef-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80%;
  height: 80%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.chef-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.chef-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  font-style: italic;
}

.chef-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 2rem;
}

.chef-career {
  margin-top: 2rem;
}

.chef-career h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-mid);
}

.career-list {
  list-style: none;
}

.career-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-mid);
  color: var(--text-light);
}

.career-list li strong {
  color: var(--gold);
  font-weight: 400;
}

.chef-awards {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.award-badge {
  background: var(--dark);
  color: var(--gold);
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.award-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 2px;
}

/* ===== INTERVIEW PAGE ===== */
.interview-section {
  background: var(--cream);
}

.interview-lead {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.interview-lead .section-title {
  margin-bottom: 1rem;
}

.interview-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  margin-bottom: 80px;
  filter: brightness(0.9);
}

.qa-list {
  max-width: 800px;
  margin: 0 auto;
}

.qa-item {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--cream-mid);
}

.qa-item:last-child {
  border-bottom: none;
}

.qa-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-left: 2rem;
  position: relative;
}

.qa-q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}

.qa-a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 2.2;
  padding-left: 2rem;
  position: relative;
}

.qa-a::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1;
}

.interview-quote {
  background: var(--dark);
  padding: 60px 80px;
  margin: 80px 0;
  position: relative;
  text-align: center;
}

.interview-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: 40px;
  line-height: 1;
  opacity: 0.5;
}

.interview-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  font-weight: 300;
}

.interview-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(245, 240, 232, 0.5);
  padding: 60px 2rem 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184, 152, 106, 0.2);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .concept-grid,
  .chef-profile {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .concept-image::before {
    display: none;
  }

  .chef-image-wrap::after {
    display: none;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .interview-quote {
    padding: 40px 40px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

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

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  section {
    padding: 60px 1.2rem;
  }

  .cta-section {
    padding: 60px 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
    word-break: auto-phrase;
    overflow-wrap: break-word;
  }

  .section-lead {
    font-size: 0.9rem;
    word-break: auto-phrase;
    overflow-wrap: break-word;
  }

  .recipe-card-meta {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .menu-item {
    grid-template-columns: 90px 1fr;
  }

  .menu-item img {
    width: 90px;
    height: 90px;
  }

  .interview-quote {
    padding: 40px 24px;
    margin: 40px 0;
  }

  .interview-quote p {
    font-size: 1.2rem;
  }

  .interview-quote::before {
    font-size: 5rem;
    left: 16px;
  }

  .qa-q,
  .qa-a {
    padding-left: 1.8rem;
    word-break: auto-phrase;
    overflow-wrap: break-word;
  }

  .chef-profile {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-tagline {
    word-break: auto-phrase;
  }

  .nav-inner {
    padding: 0 1rem;
  }

  blockquote br,
  .section-title br {
    display: none;
  }

  blockquote {
    font-size: 1.2rem !important;
    padding: 0 1rem !important;
  }
}
