:root {
  --bg: #efefeb;
  --paper: #f7f7f4;
  --surface: #ffffff;
  --line: #d9ddd4;
  --line-soft: #e7eadf;
  --text: #1b231e;
  --muted: #667067;
  --muted-2: #7a8279;
  --green: #e52866;
  --green-2: #c91c56;
  --green-soft: #fde7ef;
  --green-soft-2: #f9d8e5;
  --pink-soft: #f4d6e7;
  --shadow: 0 8px 20px rgba(16, 22, 18, 0.06);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
  --top-strip-h: 24px;
  --header-h: 62px;
  --info-strip-h: 78px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
body.has-cookie-banner {
  overflow: hidden;
}
body.has-opening-notice {
  overflow: hidden;
}
body.has-submit-confirm {
  overflow: hidden;
}
img { display: block; width: 100%; height: auto; max-width: 100%; }
a { color: inherit; }

.container {
  width: min(var(--container), calc(100% - clamp(0.9rem, 4vw, 2rem)));
  margin: 0 auto;
}

.top-strip {
  background: #e52866;
  color: #fff3f8;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-strip .container {
  min-height: var(--top-strip-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.top-strip .left,
.top-strip .right {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-live-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  color: #fff3f8;
  text-align: center;
}
.top-live-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58b463;
  box-shadow: 0 0 0 3px rgba(88, 180, 99, 0.16);
  flex: 0 0 auto;
}
.top-live-status.is-break .dot {
  background: #da6c6c;
  box-shadow: 0 0 0 3px rgba(218, 108, 108, 0.16);
}
.top-live-status.is-open {
  color: #fff3f8;
}
.top-live-status.is-break {
  color: #ffb0b0;
}
.top-live-status.is-closed .dot {
  background: #da6c6c;
  box-shadow: 0 0 0 3px rgba(218, 108, 108, 0.16);
}
.top-live-status.is-closed {
  color: #ffb0b0;
}
.top-live-status.is-vacation .dot {
  background: #8e7cf3;
  box-shadow: 0 0 0 3px rgba(142, 124, 243, 0.18);
}
.top-live-status.is-vacation {
  color: #d3ccff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,247,244,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.9rem;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  line-height: 1;
}
.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.brand-title { font-weight: 800; }
.brand-subtitle { display: none; }

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}
.nav-menu a {
  text-decoration: none;
  color: #5c655d;
  font-size: 0.84rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav-menu a:hover { background: #fff; color: #233127; }
.nav-menu a[aria-current="page"] { color: var(--green); font-weight: 700; }
.nav-item-submenu {
  position: relative;
}
.nav-item-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}
.nav-item-submenu > a::after {
  content: "▾";
  font-size: 0.62rem;
  line-height: 1;
  color: #707971;
  transform: translateY(1px);
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0.42rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(16, 21, 17, 0.12);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 90;
}
.nav-submenu a {
  display: block;
  border-radius: 8px;
  padding: 0.48rem 0.58rem;
  font-size: 0.8rem;
  color: #465147;
}
.nav-submenu a:hover {
  background: #f6f8f2;
  color: #223126;
}
.nav-item-submenu:hover .nav-submenu,
.nav-item-submenu.is-open .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-cta {
  text-decoration: none;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.05rem;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(15,95,53,0.18);
}

.main { padding: 0; }
.layout-stack { display: grid; gap: 0; }

.info-strip {
  border-bottom: 1px solid var(--line);
  background: #f6f6f2;
}
.info-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
  min-height: var(--info-strip-h);
}
.info-grid--status-only {
  grid-template-columns: 1fr;
  justify-items: center;
}
.info-grid--status-only .info-item {
  justify-content: center;
  text-align: center;
}
.info-grid--status-only [data-opening-widget].status-compact .status-row {
  justify-content: center;
}
.info-grid--status-only [data-opening-widget].status-compact .status-detail,
.info-grid--status-only [data-opening-widget].status-compact .live-time {
  text-align: center;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fde7ef;
  color: var(--green-2);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex: 0 0 auto;
  border: 1px solid rgba(229, 40, 102, 0.12);
  line-height: 0;
}
.info-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  display: block;
}
.info-icon--map svg {
  width: 19px;
  height: 19px;
}
.info-icon--phone svg {
  width: 18px;
  height: 18px;
}
.info-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #556058;
  margin-bottom: 0.15rem;
}
.info-item span, .info-item a {
  display: block;
  color: #243126;
  font-size: 0.9rem;
  text-decoration: none;
}
.info-item a {
  font-weight: 700;
}
.info-item a:hover {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.info-item .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.84rem;
}

[data-opening-widget].status-compact .status-row { gap: 0.7rem; }
[data-opening-widget].status-compact .status-dot { width: 10px; height: 10px; }
[data-opening-widget].status-compact .status-title {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #556058;
}
[data-opening-widget].status-compact .status-detail {
  margin-top: 0.08rem;
  color: #2a312b;
  font-size: 0.85rem;
}
[data-opening-widget].status-compact .live-time {
  margin-top: 0.15rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #647067;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-row { display: flex; align-items: center; gap: 0.75rem; }
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #da6c6c;
  box-shadow: 0 0 0 5px rgba(218,108,108,0.12);
  flex: 0 0 auto;
}
.status-dot.open {
  background: #58b463;
  box-shadow: 0 0 0 5px rgba(88,180,99,0.16);
}
.status-dot.break {
  background: #da6c6c;
  box-shadow: 0 0 0 5px rgba(218,108,108,0.16);
}
.status-dot.vacation {
  background: #8e7cf3;
  box-shadow: 0 0 0 5px rgba(142,124,243,0.16);
}
.status-title { font-weight: 700; }
.status-title.state-open { color: #1f5a33; }
.status-title.state-break { color: #9e2f2f; }
.status-title.state-closed { color: #9e2f2f; }
.status-title.state-vacation { color: #4d3cb6; }
.status-detail { color: var(--muted); font-size: 0.88rem; }
.live-time {
  margin-top: 0.65rem;
  display: inline-block;
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line-soft);
  background: #fbfbf8;
  color: #56625a;
  font-size: 0.8rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.hero-shell {
  position: relative;
  min-height: calc(100svh - var(--top-strip-h) - var(--header-h) - var(--info-strip-h));
  border-bottom: 1px solid var(--line);
  background: linear-gradient(rgba(247,247,244,0.64), rgba(247,247,244,0.75)),
    url('hero-bg.jpg') center/cover no-repeat;
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(245,245,241,0.58));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 0;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(229,40,102,0.22);
  color: var(--green);
  background: rgba(255, 241, 247, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.hero-title em {
  color: var(--green);
  font-style: italic;
  font-weight: 700;
}
.hero-title-logo {
  display: grid;
  place-items: center;
}
.hero-title-logo img {
  width: min(1120px, 98vw);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(229, 40, 102, 0.10));
}
.hero-sub {
  margin: 0.9rem auto 0;
  max-width: 42rem;
  color: #5e675f;
  font-size: 1rem;
}
.btn-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 14px rgba(229,40,102,0.18); }
.btn-secondary { background: rgba(255,255,255,0.9); color: #243126; border-color: var(--line); }
.scroll-indicator {
  margin: 1.05rem auto 0;
  display: inline-grid;
  justify-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: #4e5a51;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.scroll-indicator__arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #d8ded4;
  background: rgba(255, 255, 255, 0.86);
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1rem;
  box-shadow: 0 6px 14px rgba(22, 31, 25, 0.08);
  animation: scrollArrowBob 1.6s ease-in-out infinite;
}

.section {
  padding: 3.2rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.section.alt { background: #eef1eb; }
.section.white { background: #f7f7f4; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.section-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.section-header p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.45;
}
.section-link {
  white-space: nowrap;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.product-card {
  background: #f4f5f1;
  border: 1px solid #ccd2c7;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(18, 24, 20, 0.04);
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-tag,
.price-tag,
.fav-btn {
  position: absolute;
  top: 0.65rem;
}
.product-tag {
  left: 0.65rem;
  background: var(--pink-soft);
  color: #6d3757;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
}
.fav-btn {
  right: 0.65rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: #495349;
}
.price-tag {
  top: auto;
  bottom: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.price-tag .cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f1f3ef;
  background: rgba(15,18,16,0.35);
  backdrop-filter: blur(2px);
  border-radius: 999px;
  padding: 0.27rem 0.45rem;
}
.price-tag .price {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  color: #111;
  background: rgba(248,248,245,0.9);
  border-radius: 999px;
  padding: 0.25rem 0.45rem;
  font-size: 0.78rem;
}
.product-body { padding: 0.8rem 0.85rem 0.95rem; }
.product-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}
.product-copy {
  margin: 0.35rem 0 0;
  color: #667067;
  font-size: 0.82rem;
  line-height: 1.45;
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}
.philosophy-full .container {
  width: min(var(--container), calc(100% - 2rem));
}
.split-story--wide {
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.8rem;
  max-width: 100%;
}
.story-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ccd2c7;
  box-shadow: var(--shadow);
  min-height: 500px;
}
.story-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.story-quote {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border-radius: 12px;
  background: rgba(247,247,244,0.94);
  border: 1px solid rgba(255,255,255,0.85);
  padding: 0.8rem 0.95rem;
  font-size: 0.8rem;
  color: #496052;
}
.story-quote small { display: block; margin-top: 0.35rem; color: #748077; }
.eyebrow {
  color: var(--green);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.story-text h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.story-text p {
  color: var(--muted);
  line-height: 1.55;
  margin: 1rem 0 0;
}
.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  text-decoration: none;
  color: var(--green);
  font-weight: 700;
  border-bottom: 1px solid rgba(229,40,102,0.25);
}
.social-mini { display: inline-flex; gap: 0.5rem; margin-left: 0.65rem; vertical-align: middle; }
.social-mini span,
.social-mini a {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center;
  font-size: 0.72rem; color: #6d756e;
  text-decoration: none;
}
.social-mini a svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  border-radius: 14px;
  overflow: hidden;
  background: #f5f6f2;
  border: 1px solid #cdd3c8;
  box-shadow: 0 2px 6px rgba(18,22,19,0.04);
}
.service-card img { aspect-ratio: 16 / 9; object-fit: cover; }
.service-card .body { padding: 0.85rem; }
.service-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}
.service-card h3 { margin: 0; font-size: 0.95rem; }
.price-chip {
  background: #d9dfdb;
  color: #27553d;
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.72rem;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.service-card p {
  color: var(--muted);
  margin: 0.45rem 0 0;
  line-height: 1.45;
  font-size: 0.83rem;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}

.instagram-block {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #f7f7f4;
  border-bottom: 1px solid var(--line);
}
.instagram-block h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.insta-grid a {
  display: block;
}
.insta-grid img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ced5cb;
}
[data-instagram-status] {
  margin: 0.8rem 0 0;
  color: #7a857b;
  font-size: 0.9rem;
}
.insta-btn {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #cfd5cc;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  color: #3f4b42;
  text-decoration: none;
  font-size: 0.82rem;
  background: #f2f4ef;
}

.detail-gallery-wrap {
  padding-top: 2.2rem;
  padding-bottom: 1.4rem;
}
.detail-gallery-title {
  margin: 0 0 0.9rem;
  text-align: center;
  font-size: 1.1rem;
}
.detail-gallery {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.detail-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #d3d8cf;
}
.detail-gallery img.gallery-fit-soft {
  object-fit: cover;
  background: transparent;
  padding: 0;
}
.detail-gallery img.gallery-focus-up {
  object-position: center 54%;
}

.mini-legal {
  border-bottom: 1px solid var(--line);
  background: #f7f7f4;
}
.mini-legal .container {
  min-height: 66px;
  display: grid;
  place-items: center;
  color: #7c837b;
  font-size: 0.75rem;
  text-align: center;
  white-space: nowrap;
}
.mini-legal-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.mini-legal .container a {
  color: #c91c56;
  font-weight: 700;
  text-decoration: none;
}
.mini-legal .container a:hover {
  text-decoration: underline;
}

.review-coupon {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 75;
  width: min(340px, calc(100% - 2rem));
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d9ddd4;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(18, 22, 19, 0.14);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0.9rem 0.85rem;
}
.review-coupon strong {
  display: block;
  margin: 0 0 0.28rem;
  font-size: 0.95rem;
  color: #263227;
}
.review-coupon p {
  margin: 0 0 0.7rem;
  color: #5f6b61;
  font-size: 0.83rem;
  line-height: 1.4;
}
.review-coupon .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.review-coupon__claim {
  margin-top: 0.45rem;
}
.review-coupon__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border: 1px solid #d6dbd2;
  border-radius: 8px;
  background: #fff;
  color: #5a655d;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.review-coupon[hidden] {
  display: none !important;
}

.site-footer {
  background: #e7ece6;
  padding: 2rem 0 0.2rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1fr;
  gap: 1.4rem;
  padding-bottom: 1.4rem;
}
.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3a473d;
}
.footer-col p,
.footer-col li,
.footer-col a {
  color: #677268;
  font-size: 0.85rem;
  line-height: 1.55;
  text-decoration: none;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.footer-brand {
  display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 800; margin-bottom: 0.6rem;
}
.footer-brand .brand-mark { width: 28px; height: 28px; font-size: 0.85rem; border-radius: 10px; }
.footer-brand-logo {
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.footer-social { display: flex; gap: 0.5rem; margin-top: 0.8rem; }
.footer-social span,
.footer-social a {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid #c7cec3; display: grid; place-items: center; color: #616b63; font-size: 0.8rem;
  text-decoration: none;
}
.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.insta-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex: 0 0 auto;
}
.footer-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.footer-hours li {
  display: grid;
  grid-template-columns: minmax(90px, 112px) 1fr;
  align-items: start;
  gap: 0.55rem 0.75rem;
  padding: 0.38rem 0.45rem;
  border: 1px solid rgba(199, 206, 195, 0.7);
  border-radius: 10px;
  background: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  position: relative;
}
.footer-hours li.today {
  border-color: rgba(88, 180, 99, 0.45);
  background: rgba(88, 180, 99, 0.10);
  box-shadow: inset 4px 0 0 #58b463;
}
.footer-hours .day {
  color: #3f4b42;
  font-weight: 700;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.35;
}
.footer-hours .time {
  color: #465246;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1.45;
  white-space: normal;
}
.footer-hours .time.closed {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  color: #69746b;
}
.footer-hours li.today .day {
  color: #1f5a33;
}
.footer-hours li.today .time {
  color: #24482f;
}
.footer-status {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #2f3d33;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.footer-status.is-open { color: #1f5a33; }
.footer-status.is-break { color: #9e2f2f; }
.footer-status.is-closed { color: #9e2f2f; }
.footer-status.is-vacation { color: #4d3cb6; }
.footer-status .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #5ab465; box-shadow: 0 0 0 4px rgba(90,180,101,0.12);
}
.footer-status.is-break .dot {
  background: #da6c6c;
  box-shadow: 0 0 0 4px rgba(218,108,108,0.14);
}
.footer-status.is-closed .dot {
  background: #da6c6c;
  box-shadow: 0 0 0 4px rgba(218,108,108,0.14);
}
.footer-status.is-vacation .dot {
  background: #8e7cf3;
  box-shadow: 0 0 0 4px rgba(142,124,243,0.16);
}
.footer-bottom {
  border-top: 1px solid #d4dbd0;
  padding: 0.65rem 0 1rem;
  color: #7c857d;
  font-size: 0.75rem;
  text-align: center;
}
.footer-bottom a {
  color: #c91c56;
  text-decoration: none;
  font-weight: 700;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

.opening-notice {
  position: fixed;
  inset: 0;
  z-index: 140;
  background:
    radial-gradient(circle at 20% 15%, rgba(234, 43, 103, 0.10), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(229, 40, 102, 0.10), transparent 45%),
    rgba(18, 24, 20, 0.34);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 1rem;
  animation: openingNoticeFadeIn 260ms ease both;
}
.opening-notice__card {
  width: min(430px, 100%);
  background: linear-gradient(180deg, rgba(248,249,245,0.96), rgba(243,246,240,0.96));
  border: 1px solid rgba(211, 218, 205, 0.95);
  border-radius: 22px;
  box-shadow:
    0 22px 42px rgba(16, 21, 17, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.75);
  padding: 1.1rem 1rem 0.95rem;
  text-align: center;
  transform: translateY(6px) scale(0.985);
  animation: openingNoticeCardIn 360ms cubic-bezier(.2,.9,.2,1) both;
  position: relative;
  overflow: hidden;
}
.opening-notice__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,0.45) 48%, transparent 62%),
    radial-gradient(circle at 12% 12%, rgba(234,43,103,0.06), transparent 45%);
  opacity: 0.8;
  pointer-events: none;
}
.opening-notice__logo-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  min-height: 72px;
  position: relative;
  z-index: 1;
}
.opening-notice__logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(234, 43, 103, 0.08));
  animation: openingNoticeLogoFloat 2.2s ease-in-out infinite;
}
.opening-notice__logo-fallback {
  display: none;
  font-weight: 800;
  color: #ea2b67;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}
.opening-notice__logo-wrap.is-fallback .opening-notice__logo-fallback {
  display: block;
}
.opening-notice__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}
.opening-notice__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #da6c6c;
  box-shadow: 0 0 0 5px rgba(218,108,108,0.14);
}
.opening-notice__dot.open {
  background: #58b463;
  box-shadow: 0 0 0 5px rgba(88,180,99,0.16);
}
.opening-notice.is-break .opening-notice__dot {
  background: #da6c6c;
  box-shadow: 0 0 0 5px rgba(218,108,108,0.16);
}
.opening-notice.is-closed .opening-notice__dot {
  background: #da6c6c;
  box-shadow: 0 0 0 5px rgba(218,108,108,0.16);
}
.opening-notice.is-vacation .opening-notice__dot {
  background: #8e7cf3;
  box-shadow: 0 0 0 5px rgba(142,124,243,0.18);
}
.opening-notice__dot {
  animation: openingNoticePulse 1.2s ease-in-out infinite;
}
.opening-notice__title {
  font-weight: 800;
  font-size: 0.98rem;
  color: #233126;
  letter-spacing: -0.01em;
}
.opening-notice.is-open .opening-notice__title {
  color: #1f5a33;
}
.opening-notice.is-break .opening-notice__title {
  color: #9e2f2f;
}
.opening-notice.is-closed .opening-notice__title {
  color: #9e2f2f;
}
.opening-notice.is-vacation .opening-notice__title {
  color: #4d3cb6;
}
.opening-notice__meta {
  margin-top: 0.45rem;
  display: grid;
  gap: 0;
  justify-items: center;
  position: relative;
  z-index: 1;
}
.opening-notice__meta-text {
  color: #344137;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
.opening-notice__progress {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(209, 217, 206, 0.65);
  overflow: hidden;
  border: 1px solid rgba(211, 218, 205, 0.9);
}
.opening-notice__progress > span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #ea2b67, #cf1773 48%, #9f1bb0 100%);
  animation: openingNoticeProgress 3s linear forwards;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(18, 24, 20, 0.34);
  backdrop-filter: blur(5px);
  pointer-events: auto;
}
.cookie-banner__panel {
  width: min(760px, 100%);
  display: grid;
  gap: 0.9rem;
  background:
    radial-gradient(circle at 12% 15%, rgba(229, 40, 102, 0.08), transparent 42%),
    rgba(247, 248, 244, 0.97);
  border: 1px solid rgba(211, 217, 207, 0.95);
  border-radius: 20px;
  box-shadow:
    0 20px 40px rgba(16, 21, 17, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.65);
  padding: 1rem;
  backdrop-filter: blur(12px);
  pointer-events: auto;
}
.cookie-banner__text {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}
.cookie-banner__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.cookie-banner__head > div {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}
.cookie-banner__close {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d9ddd4;
  background: #fff;
  color: #5f6a61;
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-banner__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(229, 40, 102, 0.10);
  border: 1px solid rgba(229, 40, 102, 0.15);
  color: #c91c56;
  font-weight: 900;
  flex: 0 0 auto;
  line-height: 1;
}
.cookie-banner__icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.cookie-banner__text strong {
  font-size: 0.92rem;
  color: #243126;
  line-height: 1.1;
}
.cookie-banner__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: #fff0f6;
  border: 1px solid rgba(229, 40, 102, 0.16);
  color: #b71d54;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.cookie-banner__text span {
  color: #5f6a61;
  font-size: 0.83rem;
  line-height: 1.4;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.cookie-banner__legal {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  width: 100%;
  font-size: 0.78rem;
  color: #6c746d;
}
.cookie-banner__legal a {
  color: #c91c56;
  text-decoration: none;
  font-weight: 700;
}
.cookie-banner__legal a:hover {
  text-decoration: underline;
}
.cookie-btn {
  padding: 0.68rem 0.95rem;
  font-size: 0.8rem;
  min-height: 40px;
}

.cookie-options {
  display: grid;
  gap: 0.6rem;
}
.cookie-option {
  display: grid;
  gap: 0.32rem;
  border: 1px solid #d8ddd4;
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
  padding: 0.75rem 0.8rem;
}
.cookie-option.is-required {
  background: rgba(233, 246, 235, 0.7);
  border-color: #cfe2d3;
}
.cookie-option__left {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.cookie-option__left input[type="checkbox"] {
  appearance: auto;
  width: 16px;
  height: 16px;
  accent-color: #c91c56;
  margin: 0;
  min-width: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}
.cookie-option__title {
  font-weight: 800;
  color: #243126;
  font-size: 0.9rem;
}
.cookie-option__desc {
  color: #5f6a61;
  font-size: 0.82rem;
  line-height: 1.4;
}

.cookie-settings-btn {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 125;
  border: 1px solid #cfd6cc;
  background: rgba(247, 248, 244, 0.96);
  color: #334037;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(16, 21, 17, 0.08);
  backdrop-filter: blur(8px);
}

body.has-cookie-banner .cookie-settings-btn {
  display: none;
}

.submit-confirm {
  position: fixed;
  inset: 0;
  z-index: 145;
  background: rgba(18, 24, 20, 0.34);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.submit-confirm[hidden] {
  display: none;
}
.submit-confirm__card {
  width: min(420px, 100%);
  background: rgba(247, 248, 244, 0.98);
  border: 1px solid #d3d9cf;
  border-radius: 18px;
  box-shadow: 0 20px 36px rgba(16, 21, 17, 0.16);
  padding: 1rem;
  text-align: center;
}
.submit-confirm__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  background: #e9f6eb;
  color: #2f8c4b;
  border: 1px solid #cfe6d5;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.submit-confirm__title {
  font-weight: 800;
  font-size: 1rem;
  color: #243126;
}
.submit-confirm__text {
  margin-top: 0.35rem;
  color: #5c675f;
  font-size: 0.88rem;
  line-height: 1.45;
}
.submit-confirm__ok {
  margin-top: 0.85rem;
  width: 100%;
  justify-content: center;
}

/* Generic inner page blocks */
.page-wrap { background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero {
  padding: 2.2rem 0 1.4rem;
}
.page-hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.page-panel {
  background: #f6f7f3;
  border: 1px solid #d2d8ce;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.1rem;
}
.page-panel h1 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.page-panel p { color: var(--muted); line-height: 1.55; }
.media-panel {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d2d8ce;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.media-panel img { width: 100%; height: 100%; object-fit: cover; }
.content-grid {
  padding: 1rem 0 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}
.panel {
  background: #f7f8f4;
  border: 1px solid #d3d9cf;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem;
}
.panel h2 { margin: 0; font-size: 1.05rem; }
.panel-lead { margin: 0.45rem 0 0.9rem; color: var(--muted); line-height: 1.5; }
.about-team {
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1rem;
  align-items: stretch;
}
.about-team__media {
  border: 1px solid #cdd3c8;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f6f2;
  min-height: 360px;
}
.about-team__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.about-team__content h2 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.05;
}
.about-team__content p {
  color: var(--muted);
  line-height: 1.5;
}
.about-team__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 0.9rem;
}
.about-team__chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d5dbd1;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.35rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #324037;
}
.feature-list, .info-list, .contact-list, .order-steps { display: grid; gap: 0.7rem; }
.feature, .info-item-card, .contact-item, .order-step {
  border: 1px solid #d8ddd4;
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem;
}
.feature strong, .info-item-card strong, .contact-item strong, .order-step strong {
  display: block; margin-bottom: 0.25rem; font-size: 0.92rem;
}
.feature span, .info-item-card span, .contact-item span, .order-step span {
  color: var(--muted); font-size: 0.86rem; line-height: 1.45;
}
.form-grid { display: grid; gap: 0.8rem; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.form-grid[hidden],
[data-order-details][hidden],
[data-delivery-fields][hidden] { display: none !important; }
label { display: grid; gap: 0.35rem; font-weight: 700; font-size: 0.87rem; }
.label-title {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
label > span[aria-hidden="true"] {
  color: #c93153;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #d5dbd2;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0.75rem 0.8rem;
}
textarea { min-height: 120px; resize: vertical; }
.hours-list {
  margin: 0; padding: 0; list-style: none; display: grid; gap: 0.45rem;
}
.hours-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid #d7ddd4;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  background: #fff;
}
.hours-list li.today { border-color: #b8d1bd; background: #f0f6f1; box-shadow: inset 4px 0 0 #58b463; }
.day-pill { border: 1px solid #d7ddd4; border-radius: 999px; background: #fff; padding: 0.26rem 0.5rem; font-size: 0.75rem; font-weight: 700; }
.hours-label { color: var(--muted); font-size: 0.86rem; }
.hours-value { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.8rem; font-weight: 700; }
.hours-value.closed { color: #879086; }
.badge-row {
  display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.8rem;
}
.badge {
  border: 1px solid #d7ddd4;
  border-radius: 999px;
  background: #fff;
  color: #445147;
  padding: 0.38rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.check-choice {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #d5dbd2;
  border-radius: 10px;
  background: #fff;
  padding: 0.55rem 0.65rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #2a342d;
}
.check-choice input[type="checkbox"] {
  width: auto;
  margin: 0;
}
.delivery-radius-note {
  margin: 0.15rem 0 0.25rem;
  padding: 0.52rem 0.62rem;
  border-radius: 10px;
  border: 1px solid #d7ddd4;
  background: #fff;
  font-size: 0.8rem;
  line-height: 1.35;
}
.delivery-radius-note.is-ok {
  color: #1f5a33;
  border-color: #b8d9c0;
  background: #eef8f1;
}
.delivery-radius-note.is-error {
  color: #9e2f2f;
  border-color: #e4b6b6;
  background: #fff1f1;
}
.delivery-radius-note.is-warn {
  color: #6b5a26;
  border-color: #e6d8a3;
  background: #fff9e8;
}

@media (max-width: 1100px) {
  .product-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav-shell { grid-template-columns: auto auto 1fr auto; }
  .nav-toggle { display: inline-block; }
  .nav-cta {
    padding: 0.62rem 0.82rem;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .14s ease, transform .14s ease;
    z-index: 80;
  }
  .nav-shell { position: relative; }
  .nav-shell.nav-open .nav-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu a { display: block; }
  .nav-item-submenu > a::after {
    margin-left: auto;
  }
  .nav-submenu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin-top: 0.2rem;
    padding: 0.3rem;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #d9ded4;
    opacity: 0;
    transform: none;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height .2s ease, opacity .2s ease;
  }
  .nav-item-submenu.is-open .nav-submenu {
    opacity: 1;
    max-height: 260px;
    pointer-events: auto;
  }
  .info-grid,
  .split-story,
  .page-hero-shell,
  .content-grid { grid-template-columns: 1fr; }
  .hero-shell { min-height: calc(100svh - var(--top-strip-h) - var(--header-h)); }
  .about-team {
    grid-template-columns: 1fr;
  }
  .about-team__media,
  .about-team__media img {
    min-height: 260px;
  }
}

@media (max-width: 840px) {
  .hero-pill {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
  .hero-sub {
    max-width: 35rem;
    font-size: 0.9rem;
  }
  .btn {
    font-size: 0.84rem;
    padding: 0.72rem 0.95rem;
  }
}

@media (max-width: 700px) {
  .container { width: min(var(--container), calc(100% - 1rem)); }
  .top-strip {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
  .nav-shell {
    grid-template-columns: auto auto 1fr auto;
    gap: 0.5rem;
    min-height: 58px;
  }
  .brand-title {
    display: none;
  }
  .nav-toggle {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .nav-cta {
    padding: 0.58rem 0.72rem;
    font-size: 0.74rem;
    border-radius: 999px;
    min-height: 34px;
  }
  .nav-cta span { display: none; }
  .brand-logo {
    width: 30px;
    height: 30px;
  }
  .hero-title-logo img {
    max-height: 145px;
  }
  .hero-sub {
    font-size: 0.84rem;
    line-height: 1.35;
  }
  .btn-row {
    width: 100%;
    margin-top: 0.85rem;
  }
  .btn-row .btn {
    width: 100%;
    padding: 0.66rem 0.8rem;
    font-size: 0.8rem;
  }
  .hero-shell {
    min-height: auto;
  }
  .hero-content {
    padding: 1.2rem 0 1.5rem;
  }
  .section { padding: 1.55rem 0; }
  .page-hero {
    padding: 1.2rem 0 0.85rem;
  }
  .page-panel,
  .panel {
    padding: 0.8rem;
  }
  .page-panel h1 {
    font-size: clamp(1.25rem, 6.8vw, 1.7rem);
  }
  .section-header h2 {
    font-size: clamp(1.25rem, 7.1vw, 1.85rem);
  }
  .section-header p,
  .panel-lead {
    font-size: 0.82rem;
    line-height: 1.35;
  }
  .hero-content {
    padding: 1.2rem 0 1.5rem;
  }
  .section-header { flex-direction: column; align-items: flex-start; }
  .product-grid, .service-grid, .insta-grid { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr; }
  .insta-grid { gap: 0.7rem; }
  .product-media {
    aspect-ratio: 16 / 11;
  }
  .service-card img {
    aspect-ratio: 16 / 10;
  }
  .story-image, .story-image img { min-height: 215px; }
  .media-panel { min-height: 215px; }
  .footer-main { grid-template-columns: 1fr; gap: 1rem; }
  .footer-brand-logo {
    height: 74px;
  }
  .footer-hours li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .form-grid.two { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  label {
    font-size: 0.8rem;
    gap: 0.28rem;
  }
  input, select, textarea {
    padding: 0.6rem 0.62rem;
    font-size: 0.86rem;
  }
  textarea {
    min-height: 90px;
  }
  .hours-list li { grid-template-columns: auto 1fr; }
  .hours-value { grid-column: 1 / -1; padding-left: 2.6rem; }
  .hours-list li,
  .feature,
  .info-item-card,
  .contact-item,
  .order-step {
    padding: 0.6rem;
    border-radius: 10px;
  }
  body.has-cookie-banner {
    padding-bottom: 170px;
  }
  .cookie-banner {
    padding: 0.75rem;
  }
  .cookie-banner__panel {
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 16px;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .cookie-banner__head {
    gap: 0.45rem;
  }
  .cookie-banner__close {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 1.05rem;
  }
  .cookie-banner__icon {
    width: 30px;
    height: 30px;
  }
  .cookie-banner__text span {
    font-size: 0.8rem;
  }
  .cookie-option {
    padding: 0.7rem;
    border-radius: 12px;
  }
  .cookie-option__desc {
    font-size: 0.78rem;
  }
  .opening-notice {
    padding: 0.8rem;
  }
  .opening-notice__card {
    width: 100%;
    max-width: 100%;
    padding: 0.95rem 0.9rem 0.85rem;
    border-radius: 18px;
  }
  .opening-notice__logo-wrap {
    min-height: 58px;
    margin-bottom: 0.7rem;
  }
  .opening-notice__logo {
    max-width: 180px;
  }
  .opening-notice__status {
    gap: 0.55rem;
  }
  .opening-notice__title {
    font-size: 0.92rem;
  }
  .opening-notice__meta-text {
    font-size: 0.82rem;
  }
  .opening-notice__progress {
    margin-top: 0.75rem;
    height: 5px;
  }
  .cookie-settings-btn {
    left: 10px;
    bottom: 10px;
    font-size: 0.78rem;
    padding: 0.55rem 0.75rem;
  }
  .review-coupon {
    right: 8px;
    left: 8px;
    bottom: 62px;
    width: auto;
    padding: 0.7rem 0.72rem 0.66rem;
  }
  .review-coupon strong {
    font-size: 0.86rem;
  }
  .review-coupon p {
    font-size: 0.76rem;
    margin-bottom: 0.5rem;
  }
  .submit-confirm__card {
    padding: 0.9rem;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    min-height: 56px;
  }
  .hero-content {
    padding: 0.95rem 0 1.2rem;
  }
  .hero-pill {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0.28rem 0.54rem;
  }
  .hero-title-logo img {
    max-height: 118px;
  }
  .hero-sub {
    font-size: 0.78rem;
    max-width: 94%;
  }
  .section { padding: 1.25rem 0; }
  .page-panel,
  .panel {
    padding: 0.68rem;
    border-radius: 14px;
  }
  .nav-cta {
    padding: 0.5rem 0.6rem;
    font-size: 0.68rem;
  }
  .btn-row .btn {
    padding: 0.58rem 0.72rem;
    font-size: 0.76rem;
  }
  input, select, textarea {
    padding: 0.52rem 0.56rem;
    font-size: 0.8rem;
  }
  .review-coupon {
    width: calc(100% - 0.75rem);
    left: 6px;
    right: 6px;
    bottom: calc(52px + env(safe-area-inset-bottom));
  }
  .mini-legal .container {
    font-size: 0.62rem;
  }
}

@keyframes openingNoticeFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes openingNoticeCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes openingNoticePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes openingNoticeLogoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes openingNoticeProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@keyframes scrollArrowBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening-notice,
  .opening-notice__card,
  .opening-notice__logo,
  .opening-notice__dot,
  .opening-notice__progress > span {
    animation: none !important;
  }
}

/* Dedicated mobile layout */
@media (max-width: 700px) {
  .top-strip {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(247, 247, 244, 0.98);
  }

  .main {
    overflow-x: clip;
  }

  .nav-shell {
    min-height: 56px;
    grid-template-columns: auto auto 1fr;
    gap: 0.45rem;
  }

  .brand-title {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    order: 3;
    justify-self: end;
  }

  .nav-menu {
    top: calc(100% + 6px);
    left: 0.5rem;
    right: 0.5rem;
    border-radius: 12px;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-content {
    padding: 1rem 0 1.25rem;
  }

  .hero-title-logo img {
    max-height: 122px;
    width: min(92vw, 520px);
  }

  .hero-sub {
    margin-top: 0.55rem;
    font-size: 0.8rem;
    line-height: 1.35;
    max-width: 95%;
  }

  .btn-row {
    margin-top: 0.7rem;
    gap: 0.45rem;
  }

  .btn-row .btn {
    width: 100%;
    min-height: 38px;
    padding: 0.58rem 0.72rem;
    font-size: 0.76rem;
  }

  .section,
  .page-hero {
    padding: 1.1rem 0;
  }

  .section-header {
    margin-bottom: 0.75rem;
  }

  .section-header h2,
  .page-panel h1 {
    font-size: 1.38rem;
    line-height: 1.06;
  }

  .section-header p,
  .panel-lead,
  .story-text p,
  .service-card p,
  .product-copy {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .page-panel,
  .panel {
    padding: 0.7rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(16, 22, 18, 0.06);
  }

  .product-card,
  .service-card {
    border-radius: 12px;
  }

  .product-media {
    aspect-ratio: 16 / 10;
  }

  .service-card img,
  .story-image img,
  .media-panel img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .story-image,
  .media-panel {
    min-height: 0;
  }

  .story-quote {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.55rem 0.6rem;
    font-size: 0.72rem;
  }

  .form-grid,
  .feature-list,
  .info-list,
  .contact-list,
  .order-steps {
    gap: 0.5rem;
  }

  label {
    font-size: 0.76rem;
  }

  input,
  select,
  textarea {
    padding: 0.56rem 0.58rem;
    font-size: 0.82rem;
    border-radius: 9px;
  }

  textarea {
    min-height: 84px;
  }

  .hours-list li,
  .footer-hours li {
    border-radius: 9px;
    padding: 0.48rem 0.5rem;
  }

  .mini-legal .container {
    min-height: 50px;
    white-space: normal;
    font-size: 0.64rem;
    line-height: 1.35;
    padding: 0.2rem 0;
  }

  .mini-legal-line {
    white-space: normal;
  }

  .footer-col h4 {
    font-size: 0.76rem;
    margin-bottom: 0.45rem;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .footer-brand-logo {
    height: 66px;
  }

  .cookie-settings-btn {
    left: 8px;
    bottom: 8px;
    padding: 0.48rem 0.62rem;
    font-size: 0.72rem;
  }

  .review-coupon {
    left: 8px;
    right: 8px;
    width: auto;
    bottom: calc(52px + env(safe-area-inset-bottom));
    padding: 0.62rem 0.62rem 0.58rem;
    border-radius: 12px;
  }

  .review-coupon strong {
    font-size: 0.82rem;
  }

  .review-coupon p {
    font-size: 0.74rem;
    margin-bottom: 0.5rem;
  }

  .order-page .page-hero-shell {
    gap: 0.6rem;
  }

  .order-page .media-panel {
    min-height: 170px;
  }

  .order-page .badge-row {
    margin-top: 0.45rem;
    gap: 0.32rem;
  }

  .order-page .badge {
    font-size: 0.68rem;
    padding: 0.26rem 0.48rem;
  }

  .order-page .content-grid {
    padding: 0.65rem 0 1.4rem;
    gap: 0.65rem;
  }

  .order-page .panel h2 {
    font-size: 0.98rem;
  }

  .order-page .panel-lead {
    font-size: 0.75rem;
    margin: 0.25rem 0 0.65rem;
  }

  .order-page .form-grid {
    gap: 0.42rem;
  }

  .order-page textarea {
    min-height: 78px;
  }

  .order-page .btn-row {
    margin-top: 0.55rem;
  }

  .order-page .btn-row .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .order-page .media-panel {
    min-height: 145px;
  }

  .order-page .page-panel h1 {
    font-size: 1.2rem;
  }

  .order-page .panel h2 {
    font-size: 0.92rem;
  }

  .order-page .panel,
  .order-page .page-panel {
    padding: 0.62rem;
  }

  .order-page input,
  .order-page select,
  .order-page textarea {
    font-size: 0.78rem;
    padding: 0.5rem 0.54rem;
  }
}

/* Final global handset fit for all pages */
@media (max-width: 700px) {
  :root {
    --header-h: 56px;
  }

  .container {
    width: calc(100% - 0.9rem);
  }

  .section,
  .instagram-block,
  .page-hero {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .section-header {
    gap: 0.5rem;
  }

  .section-header h2 {
    font-size: 1.28rem;
  }

  .site-footer {
    padding-top: 1.2rem;
  }

  .footer-main {
    gap: 0.7rem;
    padding-bottom: 0.8rem;
  }

  .footer-hours {
    gap: 0.3rem;
  }

  .footer-hours li {
    padding: 0.4rem 0.45rem;
  }

  .info-strip {
    padding: 0.2rem 0;
  }

  .info-grid {
    min-height: 56px;
  }

  .product-body,
  .service-card .body {
    padding: 0.6rem;
  }

  .product-title,
  .service-card h3 {
    font-size: 0.9rem;
  }

  .cookie-banner__panel {
    max-height: 88vh;
    overflow: auto;
  }
}

/* Page-by-page mobile layouts */
@media (max-width: 700px) {
  .home-page .hero-shell {
    min-height: auto;
  }

  .home-page .hero-content {
    padding-top: 0.9rem;
    padding-bottom: 1.1rem;
  }

  .home-page .hero-title-logo img {
    max-height: 112px;
  }

  .home-page .info-strip {
    margin-top: 0;
  }

  .home-page .service-grid--three {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .home-page .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leistung-page .page-hero-shell,
  .about-page .page-hero-shell,
  .contact-page .page-hero-shell,
  .wedding-page .page-hero-shell,
  .event-page .page-hero-shell,
  .trauer-page .page-hero-shell {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .leistung-page .service-grid--three {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .leistung-page .content-grid,
  .about-page .content-grid,
  .contact-page .content-grid,
  .wedding-page .content-grid,
  .event-page .content-grid,
  .trauer-page .content-grid,
  .order-page .content-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding-top: 0.65rem;
  }

  .about-page .panel .feature-list,
  .contact-page .panel .feature-list,
  .order-page .panel .order-steps {
    gap: 0.45rem;
  }

  .contact-page .hours-list {
    gap: 0.35rem;
  }

  .wedding-page .detail-gallery,
  .event-page .detail-gallery,
  .trauer-page .detail-gallery {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .wedding-page .detail-gallery-wrap,
  .event-page .detail-gallery-wrap,
  .trauer-page .detail-gallery-wrap {
    padding-top: 1rem;
    padding-bottom: 0.9rem;
  }

  .wedding-page .badge-row,
  .event-page .badge-row,
  .trauer-page .badge-row {
    margin-top: 0.45rem;
    gap: 0.28rem;
  }

  .wedding-page .badge,
  .event-page .badge,
  .trauer-page .badge {
    font-size: 0.66rem;
    padding: 0.22rem 0.45rem;
  }

  .order-page .page-hero-shell {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .order-page [data-order-details] .btn-row {
    margin-top: 0.45rem;
  }
}

@media (max-width: 420px) {
  .home-page .insta-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-title-logo img {
    max-height: 98px;
  }

  .leistung-page .panel h2,
  .about-page .panel h2,
  .contact-page .panel h2,
  .order-page .panel h2,
  .wedding-page .panel h2,
  .event-page .panel h2,
  .trauer-page .panel h2 {
    font-size: 0.9rem;
  }
}

/* Final mobile polish pack */
@media (max-width: 700px) {
  body {
    background: #f2f3ef;
  }

  .home-page .hero-content {
    padding-top: 0.8rem;
    padding-bottom: 1rem;
  }

  .home-page .hero-pill {
    font-size: 0.6rem;
    letter-spacing: 0.09em;
    padding: 0.24rem 0.48rem;
  }

  .home-page .hero-title-logo img {
    max-height: 96px;
  }

  .home-page .hero-sub {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .home-page .section,
  .leistung-page .page-hero,
  .about-page .page-hero,
  .contact-page .page-hero,
  .order-page .page-hero,
  .wedding-page .page-hero,
  .event-page .page-hero,
  .trauer-page .page-hero {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .section-header h2,
  .page-panel h1 {
    font-size: 1.18rem;
    letter-spacing: -0.02em;
  }

  .page-panel,
  .panel,
  .product-card,
  .service-card,
  .story-image,
  .media-panel {
    border-radius: 10px;
  }

  .product-body,
  .service-card .body {
    padding: 0.52rem;
  }

  .product-title,
  .service-card h3 {
    font-size: 0.84rem;
  }

  .product-copy,
  .service-card p,
  .panel-lead,
  .feature span,
  .contact-item span,
  .order-step span {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .btn,
  .nav-toggle {
    min-height: 36px;
  }

  .btn-row .btn,
  .review-coupon .btn {
    font-size: 0.74rem;
    padding: 0.52rem 0.64rem;
  }

  .detail-gallery img,
  .insta-grid img {
    border-radius: 10px;
  }

  .footer-hours .day,
  .footer-hours .time {
    font-size: 0.74rem;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 0.7rem);
  }

  .home-page .hero-title-logo img {
    max-height: 82px;
  }

  .section-header h2,
  .page-panel h1 {
    font-size: 1.05rem;
  }

  .page-panel,
  .panel {
    padding: 0.58rem;
  }

  .review-coupon {
    left: 6px;
    right: 6px;
    bottom: calc(50px + env(safe-area-inset-bottom));
  }
}

/* Home mobile redesign (start page only) */
@media (max-width: 700px) {
  .home-page .hero-shell {
    background:
      linear-gradient(rgba(246, 247, 243, 0.36), rgba(246, 247, 243, 0.52)),
      url('hero-bg.jpg') center/cover no-repeat;
    min-height: calc(100svh - var(--header-h));
    padding-bottom: 0;
  }

  .home-page .hero-shell::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(245, 245, 241, 0.34));
  }

  .home-page .hero-content > div {
    width: 100%;
    max-width: 540px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0.35rem 0.45rem 1rem;
  }

  .home-page .hero-pill {
    margin-top: 0.1rem;
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(229, 40, 102, 0.2);
  }

  .home-page .scroll-indicator {
    margin-top: 0.85rem;
    font-size: 0.72rem;
    color: #2f3f35;
  }

  .home-page .scroll-indicator__arrow {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .home-page .info-strip {
    background: transparent;
    border-bottom: 0;
    padding: 0.2rem 0 0.45rem;
  }

  .home-page .info-grid--status-only .info-item {
    width: 100%;
  }

  .home-page [data-opening-widget].status-compact {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d8ddd4;
    border-radius: 12px;
    padding: 0.55rem 0.62rem;
    box-shadow: 0 4px 12px rgba(16, 21, 17, 0.05);
  }

  .home-page .section {
    padding-top: 0.9rem;
    padding-bottom: 0.95rem;
  }

  .home-page .section-header {
    margin-bottom: 0.6rem;
  }

  .home-page .product-grid,
  .home-page .service-grid--three {
    gap: 0.55rem;
  }

  .home-page #meisterstuecke .container {
    max-width: 640px;
  }

  .home-page #meisterstuecke .section-header {
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 0.7rem;
  }

  .home-page #meisterstuecke .section-header > div {
    width: 100%;
  }

  .home-page #meisterstuecke .section-header h2 {
    font-size: 1.02rem;
    width: 100%;
    text-align: center;
  }

  .home-page #meisterstuecke .section-header p {
    font-size: 0.72rem;
    line-height: 1.28;
    margin-top: 0.35rem;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .home-page #meisterstuecke .product-grid {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .product-card,
  .home-page .service-card {
    background: #f8f9f5;
    border: 1px solid #d7ddd3;
    box-shadow: 0 5px 12px rgba(16, 21, 17, 0.05);
  }

  .home-page .product-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
    border-bottom: 1px solid #dde2d9;
  }

  .home-page #meisterstuecke .product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .home-page .product-body,
  .home-page .service-card .body {
    padding: 0.48rem 0.5rem 0.54rem;
  }

  .home-page #meisterstuecke .product-title {
    font-size: 0.8rem;
    text-align: center;
  }

  .home-page #meisterstuecke .product-copy {
    font-size: 0.7rem;
    line-height: 1.25;
    margin-top: 0.26rem;
    text-align: center;
  }

  .home-page .split-story {
    gap: 0.7rem;
  }

  .home-page .story-text h2 {
    font-size: 1.35rem;
    line-height: 1.05;
  }

  .home-page .instagram-block {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .home-page .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
  }

  .home-page .insta-btn {
    margin-top: 0.7rem;
    font-size: 0.75rem;
    padding: 0.42rem 0.7rem;
  }
}

@media (max-width: 390px) {
  .home-page .hero-content > div {
    border-radius: 12px;
    padding: 0.62rem 0.55rem 0.68rem;
  }

  .home-page .hero-sub {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(214, 220, 210, 0.9);
    border-radius: 10px;
    padding: 0.46rem 0.5rem;
  }

  .home-page .insta-grid {
    grid-template-columns: 1fr;
  }

  .home-page #meisterstuecke .product-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .home-page #meisterstuecke .product-title {
    font-size: 0.76rem;
  }

  .home-page #meisterstuecke .product-copy {
    font-size: 0.68rem;
  }
}

/* Final mobile override: compact, clear home layout */
@media (max-width: 700px) {
  .home-page #meisterstuecke .container {
    max-width: 100%;
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }

  .home-page #meisterstuecke .section-header h2 {
    font-size: clamp(1.02rem, 4.8vw, 1.28rem);
    line-height: 1.08;
  }

  .home-page #meisterstuecke .section-header p {
    font-size: 0.74rem;
    max-width: 32ch;
  }

  .home-page #meisterstuecke .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }

  .home-page #meisterstuecke .product-card {
    border-radius: 11px;
    overflow: hidden;
  }

  .home-page #meisterstuecke .product-media {
    aspect-ratio: 4 / 3;
    max-height: 132px;
    min-height: 0;
  }

  .home-page #meisterstuecke .product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .home-page #meisterstuecke .product-body {
    padding: 0.44rem 0.46rem 0.5rem;
  }

  .home-page #meisterstuecke .product-title {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .home-page #meisterstuecke .product-copy {
    font-size: 0.67rem;
    line-height: 1.25;
    margin-top: 0.2rem;
  }
}

@media (max-width: 390px) {
  .home-page #meisterstuecke .container {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  .home-page #meisterstuecke .product-grid {
    gap: 0.44rem;
  }

  .home-page #meisterstuecke .product-media {
    max-height: 118px;
  }

  .home-page #meisterstuecke .product-title {
    font-size: 0.74rem;
  }

  .home-page #meisterstuecke .product-copy {
    font-size: 0.65rem;
  }
}

/* Mobile master override: all pages compact + consistent handset layout */
@media (max-width: 700px) {
  :root {
    --header-h: 54px;
    --info-strip-h: 52px;
  }

  .container {
    width: calc(100% - 0.85rem) !important;
  }

  .site-header {
    backdrop-filter: blur(6px);
  }

  .nav-shell {
    min-height: var(--header-h) !important;
    grid-template-columns: auto 1fr auto auto !important;
    gap: 0.4rem !important;
  }

  .brand-logo {
    width: 32px !important;
    height: 32px !important;
  }

  .nav-toggle {
    width: 33px !important;
    height: 33px !important;
    min-height: 33px !important;
  }

  .nav-menu a {
    font-size: 0.82rem !important;
    padding: 0.56rem 0.62rem !important;
  }

  .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.68rem !important;
    font-size: 0.72rem !important;
    min-height: 33px !important;
    white-space: nowrap;
  }

  .nav-cta span {
    display: inline !important;
  }

  .section,
  .page-hero,
  .instagram-block {
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
  }

  .section-header {
    margin-bottom: 0.62rem !important;
  }

  .section-header h2,
  .page-panel h1 {
    font-size: clamp(1.06rem, 5.2vw, 1.32rem) !important;
    line-height: 1.08 !important;
  }

  .section-header p,
  .panel-lead,
  .story-text p,
  .service-card p,
  .product-copy,
  .contact-item span,
  .feature span {
    font-size: 0.74rem !important;
    line-height: 1.32 !important;
  }

  .page-panel,
  .panel {
    padding: 0.66rem !important;
    border-radius: 11px !important;
  }

  .product-card,
  .service-card,
  .story-image,
  .media-panel {
    border-radius: 11px !important;
  }

  .product-body,
  .service-card .body {
    padding: 0.46rem 0.48rem 0.5rem !important;
  }

  .product-title,
  .service-card h3 {
    font-size: 0.8rem !important;
    line-height: 1.22 !important;
  }

  .product-grid,
  .service-grid,
  .content-grid,
  .detail-gallery,
  .split-story,
  .page-hero-shell {
    grid-template-columns: 1fr !important;
    gap: 0.56rem !important;
  }

  .story-image img,
  .media-panel img,
  .service-card img {
    aspect-ratio: 16 / 10 !important;
    min-height: 0 !important;
  }

  .story-quote {
    left: 0.45rem !important;
    right: 0.45rem !important;
    bottom: 0.45rem !important;
    padding: 0.48rem 0.5rem !important;
    font-size: 0.7rem !important;
  }

  label {
    font-size: 0.75rem !important;
  }

  input,
  select,
  textarea {
    font-size: 0.8rem !important;
    padding: 0.52rem 0.56rem !important;
    border-radius: 9px !important;
  }

  textarea {
    min-height: 84px !important;
  }

  .btn,
  .btn-row .btn {
    min-height: 35px !important;
    font-size: 0.76rem !important;
    padding: 0.5rem 0.62rem !important;
  }

  .footer-main {
    grid-template-columns: 1fr !important;
    gap: 0.72rem !important;
  }

  .footer-col h4 {
    font-size: 0.76rem !important;
    margin-bottom: 0.42rem !important;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 0.76rem !important;
    line-height: 1.36 !important;
  }

  .footer-brand-logo {
    height: 64px !important;
  }

  .mini-legal .container {
    min-height: 46px !important;
    font-size: 0.64rem !important;
  }

  /* Home page sequence + compact hero */
  .home-page .main {
    display: flex;
    flex-direction: column;
  }

  .home-page .main > * {
    order: initial;
  }

  .home-page .hero-shell {
    order: 1;
    min-height: 58svh !important;
    padding-bottom: 0 !important;
    background-position: center top !important;
  }

  .home-page .info-strip {
    order: 2;
    padding: 0.14rem 0 !important;
  }

  .home-page #meisterstuecke {
    order: 3;
  }

  .home-page .hero-content {
    padding: 0.72rem 0 0.85rem !important;
  }

  .home-page .hero-content > div {
    padding: 0.2rem 0.35rem 0.5rem !important;
  }

  .home-page .hero-title-logo img {
    max-height: 86px !important;
    width: min(88vw, 360px) !important;
  }

  .home-page .hero-pill {
    font-size: 0.58rem !important;
    padding: 0.22rem 0.45rem !important;
  }

  .home-page .hero-sub {
    font-size: 0.72rem !important;
    line-height: 1.28 !important;
    margin-top: 0.45rem !important;
    max-width: 32ch !important;
  }

  .home-page .scroll-indicator {
    margin-top: 0.54rem !important;
    font-size: 0.7rem !important;
  }

  .home-page .scroll-indicator__arrow {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.9rem !important;
  }

  .home-page .info-grid {
    min-height: 48px !important;
  }

  .home-page [data-opening-widget].status-compact {
    border-radius: 10px !important;
    padding: 0.44rem 0.52rem !important;
  }

  .home-page [data-opening-widget].status-compact .status-title {
    font-size: 0.64rem !important;
  }

  .home-page [data-opening-widget].status-compact .status-detail {
    font-size: 0.75rem !important;
  }

  .home-page #meisterstuecke .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.48rem !important;
  }

  .home-page #meisterstuecke .product-media {
    aspect-ratio: 4 / 3 !important;
    max-height: 132px !important;
    min-height: 0 !important;
  }

  .home-page #meisterstuecke .product-title {
    font-size: 0.78rem !important;
  }

  .home-page #meisterstuecke .product-copy {
    font-size: 0.66rem !important;
  }

  .home-page .service-grid--three {
    grid-template-columns: 1fr !important;
  }

  .home-page .insta-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.45rem !important;
  }

  .order-page .page-hero-shell {
    gap: 0.52rem !important;
  }

  .order-page .media-panel {
    min-height: 150px !important;
  }

  .order-page .panel h2 {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 0.68rem) !important;
  }

  .home-page .hero-title-logo img {
    max-height: 78px !important;
  }

  .home-page #meisterstuecke .product-grid {
    gap: 0.42rem !important;
  }

  .home-page #meisterstuecke .product-media {
    max-height: 116px !important;
  }

  .home-page .insta-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Desktop-like mobile fit: keep desktop structure, only scale down cleanly */
@media (max-width: 700px) {
  .home-page .main {
    display: block !important;
  }

  .home-page .hero-shell,
  .home-page .info-strip,
  .home-page #meisterstuecke {
    order: initial !important;
  }

  .container {
    width: min(var(--container), calc(100% - 1rem)) !important;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto auto !important;
    min-height: 56px !important;
  }

  .brand-title {
    display: inline !important;
    font-size: 0.95rem;
  }

  .nav-cta {
    font-size: 0.76rem !important;
    padding: 0.54rem 0.82rem !important;
  }

  .section,
  .page-hero,
  .instagram-block {
    padding-top: 1.15rem !important;
    padding-bottom: 1.15rem !important;
  }

  .section-header h2,
  .page-panel h1 {
    font-size: clamp(1.18rem, 5.8vw, 1.6rem) !important;
  }

  .section-header p,
  .panel-lead,
  .product-copy,
  .service-card p,
  .story-text p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }

  .page-panel,
  .panel {
    padding: 0.86rem !important;
    border-radius: 14px !important;
  }

  .home-page .hero-shell {
    min-height: calc(100svh - var(--header-h)) !important;
    background-position: center !important;
  }

  .home-page .hero-content {
    padding: 1rem 0 1.2rem !important;
  }

  .home-page .hero-title-logo img {
    max-height: 150px !important;
    width: min(92vw, 520px) !important;
  }

  .home-page .hero-sub {
    font-size: 0.83rem !important;
    max-width: 38ch !important;
  }


  .home-page .info-strip {
    padding: 0.26rem 0 !important;
  }

  .home-page [data-opening-widget].status-compact {
    padding: 0.58rem 0.68rem !important;
    border-radius: 12px !important;
  }

  .home-page [data-opening-widget].status-compact .status-title {
    font-size: 0.69rem !important;
  }

  .home-page [data-opening-widget].status-compact .status-detail {
    font-size: 0.82rem !important;
  }

  .home-page #meisterstuecke .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.62rem !important;
  }

  .home-page #meisterstuecke .product-media {
    aspect-ratio: 16 / 11 !important;
    max-height: 150px !important;
  }

  .home-page #meisterstuecke .product-title {
    font-size: 0.86rem !important;
  }

  .home-page #meisterstuecke .product-copy {
    font-size: 0.76rem !important;
  }
}

@media (max-width: 420px) {
  .brand-title {
    display: none !important;
  }

  .home-page #meisterstuecke .product-grid {
    grid-template-columns: 1fr !important;
  }

  .home-page .hero-title-logo img {
    max-height: 130px !important;
  }
}

/* Meisterstuecke: images full-bleed without visible frame */
.home-page #meisterstuecke .product-card {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.home-page #meisterstuecke .product-grid {
  justify-items: center;
}

.home-page #meisterstuecke .product-media {
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.home-page #meisterstuecke .product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page #meisterstuecke .product-body {
  margin-top: 0.18rem;
  padding-left: 0.1rem !important;
  padding-right: 0.1rem !important;
}

/* Mobile fix: opening status below hero must always show full two lines */
@media (max-width: 700px) {
  .home-page .info-strip {
    padding: 0.35rem 0 0.4rem !important;
  }

  .home-page .info-grid,
  .home-page .info-grid--status-only {
    min-height: auto !important;
  }

  .home-page .info-grid--status-only .info-item {
    width: 100%;
  }

  .home-page .info-grid--status-only [data-opening-widget].status-compact {
    width: 100%;
    max-width: 100%;
    padding: 0.62rem 0.68rem !important;
  }

  .home-page .info-grid--status-only [data-opening-widget].status-compact .status-row {
    align-items: flex-start;
    gap: 0.58rem;
  }

  .home-page .info-grid--status-only [data-opening-widget].status-compact .status-title {
    font-size: 0.7rem !important;
    line-height: 1.2;
    white-space: normal;
  }

  .home-page .info-grid--status-only [data-opening-widget].status-compact .status-detail {
    margin-top: 0.12rem;
    font-size: 0.84rem !important;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .cookie-banner__legal {
    justify-content: center;
    font-size: 0.74rem;
  }
}


/* Final home viewport lock: mobile first view like desktop */
@media (max-width: 700px) {
  .home-page .main {
    display: block !important;
  }

  .home-page .hero-shell {
    min-height: calc(100svh - var(--header-h) - 74px) !important;
    background-position: center center !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .home-page .hero-content {
    min-height: inherit !important;
    display: grid !important;
    place-items: center !important;
    text-align: center !important;
    padding: 0.9rem 0 !important;
  }

  .home-page .hero-content > div {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .home-page .hero-title-logo img {
    width: min(96vw, 620px) !important;
    max-height: 170px !important;
    object-fit: contain !important;
  }

  .home-page .hero-sub {
    max-width: 40ch !important;
    margin-top: 0.62rem !important;
  }

  .home-page .scroll-indicator {
    margin-top: 0.68rem !important;
  }

  .home-page .info-strip {
    padding: 0.28rem 0 0.35rem !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .home-page .info-grid--status-only [data-opening-widget].status-compact {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .home-page .hero-shell {
    min-height: calc(100svh - var(--header-h) - 88px) !important;
  }

  .home-page .hero-title-logo img {
    max-height: 148px !important;
  }
}

/* Visibility boost: logo + text easier to read */
.home-page .hero-shell {
  background:
    linear-gradient(rgba(247, 247, 244, 0.48), rgba(247, 247, 244, 0.58)),
    url('hero-bg.jpg') center/cover no-repeat !important;
}

.home-page .hero-shell::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(245, 245, 241, 0.34)) !important;
}

.home-page .hero-content > div {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.home-page .hero-title-logo img {
  max-height: 560px;
  filter: drop-shadow(0 10px 16px rgba(225, 28, 95, 0.18));
}

.home-page .hero-sub {
  color: #2f3a32;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.brand-title {
  color: #212a24;
  font-size: 1.1rem;
  font-weight: 800;
}

@media (max-width: 700px) {
  .home-page .hero-content > div {
    border-radius: 0;
    padding: 0 !important;
    background: transparent;
  }

  .home-page .hero-title-logo img {
    max-height: 240px !important;
    width: min(99vw, 760px) !important;
  }

  .home-page .hero-sub {
    font-size: 0.84rem !important;
    line-height: 1.35 !important;
    color: #27322b !important;
  }

  .brand-title {
    font-size: 0.98rem !important;
    color: #1f2822 !important;
  }
}

@media (max-width: 420px) {
  .home-page .hero-title-logo img {
    max-height: 190px !important;
  }
}

/* Final nav CTA size: desktop normal, mobile compact */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(198, 23, 90, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, #ea2b67 0%, #d91f61 100%);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 14px rgba(217, 31, 97, 0.22);
}

@media (max-width: 700px) {
  .nav-cta {
    min-height: 38px !important;
    padding: 0.7rem 1.05rem !important;
    font-size: 0.84rem !important;
    box-shadow: 0 4px 9px rgba(217, 31, 97, 0.2) !important;
  }
}

/* Leistungen hero merged: single modern block instead of split columns */
.leistung-page .page-hero {
  background:
    linear-gradient(rgba(247, 247, 244, 0.46), rgba(247, 247, 244, 0.6)),
    url('leistung-hero.JPG') center/cover no-repeat;
}

.leistung-page .leistung-hero-merged {
  min-height: clamp(340px, 56vh, 560px);
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.leistung-page .leistung-hero-merged__panel {
  width: min(760px, 100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d7ddd3;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(16, 21, 17, 0.08);
  padding: 1rem 1.05rem 1.1rem;
}

.leistung-page .leistung-hero-merged__panel h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 3.8vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.leistung-page .leistung-hero-merged__panel p {
  margin: 0.65rem auto 0;
  max-width: 46ch;
  color: #324037;
}

.leistung-page .leistung-hero-merged .badge-row {
  justify-content: center;
}

@media (max-width: 700px) {
  .leistung-page .leistung-hero-merged {
    min-height: calc(100svh - var(--header-h));
    padding: 0.72rem 0;
  }

  .leistung-page .leistung-hero-merged__panel {
    border-radius: 12px;
    padding: 0.7rem 0.72rem 0.78rem;
  }

  .leistung-page .leistung-hero-merged__panel h1 {
    font-size: clamp(1.25rem, 6.8vw, 1.9rem);
  }

  .leistung-page .leistung-hero-merged__panel p {
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: 34ch;
  }
}

/* Hochzeitsfloristik hero merged */
.wedding-page .page-hero {
  background:
    linear-gradient(rgba(247, 247, 244, 0.46), rgba(247, 247, 244, 0.6)),
    url('service-hochzeit.jpg') center 62%/cover no-repeat;
}

.wedding-page .wedding-hero-merged {
  min-height: clamp(340px, 56vh, 560px);
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.wedding-page .wedding-hero-merged__panel {
  width: min(760px, 100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d7ddd3;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(16, 21, 17, 0.08);
  padding: 1rem 1.05rem 1.1rem;
}

.wedding-page .wedding-hero-merged__panel h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 3.8vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.wedding-page .wedding-hero-merged__panel p {
  margin: 0.65rem auto 0;
  max-width: 46ch;
  color: #324037;
}

.wedding-page .wedding-hero-merged .badge-row {
  justify-content: center;
}

@media (max-width: 700px) {
  .wedding-page .page-hero {
    background-position: center center, center 68%;
  }

  .wedding-page .wedding-hero-merged {
    min-height: calc(100svh - var(--header-h));
    padding: 0.72rem 0;
  }

  .wedding-page .wedding-hero-merged__panel {
    border-radius: 12px;
    padding: 0.7rem 0.72rem 0.78rem;
  }

  .wedding-page .wedding-hero-merged__panel h1 {
    font-size: clamp(1.25rem, 6.8vw, 1.9rem);
  }

  .wedding-page .wedding-hero-merged__panel p {
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: 34ch;
  }
}

/* Event & Business hero merged */
.event-page .page-hero {
  background:
    linear-gradient(rgba(247, 247, 244, 0.46), rgba(247, 247, 244, 0.6)),
    url('leistung-event.jpg') center/cover no-repeat;
}

.event-page .event-hero-merged {
  min-height: clamp(340px, 56vh, 560px);
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.event-page .event-hero-merged__panel {
  width: min(760px, 100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d7ddd3;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(16, 21, 17, 0.08);
  padding: 1rem 1.05rem 1.1rem;
}

.event-page .event-hero-merged__panel h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 3.8vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.event-page .event-hero-merged__panel p {
  margin: 0.65rem auto 0;
  max-width: 46ch;
  color: #324037;
}

.event-page .event-hero-merged .badge-row {
  justify-content: center;
}

@media (max-width: 700px) {
  .event-page .event-hero-merged {
    min-height: calc(100svh - var(--header-h));
    padding: 0.72rem 0;
  }

  .event-page .event-hero-merged__panel {
    border-radius: 12px;
    padding: 0.7rem 0.72rem 0.78rem;
  }

  .event-page .event-hero-merged__panel h1 {
    font-size: clamp(1.25rem, 6.8vw, 1.9rem);
  }

  .event-page .event-hero-merged__panel p {
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: 34ch;
  }
}

/* Trauerfloristik hero merged */
.trauer-page .page-hero {
  background:
    linear-gradient(rgba(247, 247, 244, 0.5), rgba(247, 247, 244, 0.64)),
    url('trauer-hero.jpg') center/cover no-repeat;
}

.trauer-page .trauer-hero-merged {
  min-height: clamp(340px, 56vh, 560px);
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.trauer-page .trauer-hero-merged__panel {
  width: min(760px, 100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d7ddd3;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(16, 21, 17, 0.08);
  padding: 1rem 1.05rem 1.1rem;
}

.trauer-page .trauer-hero-merged__panel h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 3.8vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.trauer-page .trauer-hero-merged__panel p {
  margin: 0.65rem auto 0;
  max-width: 46ch;
  color: #324037;
}

.trauer-page .trauer-hero-merged .badge-row {
  justify-content: center;
}

@media (max-width: 700px) {
  .trauer-page .trauer-hero-merged {
    min-height: calc(100svh - var(--header-h));
    padding: 0.72rem 0;
  }

  .trauer-page .trauer-hero-merged__panel {
    border-radius: 12px;
    padding: 0.7rem 0.72rem 0.78rem;
  }

  .trauer-page .trauer-hero-merged__panel h1 {
    font-size: clamp(1.25rem, 6.8vw, 1.9rem);
  }

  .trauer-page .trauer-hero-merged__panel p {
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: 34ch;
  }
}

/* Home first view: hero + live opening time visible together */
.home-page {
  --home-info-visible-h: 90px;
}

.home-page .hero-shell {
  min-height: calc(100svh - var(--top-strip-h) - var(--header-h) - var(--home-info-visible-h)) !important;
}

@media (max-width: 700px) {
  .home-page {
    --home-info-visible-h: 94px;
  }

  .home-page .hero-shell {
    min-height: calc(100svh - var(--header-h) - var(--home-info-visible-h)) !important;
  }
}


/* About page modern hero */
.about-page .about-hero-modern {
  position: relative;
  min-height: calc(100svh - var(--top-strip-h) - var(--header-h));
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(247, 247, 244, 0.46), rgba(247, 247, 244, 0.6)),
    url('team.jpg') center/cover no-repeat;
}

.about-page .about-hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(980px 520px at 20% 30%, rgba(255, 255, 255, 0.24), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(245, 245, 241, 0.35));
  pointer-events: none;
}

.about-page .about-hero-modern__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  padding: 1rem 0 1.2rem;
}

.about-page .about-hero-modern__inner h1 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.about-page .about-hero-modern__inner p {
  margin: 0.85rem auto 0;
  max-width: 42ch;
  color: #2f3a32;
  font-weight: 700;
  line-height: 1.45;
}

.about-page .about-hero-modern__inner [data-opening-widget].card {
  margin: 0.8rem auto 0;
  width: min(440px, 100%);
  background: rgba(255, 255, 255, 0.92);
  border-color: #d7ddd3;
  box-shadow: 0 8px 14px rgba(16, 21, 17, 0.1);
}

@media (max-width: 700px) {
  .about-page .about-hero-modern {
    min-height: calc(100svh - var(--header-h));
  }

  .about-page .about-hero-modern__inner {
    padding: 0.7rem 0 0.8rem;
  }

  .about-page .about-hero-modern__inner h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .about-page .about-hero-modern__inner p {
    font-size: 0.84rem;
    max-width: 34ch;
  }
}

/* About page handset layout: dedicated compact/mobile fit */
@media (max-width: 700px) {
  .about-page .about-hero-modern {
    min-height: calc(100svh - var(--header-h));
    background-size: auto, cover !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: center center, 78% center !important;
  }

  .about-page .about-hero-modern__inner {
    padding: 0.65rem 0 0.85rem;
    max-width: 100%;
  }

  .about-page .hero-pill {
    font-size: 0.62rem;
    padding: 0.26rem 0.55rem;
  }

  .about-page .about-hero-modern__inner h1 {
    font-size: clamp(1.45rem, 7.4vw, 2.05rem);
    line-height: 1.02;
    margin-top: 0.55rem;
  }

  .about-page .about-hero-modern__inner p {
    font-size: 0.8rem;
    line-height: 1.36;
    max-width: 33ch;
    margin-top: 0.55rem;
  }

  .about-page .about-hero-modern::after {
    background:
      radial-gradient(980px 520px at 20% 30%, rgba(255, 255, 255, 0.16), transparent 62%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(245, 245, 241, 0.2)) !important;
  }

  .about-page .content-grid {
    padding-top: 0.72rem;
    padding-bottom: 1.1rem;
    gap: 0.58rem;
  }

  .about-page .panel {
    padding: 0.7rem;
    border-radius: 12px;
  }

  .about-page .panel h2 {
    font-size: 0.96rem;
  }

  .about-page .panel-lead {
    font-size: 0.76rem;
    line-height: 1.33;
    margin: 0.35rem 0 0.62rem;
  }

  .about-page .feature {
    padding: 0.58rem;
    border-radius: 10px;
  }

  .about-page .feature strong {
    font-size: 0.82rem;
  }

  .about-page .feature span {
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .about-page .insta-grid {
    grid-template-columns: 1fr !important;
    gap: 0.44rem !important;
  }

  .about-page .insta-grid img {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .about-page .about-team {
    margin-top: 0.65rem;
    margin-bottom: 1.2rem;
    gap: 0.58rem;
    grid-template-columns: 1fr;
  }

  .about-page .about-team__media,
  .about-page .about-team__media img {
    min-height: 230px;
    border-radius: 12px;
  }

  .about-page .about-team__content h2 {
    font-size: clamp(1.1rem, 6vw, 1.45rem);
    margin: 0.28rem 0 0.45rem;
  }

  .about-page .about-team__content p {
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .about-page .about-team__chips {
    gap: 0.34rem;
    margin: 0.52rem 0 0.62rem;
  }

  .about-page .about-team__chips span {
    font-size: 0.7rem;
    padding: 0.28rem 0.52rem;
  }
}

@media (max-width: 390px) {
  .about-page .about-hero-modern {
    background-size: auto, cover !important;
    background-position: center center, 80% center !important;
  }

  .about-page .about-hero-modern__inner h1 {
    font-size: 1.32rem;
  }

  .about-page .about-hero-modern__inner p {
    font-size: 0.76rem;
    max-width: 31ch;
  }

  .about-page .about-team__media,
  .about-page .about-team__media img {
    min-height: 205px;
  }
}

/* Hard final fix: home hero + live opening strip in first viewport */
.home-page .hero-shell {
  min-height: calc(100svh - var(--top-strip-h) - var(--header-h) - 132px) !important;
}

.home-page .hero-content {
  padding-top: 0.65rem !important;
  padding-bottom: 0.7rem !important;
}

.home-page .info-strip {
  margin-top: 0 !important;
}

@media (max-width: 700px) {
  .home-page .hero-shell {
    min-height: calc(100svh - var(--header-h) - 138px) !important;
  }

  .home-page .hero-content {
    padding-top: 0.5rem !important;
    padding-bottom: 0.55rem !important;
  }
}

/* Home badge lower by ~5cm */
.home-page .hero-pill {
  margin-top: 50px !important;
}

@media (max-width: 700px) {
  .home-page .hero-pill {
    margin-top: 32px !important;
  }
}

/* FINAL HOME VIEWPORT LOCK: hero + live status must be visible without scroll */
.home-page .hero-pill {
  margin-top: 0 !important;
}

.home-page .hero-shell {
  height: calc(100svh - var(--top-strip-h) - var(--header-h) - 118px) !important;
  min-height: calc(100svh - var(--top-strip-h) - var(--header-h) - 118px) !important;
  max-height: calc(100svh - var(--top-strip-h) - var(--header-h) - 118px) !important;
  overflow: hidden;
}

.home-page .hero-content {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}

.home-page .hero-title-logo img {
  max-height: min(30vh, 210px) !important;
}

.home-page .hero-sub {
  margin-top: 0.45rem !important;
}

.home-page .scroll-indicator {
  margin-top: 0.45rem !important;
}

@media (max-width: 700px) {
  .home-page .hero-pill {
    margin-top: 0 !important;
  }

  .home-page .hero-shell {
    height: calc(100svh - var(--header-h) - 122px) !important;
    min-height: calc(100svh - var(--header-h) - 122px) !important;
    max-height: calc(100svh - var(--header-h) - 122px) !important;
  }

  .home-page .hero-content {
    padding-top: 0.2rem !important;
    padding-bottom: 0.25rem !important;
  }

  .home-page .hero-title-logo img {
    max-height: min(28vh, 150px) !important;
  }
}

/* HOME VISUAL REFINEMENT: larger logo/text + live time still visible */
.home-page .hero-shell {
  height: calc(100svh - var(--top-strip-h) - var(--header-h) - 112px) !important;
  min-height: calc(100svh - var(--top-strip-h) - var(--header-h) - 112px) !important;
  max-height: calc(100svh - var(--top-strip-h) - var(--header-h) - 112px) !important;
}

.home-page .hero-content {
  padding-top: 0.5rem !important;
  padding-bottom: 0.55rem !important;
}

.home-page .hero-pill {
  margin-top: 0 !important;
  font-size: 0.72rem !important;
  padding: 0.34rem 0.72rem !important;
}

.home-page .hero-title-logo img {
  max-height: min(36vh, 280px) !important;
}

.home-page .hero-sub {
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
  max-width: 42ch !important;
  margin-top: 0.58rem !important;
}

.home-page .scroll-indicator {
  margin-top: 0.58rem !important;
  font-size: 0.78rem !important;
}

.home-page .info-strip {
  padding-top: 0.2rem !important;
  padding-bottom: 0.26rem !important;
}

.home-page [data-opening-widget].status-compact .status-title {
  font-size: 0.72rem !important;
}

.home-page [data-opening-widget].status-compact .status-detail {
  font-size: 0.86rem !important;
}

@media (max-width: 700px) {
  .home-page .hero-shell {
    height: calc(100svh - var(--header-h) - 116px) !important;
    min-height: calc(100svh - var(--header-h) - 116px) !important;
    max-height: calc(100svh - var(--header-h) - 116px) !important;
  }

  .home-page .hero-content {
    padding-top: 0.34rem !important;
    padding-bottom: 0.38rem !important;
  }

  .home-page .hero-pill {
    font-size: 0.66rem !important;
    padding: 0.3rem 0.62rem !important;
  }

  .home-page .hero-title-logo img {
    max-height: min(34vh, 190px) !important;
  }

  .home-page .hero-sub {
    font-size: 0.86rem !important;
    max-width: 34ch !important;
    margin-top: 0.46rem !important;
  }

  .home-page .scroll-indicator {
    margin-top: 0.42rem !important;
    font-size: 0.74rem !important;
  }

  .home-page .info-strip {
    padding-top: 0.16rem !important;
    padding-bottom: 0.22rem !important;
  }

  .home-page [data-opening-widget].status-compact {
    padding: 0.48rem 0.56rem !important;
  }

  .home-page [data-opening-widget].status-compact .status-title {
    font-size: 0.66rem !important;
  }

  .home-page [data-opening-widget].status-compact .status-detail {
    font-size: 0.8rem !important;
  }
}

/* FINAL HOME LAYOUT LOCK (user tune):
   - first viewport: only hero + live time
   - larger logo/text
   - scroll indicator fixed to hero bottom edge */
.home-page .hero-shell {
  height: calc(100svh - var(--top-strip-h) - var(--header-h) - 86px) !important;
  min-height: calc(100svh - var(--top-strip-h) - var(--header-h) - 86px) !important;
  max-height: calc(100svh - var(--top-strip-h) - var(--header-h) - 86px) !important;
}

.home-page .hero-content {
  position: relative;
  padding-top: 0.55rem !important;
  padding-bottom: 0.55rem !important;
}

.home-page .hero-content > div {
  position: relative;
  padding-bottom: 3rem !important;
}

.home-page .hero-pill {
  font-size: 0.76rem !important;
  padding: 0.36rem 0.76rem !important;
}

.home-page .hero-title-logo img {
  max-height: min(52vh, 430px) !important;
}

.home-page .hero-sub {
  font-size: 1.06rem !important;
  line-height: 1.36 !important;
  max-width: 44ch !important;
}

.home-page .scroll-indicator {
  position: absolute !important;
  left: 50%;
  bottom: -3.6rem;
  transform: translateX(-50%);
  margin-top: 0 !important;
  z-index: 2;
}

@media (max-width: 700px) {
  .home-page .hero-shell {
    height: calc(100svh - var(--header-h) - 92px) !important;
    min-height: calc(100svh - var(--header-h) - 92px) !important;
    max-height: calc(100svh - var(--header-h) - 92px) !important;
  }

  .home-page .hero-content {
    padding-top: 0.38rem !important;
    padding-bottom: 0.4rem !important;
  }

  .home-page .hero-content > div {
    padding-bottom: 2.45rem !important;
  }

  .home-page .hero-pill {
    font-size: 0.68rem !important;
    padding: 0.3rem 0.64rem !important;
  }

  .home-page .hero-title-logo img {
    max-height: min(48vh, 300px) !important;
  }

  .home-page .hero-sub {
    font-size: 0.9rem !important;
    max-width: 36ch !important;
  }

  .home-page .scroll-indicator {
    bottom: -3rem;
  }
}
