:root {
  --page: #ffffff;
  --app-bg: #f7f7fb;
  --text: #1f1f24;
  --muted: #66666f;
  --red: #c73535;
  --green: #267348;
  --gold: #f6a623;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --font: "Roboto", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--font);
}

body.menu-open {
  overflow: hidden;
}

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

.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;
}

.wp-header {
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 28px clamp(28px, 4vw, 48px) 34px;
}

.site-title {
  display: grid;
  gap: 6px;
}

.site-title strong {
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: 0;
}

.site-title span {
  color: #555;
  font-size: clamp(15px, 2vw, 18px);
}

.menu-button {
  display: none;
  width: 64px;
  height: 64px;
  padding: 18px;
  border: 0;
  background: #fafafa;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #151515;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #3c3c42;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--red);
}

.hero-frame {
  position: relative;
  width: min(1120px, calc(100% - 56px));
  height: clamp(390px, 36vw, 500px);
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}

.hero-frame img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-frame img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 28px 22px;
}

.hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(37px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  white-space: nowrap;
}

.hero-content p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.34;
}

.primary-button,
.outline-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 700;
}

.primary-button {
  margin-top: 22px;
  background: var(--red);
  color: #ffffff;
}

.outline-button {
  border: 2px solid var(--red);
  color: var(--red);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px clamp(28px, 4vw, 48px) 0;
}

.site-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px, 4vw, 48px) 64px;
}

.site-main .hero-frame {
  width: min(1120px, 100%);
}

.section-title {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-title h2,
.text-card h2,
.split-card h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  line-height: 1.15;
}

.section-title p,
.text-card p,
.split-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  width: 280px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.service-card span {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
}

.service-card p {
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.45;
}

.service-card strong {
  margin-top: auto;
  font-size: 19px;
  font-weight: 900;
}

.service-card a {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.page-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 34px 0 0;
}

.page-card.narrow {
  max-width: 820px;
}

.page-card h1 {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.14;
}

.page-card h2 {
  margin: 34px 0 14px;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  line-height: 1.18;
}

.page-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.page-card p,
.page-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.page-card .lead {
  color: var(--text);
  font-size: 21px;
  line-height: 1.45;
}

.wp-prestations {
  max-width: 980px;
}

.wp-prestations p {
  color: #2f2f35;
  font-size: 19px;
  line-height: 1.48;
}

.wp-prestations .lead {
  max-width: 860px;
  color: var(--text);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.42;
}

.service-policy-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(199, 53, 53, 0.22);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  background: rgba(199, 53, 53, 0.055);
  color: #34343a !important;
  font-size: 16px !important;
  font-weight: 800;
  line-height: 1.45 !important;
}

.wp-booking-intro {
  margin-top: 34px;
}

.wp-booking-intro h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: clamp(31px, 5vw, 42px);
  font-weight: 500;
}

.wp-booking-intro h2 span {
  font-size: 34px;
}

.wp-category-choice {
  margin-top: 46px;
  text-align: center;
}

.wp-category-choice h2 {
  margin-bottom: 8px;
  font-size: clamp(29px, 4vw, 38px);
}

.wp-category-choice p {
  margin-top: 0;
  color: #717789;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.category-pills a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #dddfe6;
  border-radius: 999px;
  background: #fafafa;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  font-size: 17px;
  font-weight: 900;
}

.category-pills a:hover {
  border-color: var(--red);
  color: var(--red);
}

.category-reservation {
  max-width: 980px;
  text-align: center;
}

.category-reservation h1 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3.4vw, 44px);
}

.category-reservation > p {
  margin-top: 0;
  color: #717789;
  font-size: 18px;
}

.category-tabs {
  margin: 22px auto 28px;
}

.category-tabs a.is-active {
  border-color: #b21d53;
  background: #b21d53;
  color: #ffffff;
}

.compact-service-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.compact-service {
  padding: 16px 18px;
  border: 1px solid #e1e3ea;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(20, 20, 28, 0.05);
  text-align: left;
}

.compact-service-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}

.compact-service h3 {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.compact-service strong {
  color: #b21d53;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.compact-service a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #b21d53;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.cta-panel,
.category-block,
.pro-grid section,
.contact-form,
.contact-details section {
  border-radius: var(--radius);
  background: var(--app-bg);
}

.cta-panel {
  margin: 32px 0;
  padding: 24px;
}

.cta-panel .primary-button {
  width: fit-content;
}

.category-block {
  margin-top: 28px;
  padding: 24px;
}

.category-block h2 {
  margin-top: 0;
  text-align: center;
}

.pro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 30px;
}

.pro-grid section {
  padding: 20px;
}

.pro-grid ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.pro-grid li,
.check-list li {
  padding: 12px 14px;
  border-radius: 12px;
  background: #ffffff;
  font-weight: 700;
}

.atelier-page {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 22px;
}

.atelier-app-shell {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: #f7f7fb;
  box-shadow: inset 0 0 0 1px rgba(31, 31, 36, 0.04);
}

.atelier-app-title {
  margin: 0;
  padding: 38px 40px 32px;
  background: #f1ebf5;
  color: #1f1f24;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.atelier-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 34px 36px;
}

.atelier-card {
  padding: 28px;
  border: 1px solid rgba(31, 31, 36, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(31, 31, 36, 0.04);
}

.atelier-card-featured {
  grid-column: 1 / -1;
  background: #ffffff;
}

.atelier-card h2 {
  margin: 0 0 18px;
  color: #1f1f24;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}

.atelier-card p,
.atelier-card li {
  color: #29292f;
  font-size: 20px;
  line-height: 1.34;
}

.atelier-card p {
  margin: 0 0 22px;
}

.atelier-card p:last-child,
.atelier-card ul:last-child {
  margin-bottom: 0;
}

.atelier-card ul {
  margin: -6px 0 24px;
  padding-left: 22px;
  list-style: disc;
}

.atelier-card li {
  padding: 0;
  background: transparent;
}

.atelier-signature {
  grid-column: 1 / -1;
  margin: 8px 0 0 !important;
  padding: 28px 30px;
  border-radius: 22px;
  background: #ffffff;
  color: var(--text) !important;
  font-size: 25px !important;
  font-weight: 900;
  line-height: 1.28 !important;
  text-align: center;
}

.service-detail {
  text-align: left;
}

.service-id {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900;
}

.price-line {
  color: var(--text) !important;
  font-size: 22px !important;
  font-weight: 700;
}

.duration {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--app-bg);
  color: var(--text) !important;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .primary-button {
  border: 0;
  cursor: pointer;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-details section {
  padding: 20px;
}

.contact-details h2 {
  margin-top: 0;
}

.booking-page {
  max-width: 1040px;
}

.booking-page h1 {
  margin-bottom: 22px;
}

.booking-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid #e1e3ea;
  border-radius: 12px;
  background: #fafafa;
  color: #33343a;
  font-size: 17px;
}

.booking-summary strong {
  font-weight: 900;
}

.booking-page > h2 {
  color: #2b6f51;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
}

.booking-page > p {
  color: #33343a;
  font-size: 18px;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  margin-top: 30px;
  padding: 24px;
  border: 2px solid #f0f0f0;
  border-radius: 14px;
  background: #ffffff;
}

.booking-datebar {
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  text-align: center;
}

.booking-datebar strong {
  color: #222;
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
}

.booking-datebar button,
.booking-detail button {
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  background: #2b6f51;
  color: #ffffff;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.booking-detail button:disabled {
  background: #d8d6dc;
  color: #9a97a0;
  cursor: not-allowed;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
}

.slot-grid-message {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: #222;
  font-size: 20px;
  font-weight: 700;
}

.slot-grid button {
  min-height: 52px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  background: #dedede;
  color: #050505;
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.slot-grid button.is-selected {
  border-color: #2b6f51;
  background: #2b6f51;
  color: #ffffff;
}

.slot-grid button.is-disabled,
.slot-grid button:disabled {
  border-color: #e5e5e5;
  background: #f1f1f1;
  color: #8a8a8a;
  cursor: not-allowed;
}

.booking-detail {
  padding: 22px;
  border-radius: 12px;
  background: #fafafa;
}

.booking-detail h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 500;
}

.booking-detail p {
  color: #33343a;
  font-size: 17px;
  line-height: 1.45;
}

.booking-detail label {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  color: #33343a;
  font-size: 17px;
}

.booking-detail input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  background: #ffffff;
  font: inherit;
  font-size: 18px;
}

.client-fields {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid #e6e8ee;
}

.client-fields h3 {
  margin: 0;
  color: #1f1f24;
  font-size: 18px;
  font-weight: 900;
}

.client-fields label {
  margin: 0;
}

.booking-detail button {
  width: 100%;
  margin-top: 10px;
}

.booking-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: #b21d53 !important;
  font-size: 14px !important;
  font-weight: 800;
}

.booking-confirmation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 26px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid #dbe7df;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7fbf8 0%, #ffffff 62%);
  box-shadow: 0 12px 28px rgba(38, 115, 72, 0.1);
}

.booking-confirmation span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(43, 111, 81, 0.1);
  color: #2b6f51;
  font-size: 13px;
  font-weight: 900;
}

.booking-confirmation h2 {
  margin: 0 0 12px;
  color: #1f1f24;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
}

.booking-confirmation p {
  max-width: 620px;
  margin: 0;
  color: #5f6068;
  font-size: 17px;
  line-height: 1.5;
}

.booking-confirmation dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.booking-confirmation dl div {
  padding: 13px 14px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #eef0f4;
}

.booking-confirmation dt {
  margin-bottom: 4px;
  color: #7a7d86;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-confirmation dd {
  margin: 0;
  color: #1f1f24;
  font-size: 17px;
  font-weight: 900;
}

.confirmation-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.confirmation-actions button {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.confirmation-actions button:first-child {
  background: #eef0f4;
  color: #33343a;
}

.confirmation-actions button:last-child {
  background: #2b6f51;
  color: #ffffff;
}

.confirmation-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.confirmation-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #b21d53 !important;
  font-size: 15px !important;
  font-weight: 800;
  text-align: right;
}

.payment-status {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding-top: 54px;
}

.status-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 111, 81, 0.1);
  color: #2b6f51;
  font-size: 14px;
  font-weight: 900;
}

.status-badge.warning {
  background: rgba(199, 53, 53, 0.1);
  color: var(--red);
}

.payment-status h1 {
  margin-bottom: 0;
}

.payment-status.is-success .status-badge {
  background: rgba(43, 111, 81, 0.12);
  color: #2b6f51;
}

.payment-status.is-error .status-badge {
  background: rgba(199, 53, 53, 0.1);
  color: var(--red);
}

.payment-recap {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  background: var(--app-bg);
}

.payment-recap p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(199, 53, 53, 0.1);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-section {
  padding-top: 76px;
}

.split-card,
.text-card,
.review-score,
.contact-card {
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: var(--app-bg);
}

.app-actions {
  display: grid;
  gap: 12px;
}

.app-actions .primary-button {
  margin-top: 0;
}

.app-promo-card {
  background:
    linear-gradient(135deg, rgba(199, 53, 53, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
    var(--app-bg);
}

.app-promo-card h2 {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.12;
}

.app-promo-card p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #5f6068;
  font-size: 17px;
  line-height: 1.5;
}

.app-page .lead {
  max-width: 820px;
}

.app-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.app-benefit-grid section {
  padding: 22px;
  border-radius: 18px;
  background: var(--app-bg);
  box-shadow: inset 0 0 0 1px var(--line);
}

.app-benefit-grid h2 {
  margin-top: 0;
}

.app-download-panel {
  margin-top: 34px;
}

.text-card {
  padding: 30px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--app-bg);
  font-weight: 700;
}

.reviews {
  background: var(--page);
}

.review-score {
  width: min(640px, 100%);
  margin: 0 auto 28px;
  padding: 24px 20px;
  text-align: center;
}

.review-score strong {
  display: block;
  font-size: 22px;
}

.review-score span,
.stars {
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 0;
}

.review-score p {
  margin: 8px 0 10px;
}

.review-score b {
  font-size: 25px;
}

.review-cards article {
  width: 310px;
  min-height: 210px;
  padding: 18px;
  border-radius: 18px;
  background: #f5f5f5;
}

.review-head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
}

.review-head span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #6f52b5;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.review-head.blue span {
  background: #4a6fa5;
}

.review-head.violet span {
  background: #6c73c9;
}

.review-head em {
  color: #4285f4;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
}

.review-cards p {
  color: #333;
  line-height: 1.42;
}

.contact-section {
  padding-bottom: 70px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 20px;
  padding: 20px;
}

.map-preview {
  min-height: 320px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  border-radius: 18px;
  background:
    linear-gradient(35deg, transparent 48%, #ffffff 49%, #ffffff 52%, transparent 53%),
    linear-gradient(135deg, transparent 46%, #ffffff 47%, #ffffff 52%, transparent 53%),
    #f4f7fa;
  color: #20252b;
  text-align: center;
  box-shadow: inset 0 0 0 1px var(--line);
}

.map-pin {
  color: var(--red);
  font-size: 56px;
  line-height: 1;
}

.map-preview b {
  font-size: 20px;
}

.map-preview small {
  color: var(--muted);
  font-size: 15px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 16px;
  background: var(--app-bg);
}

.contact-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-list b {
  font-size: 17px;
  line-height: 1.25;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 26px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 860px) {
  .wp-header {
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 30;
  }

  .main-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 24px;
    background: #ffffff;
    color: var(--text);
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .wp-header.menu-visible .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .split-card,
  .app-benefit-grid,
  .atelier-card-grid,
  .contact-card,
  .pro-grid,
  .contact-details,
  .booking-shell,
  .booking-confirmation {
    grid-template-columns: 1fr;
  }

  .booking-datebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wp-header {
    padding: 28px 30px 72px;
  }

  .site-title strong {
    font-size: 27px;
  }

  .site-title span {
    font-size: 16px;
  }

  .menu-button {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
  }

  .hero-frame {
    width: calc(100% - 48px);
    min-height: 555px;
  }

  .hero-content h1 {
    font-size: 45px;
    white-space: normal;
  }

  .hero-content p {
    font-size: 24px;
  }

  .primary-button,
  .outline-button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
  }

  .section {
    padding: 58px 24px 0;
  }

  .atelier-page {
    padding-top: 0;
  }

  .atelier-app-shell {
    width: calc(100% + 48px);
    margin-left: -24px;
    border-radius: 0;
  }

  .atelier-app-title {
    padding: 34px 20px 30px;
    font-size: 28px;
  }

  .atelier-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px 28px;
  }

  .atelier-card {
    padding: 22px;
    border-radius: 18px;
  }

  .atelier-card h2 {
    font-size: 22px;
  }

  .atelier-card p,
  .atelier-card li {
    font-size: 19px;
  }

  .atelier-signature {
    padding: 24px 22px;
    font-size: 21px !important;
  }

  .service-card,
  .review-cards article {
    width: 100%;
  }

  .contact-section {
    padding-bottom: 58px;
  }

  .booking-shell {
    padding: 16px;
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-summary {
    display: grid;
  }

  .confirmation-actions {
    justify-content: stretch;
  }

  .confirmation-actions button {
    width: 100%;
  }
}
