/* ===== Base ===== */
:root {
  --green-900: #1f3d1c;
  --green-700: #3a6b35;
  --green-500: #5e9b54;
  --green-300: #a4c79a;
  --green-100: #e8f1e3;
  --cream: #f7f4ec;
  --cream-warm: #f0eee2;
  --ink: #232925;
  --ink-soft: #5a635c;
  --line: #e2e0d6;
  --winter: #6b9bbf;
  --winter-light: #d6e6f1;
  --shadow: 0 10px 30px rgba(31, 61, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 61, 28, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green-700); text-decoration: none; transition: color .15s; }
a:hover { color: var(--green-900); }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--green-900);
}

.brand-logo {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .04em;
}

.brand-sub {
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--ink-soft);
}

.nav { display: flex; gap: 1.5rem; }

.nav a {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green-500);
  transition: width .2s;
}

.nav a:hover::after { width: 100%; }

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

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(94, 155, 84, 0.15), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(58, 107, 53, 0.12), transparent 55%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  padding: 5rem 0 5rem;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 3rem 0 3.5rem; }
}

.hero-text { max-width: 620px; }

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--green-700);
  background: var(--green-100);
  padding: .35rem .9rem;
  border-radius: 999px;
  margin: 0 0 1.5rem;
}

.hero-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.3;
  margin: 0 0 1.5rem;
  color: var(--green-900);
  letter-spacing: .02em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-title .accent {
  color: var(--green-700);
  position: relative;
  display: inline-block;
}

.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.05em;
  height: .35em;
  background: rgba(94, 155, 84, 0.22);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 2.25rem;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--green-100);
}

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

.photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: .15rem;
  row-gap: 0;
}

.photo-badge .num {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--green-700);
}

.photo-badge .unit {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-700);
}

.photo-badge .lbl {
  grid-column: 1 / -1;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--ink-soft);
  margin-top: .25rem;
}

@media (max-width: 900px) {
  .hero-image { aspect-ratio: 4 / 3; max-height: 480px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: .9rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--green-900);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-700);
}

.btn-ghost:hover {
  background: var(--green-700);
  color: #fff;
}

/* ===== Sections ===== */
.section { padding: 6rem 0; }

@media (max-width: 720px) {
  .section { padding: 4rem 0; }
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: .25rem 0 1.5rem;
  color: var(--green-900);
  letter-spacing: .04em;
}

.eyebrow {
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--green-500);
  text-transform: uppercase;
  margin: 0;
}

.eyebrow.center, .section-title.center, .center { text-align: center; }
.muted { color: var(--ink-soft); }

.lead { font-size: 1.05rem; margin-top: 0; }

/* About */
.section-about { background: #fff; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
}

.about-grid { grid-template-columns: .9fr 1.1fr; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.about-photo:hover img { transform: scale(1.04); }

.kv {
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
  background: var(--green-100);
  padding: 1.5rem 1.75rem;
  border-radius: 14px;
  border: 1px solid #d6e3cf;
}

.kv > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: .9rem;
  border-bottom: 1px dashed #c2d4ba;
}

.kv > div:last-child { border-bottom: none; padding-bottom: 0; }

.kv dt {
  font-weight: 700;
  color: var(--green-900);
  font-size: .9rem;
}

.kv dd { margin: 0; color: var(--ink); font-size: .95rem; }

/* Products */
.section-products { background: var(--cream); }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green-100);
}

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

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

.card-image-iceplant {
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.95) 0%, transparent 28%),
    radial-gradient(circle at 85% 82%, rgba(120,165,200,0.55) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18) 0%, transparent 55%),
    linear-gradient(160deg, #cbe0ee 0%, #8fb6d2 45%, #5d8db0 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(40, 80, 110, 0.25);
}

.card-image-iceplant::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.95) 1px, transparent 1.6px),
    radial-gradient(circle at 70% 15%, rgba(255,255,255,0.85) 0.8px, transparent 1.2px),
    radial-gradient(circle at 85% 60%, rgba(255,255,255,1) 1.2px, transparent 1.8px),
    radial-gradient(circle at 30% 75%, rgba(255,255,255,0.9) 0.9px, transparent 1.4px),
    radial-gradient(circle at 55% 45%, rgba(255,255,255,0.75) 0.7px, transparent 1.1px),
    radial-gradient(circle at 8% 55%, rgba(255,255,255,0.85) 0.6px, transparent 1px),
    radial-gradient(circle at 92% 30%, rgba(255,255,255,0.8) 0.7px, transparent 1.1px);
  background-size: 55px 55px, 75px 75px, 90px 90px, 65px 65px, 45px 45px, 110px 110px, 85px 85px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.card-image-iceplant::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(40, 80, 110, 0.18) 0%, transparent 30%, transparent 65%, rgba(30, 70, 100, 0.22) 100%),
    radial-gradient(ellipse at center, transparent 55%, rgba(20, 50, 80, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.card-image-iceplant img {
  object-fit: contain;
  padding: 0.5rem;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 2;
}

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

/* Iceplant card — shared icy backdrop spanning BOTH images for a unified look */
.card-images-iceplant {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(255,255,255,0.95) 0%, transparent 22%),
    radial-gradient(circle at 85% 88%, rgba(120,165,200,0.55) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18) 0%, transparent 55%),
    linear-gradient(165deg, #cbe0ee 0%, #8fb6d2 50%, #5d8db0 100%);
  box-shadow: inset 0 0 80px rgba(40, 80, 110, 0.28);
}

/* Frost crystals scattered across the entire stage */
.card-images-iceplant::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.95) 1px, transparent 1.6px),
    radial-gradient(circle at 70% 8%, rgba(255,255,255,0.85) 0.8px, transparent 1.2px),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,1) 1.2px, transparent 1.8px),
    radial-gradient(circle at 30% 38%, rgba(255,255,255,0.9) 0.9px, transparent 1.4px),
    radial-gradient(circle at 55% 55%, rgba(255,255,255,0.75) 0.7px, transparent 1.1px),
    radial-gradient(circle at 8% 70%, rgba(255,255,255,0.85) 0.6px, transparent 1px),
    radial-gradient(circle at 92% 80%, rgba(255,255,255,0.8) 0.7px, transparent 1.1px),
    radial-gradient(circle at 40% 90%, rgba(255,255,255,0.9) 0.9px, transparent 1.4px);
  background-size: 55px 55px, 75px 75px, 90px 90px, 65px 65px, 45px 45px, 110px 110px, 85px 85px, 70px 70px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

/* Vignette across the whole stage */
.card-images-iceplant::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(40, 80, 110, 0.15) 0%, transparent 25%, transparent 75%, rgba(30, 70, 100, 0.2) 100%),
    radial-gradient(ellipse at center, transparent 60%, rgba(20, 50, 80, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Inside iceplant stage: each card-image is transparent, just holds its image */
.card-images-iceplant .card-image {
  background: transparent;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.card-images-iceplant .card-image img {
  object-fit: contain;
  padding: 0.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(31, 61, 28, 0.18));
}

.card:hover .card-images-iceplant .card-image img { transform: scale(1.05); }

/* No white haze needed inside iceplant stage */
.card-images-iceplant .card-image-product::before {
  display: none;
}

/* Product photo is a real opaque photo — fill the area cleanly without padding/blend */
.card-images-iceplant .card-image-product img {
  object-fit: cover;
  padding: 0;
  filter: none;
}

/* Soft fade at the top of the product photo so it transitions gently from the icy backdrop above */
.card-images-iceplant .card-image-product {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
}

/* Product photo (second image area in product cards) */
.card-image-product {
  aspect-ratio: 16 / 9;
  margin-top: 0;
}

/* Soft mist at the seam between the two stacked product photos — applies symmetrically
   to image 1's bottom AND image 2's top so the gradient feels mutual.
   Targets only direct-child card-images (i.e., moroheiya card), not iceplant which uses a shared backdrop. */
.card-with-image > .card-image:first-of-type::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.35) 60%, rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
  z-index: 3;
  filter: blur(22px);
}

.card-with-image > .card-image-product::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.35) 40%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
  pointer-events: none;
  z-index: 3;
  filter: blur(22px);
}

.card-image-caption {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  z-index: 3;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: #fff;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(31, 61, 28, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  background: var(--green-700);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: .35rem .85rem;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-tag.tag-winter { background: #fff; color: #3a7099; }

.card-body { padding: 1.75rem 1.75rem 2rem; }

.card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  margin: 0 0 .8rem;
  color: var(--green-900);
}

.card-text { margin: 0 0 1rem; color: var(--ink); }

.card-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.card-list li {
  padding: .35rem 0 .35rem 1.25rem;
  position: relative;
  font-size: .92rem;
  color: var(--ink-soft);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.card-iceplant .card-list li::before { background: var(--winter); }

/* Recipe section */
.section-recipe { background: #fff; }

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

@media (max-width: 900px) {
  .recipe-grid { grid-template-columns: 1fr; }
}

.recipe-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}

.recipe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-recipe {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.4rem 1rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(31, 61, 28, 0.22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}

.btn-recipe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.btn-recipe:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(31, 61, 28, 0.32);
}

.btn-recipe:hover::before {
  transform: translateX(100%);
}

.btn-recipe-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-recipe-sub {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-300);
  font-weight: 600;
}

.btn-recipe-main {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-top: .2rem;
}

.btn-recipe-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: transform .25s ease, background .25s ease;
}

.btn-recipe:hover .btn-recipe-arrow {
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(4px);
}

/* Commitment */
.section-commitment {
  background: linear-gradient(180deg, var(--cream) 0%, #faf7ee 100%);
}

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

@media (max-width: 800px) {
  .features { grid-template-columns: 1fr; gap: 1.5rem; }
}

.feature {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .25s;
}

.feature:hover { transform: translateY(-3px); }

.feature-num {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  color: var(--green-500);
  font-weight: 900;
  letter-spacing: .05em;
}

.feature h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  color: var(--green-900);
  margin: .5rem 0 .8rem;
}

.feature p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* Banner / Place */
.banner-place {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(180deg, rgba(31, 61, 28, 0.55) 0%, rgba(31, 61, 28, 0.35) 100%),
    url("images/commitment.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
}

@media (max-width: 800px) {
  .banner-place {
    background-attachment: scroll;
    min-height: 380px;
  }
}

.banner-overlay { max-width: 720px; }

.banner-eyebrow {
  font-size: .8rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--green-300);
  margin: 0 0 1rem;
}

.banner-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 3rem);
  letter-spacing: .04em;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.banner-text {
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* Buy */
.section-buy { background: var(--cream); }

.buy-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: 800px;
}

.buy-list li {
  background: #fff;
  border: 1px solid var(--line);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .9rem;
  color: var(--ink);
  transition: background .15s, color .15s, border-color .15s;
}

.buy-list li:hover {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}

/* Company */
.section-company { background: #fff; }

.company-table {
  width: 100%;
  max-width: 720px;
  margin: 2rem auto 0;
  border-collapse: collapse;
  font-size: .95rem;
}

.company-table th,
.company-table td {
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.company-table th {
  width: 7.5rem;
  background: #fafbf6;
  color: var(--green-900);
  font-weight: 700;
}

@media (max-width: 600px) {
  .company-table th, .company-table td { display: block; width: auto; }
  .company-table th { background: transparent; padding-bottom: 0; }
  .company-table td { padding-top: .25rem; padding-bottom: 1rem; }
}

/* Contact */
.section-contact {
  background: linear-gradient(180deg, #faf7ee 0%, var(--green-100) 100%);
}

.contact-inner { text-align: center; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem auto 0;
  max-width: 720px;
}

@media (max-width: 600px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: #fff;
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--green-900);
}

.contact-label {
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--green-500);
}

.contact-value {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
  overflow-wrap: anywhere;
  line-break: anywhere;
}

.contact-value-email {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: #d8e2d2;
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-mascot {
  width: 220px;
  max-width: 45vw;
  height: auto;
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-brand {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .3rem;
}

.footer-addr { margin: 0; font-size: .9rem; opacity: .8; }

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-size: .9rem;
}

.footer-links a { color: #d8e2d2; }
.footer-links a:hover { color: #fff; }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.footer-instagram-icon {
  display: block;
  transition: transform .25s ease;
}

.footer-instagram:hover .footer-instagram-icon {
  transform: scale(1.1) rotate(-3deg);
}

.copyright {
  text-align: center;
  margin: 2.5rem 0 0;
  font-size: .8rem;
  opacity: .6;
}
