/* =========================================================
   Pizza.co.jp — site.css
   Warm editorial pizza magazine
   ========================================================= */

:root {
  --ink: #241713;
  --ink-soft: #5f4940;
  --ink-muted: #8a7469;

  --cream: #fff7ea;
  --cream-2: #fff1d8;
  --paper: #fffaf2;
  --paper-deep: #f5dfbd;

  --tomato: #b83224;
  --tomato-dark: #7e1f18;
  --tomato-soft: #e15a43;

  --basil: #2f6f45;
  --basil-dark: #1d4d2e;

  --cheese: #f5c85b;
  --olive: #3d3928;

  --white: #ffffff;
  --black: #000000;

  --shadow-soft: 0 22px 60px rgba(52, 24, 12, 0.14);
  --shadow-card: 0 16px 38px rgba(52, 24, 12, 0.12);
  --shadow-strong: 0 30px 80px rgba(20, 8, 4, 0.34);

  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --max: 1180px;
  --max-wide: 1360px;

  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", "Times New Roman", serif;
  --sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(245, 200, 91, 0.22), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(184, 50, 36, 0.13), transparent 32%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 44%, #fff 100%);
  font-family: var(--sans);
  line-height: 1.95;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
}

p + p {
  margin-top: 1em;
}

strong {
  color: var(--ink);
  font-weight: 800;
}

::selection {
  background: var(--cheese);
  color: var(--ink);
}

/* =========================================================
   Layout Helpers
   ========================================================= */

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.wrap-wide {
  width: min(var(--max-wide), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
  position: relative;
}

.section-tight {
  padding: 54px 0;
}

.section-paper {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 241, 216, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(245, 200, 91, 0.18), transparent 34%);
}

.section-tomato {
  background:
    linear-gradient(135deg, rgba(126, 31, 24, 0.96), rgba(184, 50, 36, 0.92)),
    radial-gradient(circle at 90% 20%, rgba(245, 200, 91, 0.22), transparent 30%);
  color: var(--white);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(28, 12, 8, 0.96), rgba(72, 25, 17, 0.94)),
    radial-gradient(circle at 12% 12%, rgba(245, 200, 91, 0.18), transparent 34%);
  color: var(--white);
}

.section-dark .eyebrow,
.section-tomato .eyebrow,
.section-dark .section-lead,
.section-tomato .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark .section-title,
.section-tomato .section-title {
  color: var(--white);
}

.center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 26px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 234, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(126, 31, 24, 0.12);
}

.nav {
  width: min(var(--max-wide), calc(100% - 34px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  color: var(--tomato-dark);
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 30%, var(--cheese) 0 18%, transparent 19%),
    radial-gradient(circle at 68% 60%, var(--tomato-soft) 0 12%, transparent 13%),
    radial-gradient(circle at 45% 72%, var(--basil) 0 10%, transparent 11%),
    linear-gradient(135deg, #f3ba4d, #fff0b8);
  border: 3px solid var(--tomato-dark);
  box-shadow: 0 8px 18px rgba(126, 31, 24, 0.18);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.89rem;
  font-weight: 800;
  padding: 9px 13px;
  border-radius: 999px;
  transition: 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: var(--tomato);
  outline: none;
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--tomato-dark) !important;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero.hero-small {
  min-height: 58vh;
}

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

.hero-image img,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 8, 4, 0.82) 0%, rgba(20, 8, 4, 0.64) 38%, rgba(20, 8, 4, 0.22) 70%, rgba(20, 8, 4, 0.42) 100%),
    radial-gradient(circle at 20% 20%, rgba(245, 200, 91, 0.22), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 180px;
  background: linear-gradient(0deg, var(--cream), transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 140px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tomato-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 13px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero-title {
  max-width: 860px;
  margin: 24px 0 20px;
  font-family: var(--serif);
  font-size: clamp(3rem, 8.2vw, 7.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--white);
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.52);
}

.hero-subtitle {
  max-width: 760px;
  font-size: clamp(1.05rem, 2.1vw, 1.42rem);
  line-height: 2.05;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.52);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 30px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* =========================================================
   Buttons / Pills
   ========================================================= */

.btn,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.btn {
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  box-shadow: 0 12px 26px rgba(20, 8, 4, 0.15);
  transition: 0.22s ease;
}

.btn-primary {
  background: var(--tomato);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--tomato-dark);
  transform: translateY(-2px);
}

.btn-cheese {
  background: var(--cheese);
  color: var(--ink);
}

.btn-cheese:hover {
  background: #ffd978;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--tomato-dark);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--tomato-dark);
  transform: translateY(-2px);
}

.pill {
  padding: 8px 13px;
  color: var(--white);
  background: var(--tomato-dark);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.tag {
  padding: 7px 11px;
  color: var(--tomato-dark);
  background: rgba(184, 50, 36, 0.09);
  border: 1px solid rgba(184, 50, 36, 0.16);
  font-size: 0.77rem;
}

/* =========================================================
   Typography Blocks
   ========================================================= */

.section-heading {
  max-width: 850px;
  margin: 0 0 38px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin: 12px 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 2.05;
}

.big-copy {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.reading {
  max-width: 830px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 2.15;
}

.reading h2,
.reading h3 {
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.reading h2 {
  margin: 2.2em 0 0.7em;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.reading h3 {
  margin: 1.7em 0 0.5em;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.reading ul,
.reading ol {
  padding-left: 1.35em;
}

.reading li + li {
  margin-top: 0.45em;
}

/* =========================================================
   Cards
   ========================================================= */

.card {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(126, 31, 24, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.card-image.wide {
  aspect-ratio: 16 / 10;
}

.card-image.tall {
  aspect-ratio: 3 / 4;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.card:hover .card-image img {
  transform: scale(1.045);
}

.card-body {
  padding: 24px;
}

.card-kicker {
  color: var(--tomato);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-title {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.card-text {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--tomato-dark);
  font-weight: 900;
}

.card-link::after {
  content: "→";
  margin-left: 0.45em;
  transition: 0.2s ease;
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

/* =========================================================
   Feature Cards / Magazine Wall
   ========================================================= */

.feature-wall {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: stretch;
}

.feature-large {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.feature-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 8, 4, 0.88), rgba(20, 8, 4, 0.1) 58%),
    linear-gradient(90deg, rgba(20, 8, 4, 0.62), transparent);
}

.feature-large-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 34px;
}

.feature-large h2 {
  margin: 12px 0 12px;
  max-width: 720px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.feature-large p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
}

.feature-side {
  display: grid;
  gap: 26px;
}

/* =========================================================
   Split Editorial Sections
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--paper-deep);
}

.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: inherit;
  pointer-events: none;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.split-copy {
  padding: 12px 0;
}

.split-copy h2 {
  margin: 12px 0 20px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.split-copy p {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.split-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.split-list a,
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(126, 31, 24, 0.12);
  box-shadow: 0 8px 20px rgba(52, 24, 12, 0.06);
}

.split-list a:hover {
  background: var(--white);
  color: var(--tomato-dark);
}

.bullet-dot {
  width: 11px;
  height: 11px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--tomato);
  flex: 0 0 auto;
}

/* =========================================================
   Style / City Indexes
   ========================================================= */

.index-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.index-card {
  grid-column: span 4;
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.index-card.large {
  grid-column: span 6;
  min-height: 390px;
}

.index-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 8, 4, 0.86), rgba(20, 8, 4, 0.08) 60%),
    linear-gradient(90deg, rgba(20, 8, 4, 0.52), transparent);
}

.index-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
}

.index-card h3 {
  margin: 8px 0 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.index-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

/* =========================================================
   Place / Store Blocks
   ========================================================= */

.place-list {
  display: grid;
  gap: 18px;
}

.place-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(126, 31, 24, 0.13);
  box-shadow: var(--shadow-card);
}

.place-thumb {
  min-height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper-deep);
}

.place-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.place-meta {
  margin-top: 12px;
  display: grid;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.place-meta a {
  color: var(--tomato-dark);
  font-weight: 800;
}

/* =========================================================
   Quote / Pull Quote
   ========================================================= */

.pullquote {
  position: relative;
  margin: 56px auto;
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 241, 216, 0.96));
  border: 1px solid rgba(126, 31, 24, 0.13);
  box-shadow: var(--shadow-soft);
}

.pullquote::before {
  content: "“";
  position: absolute;
  top: -34px;
  left: 26px;
  color: rgba(184, 50, 36, 0.22);
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
}

.pullquote p {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  line-height: 1.55;
  letter-spacing: -0.04em;
  color: var(--ink);
}

/* =========================================================
   Gallery
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-item {
  grid-column: span 4;
  position: relative;
  border: 0;
  padding: 0;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper-deep);
  box-shadow: var(--shadow-card);
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 660px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(20, 8, 4, 0.82), transparent);
  font-weight: 800;
  text-align: left;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 8, 4, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 1000;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

/* =========================================================
   Forms / Contact / Advertising
   ========================================================= */

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(36, 23, 19, 0.95), rgba(126, 31, 24, 0.93));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.contact-panel h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a,
.contact-methods div {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-weight: 800;
}

/* =========================================================
   Tables
   ========================================================= */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(126, 31, 24, 0.12);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  min-width: 680px;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(126, 31, 24, 0.11);
  vertical-align: top;
}

th {
  background: var(--tomato-dark);
  color: var(--white);
  font-size: 0.9rem;
}

td {
  color: var(--ink-soft);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  padding: 58px 0 34px;
  background:
    linear-gradient(135deg, #1b0c08, #3d1510);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 34px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.footer-copy {
  margin-top: 14px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-title {
  margin: 0 0 12px;
  color: var(--cheese);
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: var(--cheese);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

/* =========================================================
   Utility Background Image Sections
   ========================================================= */

.image-band {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 8, 4, 0.88), rgba(20, 8, 4, 0.18) 60%),
    linear-gradient(90deg, rgba(20, 8, 4, 0.58), transparent);
}

.image-band-content {
  position: relative;
  z-index: 2;
  padding: 34px;
  max-width: 760px;
}

.image-band h2 {
  margin: 10px 0 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.image-band p {
  color: rgba(255, 255, 255, 0.86);
}

/* =========================================================
   Badges / Small UI
   ========================================================= */

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.stat {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(126, 31, 24, 0.12);
}

.stat-number {
  display: block;
  color: var(--tomato-dark);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

/* =========================================================
   Breadcrumbs
   ========================================================= */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 22px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--tomato-dark);
  font-weight: 800;
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 7px;
  color: rgba(36, 23, 19, 0.28);
}

/* =========================================================
   Accessibility / Focus
   ========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cheese);
  outline-offset: 3px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 15px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 78vh;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(20, 8, 4, 0.86), rgba(20, 8, 4, 0.5)),
      linear-gradient(0deg, rgba(20, 8, 4, 0.46), transparent 48%);
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .split,
  .split.reverse,
  .feature-wall,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .index-card,
  .index-card.large,
  .gallery-item,
  .gallery-item.wide {
    grid-column: span 6;
  }

  .place-card {
    grid-template-columns: 1fr;
  }

  .place-thumb {
    min-height: 240px;
  }

  .split-image img {
    min-height: 360px;
  }

  .feature-large {
    min-height: 500px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wrap,
  .wrap-wide {
    width: min(100% - 26px, var(--max));
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 38px 0;
  }

  .brand {
    font-size: 1.04rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    width: 100%;
    gap: 6px;
  }

  .nav-links a {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    width: min(100% - 26px, 980px);
    padding: 82px 0 112px;
  }

  .hero-title {
    font-size: clamp(2.75rem, 15vw, 4.8rem);
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .card-body,
  .feature-large-content,
  .image-band-content,
  .contact-panel,
  .pullquote {
    padding: 24px;
  }

  .index-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .index-card,
  .index-card.large,
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    min-height: 310px;
  }

  .gallery-item.tall {
    min-height: 430px;
  }

  .feature-large,
  .image-band {
    min-height: 440px;
    border-radius: var(--radius-lg);
  }

  .split-image {
    border-radius: var(--radius-lg);
  }

  .split-image img {
    min-height: 300px;
  }

  .footer-grid {
    gap: 26px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 430px) {
  body {
    line-height: 1.85;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .hero-kicker,
  .eyebrow {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .card-title {
    font-size: 1.35rem;
  }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .lightbox {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .hero-image,
  .hero-bg,
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero-title,
  .hero-subtitle {
    color: #000;
    text-shadow: none;
  }

  .card,
  .pullquote,
  .contact-panel {
    box-shadow: none;
  }
}

/* =========================================================
   UNIVERSAL LOCATION / REAL PLACES READABILITY FIX
   Applies to: /japan/*.html and any page using .place-list
   ========================================================= */

.place-list {
  display: grid;
  gap: 24px;
}

.place-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  color: #24130d;
  box-shadow: 0 18px 45px rgba(45, 20, 10, 0.18);
  border: 1px solid rgba(120, 54, 20, 0.14);
  overflow: hidden;
}

.section-dark .place-card {
  background: #fff8ef;
  color: #24130d;
  border-color: rgba(255, 204, 140, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.place-thumb {
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: #2a140c;
}

.place-thumb img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.02);
}

.place-card h3 {
  margin: 0 0 10px;
  color: #2a1209;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.place-card p {
  margin: 0 0 18px;
  color: #4a3329;
  font-size: 1rem;
  line-height: 1.9;
}

.place-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.place-meta span {
  display: block;
  padding: 11px 13px;
  border-radius: 14px;
  background: #fff;
  color: #2d1810;
  border: 1px solid rgba(138, 46, 19, 0.12);
  font-size: 0.95rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.place-meta span::first-letter {
  font-weight: 800;
}

.place-meta a {
  color: #8a2e13;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.place-meta a:hover {
  color: #c4471c;
}

.section-dark .place-meta span {
  background: #ffffff;
  color: #2d1810;
}

.section-dark .place-card h3,
.section-dark .place-card p,
.section-dark .place-meta,
.section-dark .place-meta span {
  text-shadow: none;
}

/* Prevent long official URLs from destroying layout */
.place-card a[href^="http"] {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Optional: make the meta labels visually clearer when text begins with 住所 / 電話 / 公式 */
.place-meta span {
  position: relative;
}

.place-meta span:has(a) {
  background: #fff4e6;
}

/* Mobile */
@media (max-width: 820px) {
  .place-card {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
    border-radius: 24px;
  }

  .place-thumb,
  .place-thumb img {
    min-height: 210px;
  }

  .place-card h3 {
    font-size: 1.35rem;
  }

  .place-card p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .place-meta span {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}
