/* ===== リセット & ベース ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #faf8f5;
  --text:      #3a3028;
  --accent:    #8b6f4e;
  --light:     #e8ddd0;
  --white:     #ffffff;
  --serif:     'Noto Serif JP', serif;
  --sans:      'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-weight: 300;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== ヘッダー ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--light);
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 1;
}

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 28, 18, 0.38);
}

.hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 24px;
}

.hero-logo {
  margin: 0 auto 16px;
  max-width: 220px;
  filter: brightness(0) invert(1);
}

.hero-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

/* ===== セクション共通 ===== */
.section {
  padding: 80px 24px;
}

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

.section-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 48px;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 14px auto 0;
}

/* ===== About ===== */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.about-text p {
  font-size: 0.95rem;
  line-height: 2;
}

.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
}

/* ===== Bread ===== */
.bread-section {
  background: var(--bg);
}

.bread-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bread-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
}

.bread-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bread-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 18px 20px 8px;
}

.bread-card p {
  font-size: 0.83rem;
  line-height: 1.75;
  padding: 0 20px 20px;
  color: #6a5a4e;
}

/* ===== Shop Info ===== */
.shop-section {
  background: var(--white);
}

.shop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.shop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

.shop-table th,
.shop-table td {
  padding: 16px 8px;
  vertical-align: top;
}

.shop-table th {
  font-weight: 400;
  color: var(--accent);
  white-space: nowrap;
  width: 90px;
  font-family: var(--serif);
  letter-spacing: 0.06em;
}

.shop-table a {
  color: var(--accent);
  border-bottom: 1px solid var(--light);
}

.shop-map {
  border-radius: 2px;
  overflow: hidden;
}

.map-link {
  display: block;
  text-decoration: none;
}

.map-placeholder {
  background: var(--light);
  border-radius: 2px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent);
  transition: background 0.2s;
}

.map-link:hover .map-placeholder {
  background: #ddd3c4;
}

.map-placeholder span {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  font-family: var(--serif);
}

.map-placeholder small {
  font-size: 0.78rem;
  color: #7a6a5a;
  letter-spacing: 0.04em;
}

/* ===== フッター ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-img {
    height: 220px;
  }

  .bread-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shop-inner {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 16px;
  }

  .hero-logo {
    max-width: 160px;
  }
}
