:root {
  --cream: #fffaf4;
  --paper: #fffdf9;
  --ink: #49332d;
  --muted: #78645d;
  --gold: #c89542;
  --gold-soft: #e5c58b;
  --pink: #e97f85;
  --pink-dark: #d9656d;
  --line: #eadbc6;
  --shadow: 0 10px 28px rgba(101, 71, 54, .09);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1310px, calc(100% - 64px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 10px 16px; background: #fff; border: 1px solid var(--gold); }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  background: rgba(255, 253, 249, .95);
  border-bottom: 1px solid rgba(202, 165, 108, .24);
  backdrop-filter: blur(12px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 320px; font-family: var(--serif); color: #9b6f2c; }
.brand-mark {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 27px;
}
.brand-mark::before,
.brand-mark::after { content: "❧"; position: absolute; top: 8px; color: var(--gold); font-size: 16px; }
.brand-mark::before { left: -11px; transform: rotate(-35deg); }
.brand-mark::after { right: -11px; transform: scaleX(-1) rotate(-35deg); }
.brand-mark span::before { content: "♔"; position: absolute; top: -18px; left: 17px; font-size: 19px; font-style: normal; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 25px; font-weight: 500; letter-spacing: .02em; }
.brand-copy small { margin-top: 8px; font-family: var(--sans); font-size: 10px; letter-spacing: .18em; text-align: center; }

.global-nav { flex: 1; display: flex; justify-content: center; align-items: center; gap: clamp(22px, 2.4vw, 44px); white-space: nowrap; font-family: var(--serif); font-size: 14px; }
.global-nav a { position: relative; padding: 28px 0 24px; transition: color .25s ease; }
.global-nav a:hover, .global-nav a.is-current { color: var(--pink-dark); }
.global-nav a.is-current::after { content: ""; position: absolute; left: 50%; bottom: 14px; width: 30px; height: 1px; background: var(--pink); transform: translateX(-50%); }
.contact-button { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 9px; padding: 12px 25px; color: #fff; background: linear-gradient(135deg, #ed9197, #de7279); border-radius: 999px; font-family: var(--serif); font-size: 14px; box-shadow: 0 7px 18px rgba(221, 109, 117, .22); transition: transform .2s ease, box-shadow .2s ease; }
.contact-button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(221, 109, 117, .3); }
.menu-toggle { display: none; }

.hero { min-height: 335px; background: #fbf2ea; overflow: hidden; }
.hero-inner { position: relative; display: grid; grid-template-columns: 40% 60%; min-height: 335px; padding-inline: 0; }
.hero-inner::before { display: none; }
.hero-copy { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: 38px 30px 35px 4px; background: transparent; }
.hero-copy .eyebrow { display: none; }
.hero-copy h1 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(30px, 2.6vw, 44px); line-height: 1.45; letter-spacing: .05em; font-weight: 500; white-space: nowrap; }
.hero-copy > p { margin: 0; font-family: var(--serif); font-size: 15px; line-height: 2; letter-spacing: .06em; }
.hero-cta { display: none; }
.hero-visual { position: relative; z-index: 1; min-height: 335px; background: url("assets/images/hero-pastries.webp") center / cover no-repeat; }
.hero-visual::after { display: none; }

.features { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fffdfa; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 90px; align-items: center; }
.feature-item { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 13px; padding: 15px 28px; border-right: 1px dotted #d7b885; }
.feature-item:last-child { border-right: 0; }
.feature-item h2 { margin: 0 0 3px; font-family: var(--serif); font-size: 17px; font-weight: 500; }
.feature-item p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 11px; line-height: 1.7; }
.line-icon { color: var(--gold); font-family: Georgia, serif; font-size: 45px; line-height: 1; text-align: center; }

.section-border { border-bottom: 1px solid var(--line); }
.split-layout { display: grid; grid-template-columns: 52% 48%; }
.products-panel { padding: 13px 28px 12px 0; border-right: 1px solid var(--line); }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: 24px; letter-spacing: .06em; font-weight: 500; }
.section-heading h2 span { color: var(--gold); font-size: 16px; }
.heading-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.heading-row > a { display: inline-flex; align-items: center; color: var(--muted); font-family: var(--serif); font-size: 11px; }
.circle-arrow { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; margin-left: 8px; border: 1px solid #d7ae6f; border-radius: 50%; color: var(--gold); font-size: 15px; line-height: 1; padding-bottom: 1px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.product-card { overflow: hidden; border: 1px solid #eaded0; border-radius: 7px; background: #fff; box-shadow: 0 3px 10px rgba(86, 53, 36, .06); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card img { width: 100%; aspect-ratio: 1.4 / 1; object-fit: cover; }
.product-card-body { padding: 9px 11px 10px; }
.product-card h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 12px; font-weight: 600; }
.product-card p { min-height: 42px; margin: 0 0 5px; color: var(--muted); font-family: var(--serif); font-size: 9px; line-height: 1.55; }
.product-card strong { display: block; color: var(--pink-dark); font-family: Georgia, var(--serif); font-size: 19px; text-align: center; font-weight: 400; }
.product-card strong small { font-family: var(--sans); font-size: 8px; }

.story-panel { display: grid; grid-template-columns: 56% 44%; padding: 19px 0 20px 28px; gap: 32px; align-items: center; }
.story-panel > img { width: 100%; aspect-ratio: 1.37 / 1; object-fit: cover; border-radius: 3px; }
.story-copy h3 { margin: 14px 0 10px; font-family: var(--serif); font-size: 21px; line-height: 1.55; font-weight: 500; }
.story-copy p { margin: 0 0 14px; color: var(--muted); font-family: var(--serif); font-size: 10px; line-height: 1.9; }
.outline-button { display: inline-flex; align-items: center; gap: 14px; padding: 7px 17px; color: var(--pink-dark); border: 1px solid var(--pink); border-radius: 999px; font-family: var(--serif); font-size: 11px; transition: .2s ease; }
.outline-button:hover { color: #fff; background: var(--pink); }

.season-news-grid { display: grid; grid-template-columns: 36% 32% 32%; }
.season-panel, .news-panel, .gift-panel { min-height: 180px; padding: 10px 14px 12px; }
.season-panel, .news-panel { border-right: 1px solid var(--line); }
.season-card { position: relative; overflow: hidden; min-height: 118px; border-radius: 3px; }
.season-card img { width: 100%; min-height: 118px; object-fit: cover; }
.season-overlay { position: absolute; inset: 0 auto 0 0; display: flex; flex-direction: column; justify-content: center; width: 49%; padding: 18px 22px; background: linear-gradient(90deg, rgba(255,245,243,.97), rgba(255,245,243,.9), transparent); font-family: var(--serif); }
.season-overlay p { margin: 0 0 8px; color: #c35f64; font-size: 19px; line-height: 1.35; letter-spacing: .08em; }
.season-overlay p strong { font-weight: 500; }
.season-overlay span { font-size: 10px; color: var(--muted); }
.slider-dots { position: absolute; left: 50%; bottom: 4px; display: flex; gap: 8px; transform: translateX(-50%); }
.slider-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d8c1a0; }
.slider-dots i.active { background: var(--pink); }
.news-list { list-style: none; margin: 6px 0 0; padding: 0; }
.news-list li { display: grid; grid-template-columns: 92px 60px 1fr; gap: 8px; align-items: center; padding: 11px 0; border-bottom: 1px dotted #dec8aa; font-size: 12px; }
.news-list time { color: #d57477; }
.news-list .tag { padding: 2px 5px; border: 1px solid #dec8aa; text-align: center; background: #fff; }
.news-list a:hover { color: var(--pink-dark); }
.gift-panel { position: relative; padding-right: 0; }
.gift-panel > img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: center; border-radius: 3px; }
.gift-copy { position: absolute; left: 14px; top: 24px; width: 43%; padding: 10px 12px; background: rgba(255,251,247,.92); font-family: var(--serif); }
.gift-copy p { margin: 0 0 6px; color: #9b7043; font-size: 14px; }
.gift-copy span { display: block; margin-bottom: 8px; font-size: 9px; }
.gift-copy a { display: inline-flex; align-items: center; gap: 12px; padding: 5px 13px; color: #fff; background: var(--pink); border-radius: 999px; font-size: 9px; }

.gallery { overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1.14fr .96fr 1.25fr; }
.gallery figure { margin: 0; overflow: hidden; border-right: 2px solid #fff; }
.gallery figure:last-child { border-right: 0; }
.gallery img { width: 100%; height: 112px; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.04); }

.about-access { display: none; padding: 80px 0; background: var(--cream); }
.about-access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-access .eyebrow { color: var(--gold); font-size: 11px; letter-spacing: .22em; }
.about-access h2 { margin: 7px 0 0; font-family: var(--serif); font-size: 34px; line-height: 1.65; font-weight: 500; }
.about-access p:last-child { color: var(--muted); font-family: var(--serif); }

.site-footer { background: #fffaf6; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 270px 1.1fr 1fr auto 1.25fr; align-items: center; gap: 25px; min-height: 87px; padding-block: 11px; }
.footer-brand { min-width: auto; }
.footer-brand .brand-mark { width: 48px; height: 48px; flex-basis: 48px; font-size: 23px; }
.footer-brand .brand-copy strong { font-size: 20px; }
.footer-brand .brand-copy small { font-size: 8px; }
.footer-contact, .footer-hours { color: #6a564d; font-size: 10px; line-height: 1.65; }
.footer-contact p, .footer-hours p { margin: 0; }
.footer-contact a { display: block; font-family: Georgia, serif; font-size: 16px; letter-spacing: .03em; }
.social-links { display: flex; gap: 12px; padding-right: 18px; border-right: 1px solid var(--line); }
.social-links a { display: grid; place-items: center; width: 32px; height: 32px; color: white; border-radius: 50%; font-weight: 700; }
.social-links a:nth-child(1) { background: radial-gradient(circle at 30% 100%, #feda75, #d62976 45%, #4f5bd5); }
.social-links a:nth-child(2) { background: #4267b2; }
.social-links a:nth-child(3) { background: #27c84b; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px 15px; color: #6c5952; font-family: var(--serif); font-size: 9px; }
.footer-nav a:hover { color: var(--pink-dark); }
.copyright { margin: 0; padding: 4px 0 7px; color: #9a8880; text-align: center; font-size: 8px; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 50; width: 44px; height: 44px; border: 0; border-radius: 50%; color: #fff; background: var(--pink); box-shadow: 0 8px 20px rgba(211, 99, 109, .25); opacity: 0; pointer-events: none; transform: translateY(8px); transition: .25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 1180px) {
  .container { width: min(100% - 40px, 1080px); }
  .brand { min-width: 250px; }
  .brand-copy strong { font-size: 21px; }
  .global-nav { gap: 20px; font-size: 12px; }
  .contact-button { padding-inline: 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(n+3) { display: none; }
  .story-panel { grid-template-columns: 54% 46%; gap: 20px; }
  .footer-main { grid-template-columns: 240px 1fr 1fr auto; }
  .footer-nav { grid-column: 1 / -1; justify-content: center; padding-top: 8px; border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }
  .site-header { height: 68px; }
  .header-inner { justify-content: space-between; }
  .brand { min-width: auto; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; font-size: 22px; }
  .brand-mark span::before { left: 13px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { margin-top: 5px; font-size: 8px; }
  .contact-button { display: none; }
  .menu-toggle { position: relative; z-index: 102; display: grid; gap: 5px; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; background: var(--ink); transition: .25s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav { position: fixed; inset: 68px 0 auto; display: grid; gap: 0; padding: 14px 22px 26px; background: rgba(255,253,249,.98); box-shadow: 0 20px 40px rgba(70,44,31,.12); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: .3s ease; }
  .global-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .global-nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .global-nav a.is-current::after { display: none; }
  .hero-inner { width: 100%; grid-template-columns: 44% 56%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: 0; }
  .feature-item:nth-child(-n+2) { border-bottom: 1px dotted #d7b885; }
  .split-layout { grid-template-columns: 1fr; }
  .products-panel { padding-right: 0; border-right: 0; }
  .story-panel { padding: 24px 0; border-top: 1px solid var(--line); }
  .season-news-grid { grid-template-columns: 1fr 1fr; }
  .season-panel { border-bottom: 1px solid var(--line); }
  .news-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .gift-panel { grid-column: 1 / -1; padding-left: 0; }
  .gift-panel > img { height: 210px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 170px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .social-links { justify-self: start; border-right: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 560px); }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { letter-spacing: .1em; }
  .hero { min-height: auto; }
  .hero-inner { display: flex; flex-direction: column-reverse; min-height: 0; }
  .hero-inner::before { display: none; }
  .hero-visual { min-height: 270px; background-position: 45% center; }
  .hero-visual::after { display: none; }
  .hero-copy { padding: 30px 24px 35px; background: #fbf2ea; text-align: center; }
  .hero-copy .eyebrow { display: block; margin: 0 0 10px; color: var(--gold); font-size: 9px; letter-spacing: .2em; }
  .hero-copy h1 { font-size: clamp(26px, 7.5vw, 38px); line-height: 1.5; }
  .hero-copy > p { font-size: 13px; }
  .hero-cta { display: inline-flex; align-self: center; margin-top: 20px; padding: 9px 20px; color: #fff; background: var(--pink); border-radius: 999px; font-family: var(--serif); font-size: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: 0; border-bottom: 1px dotted #d7b885; padding: 16px 10px; }
  .feature-item:last-child { border-bottom: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-card:nth-child(n+3) { display: block; }
  .product-card h3 { min-height: 38px; font-size: 11px; }
  .product-card p { display: none; }
  .product-card strong { font-size: 17px; }
  .section-heading h2 { font-size: 21px; }
  .story-panel { grid-template-columns: 1fr; padding-bottom: 32px; }
  .story-copy { text-align: center; }
  .story-copy p { font-size: 11px; }
  .season-news-grid { grid-template-columns: 1fr; }
  .season-panel, .news-panel { border-right: 0; }
  .season-overlay { width: 65%; }
  .news-list li { grid-template-columns: 78px 52px; }
  .news-list a { grid-column: 1 / -1; padding-top: 4px; font-size: 11px; }
  .gift-panel { grid-column: auto; }
  .gift-panel > img { height: 185px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 130px; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
  .social-links { justify-self: center; padding-right: 0; }
  .footer-nav { justify-content: center; }
  .back-to-top { right: 14px; bottom: 14px; }
}
