/* ========================================
   ベーカリーほのか — Modern Style
   ======================================== */

:root {
  --bg:        #f8f3ea;
  --bg-alt:    #f1ead9;
  --bg-dark:   #2a1d10;
  --text:      #2a1d10;
  --text-l:    #5a4632;
  --text-ll:   #8b755a;
  --accent:    #c8744f;
  --accent-l:  #e8a87c;
  --border:    #d8c9b0;
  --border-l:  #e0d2b3;
  --shadow-sm: 0 4px 16px -6px rgba(60, 30, 10, 0.12);
  --shadow-md: 0 12px 32px -12px rgba(60, 30, 10, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(60, 30, 10, 0.28);
  --font-mincho: 'Zen Old Mincho', serif;
  --font-en:     'Cormorant Garamond', serif;
  --font-display:'DM Serif Display', serif;
  --font-hand:   'Caveat', cursive;
  --font-ja:     'Noto Sans JP', sans-serif;
  --inner-w: 1100px;
}

html { scroll-behavior: smooth; }
::selection { background: var(--accent); color: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ja);
  overflow-x: hidden;
}

.inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Common ---------- */
.section { padding: 120px 0; }

.section__en {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.section__en--light { color: var(--accent-l); }

.section__accent {
  display: block;
  font-family: var(--font-hand);
  font-size: 32px;
  color: var(--accent);
  margin-top: 8px;
  line-height: 1.2;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 243, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(60, 40, 20, 0.06);
}
.header__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.header__logo {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.18em;
}
.header__logo-divider {
  width: 1px;
  height: 14px;
  background: #c4b59c;
  align-self: center;
}
.header__logo-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  color: var(--text-ll);
  letter-spacing: 0.18em;
}
.header__nav-list {
  display: flex;
  gap: 32px;
}
.header__nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.3s;
}
.header__nav-link:hover {
  color: var(--accent);
}

/* ---------- Hamburger (body直下、固定配置) ---------- */
.hamburger {
  display: none;
  position: fixed;
  top: 12px;
  right: 16px;
  width: 44px;
  height: 44px;
  z-index: 2000;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.hamburger:hover {
  background: rgba(0, 0, 0, 0.06);
}
.hamburger.is-open:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 24px;
  height: 1.5px;
  margin-left: -12px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.5s cubic-bezier(0.68, -0.4, 0.27, 1.4),
              top 0.4s cubic-bezier(0.68, -0.4, 0.27, 1.4) 0.05s,
              opacity 0.3s ease,
              background 0.3s ease,
              width 0.4s cubic-bezier(0.68, -0.4, 0.27, 1.4),
              box-shadow 0.3s ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 30px; }

/* is-open（×変形） */
.hamburger.is-open span {
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  height: 2px;
}
.hamburger.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 0;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, transparent 0%, rgba(248, 243, 234, 0.55) 70%),
    linear-gradient(180deg, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.7) 100%);
  pointer-events: none;
  z-index: -1;
}
.hero__inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__established {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-mincho);
  font-size: 76px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.04em;
  margin: 0;
  position: relative;
}
.hero__title::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.hero__title-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero__desc {
  margin-top: 36px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-l);
  font-weight: 300;
  max-width: 380px;
}
.hero__actions {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--bg-dark);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0.18em;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.hero__btn span { transition: transform 0.3s; }
.hero__btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hero__btn:hover span { transform: translateX(4px); }
.hero__link {
  font-size: 13px;
  letter-spacing: 0.18em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.3s;
}
.hero__link:hover {
  color: var(--accent);
}

/* Hero Images */
.hero__images {
  position: relative;
  height: 580px;
}
.hero__img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 480px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.hero__img-sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 280px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  top: 32px;
  left: -8px;
  background: var(--bg);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero__badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 18px;
}
.hero__badge-label {
  display: block;
  font-size: 11px;
  color: var(--text-ll);
  letter-spacing: 0.18em;
}
.hero__badge-title {
  display: block;
  font-family: var(--font-mincho);
  font-size: 14px;
  margin-top: 2px;
}

/* Hero Features */
.hero__features {
  max-width: var(--inner-w);
  margin: 100px auto 0;
  padding: 32px 40px 80px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.hero__feature {
  position: relative;
  padding-left: 20px;
}
.hero__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.hero__feature-num {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.25em;
}
.hero__feature-en {
  display: block;
  font-family: var(--font-en);
  font-size: 19px;
  margin-top: 6px;
}
.hero__feature-ja {
  display: block;
  font-family: var(--font-mincho);
  font-size: 13px;
  color: var(--text-ll);
  margin-top: 2px;
}

/* ---------- About ---------- */
.about {
  background: var(--bg-alt);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/section-bg.jpg') center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}
.about::after {
  content: '';
  position: absolute;
  top: 80px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 116, 79, 0.08), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.about__header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.about__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.about__desc-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about__desc {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-l);
  font-weight: 300;
}
.about__image-wrap {
  margin-top: 100px;
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.about__quote {
  position: absolute;
  right: 60px;
  bottom: -40px;
  background: var(--bg);
  padding: 36px 44px;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--accent);
}
.about__quote-label {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.3em;
}
.about__quote-text {
  margin: 14px 0 0;
  font-family: var(--font-mincho);
  font-size: 17px;
  line-height: 1.95;
  font-weight: 500;
}

/* ---------- Menu ---------- */
.menu__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 30px;
}
.menu__title {
  margin: 14px 0 0;
  font-family: var(--font-mincho);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.menu__lead {
  max-width: 360px;
  font-size: 14px;
  line-height: 2;
  color: var(--text-ll);
  font-weight: 300;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 32px;
}
.menu__card {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.menu__card:hover { transform: translateY(-6px); }
.menu__card-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: #e7dcc6;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.menu__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.menu__card:hover .menu__card-img {
  transform: scale(1.05);
}
.menu__card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-family: var(--font-mincho);
}
.menu__card-info {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.menu__card-num {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.18em;
}
.menu__card-name {
  margin: 4px 0 0;
  font-family: var(--font-mincho);
  font-size: 19px;
  font-weight: 500;
}
.menu__card-price {
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--text);
}
.menu__card-desc {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-ll);
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- Bake & Voices ---------- */
.bake-voices {
  background: var(--bg-alt);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.bake-voices::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/section-bg.jpg') center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}
.bake-voices::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.1), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.bake-voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.bake__title,
.voices__title {
  margin: 14px 0 36px;
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.45;
}
.bake__list {
  border-top: 1px solid var(--border);
}
.bake__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.bake__time {
  font-family: var(--font-en);
  font-size: 26px;
  color: var(--accent);
  font-style: italic;
}
.bake__items {
  font-family: var(--font-mincho);
  font-size: 16px;
}
.bake__note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-ll);
  line-height: 1.9;
}

.voices__list {
  display: grid;
  gap: 24px;
}
.voices__card {
  background: var(--bg);
  padding: 32px 32px 28px;
  position: relative;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.voices__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.voices__quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 56px;
  color: #e0cdb0;
  line-height: 0.6;
}
.voices__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: var(--text);
  font-weight: 300;
}
.voices__name {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-ll);
  letter-spacing: 0.1em;
}

/* ---------- Access ---------- */
.access {
  position: relative;
  color: var(--bg);
  isolation: isolate;
  overflow: hidden;
}
.access::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/access-bg.jpg') center / cover no-repeat;
  z-index: -2;
}
.access::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 12, 5, 0.55) 0%,
    rgba(30, 18, 8, 0.35) 35%,
    rgba(40, 25, 12, 0.1) 65%,
    rgba(40, 25, 12, 0) 100%
  );
  pointer-events: none;
  z-index: -1;
}
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.access__title {
  margin: 14px 0 40px;
  font-family: var(--font-mincho);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.access__table {
  border-top: 1px solid rgba(248, 243, 234, 0.25);
}
.access__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid rgba(248, 243, 234, 0.25);
  align-items: baseline;
}
.access__label {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent-l);
}
.access__value {
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 1.85;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.access__map {
  min-height: 480px;
  background: var(--bg-alt);
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Contact ---------- */
.contact { background: var(--bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact__title {
  margin: 14px 0 24px;
  font-family: var(--font-mincho);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.3;
}
.contact__desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-l);
  max-width: 320px;
  font-weight: 300;
}
.contact__accent {
  display: block;
  margin-top: 32px;
  font-family: var(--font-hand);
  font-size: 26px;
  color: var(--accent);
}
.contact__form {
  display: grid;
  gap: 28px;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact__label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
}
.contact__input,
.contact__textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #c4b59c;
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.contact__input:focus,
.contact__textarea:focus {
  border-color: var(--accent);
}
.contact__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__btn {
  margin-top: 12px;
  padding: 18px 32px;
  justify-self: start;
  background: var(--bg-dark);
  color: var(--bg);
  border: none;
  font-size: 13px;
  letter-spacing: 0.25em;
  cursor: pointer;
  font-family: var(--font-ja);
  min-width: 200px;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.contact__btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__logo {
  font-family: var(--font-mincho);
  font-size: 22px;
  letter-spacing: 0.18em;
}
.footer__logo-en {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  color: var(--text-ll);
  margin-top: 6px;
  letter-spacing: 0.18em;
}
.footer__copy {
  font-size: 11px;
  color: var(--text-ll);
  letter-spacing: 0.2em;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
  z-index: 900;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
}

/* ---------- Drawer (mobile) ---------- */
@media (min-width: 961px) {
  .header__nav-pc { display: block; }
  .drawer { display: none; }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 75vw;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 1100;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}


.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer__link {
  display: block;
  padding: 18px 0;
  color: rgba(248, 243, 234, 0.92);
  font-size: 16px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(248, 243, 234, 0.12);
  text-decoration: none;
  transition: color 0.3s;
}
.drawer__link:hover {
  color: var(--accent);
}

/* ---------- Scroll Animation ---------- */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   Responsive
   ============================================== */
@media (max-width: 960px) {
  .inner { padding: 0 24px; }
  .header__inner { padding: 0 24px; }
  .hero { padding: 60px 0 0; }
  .hero__inner { padding: 0 24px; }
  .hero__features { padding: 32px 24px 60px; }
  .section { padding: 80px 0; }

  .hamburger { display: block; }
  .header__nav-pc { display: none; }

  /* Hero SP */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__title { font-size: 44px; }
  .hero__title::before { top: -16px; width: 36px; }
  .hero__images { height: 400px; }
  .hero__img-main { width: 85%; height: 320px; }
  .hero__img-sub { width: 55%; height: 200px; }
  .hero__features {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
    gap: 24px;
  }

  /* About SP */
  .about__header { grid-template-columns: 1fr; gap: 30px; }
  .about__title { font-size: 26px; }
  .about__desc-grid { grid-template-columns: 1fr; gap: 20px; }
  .about__img { aspect-ratio: 4 / 3; max-height: none; }
  .about__quote {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  /* Menu SP */
  .menu__title { font-size: 32px; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }

  /* Bake & Voices SP */
  .bake-voices__grid { grid-template-columns: 1fr; gap: 60px; }

  /* Access SP */
  .access__grid { grid-template-columns: 1fr; }
  .access__title { font-size: 32px; }
  .access__map { min-height: 300px; }

  /* Contact SP */
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__title { font-size: 32px; }
  .contact__form-row { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 36px; }
  .hero__features { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .menu__title { font-size: 28px; }
}
