@import url("assets/fonts/lexus-rodin.css");

:root {
  --bg: #050505;
  --panel: #111;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f6f3;
  --muted: #b9b9b3;
  --soft: #e5e0d6;
  --error: #d86a6a;
  --ok: #d8d1c2;
  --header-height: 68px;
  --entry-bar-height: 172px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Lexus Rodin", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--line);
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 28px;
}

.logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  color: #fff;
  font-family: "Lexus Rodin", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.home-page {
  padding-top: var(--header-height);
  padding-bottom: calc(var(--entry-bar-height) + env(safe-area-inset-bottom));
}

.mv-section {
  display: grid;
  justify-items: center;
  width: 100%;
  padding: 38px 20px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 220px),
    #000;
}

.mv-carousel {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #080706;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mv-carousel__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0;
  animation: heroFade 24s infinite;
}

.mv-carousel__image--1 {
  animation-delay: 0s;
}

.mv-carousel__image--2 {
  animation-delay: 6s;
}

.mv-carousel__image--3 {
  animation-delay: 12s;
}

.mv-carousel__image--4 {
  animation-delay: 18s;
}

@keyframes heroFade {
  0%,
  22% {
    opacity: 1;
  }

  27%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-carousel__image {
    animation: none;
  }

  .mv-carousel__image--1 {
    opacity: 1;
  }
}

.sweets-info {
  padding: 58px 24px 76px;
  background:
    linear-gradient(180deg, #000 0%, #050505 78%),
    #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sweets-info__inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.sweets-info__kicker {
  margin: 0 0 14px;
  color: #d6bd91;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.sweets-info__title {
  margin: 0;
  color: var(--text);
  font-family: "Lexus Rodin", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.24;
}

.sweets-info__lead {
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.event-date {
  margin: 34px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(214, 189, 145, 0.46);
  border-bottom: 1px solid rgba(214, 189, 145, 0.46);
}

.event-date div {
  display: grid;
  grid-template-columns: 7em minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
}

.event-date dt {
  color: #d6bd91;
  font-size: 0.92rem;
}

.event-date dd {
  margin: 0;
  color: var(--text);
  font-family: "Lexus Rodin", sans-serif;
  font-size: clamp(1.34rem, 3.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.45;
}

.sweets-info__body {
  display: grid;
  gap: 18px;
  color: var(--soft);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.sweets-info__body p,
.sweets-info__note {
  margin: 0;
}

.sweets-info__note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.instagram-section {
  padding: 0 24px 76px;
  background: #050505;
}

.instagram-section__inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.instagram-section__kicker {
  margin: 0 0 10px;
  color: #d6bd91;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.instagram-section__title {
  margin: 0 0 26px;
  color: var(--text);
  font-family: "Lexus Rodin", sans-serif;
  font-size: clamp(1.48rem, 3.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
}

.instagram-embed {
  display: flex;
  justify-content: center;
  width: 100%;
}

.instagram-embed .instagram-media {
  width: min(540px, 100%) !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 !important;
  border-radius: 8px !important;
}

.rz-reservation {
  padding: 0 24px 76px;
  background: #050505;
}

.rz-reservation__inner {
  display: grid;
  gap: 28px;
  width: min(860px, 100%);
  margin: 0 auto;
  padding-top: 46px;
  border-top: 1px solid rgba(214, 189, 145, 0.46);
}

.rz-reservation__intro {
  text-align: center;
}

.rz-reservation__kicker {
  margin: 0 0 10px;
  color: #d6bd91;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.rz-reservation__title {
  margin: 0;
  color: var(--text);
  font-family: "Lexus Rodin", sans-serif;
  font-size: clamp(1.48rem, 3.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
}

.rz-reservation__link {
  display: grid;
  gap: 16px;
  justify-items: center;
  width: min(560px, 100%);
  margin: 0 auto;
  color: var(--text);
  text-align: center;
  text-decoration: none;
}

.rz-reservation__link img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.rz-reservation__link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  color: #090909;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.04) 48%),
    linear-gradient(135deg, #f5e6c8 0%, #c69c5e 49%, #edd09b 100%);
  border: 1px solid #f1ddba;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(85, 54, 16, 0.22),
    0 12px 26px rgba(0, 0, 0, 0.3);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 600;
}

.rz-reservation__link:hover span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08) 48%),
    linear-gradient(135deg, #fff0cf 0%, #d8ad6b 50%, #f4dba8 100%);
  border-color: #fff0cf;
}

.home-social-section,
.home-line-section {
  padding: 58px 24px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-line-section {
  padding-top: 52px;
  background: #0a0a0a;
}

.home-section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.home-instagram {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
}

.home-section-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.home-section-copy--wide {
  width: min(820px, 100%);
  margin-bottom: 26px;
}

.home-section-kicker {
  margin: 0;
  color: #ddbd84;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-section-copy h2 {
  margin: 0;
  color: var(--text);
  font-family: "Lexus Rodin", sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 2.28rem);
  font-weight: 600;
  line-height: 1.35;
}

.home-section-copy p {
  margin: 0;
  color: var(--soft);
  font-size: clamp(0.96rem, 1.4vw, 1.06rem);
  line-height: 1.8;
}

.home-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  padding: 10px 18px;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(229, 224, 214, 0.72);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.home-outline-button:hover {
  color: #050505;
  background: var(--soft);
  border-color: var(--soft);
}

.home-line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 52px;
  padding: 12px 24px;
  color: #050505;
  background: linear-gradient(180deg, #f2d49d 0%, #d6ae6a 100%);
  border: 1px solid rgba(250, 226, 178, 0.88);
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease;
}

.home-line-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.instagram-embed-wrap {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.instagram-embed-wrap .instagram-media {
  width: min(100%, 540px) !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}

.entry-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  padding: 18px 28px calc(18px + env(safe-area-inset-bottom));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #191919 0%, #070707 100%);
  border-top: 1px solid rgba(221, 189, 132, 0.58);
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.48);
}

.entry-bar__inner {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(300px, 440px);
  gap: 28px;
  align-items: center;
  width: min(1200px, 100%);
  min-height: 92px;
  margin: 0 auto;
}

.entry-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  color: #ddbd84;
}

.entry-bar__icon svg {
  display: block;
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.entry-bar__copy {
  min-width: 0;
}

.entry-bar__copy p {
  margin: 0;
}

.entry-bar__title {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.34em;
  color: var(--text);
  font-family: "Lexus Rodin", sans-serif;
  font-size: clamp(1.28rem, 2.1vw, 1.82rem);
  font-weight: 600;
  line-height: 1.35;
  word-break: keep-all;
}

.entry-bar__title span {
  color: #ddbd84;
}

.entry-bar__lead,
.entry-bar__description,
.entry-bar__note {
  color: var(--soft);
  font-size: clamp(0.86rem, 1.2vw, 0.98rem);
  line-height: 1.65;
}

.entry-bar__description,
.entry-bar__lead {
  margin-top: 8px;
}

.entry-bar__description {
  color: #f1eadb;
}

.entry-bar__note {
  color: #fff;
}

.entry-button,
.submit-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--soft);
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.entry-button,
.submit-button {
  width: min(420px, 100%);
  padding: 14px 28px;
  background: #000;
  font-weight: 600;
}

.entry-button {
  gap: 18px;
  justify-content: space-between;
  min-height: 68px;
  padding: 16px 28px;
  color: #090909;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.04) 48%),
    linear-gradient(135deg, #f5e6c8 0%, #c69c5e 49%, #edd09b 100%);
  border-color: #f1ddba;
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(85, 54, 16, 0.22),
    0 12px 26px rgba(0, 0, 0, 0.3);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  white-space: nowrap;
}

.entry-button__arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.submit-button:hover,
.secondary-button:hover {
  background: var(--text);
  color: #000;
  border-color: var(--text);
}

.entry-button:hover {
  color: #050505;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08) 48%),
    linear-gradient(135deg, #fff0cf 0%, #d8ad6b 50%, #f4dba8 100%);
  border-color: #fff0cf;
}

.page-shell {
  min-height: 100vh;
  padding-top: var(--header-height);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 220px),
    var(--bg);
}

.page-main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.form-panel {
  padding: 44px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-title {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 500;
  line-height: 1.35;
}

.page-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1rem;
}

.notice {
  margin: 0 0 30px;
  padding: 16px 18px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 0.95rem;
}

.entry-primary {
  display: grid;
  gap: 18px;
  margin: 0 0 34px;
}

.entry-section-title {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.45;
}

.entry-alternatives {
  display: grid;
  gap: 18px;
}

.entry-section-divider {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.entry-section-divider::before,
.entry-section-divider::after {
  content: "";
  flex: 1 1 0;
  min-width: 24px;
  border-top: 1px solid var(--line);
}

.entry-section-divider span {
  flex: 0 1 auto;
  text-align: center;
}

.entry-action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.entry-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(229, 224, 214, 0.34);
  border-radius: 4px;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.entry-action-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--soft);
}

.entry-action-button--mail {
  grid-column: 1 / -1;
  min-height: 58px;
  background: rgba(229, 224, 214, 0.08);
}

.entry-action-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.entry-action-button--disabled,
.entry-action-button:disabled {
  color: rgba(246, 246, 243, 0.42);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.12);
  cursor: not-allowed;
}

.entry-action-button--disabled:hover,
.entry-action-button:disabled:hover {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.12);
}

.message {
  margin: 0 0 24px;
  padding: 18px;
  border-radius: 6px;
}

.message--ok {
  color: var(--ok);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(229, 224, 214, 0.35);
}

.message--error {
  color: #fff;
  background: rgba(216, 106, 106, 0.14);
  border: 1px solid rgba(216, 106, 106, 0.5);
}

.entry-form,
.application-form {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field-label {
  color: var(--soft);
  font-size: 0.94rem;
}

.split-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.split-field {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.split-field span {
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1;
  white-space: nowrap;
}

.field input:not([type="checkbox"]),
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--text);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  outline: none;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(229, 224, 214, 0.9) 50%),
    linear-gradient(135deg, rgba(229, 224, 214, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.field input:not([type="checkbox"]):focus,
.field select:focus {
  border-color: var(--soft);
  box-shadow: 0 0 0 3px rgba(229, 224, 214, 0.12);
}

.field input:not([type="checkbox"])[readonly] {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.field-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.field-note a {
  color: var(--soft);
  text-underline-offset: 0.22em;
}

.check-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.check-option input {
  width: 20px;
  height: 20px;
  margin: 0.22em 0 0;
  accent-color: #d3b174;
}

.check-option__body {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
  min-width: 0;
}

.check-option__label {
  color: var(--text);
}

.check-option__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.check-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.check-group legend {
  padding: 0 8px;
  color: var(--soft);
  font-size: 0.94rem;
}

.check-group__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.field-error {
  color: #f1a6a6;
  font-size: 0.86rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.entry-form .form-actions {
  margin-top: 2px;
}

.entry-form .submit-button {
  width: 100%;
  min-height: 58px;
  padding: 13px 16px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.secondary-button {
  min-width: 180px;
  padding: 11px 18px;
  background: transparent;
  font-size: 0.92rem;
}

.thanks-lines {
  display: grid;
  gap: 18px;
  margin: 0 0 30px;
  color: var(--soft);
  font-size: 1.04rem;
}

.thanks-lines p {
  margin: 0;
}

.local-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 54px 20px;
  color: var(--muted);
  background: #000;
  border-top: 1px solid var(--line);
  text-align: center;
}

.local-footer img {
  display: block;
  width: auto;
  height: 28px;
  margin-bottom: 6px;
}

.local-footer .logo-fallback {
  margin-bottom: 6px;
}

.local-footer p {
  margin: 0;
}

.local-footer__name {
  color: var(--text);
  font-size: 1rem;
}

.local-footer__address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.8;
}

.local-footer__hours {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.local-footer__address a,
.local-footer__link {
  color: var(--text);
  text-decoration: none;
}

.local-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.92rem;
}

.local-footer__address a:hover,
.local-footer__link:hover {
  text-decoration: underline;
}

@media (min-width: 641px) and (max-width: 900px) {
  :root {
    --entry-bar-height: 184px;
  }

  .sweets-info {
    padding: 52px 24px 68px;
  }

  .instagram-section {
    padding: 0 24px 68px;
  }

  .rz-reservation {
    padding: 0 24px 68px;
  }

  .rz-reservation__inner {
    padding-top: 40px;
  }

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

  .entry-bar {
    padding: 18px 24px calc(18px + env(safe-area-inset-bottom));
  }

  .entry-bar__inner {
    grid-template-columns: 62px minmax(0, 1fr) minmax(260px, 340px);
    gap: 18px;
  }

  .entry-bar__icon {
    width: 62px;
    height: 62px;
  }

  .entry-bar__icon svg {
    width: 56px;
    height: 56px;
  }

  .entry-bar__title {
    font-size: 1.22rem;
  }

  .entry-bar__lead,
  .entry-bar__description,
  .entry-bar__note {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .entry-button {
    width: 100%;
    min-height: 62px;
    padding: 14px 22px;
    font-size: 0.96rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 60px;
    --entry-bar-height: 252px;
  }

  .site-header {
    padding: 15px 18px;
  }

  .site-header__logo img {
    height: 24px;
  }

  .mv-section {
    padding: 24px 14px 0;
  }

  .mv-carousel {
    aspect-ratio: 4 / 5;
  }

  .sweets-info {
    padding: 38px 18px 58px;
  }

  .instagram-section {
    padding: 0 18px 58px;
  }

  .rz-reservation {
    padding: 0 18px 58px;
  }

  .rz-reservation__inner {
    gap: 22px;
    padding-top: 34px;
  }

  .home-social-section,
  .home-line-section {
    padding: 42px 16px;
  }

  .home-instagram {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .instagram-embed-wrap {
    padding: 10px;
  }

  .home-outline-button,
  .home-line-button {
    width: 100%;
  }

  .event-date div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-main {
    width: min(100% - 28px, 760px);
    padding: 40px 0 64px;
  }

  .form-panel {
    padding: 28px 20px;
  }

  .entry-action-buttons {
    grid-template-columns: minmax(0, 1fr);
  }

  .entry-section-divider {
    gap: 10px;
    font-size: 0.94rem;
  }

  .entry-button,
  .submit-button {
    min-height: 50px;
  }

  .entry-bar {
    padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
  }

  .entry-bar__inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
    min-height: 0;
  }

  .entry-bar__icon {
    width: 48px;
    height: 48px;
  }

  .entry-bar__icon svg {
    width: 44px;
    height: 44px;
  }

  .entry-bar__title {
    font-size: clamp(1.04rem, 5.1vw, 1.22rem);
  }

  .entry-bar__lead,
  .entry-bar__description,
  .entry-bar__note {
    font-size: clamp(0.76rem, 3.7vw, 0.88rem);
    line-height: 1.5;
  }

  .entry-bar__description,
  .entry-bar__lead {
    margin-top: 5px;
  }

  .entry-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 58px;
    padding: 12px 20px;
    font-size: clamp(0.92rem, 4.2vw, 1rem);
  }
}

.lp-index-main {
  width: min(960px, calc(100% - 40px));
}

.lp-index-panel {
  display: grid;
  gap: 26px;
}

.lp-index-panel .page-lead {
  margin-bottom: 0;
}

.lp-index-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-event-list {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.lp-event-item a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 96px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.lp-event-item__eyebrow,
.lp-event-item__title,
.lp-event-item__meta,
.lp-event-item__status {
  display: block;
}

.lp-event-item__eyebrow {
  margin-bottom: 6px;
  color: #d6bd91;
  font-size: 0.76rem;
}

.lp-event-item__title {
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.45;
}

.lp-event-item__meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.lp-event-item__status {
  min-width: 5.5em;
  padding: 7px 10px;
  color: var(--soft);
  border: 1px solid rgba(229, 224, 214, 0.34);
  border-radius: 999px;
  font-size: 0.82rem;
  text-align: center;
}

.lp-event-item a:hover .lp-event-item__title {
  color: #f4dba8;
}

@media (max-width: 640px) {
  .split-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .split-field {
    grid-template-columns: max-content minmax(44px, 1fr);
    gap: 6px;
  }

  .lp-event-item a {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .lp-event-item__status {
    width: fit-content;
  }
}
