:root {
  --ink: #171a3a;
  --muted: #62647a;
  --cream: #fff9f1;
  --paper: #ffffff;
  --pink: #f43f86;
  --pink-dark: #d92c6f;
  --cyan: #32c9e8;
  --yellow: #ffd33d;
  --green: #69d33f;
  --line: rgba(23, 26, 58, 0.12);
  --shadow: 0 24px 70px rgba(36, 29, 65, 0.12);
  --radius-lg: 36px;
  --radius-md: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

button,
input,
textarea {
  border: 0;
}

.container {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 241, 0.91);
  border-bottom: 1px solid rgba(23, 26, 58, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  color: var(--pink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: clamp(26px, 2.3vw, 39px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 58px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 42px);
  margin-left: auto;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a,
.header-phone {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 3px;
  border-radius: 2px;
  background: var(--pink);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.header-phone {
  white-space: nowrap;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--pink);
}

.button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 30px;
  border: 2px solid var(--pink);
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 14px 34px rgba(244, 63, 134, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button span {
  font-size: 1.35em;
  line-height: 0;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  box-shadow: 0 18px 42px rgba(244, 63, 134, 0.31);
}

.button:hover span,
.button:focus-visible span {
  transform: translateX(4px);
}

.button-small {
  min-height: 50px;
  padding: 12px 22px;
  font-size: 14px;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 20px rgba(36, 29, 65, 0.1);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 72px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  align-items: center;
  gap: clamp(36px, 5vw, 82px);
  min-height: 650px;
}

.hero-copy {
  padding: 28px 0 42px;
  animation: rise-in 520ms both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(244, 63, 134, 0.13);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-weight: 900;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 5.05vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--pink);
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 530px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 14px;
}

.hero-note strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 18px;
}

.hero-note span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  animation: photo-reveal 740ms 80ms both;
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 44% 20% 36% 26% / 24% 18% 33% 27%;
  background-color: #dff6fb;
  background-image: linear-gradient(140deg, rgba(50, 201, 232, 0.22), rgba(255, 211, 61, 0.12)), url("../images/hero-production.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.hero-sticker {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(36, 29, 65, 0.14);
}

.hero-sticker-yellow {
  right: 18px;
  bottom: 34px;
  width: 112px;
  height: 112px;
  background: var(--yellow);
  transform: rotate(9deg);
}

.hero-sticker-blue {
  top: 28px;
  left: -32px;
  width: 72px;
  height: 72px;
  background: var(--cyan);
  color: #fff;
  font-size: 28px;
  transform: rotate(-9deg);
}

.hero-family-card {
  position: absolute;
  z-index: 4;
  left: -42px;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 310px;
  padding: 18px 22px;
  border: 1px solid rgba(23, 26, 58, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 48px rgba(36, 29, 65, 0.16);
  backdrop-filter: blur(12px);
}

.hero-family-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 20px;
}

.hero-family-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-family-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.dot-pattern {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 44px;
  width: 72px;
  height: 72px;
  opacity: 0.75;
  background-image: radial-gradient(circle, #fff 4px, transparent 5px);
  background-size: 18px 18px;
}

.hero-splash {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.9;
}

.hero-splash-one {
  width: 190px;
  height: 72px;
  right: -50px;
  bottom: 86px;
  background: var(--yellow);
  transform: rotate(-27deg);
}

.hero-splash-two {
  width: 150px;
  height: 56px;
  left: -70px;
  bottom: 25px;
  background: var(--green);
  transform: rotate(34deg);
}

.benefits-section {
  position: relative;
  z-index: 4;
  padding: 0 0 96px;
}

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

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 160px;
  padding: 30px;
  border: 1px solid rgba(23, 26, 58, 0.06);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 48px rgba(36, 29, 65, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(36, 29, 65, 0.12);
}

.benefit-icon {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.benefit-icon.pink { background: var(--pink); }
.benefit-icon.blue { background: var(--cyan); }
.benefit-icon.green { background: var(--green); }

.benefit-card h3 {
  margin: 2px 0 9px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 116px 0;
}

.about {
  background: #fff;
}

.about-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 150px);
}

.section-heading h2,
.booking-intro h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.about-copy > p,
.booking-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.7;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.about-points span {
  position: relative;
  padding: 18px 18px 18px 50px;
  border-radius: 18px;
  background: var(--cream);
  font-weight: 700;
}

.about-points span::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 17px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
}

.cafe {
  overflow: hidden;
  background: linear-gradient(135deg, #fff8ef 0%, #fffdf7 56%, #eefbfd 100%);
}

.cafe-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(58px, 9vw, 140px);
}

.cafe-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.cafe-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.cafe-features {
  position: relative;
  display: grid;
  gap: 16px;
}

.cafe-features::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 190px;
  height: 190px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: var(--yellow);
}

.cafe-features article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 28px 30px;
  border: 1px solid rgba(23, 26, 58, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(36, 29, 65, 0.08);
}

.cafe-features article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--cyan);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.cafe-features article:nth-child(2) > span { background: var(--pink); }
.cafe-features article:nth-child(3) > span { background: var(--green); }

.cafe-features h3 {
  margin: 1px 0 7px;
  font-size: 21px;
}

.cafe-features p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.birthday {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.birthday-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.birthday-card {
  position: relative;
  padding: 68px;
  border-radius: var(--radius-lg);
  background: var(--pink);
  box-shadow: 28px 28px 0 var(--yellow);
}

.birthday-badge {
  display: inline-block;
  margin-bottom: 30px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.birthday-card h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 63px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.birthday-card p {
  margin: 26px 0 34px;
  font-size: 18px;
  line-height: 1.65;
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
}

.birthday-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.birthday-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.birthday-steps li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.birthday-steps span {
  color: var(--cyan);
  font-size: 30px;
  font-weight: 900;
}

.birthday-steps p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.booking {
  background: linear-gradient(135deg, #fff8ef 0%, #fff 52%, #f1fbfd 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr);
  align-items: start;
  gap: clamp(50px, 8vw, 125px);
}

.booking-intro {
  position: sticky;
  top: 140px;
}

.booking-intro > p {
  margin-top: 26px;
  font-size: 18px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: 40px;
  padding: 26px;
  border-left: 6px solid var(--yellow);
  border-radius: 0 20px 20px 0;
  background: #fff;
}

.contact-card span {
  color: var(--muted);
  font-size: 14px;
}

.contact-card a {
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 900;
}

.form-shell {
  min-height: 650px;
  padding: clamp(28px, 4vw, 54px);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
}

.booking-form label > span {
  color: var(--pink);
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  background: #fbfbfd;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-form input {
  height: 58px;
  padding: 0 17px;
}

.booking-form textarea {
  min-height: 115px;
  padding: 17px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244, 63, 134, 0.1);
}

.consent {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px !important;
  color: var(--muted);
  font-weight: 500 !important;
  line-height: 1.45;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--pink);
}

.consent span {
  color: inherit !important;
}

.submit-button {
  width: 100%;
}

.form-note {
  margin: -7px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-error {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(217, 44, 111, 0.28);
  border-radius: 16px;
  background: rgba(244, 63, 134, 0.08);
  color: #a51f55;
  font-weight: 700;
  line-height: 1.5;
}

.success-message {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.success-message > span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 36px;
  font-weight: 900;
}

.success-message h3 {
  margin: 28px 0 8px;
  font-size: 38px;
}

.success-message p {
  max-width: 400px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.6;
}

.faq {
  background: #fff;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--pink);
  font-size: 27px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 0 25px;
  color: var(--muted);
  line-height: 1.7;
}

.contacts {
  background: var(--cream);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: end;
  gap: 60px;
  padding: clamp(38px, 6vw, 78px);
  border-radius: var(--radius-lg);
  background: var(--yellow);
}

.contact-panel p:not(.section-kicker) {
  margin: 24px 0 0;
  font-size: 18px;
}

.contact-panel .section-kicker {
  color: var(--ink);
}

.contact-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.contact-links a {
  border-bottom: 2px solid rgba(23, 26, 58, 0.25);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 900;
}

.site-footer {
  padding: 52px 0;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-light {
  color: #fff;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer-inner > a:last-child {
  color: var(--yellow);
  font-weight: 800;
}

.footer-links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.simple-page {
  min-height: 65vh;
  background: #fff;
}

.content-narrow {
  max-width: 900px;
}

.simple-page h1 {
  margin: 0 0 32px;
  font-size: clamp(42px, 6vw, 76px);
}

.entry-content {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes photo-reveal {
  from { opacity: 0; clip-path: inset(0 0 100% 0 round 44% 20% 36% 26%); transform: scale(0.985); }
  to { opacity: 1; clip-path: inset(0 0 0 0 round 44% 20% 36% 26%); transform: scale(1); }
}

@media (max-width: 1180px) {
  .site-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr); }
  .hero-visual { min-height: 560px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, 760px); }
  .header-inner { min-height: 76px; }
  .menu-toggle { display: flex; order: 4; }
  .header-actions .button { display: none; }
  .header-phone { font-size: 14px; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 12px; }
  .site-nav a::after { display: none; }
  .hero { padding-top: 36px; }
  .hero-grid,
  .about-grid,
  .cafe-grid,
  .birthday-grid,
  .booking-grid,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 20px; }
  .hero-copy { padding-bottom: 20px; }
  .hero-visual { min-height: 540px; }
  .hero-family-card { left: 18px; }
  .cafe-grid { gap: 54px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .section { padding: 86px 0; }
  .birthday-grid { gap: 72px; }
  .booking-grid { gap: 48px; }
  .booking-intro { position: static; }
  .contact-panel { align-items: start; }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 520px); }
  .header-phone { display: none; }
  .brand { font-size: 28px; }
  .hero { padding: 28px 0 50px; }
  .hero-grid { min-height: 0; }
  .hero-copy { padding-top: 18px; }
  .eyebrow, .section-kicker { margin-bottom: 18px; font-size: 12px; }
  h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-lead { margin-top: 24px; font-size: 17px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .hero-note { align-items: flex-start; }
  .hero-visual { min-height: 390px; margin-top: 12px; }
  .hero-sticker-yellow { right: -4px; width: 86px; height: 86px; }
  .hero-sticker-blue { left: -5px; width: 58px; height: 58px; }
  .hero-family-card { left: 12px; bottom: 20px; max-width: calc(100% - 24px); padding: 14px 16px; }
  .benefits-section { padding-bottom: 64px; }
  .benefit-card { padding: 23px; }
  .section { padding: 68px 0; }
  .about-points { grid-template-columns: 1fr; }
  .cafe-copy > p:not(.section-kicker) { font-size: 17px; }
  .cafe-features article { grid-template-columns: 50px 1fr; gap: 14px; padding: 22px 20px; }
  .cafe-features article > span { width: 48px; height: 48px; border-radius: 15px; }
  .birthday-card { padding: 38px 28px; box-shadow: 13px 14px 0 var(--yellow); }
  .birthday-card h2 { font-size: 40px; }
  .birthday-steps li { grid-template-columns: 52px 1fr; gap: 14px; }
  .birthday-steps p { font-size: 17px; }
  .booking-grid { gap: 36px; }
  .field-row { grid-template-columns: 1fr; }
  .form-shell { min-height: 0; padding: 26px 20px; border-radius: 26px; }
  .contact-card a { font-size: 27px; }
  .contact-panel { gap: 36px; padding: 34px 24px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
