/* Trattoria Sole — シック（生成り×トマト赤×オリーブ） */

:root {
  --bg: #f9f6f0;
  --bg-alt: #f0eadf;
  --ink: #33302a;
  --red: #b7412e;
  --olive: #6d7145;
  --line: #d9d2c2;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.95;
  letter-spacing: 0.04em;
}

/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
}

.nav a {
  font-family: "Playfair Display", serif;
  color: var(--ink);
  text-decoration: none;
  margin-left: 28px;
  font-size: 16px;
}

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

/* hero */
.hero { padding: 4vh 5vw 10vh; }

.hero-frame {
  border: 1px solid var(--ink);
  outline: 1px solid var(--ink);
  outline-offset: 5px;
  padding: 12vh 6vw;
  text-align: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(183,65,46,0.12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(109,113,69,0.14), transparent 45%);
}

.hero-en {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--olive);
  font-size: 19px;
  margin-bottom: 18px;
}

.hero-frame h2 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-lead { margin-bottom: 34px; }

.hero-button {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  padding: 12px 52px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: 0.3s;
}

.hero-button:hover { background: #93331f; }

/* sections */
.section { padding: 90px 5vw; max-width: 900px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt > * { max-width: 900px; margin-left: auto; margin-right: auto; }

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 26px;
}

.section-title.center { text-align: center; margin-bottom: 48px; }

.section-title .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: var(--olive);
  letter-spacing: 0.3em;
  margin-left: 12px;
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.about-body p + p { margin-top: 14px; }

/* 皿のCSSイラスト */
.about-visual { display: grid; place-items: center; }

.plate { position: relative; width: 230px; height: 230px; }

.plate-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: inset 0 0 0 26px #fff, inset 0 0 0 28px var(--line);
}

.plate-inner::after {
  content: "";
  position: absolute;
  inset: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d8694f, var(--red));
}

.fork, .knife {
  position: absolute;
  top: 45px;
  width: 6px;
  height: 140px;
  background: var(--ink);
  border-radius: 4px;
}

.fork { left: -26px; }
.fork::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -7px;
  width: 20px;
  height: 24px;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0/4px 100% no-repeat,
    linear-gradient(var(--ink), var(--ink)) 8px 0/4px 100% no-repeat,
    linear-gradient(var(--ink), var(--ink)) 16px 0/4px 100% no-repeat;
}

.knife { right: -26px; }
.knife::before {
  content: "";
  position: absolute;
  top: -26px;
  left: -4px;
  width: 14px;
  height: 30px;
  background: var(--ink);
  border-radius: 8px 8px 0 0;
}

/* courses */
.course-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.course-card {
  background: #fff;
  border-top: 3px solid var(--red);
  padding: 32px 30px;
  box-shadow: 0 4px 18px rgba(51,48,42,0.07);
}

.course-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }

.course-price {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--red);
  margin-bottom: 10px;
}

.course-card p { font-size: 14px; }
.course-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--olive); }

/* dinner */
.dinner-list { list-style: none; max-width: 640px; margin: 0 auto; }

.dinner-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 2px;
  font-size: 15px;
}

.dots { flex: 1; border-bottom: 1px dotted var(--ink); opacity: 0.4; }

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

.info-table th, .info-table td {
  text-align: left;
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}

.info-table th { width: 110px; color: var(--olive); white-space: nowrap; }

/* cta */
.cta { text-align: center; padding: 84px 5vw; }

.cta-en {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--olive);
  margin-bottom: 8px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  padding: 14px 56px;
  border: 1px solid var(--red);
  color: var(--red);
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover { background: var(--red); color: #fff; }

/* footer */
.footer { text-align: center; padding: 36px 0 28px; background: var(--ink); color: var(--bg); }
.footer-logo { font-family: "Playfair Display", serif; font-size: 22px; }
.footer-copy { font-size: 12px; opacity: 0.65; margin-top: 6px; }

/* mobile */
@media (max-width: 760px) {
  .header { flex-direction: column; gap: 10px; }
  .nav a { margin: 0 10px; }
  .hero-frame { padding: 8vh 7vw; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .plate { transform: scale(0.8); }
  .course-cards { grid-template-columns: 1fr; }
  .section { padding: 60px 6vw; }
}
