:root {
  --ink: #26352d;
  --green: #526b54;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --tan: #d7b879;
  --orange: #c96534;
  --line: #d9d3c7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

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

button {
  font: inherit;
}

.site-header {
  height: 88px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 248, 0.94);
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38, 53, 45, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 46% 54%;
  background: var(--ink);
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
}

.brand strong {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
}

.nav a:not(.nav-cta):after,
.footer-links a:after {
  content: "";
  display: block;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: 0.25s;
}

.nav a:hover:after,
.footer-links a:hover:after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 15px 19px;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
}

.hero {
  min-height: 760px;
  height: 100vh;
  position: relative;
  background:
    linear-gradient(90deg, rgba(248, 245, 238, 0.98) 0%, rgba(248, 245, 238, 0.86) 29%, rgba(248, 245, 238, 0.03) 60%),
    url("assets/bakery-hero.png") center / cover no-repeat;
  padding: 190px 8vw 100px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--green);
}

.hero h1,
.intro h2,
.section-head h2,
.feature h2,
.shop h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(43px, 5vw, 72px);
  line-height: 1.45;
  margin: 22px 0;
}

.hero-text {
  font-family: "Shippori Mincho", serif;
  line-height: 2.1;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 38px;
}

.primary {
  background: var(--orange);
  min-width: 175px;
}

.text-link {
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid;
  padding-bottom: 7px;
}

.text-link span {
  margin-left: 15px;
}

.hero-note {
  position: absolute;
  right: 4.5vw;
  bottom: 40px;
  background: rgba(255, 253, 248, 0.88);
  padding: 15px 23px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 16px;
  border-radius: 2px;
  backdrop-filter: blur(7px);
}

.hero-note span {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.hero-note strong {
  font-size: 14px;
}

.hero-note small {
  grid-column: 2;
  font-size: 9px;
}

.scroll-cue {
  position: absolute;
  left: 3vw;
  bottom: 25px;
  font-size: 8px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--ink);
  margin-top: 10px;
}

.intro {
  padding: 130px 9vw;
  display: grid;
  grid-template-columns: 0.65fr 1.4fr;
}

.intro .section-kicker {
  grid-column: 1;
}

.intro h2 {
  font-size: clamp(34px, 4vw, 57px);
  line-height: 1.55;
  margin: 14px 0;
  grid-column: 1 / 3;
}

.intro-body {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 55px;
  align-items: end;
  margin-top: 30px;
}

.intro-body > p {
  line-height: 2.1;
  font-size: 14px;
}

.stat {
  border-left: 1px solid var(--line);
  padding-left: 25px;
}

.stat strong {
  font-family: "Shippori Mincho";
  font-size: 47px;
  font-weight: 500;
}

.stat strong small {
  font-size: 14px;
}

.stat span {
  display: block;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 6px;
}

.menu-section {
  background: var(--cream);
  padding: 115px 7vw;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.section-head h2 {
  font-size: 45px;
  margin: 11px 0;
}

.section-head > p {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.95;
  font-size: 13px;
}

.filters {
  display: flex;
  gap: 12px;
  margin: 45px 0 30px;
}

.filters button {
  background: transparent;
  border: 1px solid #c7c0b4;
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}

.filters button.active,
.filters button:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

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

.product-card {
  transition: 0.35s;
}

.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-visual {
  height: 310px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-photo-frame {
  background: linear-gradient(180deg, #efe5d2 0%, #d6be99 100%);
  padding: 0;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
}

.badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  background: var(--paper);
  font-size: 10px;
  padding: 8px 12px;
  border-radius: 20px;
}

.product-info {
  background: var(--paper);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  position: relative;
  min-height: 150px;
}

.product-info h3 {
  font-family: "Shippori Mincho";
  font-size: 16px;
  letter-spacing: 0.03em;
  margin: 0 0 9px;
}

.product-info p {
  font-size: 11px;
  line-height: 1.9;
  color: #68736b;
  margin: 0;
}

.product-info > strong {
  grid-column: 1;
  margin-top: 17px;
  font-size: 14px;
}

.add {
  border: 1px solid var(--line);
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
}

.add:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: rotate(90deg);
}

.soldout-note {
  text-align: right;
  font-size: 10px;
  color: #7d817d;
  margin-top: 20px;
}

.feature {
  margin: 130px 8vw;
  min-height: 480px;
  display: grid;
  grid-template-columns: 0.2fr 1fr 1fr;
  background: #ebddc3;
}

.feature-number {
  padding: 45px;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.feature-copy {
  padding: 90px 5vw;
}

.feature-copy h2 {
  font-size: 38px;
  line-height: 1.6;
}

.feature-copy > p:not(.section-kicker) {
  font-size: 13px;
  line-height: 2.15;
  margin-bottom: 35px;
}

.feature-art {
  background: var(--green);
  color: #dce3d6;
  display: grid;
  place-items: stretch;
  position: relative;
  overflow: hidden;
}

.feature-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

.feature-art span {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: #f3efe4;
  background: rgba(38, 53, 45, 0.38);
  padding: 10px 12px;
  border-radius: 2px;
}

.shop {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: var(--ink);
  color: #fff;
}

.shop-card {
  padding: 100px 9vw;
}

.shop h2 {
  font-size: 42px;
}

.shop dl {
  margin: 40px 0;
}

.shop dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 19px 0;
  font-size: 12px;
  line-height: 1.95;
}

.shop dt {
  color: #aeb8b1;
}

.shop dd {
  margin: 0;
}

.shop dd small {
  color: #aeb8b1;
}

.dark {
  background: #fff;
  color: var(--ink);
  margin-top: 10px;
}

.map-art {
  background: #ded5bd;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  color: var(--ink);
}

.road {
  position: absolute;
  background: #ede7d6;
  height: 70px;
  width: 130%;
  transform: rotate(-18deg);
  top: 35%;
}

.r2 {
  transform: rotate(42deg);
  top: 48%;
  left: -25%;
}

.r3 {
  transform: rotate(0);
  top: 72%;
}

.river {
  position: absolute;
  width: 600px;
  height: 170px;
  border-radius: 50%;
  border: 25px solid #a8bdba;
  left: 40%;
  top: -13%;
  transform: rotate(-20deg);
}

.map-pin {
  position: absolute;
  left: 53%;
  top: 44%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-pin b {
  width: 58px;
  height: 58px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 8%;
  transform: rotate(-45deg);
  font-family: "Shippori Mincho";
  font-size: 20px;
}

.map-pin b::first-letter {
  transform: rotate(45deg);
}

.map-pin span {
  font-family: "Shippori Mincho";
  font-weight: bold;
}

.map-label {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.station {
  bottom: 16%;
  left: 12%;
}

.park {
  top: 18%;
  right: 12%;
}

footer {
  padding: 70px 6vw 30px;
  background: #17231d;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand strong {
  font-family: "Shippori Mincho";
  font-size: 21px;
  display: block;
}

.footer-brand small {
  font-size: 10px;
  color: #9ba79f;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 35px;
  font-size: 11px;
  font-weight: 500;
  align-items: center;
}

footer > small {
  grid-column: 1 / 3;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #829087;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 30;
  background: var(--paper);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(130px);
  opacity: 0;
  transition: 0.35s;
}

.toast.show {
  transform: none;
  opacity: 1;
}

.toast span {
  background: var(--green);
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.toast p {
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 800px) {
  .site-header {
    height: 70px;
  }

  .nav {
    position: fixed;
    inset: 70px 0 auto;
    background: var(--paper);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-130%);
    transition: 0.35s;
    z-index: -1;
  }

  .nav.open {
    transform: none;
  }

  .menu-button {
    display: grid;
    gap: 6px;
  }

  .menu-button span {
    width: 26px;
    height: 1px;
    background: var(--ink);
  }

  .hero {
    min-height: 700px;
    height: 92vh;
    padding: 130px 7vw 80px;
    background:
      linear-gradient(180deg, rgba(248, 245, 238, 0.96) 0%, rgba(248, 245, 238, 0.8) 48%, rgba(248, 245, 238, 0.1) 75%),
      url("assets/bakery-hero.png") 68% center / cover;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text br {
    display: none;
  }

  .hero-note {
    right: 5vw;
    bottom: 20px;
  }

  .scroll-cue {
    display: none;
  }

  .intro {
    padding: 90px 7vw;
    display: block;
  }

  .intro h2 {
    font-size: 35px;
  }

  .intro-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    gap: 30px;
  }

  .intro-body > p {
    grid-column: 1 / 3;
  }

  .menu-section {
    padding: 85px 5vw;
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    font-size: 35px;
  }

  .section-head > p {
    display: none;
  }

  .filters {
    overflow: auto;
  }

  .filters button {
    white-space: nowrap;
  }

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

  .product-visual {
    height: 280px;
  }

  .feature {
    margin: 70px 5vw;
    display: block;
  }

  .feature-number {
    padding: 25px;
  }

  .feature-copy {
    padding: 30px 7vw 65px;
  }

  .feature-copy h2 {
    font-size: 29px;
  }

  .feature-art {
    height: 280px;
  }

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

  .shop-card {
    padding: 80px 8vw;
  }

  .map-art {
    min-height: 400px;
  }

  footer {
    display: block;
    padding: 55px 7vw;
  }

  .footer-links {
    flex-wrap: wrap;
    margin: 40px 0;
  }

  footer > small {
    display: block;
  }

  .toast {
    left: 15px;
    right: 15px;
  }

  .hero-actions {
    gap: 20px;
  }

  .primary {
    min-width: auto;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Mobile image-fit fix */
@media (max-width: 800px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(248, 245, 238, 1) 0%, rgba(248, 245, 238, 0.94) 47%, rgba(248, 245, 238, 0.08) 72%),
      url("assets/bakery-hero.png") 68% center / cover no-repeat,
      var(--cream);
  }

  .product-visual,
  .feature-art {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .product-photo,
  .feature-photo {
    object-fit: cover;
    transform: none;
  }

  .feature-photo {
    background: var(--green);
  }
}
/* Expanded bakery menu */
.seasonal-banner { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:24px; margin:0 0 28px; padding:22px 26px; color:#fffaf1; background:linear-gradient(115deg,#8b4932,#c56b3e); border-radius:4px; }
.seasonal-banner span { font-family:"DM Sans",sans-serif; font-size:9px; letter-spacing:.18em; padding:7px 10px; border:1px solid rgba(255,255,255,.45); border-radius:20px; }
.seasonal-banner strong { font-family:"Shippori Mincho",serif; font-size:17px; letter-spacing:.04em; }
.seasonal-banner p { margin:0; font-size:11px; opacity:.86; }
.badge.seasonal { color:#fff; background:#a84f32; }
.badge.savory { color:#fff; background:var(--green); }
.seasonal-card .product-info { box-shadow:inset 0 -3px 0 #c96534; }
@media (max-width:800px) { .seasonal-banner { grid-template-columns:1fr; gap:10px; padding:20px; } .seasonal-banner span { width:max-content; } }
/* Never crop bakery photography */
.product-photo,
.feature-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.product-photo-frame {
  background: #e8dac2;
}

.feature-art {
  background: var(--green);
}
/* Shop invitation after featured products */
.menu-more {
  margin-top: 38px;
  padding: 42px 5vw;
  text-align: center;
  color: var(--ink);
  background: rgba(255, 253, 248, .78);
  border: 1px solid rgba(38, 53, 45, .12);
}
.menu-more h3 { margin: 8px 0 10px; font-family: "Shippori Mincho", serif; font-size: clamp(24px, 3vw, 34px); font-weight: 600; }
.menu-more p:not(.section-kicker) { margin: 0 0 22px; font-size: 13px; line-height: 2; }
.menu-more .text-link { display: inline-block; }