:root {
  --may-cream: #FCEFD2;
  --may-sand: #F3D8AB;
  --may-amber: #E7C28F;
  --may-coffee: #3D2516;
  --may-ink: #26160C;
  --may-badge: rgba(235, 200, 152, 0.78);
  --may-white-soft: #fffaf0;
  --may-line: rgba(61, 37, 22, 0.14);
  --may-shadow: 0 18px 48px rgba(61, 37, 22, 0.14);
  --may-sage: #6f7f61;
  --may-rose: #bd745f;
  --may-radius-lg: 28px;
  --may-radius-md: 18px;
  --may-radius-sm: 12px;
  --may-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.may-home-ui {
  margin: 0;
  background:
    radial-gradient(circle at 35% 15%, #FCEFD2 0%, #F3D8AB 48%, #E7C28F 100%);
  color: var(--may-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

body.may-home-ui a {
  color: inherit;
  text-decoration: none;
}

body.may-home-ui img,
body.may-home-ui svg {
  display: block;
  max-width: 100%;
}

body.may-home-ui button,
body.may-home-ui input,
body.may-home-ui select,
body.may-home-ui textarea {
  font: inherit;
}

.may-page-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.may-container {
  width: min(var(--may-container), calc(100% - 40px));
  margin: 0 auto;
}

.may-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--may-radius-sm);
  background: var(--may-coffee);
  color: var(--may-white-soft);
}

.may-skip-link:focus {
  transform: translateY(0);
}

.may-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, 0.74);
  border-bottom: 1px solid var(--may-line);
  backdrop-filter: blur(18px);
}

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

.may-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.may-brand,
.may-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--may-coffee);
}

.may-brand__mark,
.may-logo-lockup__mark,
.may-icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  background: var(--may-coffee);
  color: var(--may-cream);
  box-shadow: 0 10px 24px rgba(61, 37, 22, 0.16);
}

.may-brand svg,
.may-logo-lockup svg,
.may-icon-bubble svg,
.may-play svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.may-app-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  min-width: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 240, 0.5);
  border-radius: 999px;
  background: rgba(61, 37, 22, 0.1);
  color: var(--may-coffee);
  overflow: visible;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.may-app-icon svg {
  width: 22px;
  height: 22px;
  max-width: none;
  overflow: visible;
}

.may-app-icon--phone { background: #fbe7dc; color: #9a351e; }
.may-app-icon--zalo,
.may-app-icon--telegram { background: #e5f3ff; color: #0b78c7; }
.may-app-icon--whatsapp { background: #e4f8ed; color: #128c4b; }
.may-app-icon--kakao { background: #fff3b7; color: #3a2c00; }
.may-app-icon--line { background: #e7f9df; color: #138a18; }
.may-app-icon--wechat { background: #e8f7e7; color: #168a28; }
.may-app-icon--messenger { background: #e8f0ff; color: #1f6bff; }
.may-app-icon--facebook { background: #e7efff; color: #1b55a9; }
.may-app-icon--instagram { background: linear-gradient(135deg, #fbe18a, #fc6d6d 45%, #7b4dff); color: #fff; }
.may-app-icon--tiktok { background: #141414; color: #fff; }
.may-app-icon--youtube { background: #ffe5e5; color: #d71920; }
.may-app-icon--google_map,
.may-app-icon--location { background: #edf7ea; color: #2f7d32; }
.may-app-icon--email { background: #edf3ff; color: #245ea8; }
.may-app-icon--booking,
.may-app-icon--calendar { background: #fff1d2; color: #9d5b05; }
.may-app-icon--chat { background: #f4eadf; color: var(--may-coffee); }

.may-brand__mark img,
.may-logo-lockup__mark img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.may-brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.may-brand small {
  display: block;
  color: rgba(61, 37, 22, 0.68);
  font-size: 0.78rem;
}

.may-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--may-line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.42);
}

.may-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(61, 37, 22, 0.78);
  font-size: 0.92rem;
  white-space: nowrap;
}

.may-nav a:hover,
.may-nav a:focus-visible {
  background: rgba(61, 37, 22, 0.08);
  color: var(--may-coffee);
}

.may-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.may-button:hover,
.may-button:focus-visible {
  transform: translateY(-1px);
}

.may-button--primary {
  background: var(--may-coffee);
  color: var(--may-white-soft);
  box-shadow: 0 14px 28px rgba(61, 37, 22, 0.18);
}

.may-button--soft {
  background: rgba(255, 250, 240, 0.74);
  border-color: var(--may-line);
  color: var(--may-coffee);
}

.may-button--small {
  min-height: 38px;
  padding: 8px 14px;
  background: var(--may-coffee);
  color: var(--may-white-soft);
  font-size: 0.88rem;
}

.may-button--wide {
  width: 100%;
}

.may-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--may-line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.8);
  color: var(--may-coffee);
}

.may-menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.may-mobile-menu {
  width: min(var(--may-container), calc(100% - 40px));
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid var(--may-line);
  border-radius: var(--may-radius-md);
  background: var(--may-white-soft);
  box-shadow: var(--may-shadow);
}

.may-mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--may-radius-sm);
  font-weight: 700;
}

.may-mobile-menu a:hover,
.may-mobile-menu a:focus-visible {
  background: rgba(231, 194, 143, 0.32);
}

.may-hero {
  padding: 52px 0 86px;
}

.may-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.may-logo-lockup {
  font-weight: 800;
  font-size: 1.04rem;
  margin-bottom: 22px;
}

.may-hero h1,
.may-section-head h2,
.may-booking-copy h2 {
  margin: 0;
  color: var(--may-coffee);
  line-height: 1.05;
  font-weight: 850;
}

.may-hero h1 {
  max-width: 760px;
  font-size: 4.35rem;
}

.may-hero__copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(38, 22, 12, 0.82);
  font-size: 1.18rem;
}

.may-hero__actions,
.may-coupon__actions,
.may-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.may-hero__actions {
  margin-top: 30px;
}

.may-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.may-trust-list li {
  border: 1px solid var(--may-line);
  border-radius: 999px;
  background: var(--may-badge);
  padding: 8px 12px;
  color: var(--may-coffee);
  font-weight: 700;
  font-size: 0.9rem;
}

.may-hero-card {
  position: relative;
  border: 1px solid rgba(255, 250, 240, 0.68);
  border-radius: 34px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.42);
  box-shadow: var(--may-shadow);
}

.may-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.may-hero-card__note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 240, 0.7);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 16px 34px rgba(61, 37, 22, 0.12);
}

.may-hero-card__note span,
.may-hero-card__note small,
.may-section-label,
.may-coupon__code span,
.may-coupon__code small,
.may-form-note,
.may-post-card__meta,
.may-short-card p,
.may-review-card span {
  color: rgba(61, 37, 22, 0.68);
  font-size: 0.84rem;
}

.may-hero-card__note strong {
  display: block;
  color: var(--may-coffee);
  font-size: 1.12rem;
}

.may-section {
  padding: 76px 0;
  background: var(--may-white-soft);
}

.may-section--pull {
  padding-top: 0;
  background: linear-gradient(to bottom, transparent 0, transparent 50%, var(--may-white-soft) 50%);
}

.may-section--tint {
  background:
    linear-gradient(180deg, rgba(252, 239, 210, 0.72), rgba(255, 250, 240, 0.94)),
    var(--may-white-soft);
}

.may-section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.may-section-head--left {
  margin-left: 0;
  text-align: left;
}

.may-section-label {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: none;
}

.may-section-head h2,
.may-booking-copy h2 {
  font-size: 2.55rem;
}

.may-section-head p,
.may-booking-copy p {
  margin: 14px 0 0;
  color: rgba(38, 22, 12, 0.72);
}

.may-coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 250, 240, 0.82);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(252, 239, 210, 0.84)),
    var(--may-white-soft);
  box-shadow: var(--may-shadow);
}

.may-coupon h2 {
  margin: 0;
  color: var(--may-coffee);
  font-size: 1.7rem;
  line-height: 1.18;
}

.may-coupon p {
  margin: 8px 0 0;
  color: rgba(38, 22, 12, 0.74);
}

.may-coupon__code {
  min-width: 190px;
  padding: 16px;
  border: 1px dashed rgba(61, 37, 22, 0.28);
  border-radius: 20px;
  background: rgba(231, 194, 143, 0.2);
}

.may-coupon__code strong {
  display: block;
  color: var(--may-coffee);
  font-size: 1.18rem;
}

.may-service-grid,
.may-benefit-grid,
.may-blog-grid,
.may-review-grid {
  display: grid;
  gap: 18px;
}

.may-service-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.may-service-grid--partial {
  max-width: 760px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
}

.may-service-card,
.may-benefit,
.may-post-card,
.may-review-card,
.may-booking-form,
.may-booking-highlights,
.may-short-card {
  border: 1px solid var(--may-line);
  border-radius: var(--may-radius-lg);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 32px rgba(61, 37, 22, 0.08);
}

.may-service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 20px;
}

.may-service-card__image,
.may-service-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--may-radius-sm);
  margin-bottom: 16px;
  background: var(--may-sand);
}

.may-service-card__image {
  object-fit: cover;
}

.may-service-card__placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(252, 239, 210, 0.95), rgba(231, 194, 143, 0.54)),
    radial-gradient(circle at 70% 20%, rgba(111, 127, 97, 0.18), transparent 38%);
}

.may-service-card h3,
.may-benefit h3,
.may-price-row h3,
.may-short-card h3,
.may-post-card h3,
.may-review-card strong {
  margin: 0;
  color: var(--may-coffee);
  line-height: 1.25;
}

.may-service-card h3 {
  margin-top: 18px;
  font-size: 1.12rem;
}

.may-service-card__image + h3,
.may-service-card__placeholder + h3 {
  margin-top: 0;
}

.may-service-card__subtitle {
  display: block;
  margin: 4px 0 0;
  color: var(--may-sage);
  font-weight: 800;
  font-size: 0.9rem;
}

.may-service-card p {
  display: -webkit-box;
  min-height: 4.55em;
  overflow: hidden;
  margin: 10px 0 0;
  color: rgba(38, 22, 12, 0.72);
  font-size: 0.95rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.may-service-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--may-coffee);
}

.may-service-card__meta span {
  color: rgba(61, 37, 22, 0.62);
}

.may-card-actions {
  margin-top: 16px;
}

.may-card-actions a {
  flex: 1 1 116px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(231, 194, 143, 0.28);
  color: var(--may-coffee);
  font-weight: 800;
  font-size: 0.84rem;
  text-align: center;
}

.may-pricing {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 24px;
  align-items: start;
}

.may-tabs {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2;
  gap: 8px;
  margin-bottom: -6px;
}

.may-tab {
  min-height: 40px;
  border: 1px solid var(--may-line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--may-coffee);
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 800;
}

.may-tab.is-active {
  background: var(--may-coffee);
  color: var(--may-white-soft);
}

.may-price-list {
  grid-column: 2;
  display: grid;
  gap: 10px;
}

.may-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--may-line);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.86);
}

.may-price-row span {
  color: rgba(61, 37, 22, 0.64);
}

.may-price-row strong {
  color: var(--may-coffee);
  white-space: nowrap;
}

.may-booking-selection {
  grid-column: 1 / -1;
  margin: -2px 0 4px;
  padding: 10px 12px;
  border: 1px solid rgba(111, 127, 97, 0.22);
  border-radius: 14px;
  background: rgba(111, 127, 97, 0.1);
  color: var(--may-coffee);
  font-weight: 800;
}

.may-booking-preview {
  grid-column: 1 / -1;
  margin: -6px 0 4px;
  padding: 10px 12px;
  border: 1px dashed rgba(61, 37, 22, 0.18);
  border-radius: 14px;
  background: rgba(231, 194, 143, 0.16);
  color: rgba(61, 37, 22, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.may-booking-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.may-booking-notice--success {
  border: 1px solid rgba(111, 127, 97, 0.28);
  background: rgba(111, 127, 97, 0.12);
  color: #3d2516;
}

.may-booking-notice--error {
  border: 1px solid rgba(189, 116, 95, 0.3);
  background: rgba(189, 116, 95, 0.12);
  color: #3d2516;
}

.may-booking-website {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.may-button.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.may-service-archive-hero,
.may-service-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 44px;
  background:
    radial-gradient(circle at 78% 18%, rgba(189, 116, 95, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(243, 216, 171, 0.76));
}

.may-service-archive-hero h1,
.may-service-hero h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  color: var(--may-coffee);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
}

.may-service-archive-hero p,
.may-service-hero p {
  max-width: 720px;
  margin: 0;
  font-size: 1.08rem;
  color: rgba(38, 22, 12, 0.78);
}

.may-service-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.may-service-filter a {
  padding: 9px 14px;
  border: 1px solid var(--may-line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--may-coffee);
  font-weight: 700;
}

.may-service-filter a.is-active,
.may-service-filter a:hover {
  background: var(--may-coffee);
  color: var(--may-white-soft);
}

.may-service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  color: rgba(61, 37, 22, 0.66);
  font-size: 0.92rem;
  font-weight: 800;
}

.may-service-breadcrumb a {
  color: var(--may-coffee);
}

.may-empty-state,
.may-service-archive-cta,
.may-service-final-cta {
  text-align: center;
}

.may-empty-state {
  padding: 54px 18px;
  border: 1px solid var(--may-line);
  border-radius: var(--may-radius-md);
  background: rgba(255, 250, 240, 0.7);
}

.may-page-content {
  background: var(--may-white-soft);
}

.may-rich-content {
  max-width: 820px;
  color: rgba(38, 22, 12, 0.76);
  font-size: 1.02rem;
  line-height: 1.75;
}

.may-rich-content h2,
.may-rich-content h3 {
  color: var(--may-coffee);
}

.may-rich-content a {
  color: var(--may-rust);
  font-weight: 800;
}

.may-service-archive-cta {
  margin-top: 32px;
}

.may-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.may-service-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
}

.may-service-hero__subtitle {
  display: block;
  margin: -2px 0 14px;
  color: var(--may-sage);
  font-size: 1.05rem;
}

.may-service-hero__meta strong,
.may-service-hero__meta span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.84);
  color: var(--may-coffee);
  font-weight: 800;
}

.may-service-hero__media {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: var(--may-radius-lg);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid var(--may-line);
}

.may-service-hero__placeholder {
  display: grid;
  place-items: center;
  gap: 14px;
  width: 100%;
  min-height: 320px;
  padding: 26px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(111, 127, 97, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(252, 239, 210, 0.96), rgba(231, 194, 143, 0.54));
}

.may-service-hero__placeholder strong {
  color: var(--may-coffee);
  font-size: 1.3rem;
}

.may-service-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.may-service-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
}

.may-service-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--may-line);
  border-radius: var(--may-radius-md);
  object-fit: cover;
  background: var(--may-sand);
}

.may-service-gallery img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}

.may-service-content {
  max-width: 820px;
  font-size: 1.05rem;
}

.may-service-content > *:first-child {
  margin-top: 0;
}

.may-service-package-list {
  display: grid;
  gap: 12px;
}

.may-service-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--may-line);
  border-radius: var(--may-radius-md);
  background: rgba(255, 250, 240, 0.88);
}

.may-service-package:hover {
  border-color: rgba(111, 127, 97, 0.3);
  box-shadow: 0 12px 28px rgba(61, 37, 22, 0.08);
}

.may-service-package h3,
.may-service-detail-block h2,
.may-service-final-cta h2 {
  margin: 0;
  color: var(--may-coffee);
}

.may-service-package span,
.may-service-package p {
  display: block;
  margin: 4px 0 0;
  color: rgba(38, 22, 12, 0.68);
}

.may-service-package strong {
  color: var(--may-coffee);
  font-size: 1.2rem;
  white-space: nowrap;
}

.may-service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.may-service-detail-block {
  padding: 22px;
  border: 1px solid var(--may-line);
  border-radius: var(--may-radius-md);
  background: rgba(255, 250, 240, 0.76);
}

.may-service-detail-block h2 {
  font-size: 1.18rem;
}

.may-service-detail-block:hover {
  border-color: rgba(111, 127, 97, 0.28);
}

.may-service-detail-block ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.may-service-detail-block li + li {
  margin-top: 8px;
}

.may-service-final-cta {
  background: var(--may-coffee);
  color: var(--may-white-soft);
}

.may-service-final-cta h2 {
  margin-bottom: 18px;
  color: var(--may-white-soft);
}

.may-benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.may-benefit {
  min-height: 168px;
  padding: 18px;
  background: var(--may-badge);
}

.may-benefit span {
  display: inline-flex;
  color: var(--may-coffee);
  margin-bottom: 16px;
}

.may-benefit svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.may-benefit h3 {
  font-size: 1rem;
}

.may-booking-section {
  background:
    linear-gradient(90deg, rgba(61, 37, 22, 0.9), rgba(61, 37, 22, 0.74)),
    radial-gradient(circle at 20% 20%, #FCEFD2, #E7C28F);
  color: var(--may-white-soft);
}

.may-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.may-booking-copy h2,
.may-booking-copy .may-section-label {
  color: var(--may-white-soft);
}

.may-booking-copy p {
  color: rgba(255, 250, 240, 0.82);
}

.may-booking-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  background: rgba(255, 250, 240, 0.1);
  border-color: rgba(255, 250, 240, 0.2);
  box-shadow: none;
}

.may-booking-highlights strong {
  flex: 1 0 100%;
}

.may-booking-highlights span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 250, 240, 0.16);
  font-size: 0.86rem;
}

.may-contact-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 100%;
}

.may-contact-chip-list--center {
  justify-content: center;
}

.may-contact-chip-list a,
.may-contact-chip-list button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(201, 148, 58, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--may-coffee);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(61, 37, 22, 0.08);
}

.may-contact-chip-list .may-app-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
}

.may-contact-chip-list span:last-child {
  min-width: 0;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.may-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  color: var(--may-ink);
}

.may-field {
  display: grid;
  gap: 7px;
  grid-column: span 2;
}

.may-field--half {
  grid-column: span 1;
}

.may-field label {
  color: var(--may-coffee);
  font-weight: 800;
  font-size: 0.9rem;
}

.may-field label span[aria-hidden="true"] {
  color: #a6422d;
}

.may-field input,
.may-field select,
.may-field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  border: 1px solid var(--may-line);
  border-radius: 14px;
  background: #fffdf7;
  color: var(--may-ink);
  padding: 10px 12px;
  outline: none;
}

.may-field textarea {
  resize: vertical;
}

.may-field input:focus,
.may-field select:focus,
.may-field textarea:focus {
  border-color: rgba(61, 37, 22, 0.42);
  box-shadow: 0 0 0 3px rgba(231, 194, 143, 0.35);
}

.may-form-note {
  grid-column: span 2;
  margin: -2px 0 0;
}

.may-video-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.may-short-card {
  overflow: hidden;
  padding: 12px;
}

.may-short-card__thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(61, 37, 22, 0.12), rgba(255, 250, 240, 0.26)),
    radial-gradient(circle at calc(30% + var(--video-step) * 6%) 26%, var(--may-cream), var(--may-amber) 58%, var(--may-rose));
}

.may-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  color: var(--may-coffee);
}

.may-short-card h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.may-short-card p {
  margin: 4px 0 2px;
}

.may-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.may-post-card {
  overflow: hidden;
}

.may-post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.may-post-card__body {
  padding: 18px;
}

.may-post-card__body > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--may-sage);
  font-weight: 800;
  font-size: 0.82rem;
}

.may-post-card h3 {
  font-size: 1.12rem;
}

.may-post-card p {
  color: rgba(38, 22, 12, 0.72);
}

.may-post-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.may-post-card a {
  color: var(--may-coffee);
  font-weight: 800;
}

.may-reviews {
  background: var(--may-white-soft);
}

.may-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.may-review-card {
  padding: 20px;
}

.may-stars {
  display: flex;
  gap: 3px;
  color: #b97837;
}

.may-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
}

.may-review-card p {
  color: rgba(38, 22, 12, 0.76);
}

.may-review-card span {
  display: block;
}

.may-faq {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  align-items: start;
}

.may-accordion {
  display: grid;
  gap: 10px;
}

.may-faq-item {
  border: 1px solid var(--may-line);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.86);
  overflow: hidden;
}

.may-faq-item__trigger {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--may-coffee);
  cursor: pointer;
  padding: 16px 18px;
  text-align: left;
  font-weight: 850;
}

.may-faq-item__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.may-faq-item__icon::before,
.may-faq-item__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.may-faq-item__icon::after {
  transform: rotate(90deg);
}

.may-faq-item__trigger[aria-expanded="true"] .may-faq-item__icon::after {
  transform: rotate(0deg);
}

.may-faq-item__panel {
  padding: 0 18px 18px;
  color: rgba(38, 22, 12, 0.74);
}

.may-faq-item__panel p {
  margin: 0;
}

.may-cta-rail {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  top: 50%;
  z-index: 40;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
  max-height: min(78vh, 440px);
  overflow: visible;
}

.may-cta-rail a,
.may-cta-rail button {
  position: relative;
  display: flex;
  width: 54px;
  height: 54px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--may-line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--may-coffee);
  box-shadow: 0 10px 24px rgba(61, 37, 22, 0.12);
  cursor: pointer;
  overflow: visible;
}

.may-cta-rail .may-app-icon {
  position: static;
  display: inline-flex;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-color: rgba(61, 37, 22, 0.08);
  opacity: 1;
  pointer-events: auto;
}

.may-cta-rail .may-app-icon svg {
  width: 24px;
  height: 24px;
}

.may-mobile-sticky button,
.may-footer-socials button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.may-cta-rail .may-cta-label {
  position: absolute;
  right: 64px;
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: var(--may-coffee);
  color: var(--may-white-soft);
  padding: 7px 10px;
  font-weight: 800;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: opacity 160ms ease;
}

.may-cta-rail a:hover .may-cta-label,
.may-cta-rail a:focus-visible .may-cta-label,
.may-cta-rail button:hover .may-cta-label,
.may-cta-rail button:focus-visible .may-cta-label {
  opacity: 1;
}

.may-mobile-sticky {
  display: none;
}

.may-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: min(420px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  pointer-events: none;
}

.may-chat-toggle,
.may-chat-panel {
  pointer-events: auto;
}

.may-chat-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  float: right;
  border: 1px solid rgba(255, 250, 240, 0.56);
  border-radius: 999px;
  background: var(--may-coffee);
  color: var(--may-white-soft);
  box-shadow: var(--may-shadow);
  cursor: pointer;
  padding: 11px 16px;
  font-weight: 850;
}

.may-chat-widget.is-open .may-chat-toggle {
  display: none;
}

.may-chat-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.may-chat-panel {
  clear: both;
  margin: 0 0 10px;
  overflow: hidden;
  border: 1px solid rgba(61, 37, 22, 0.16);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.98);
  box-shadow: var(--may-shadow);
  color: var(--may-ink);
  max-height: min(720px, calc(100vh - 120px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.may-chat-head {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 18px 18px 12px;
  background: rgba(231, 194, 143, 0.22);
}

.may-chat-head strong {
  display: block;
  color: var(--may-coffee);
  font-size: 1.05rem;
}

.may-chat-head p {
  margin: 6px 0 0;
  color: rgba(38, 22, 12, 0.72);
  font-size: 0.92rem;
}

.may-chat-close {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--may-line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  color: var(--may-coffee);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.may-chat-form {
  display: grid;
  gap: 12px;
  padding: 14px 18px 18px;
}

.may-chat-form .may-field {
  grid-column: auto;
}

.may-chat-form .may-field > span {
  color: var(--may-coffee);
  font-weight: 800;
  font-size: 0.88rem;
}

.may-chat-form .may-field input,
.may-chat-form .may-field select,
.may-chat-form .may-field textarea {
  min-height: 42px;
}

.may-chat-form b {
  color: #a6422d;
}

.may-footer {
  padding: 54px 0 40px;
  background: var(--may-coffee);
  color: rgba(255, 250, 240, 0.82);
}

.may-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 26px;
}

.may-footer .may-brand {
  color: var(--may-white-soft);
}

.may-footer h2 {
  margin: 0 0 10px;
  color: var(--may-white-soft);
  font-size: 1rem;
}

.may-footer p,
.may-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 250, 240, 0.78);
}

.may-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  max-width: 100%;
}

.may-footer-socials a,
.may-footer-socials button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(232, 200, 122, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.09);
  color: var(--may-white-soft);
  text-decoration: none;
  max-width: 100%;
}

.may-footer-socials .may-app-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-color: rgba(255, 250, 240, 0.28);
}

.may-footer-socials span:last-child {
  min-width: 0;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

@media (max-width: 1280px) {
  .may-nav a {
    padding-inline: 9px;
    font-size: 0.86rem;
  }

  .may-service-grid,
  .may-benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  }
}

@media (max-width: 980px) {
  .may-nav,
  .may-header__cta {
    display: none;
  }

  .may-menu-toggle {
    display: block;
  }

  .may-hero__grid,
  .may-pricing,
  .may-booking-grid,
  .may-faq,
  .may-service-hero__grid {
    grid-template-columns: 1fr;
  }

  .may-hero h1 {
    font-size: 3.2rem;
  }

  .may-pricing .may-section-head,
  .may-tabs,
  .may-price-list {
    grid-column: auto;
  }

  .may-coupon {
    grid-template-columns: 1fr;
  }

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

  .may-blog-grid,
  .may-review-grid {
    grid-template-columns: 1fr;
  }

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

  .may-service-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.admin-bar .may-header {
    top: 46px;
  }

  body.may-home-ui {
    padding-bottom: 82px;
  }

  .may-container {
    width: min(100% - 28px, var(--may-container));
  }

  .may-header__inner {
    min-height: 66px;
  }

  .may-brand small {
    display: none;
  }

  .may-hero {
    padding: 34px 0 58px;
  }

  .may-hero h1 {
    font-size: 2.62rem;
  }

  .may-hero__copy > p {
    font-size: 1.02rem;
  }

  .may-hero-card img {
    aspect-ratio: 16 / 12;
  }

  .may-hero-card__note {
    position: static;
    margin-top: 12px;
  }

  .may-section {
    padding: 56px 0;
  }

  .may-section--pull {
    padding-top: 0;
  }

  .may-section-head h2,
  .may-booking-copy h2 {
    font-size: 2rem;
  }

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

  .may-service-card {
    min-height: 292px;
  }

  .may-price-row {
    grid-template-columns: 1fr;
  }

  .may-service-package {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .may-service-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .may-service-gallery img:first-child {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .may-service-archive-hero,
  .may-service-hero {
    padding: 48px 0 30px;
  }

  .may-service-archive-hero h1,
  .may-service-hero h1 {
    font-size: 2.4rem;
  }

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

  .may-field,
  .may-field--half,
  .may-form-note,
  .may-booking-selection,
  .may-booking-preview,
  .may-booking-notice {
    grid-column: auto;
  }

  .may-cta-rail {
    display: none;
  }

  .may-mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 250, 240, 0.7);
    border-radius: 22px;
    background: rgba(255, 250, 240, 0.94);
    box-shadow: var(--may-shadow);
  }

  .may-mobile-sticky a,
  .may-mobile-sticky button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 16px;
    background: rgba(231, 194, 143, 0.28);
    color: var(--may-coffee);
    font-weight: 850;
    font-size: 0.82rem;
    min-width: 0;
    padding: 6px;
    text-align: center;
  }

  .may-mobile-sticky .may-app-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .may-mobile-sticky .may-app-icon svg {
    width: 21px;
    height: 21px;
  }

  .may-mobile-sticky span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .may-mobile-sticky .may-cta-label {
    position: static;
    opacity: 1;
    pointer-events: auto;
    white-space: normal;
  }

  .may-chat-widget {
    left: 16px;
    right: 16px;
    bottom: 92px;
    width: auto;
    max-width: none;
  }

  .may-chat-panel {
    max-height: min(620px, calc(100vh - 116px));
  }
}

@media (max-width: 430px) {
  .may-chat-widget {
    left: 10px;
    right: 10px;
    bottom: 86px;
  }

  .may-chat-head {
    padding: 14px 14px 10px;
  }

  .may-chat-form {
    padding: 12px 14px 16px;
  }
}

@media (max-width: 430px) {
  .may-container {
    width: min(100% - 22px, var(--may-container));
  }

  .may-brand strong {
    font-size: 0.92rem;
  }

  .may-brand__mark,
  .may-logo-lockup__mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .may-hero h1 {
    font-size: 2.24rem;
  }

  .may-hero__actions .may-button {
    width: 100%;
  }

  .may-service-grid,
  .may-benefit-grid,
  .may-video-row,
  .may-footer__grid,
  .may-service-gallery {
    grid-template-columns: 1fr;
  }

  .may-coupon,
  .may-booking-form {
    padding: 18px;
  }

  .may-mobile-sticky {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}

body.may-home-ui {
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(241, 231, 207, 0.76) 46%, rgba(229, 237, 225, 0.72)),
    var(--may-white-soft);
}

.may-page-shell {
  width: 100%;
  overflow-x: clip;
}

.may-hero {
  padding: 42px 0 78px;
}

.may-hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.84fr);
  gap: 54px;
}

.may-hero h1 {
  max-width: 720px;
  font-size: 4rem;
  letter-spacing: 0;
}

.may-hero__copy > p {
  max-width: 620px;
  font-size: 1.12rem;
}

.may-hero-card {
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.78);
}

.may-hero-card picture {
  display: block;
}

.may-hero-card img {
  aspect-ratio: 5 / 6;
  border-radius: 20px;
}

.may-trust-list li {
  background: rgba(111, 127, 97, 0.12);
  border-color: rgba(111, 127, 97, 0.22);
}

.may-coupon {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(235, 243, 231, 0.82)),
    var(--may-white-soft);
}

.may-coupon__media,
.may-coupon__icon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 18px;
}

.may-coupon__media {
  object-fit: cover;
}

.may-coupon__icon {
  display: grid;
  place-items: center;
  background: rgba(111, 127, 97, 0.14);
  color: var(--may-sage);
}

.may-coupon__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.may-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.may-service-card {
  min-height: 430px;
  padding: 16px;
  border-radius: 22px;
  background: #fffdf7;
}

.may-service-card:first-child,
.may-service-card.is-featured {
  grid-column: span 2;
}

.may-service-card__media {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(111, 127, 97, 0.12);
}

.may-service-card__image {
  width: 100%;
  aspect-ratio: 16 / 11;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.may-service-card:first-child .may-service-card__image,
.may-service-card.is-featured .may-service-card__image {
  aspect-ratio: 16 / 9;
}

.may-service-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--may-coffee);
  font-size: 0.78rem;
  font-weight: 850;
}

.may-service-card h3 {
  font-size: 1.18rem;
}

.may-service-card:first-child h3,
.may-service-card.is-featured h3 {
  font-size: 1.35rem;
}

.may-service-card p {
  min-height: 4.3em;
  -webkit-line-clamp: 3;
}

.may-service-card__meta {
  justify-content: flex-start;
  gap: 8px;
}

.may-service-card__meta strong,
.may-service-card__meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(111, 127, 97, 0.1);
  font-size: 0.84rem;
}

.may-service-card__meta strong {
  background: rgba(189, 116, 95, 0.12);
}

.may-card-actions a:last-child {
  background: var(--may-coffee);
  color: var(--may-white-soft);
}

.may-pricing {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.42fr);
  gap: 30px;
}

.may-tabs {
  margin-bottom: 2px;
}

.may-price-list {
  gap: 14px;
}

.may-price-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.96);
}

.may-price-row.is-featured {
  border-color: rgba(189, 116, 95, 0.32);
  box-shadow: 0 14px 34px rgba(61, 37, 22, 0.09);
}

.may-price-row__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 7px;
}

.may-price-row__eyebrow span,
.may-price-row__eyebrow b {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(111, 127, 97, 0.11);
  color: var(--may-sage);
  font-size: 0.76rem;
  font-weight: 850;
}

.may-price-row__eyebrow b {
  background: rgba(189, 116, 95, 0.13);
  color: var(--may-rose);
}

.may-price-row__main small {
  display: block;
  margin-top: 3px;
  color: rgba(61, 37, 22, 0.6);
  font-size: 0.86rem;
  font-weight: 750;
}

.may-price-row__main p {
  display: -webkit-box;
  max-width: 560px;
  margin: 8px 0 0;
  overflow: hidden;
  color: rgba(38, 22, 12, 0.72);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.may-price-row__meta {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.may-price-row__meta strong {
  font-size: 1.1rem;
}

.may-short-card__thumb {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.may-short-card h3,
.may-post-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.may-short-card p,
.may-post-card p,
.may-review-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.may-short-card p,
.may-post-card p {
  -webkit-line-clamp: 3;
}

.may-review-card p {
  -webkit-line-clamp: 5;
}

.may-review-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  gap: 12px;
}

.may-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.may-review-card__head img,
.may-review-card__head > span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
}

.may-review-card__head img {
  object-fit: cover;
}

.may-review-card__head > span {
  display: grid;
  place-items: center;
  background: rgba(111, 127, 97, 0.13);
  color: var(--may-sage);
  font-weight: 850;
}

.may-review-card__head small {
  display: block;
  color: rgba(61, 37, 22, 0.62);
  font-size: 0.82rem;
}

.may-faq-item__trigger {
  min-height: 64px;
}

.may-chat-widget {
  width: min(340px, calc(100vw - 24px));
}

.may-chat-toggle {
  min-height: 48px;
  padding: 10px 14px;
}

@media (max-width: 1280px) {
  .may-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 36px;
  }

  .may-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .may-service-card:first-child,
  .may-service-card.is-featured {
    grid-column: span 1;
  }
}

@media (max-width: 980px) {
  .may-hero__grid,
  .may-pricing {
    grid-template-columns: 1fr;
  }

  .may-coupon {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .may-coupon__actions,
  .may-coupon__code {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .may-hero {
    padding: 28px 0 48px;
  }

  .may-hero h1 {
    font-size: 2.45rem;
  }

  .may-hero-card img {
    aspect-ratio: 16 / 11;
  }

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

  .may-service-card {
    min-height: 360px;
  }

  .may-service-card:first-child,
  .may-service-card.is-featured {
    grid-column: span 2;
  }

  .may-price-row {
    grid-template-columns: 1fr;
  }

  .may-price-row__meta {
    justify-items: start;
  }

  .may-price-row .may-button {
    width: 100%;
  }

  .may-chat-widget {
    left: auto;
    right: 12px;
    bottom: 94px;
    width: min(320px, calc(100vw - 24px));
  }
}

@media (max-width: 544px) {
  .may-hero h1 {
    font-size: 2.16rem;
  }

  .may-service-card {
    min-height: 340px;
    padding: 13px;
  }

  .may-service-card p {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }

  .may-card-actions {
    gap: 8px;
  }

  .may-card-actions a {
    flex-basis: 100%;
  }
}

@media (max-width: 430px) {
  .may-hero-card {
    padding: 8px;
    border-radius: 20px;
  }

  .may-coupon {
    grid-template-columns: 1fr;
  }

  .may-coupon__media,
  .may-coupon__icon {
    width: 58px;
    height: 58px;
  }

  .may-service-grid {
    grid-template-columns: 1fr;
  }

  .may-service-card:first-child,
  .may-service-card.is-featured {
    grid-column: span 1;
  }

  .may-service-card {
    min-height: auto;
  }

  .may-price-row {
    padding: 15px;
  }

  .may-chat-widget {
    left: 10px;
    right: 10px;
    width: auto;
  }
}

.may-hero--banner {
  position: relative;
  min-height: var(--may-hero-desktop-height, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 0;
  background: var(--may-coffee);
}

.may-hero--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(38, 22, 12, var(--may-hero-overlay, 0.12));
}

.may-hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.may-hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--may-hero-position, center center);
}

.may-hero--banner .may-container {
  position: relative;
  z-index: 2;
}

.may-hero--banner .may-hero__copy {
  max-width: 650px;
  padding: 28px;
  border: 1px solid rgba(255, 250, 240, 0.58);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 20px 48px rgba(38, 22, 12, 0.16);
  backdrop-filter: blur(8px);
}

.may-hero--banner .may-logo-lockup {
  margin-bottom: 16px;
}

.may-hero--image-only {
  padding: 24px 0 22px;
  background: var(--may-white-soft);
}

.may-hero-banner-picture {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(111, 127, 97, 0.1);
  box-shadow: var(--may-shadow);
}

.may-hero-banner-picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: var(--may-hero-position, center center);
}

.may-hero__actions--below {
  justify-content: center;
  margin-top: 18px;
}

.may-hero--banner + .may-section--pull,
.may-hero--image-only + .may-section--pull {
  padding-top: 0;
}

@media (max-width: 768px) {
  .may-hero--banner {
    min-height: var(--may-hero-mobile-height, 520px);
    padding: 34px 0;
  }

  .may-hero--banner .may-hero__copy {
    max-width: none;
    padding: 20px;
  }

  .may-hero--banner .may-hero h1,
  .may-hero--banner h1 {
    font-size: 2.38rem;
  }

  .may-hero--image-only {
    padding-top: 16px;
  }

  .may-hero-banner-picture {
    border-radius: 18px;
  }
}

@media (max-width: 430px) {
  .may-hero--banner .may-hero__copy {
    padding: 16px;
    border-radius: 18px;
  }

  .may-hero--banner h1 {
    font-size: 2.05rem;
  }

  .may-hero__actions--below .may-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

:root {
  --may-cream: #FCEFD2;
  --may-sand: #F3D8AB;
  --may-amber: #E7C28F;
  --may-coffee: #3D2516;
  --may-ink: #26160C;
  --may-gold: #C9943A;
  --may-gold-soft: #E8C87A;
  --may-gold-pale: #FFF2C6;
  --may-gold-line: rgba(201, 148, 58, 0.48);
  --may-gold-glow: 0 0 0 1px rgba(201, 148, 58, 0.26), 0 18px 42px rgba(88, 52, 24, 0.12);
  --may-card-bg: #FFF8EA;
  --may-card-border: rgba(201, 148, 58, 0.38);
  --may-shadow-soft: 0 18px 48px rgba(61, 37, 22, 0.12);
  --may-white-soft: #FFF8EA;
  --may-line: rgba(201, 148, 58, 0.28);
}

body.may-home-ui {
  background: linear-gradient(180deg, rgba(252, 239, 210, 0.96) 0%, rgba(243, 216, 171, 0.72) 44%, rgba(255, 248, 234, 0.94) 100%);
}

.may-header {
  border-bottom-color: var(--may-gold-line);
  background: rgba(255, 248, 234, 0.86);
  box-shadow: 0 12px 34px rgba(61, 37, 22, 0.08);
}

.may-nav,
.may-mobile-menu,
.may-coupon,
.may-service-card,
.may-benefit,
.may-price-row,
.may-booking-form,
.may-booking-highlights,
.may-short-card,
.may-post-card,
.may-review-card,
.may-faq-item,
.may-chat-panel,
.may-footer {
  border-color: var(--may-card-border);
  box-shadow: var(--may-gold-glow);
}

.may-button,
.may-card-actions a,
.may-card-action,
.may-tab,
.may-coupon__code,
.may-mobile-sticky,
.may-cta-rail a,
.may-cta-rail button {
  border-color: var(--may-gold-line);
}

.may-button--primary,
.may-card-action--primary,
.may-card-actions a:last-child {
  background: linear-gradient(180deg, rgba(88, 52, 24, 0.98), var(--may-coffee));
  border-color: rgba(232, 200, 122, 0.72);
  color: #FFF8EA;
  box-shadow: 0 12px 26px rgba(61, 37, 22, 0.18), inset 0 1px 0 rgba(255, 242, 198, 0.28);
}

.may-button--soft,
.may-card-action--soft,
.may-card-actions a:first-child {
  background: rgba(255, 248, 234, 0.84);
  border-color: var(--may-gold-line);
  color: var(--may-coffee);
}

.may-section {
  padding: 76px 0;
}

.may-section--tint {
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.64), rgba(243, 216, 171, 0.34));
}

.may-section-head {
  margin-bottom: 30px;
}

.may-section-head h2,
.may-booking-copy h2,
.may-hero h1 {
  color: var(--may-ink);
  letter-spacing: 0;
}

.may-section-label {
  color: var(--may-gold);
  font-weight: 850;
  letter-spacing: 0.04em;
}

.may-hero {
  padding: 54px 0 48px;
}

.may-hero--banner {
  min-height: min(var(--may-hero-desktop-height, 620px), 680px);
  border-bottom: 1px solid var(--may-gold-line);
}

.may-hero--banner .may-hero__copy {
  max-width: 680px;
  border: 1px solid rgba(255, 242, 198, 0.34);
  background: rgba(61, 37, 22, 0.28);
  box-shadow: 0 20px 58px rgba(38, 22, 12, 0.18);
  backdrop-filter: blur(4px);
}

.may-hero--image-only .may-hero-banner-picture {
  border: 1px solid var(--may-gold-line);
  border-radius: 26px;
  box-shadow: var(--may-shadow-soft);
}

.may-hero--banner + .may-section--pull,
.may-hero--image-only + .may-section--pull {
  margin-top: -26px;
}

.may-coupon {
  background: linear-gradient(135deg, rgba(255, 248, 234, 0.98), rgba(252, 239, 210, 0.86));
}

.may-coupon__code {
  background: rgba(255, 242, 198, 0.42);
  box-shadow: inset 0 0 0 1px rgba(201, 148, 58, 0.22);
}

.may-service-grid,
.may-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.may-service-card,
.may-service-card:first-child,
.may-service-card.is-featured {
  display: flex;
  min-height: 100%;
  grid-column: auto;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--may-card-border);
  border-radius: 22px;
  background: var(--may-card-bg);
}

.may-service-card__media {
  border: 1px solid rgba(201, 148, 58, 0.28);
  background: radial-gradient(circle at 35% 20%, rgba(255, 242, 198, 0.62), rgba(243, 216, 171, 0.2));
}

.may-service-card__image,
.may-service-card:first-child .may-service-card__image,
.may-service-card.is-featured .may-service-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.may-service-card h3,
.may-service-card:first-child h3,
.may-service-card.is-featured h3 {
  min-height: 2.5em;
  margin-top: 0;
  color: var(--may-coffee);
  font-size: 1.16rem;
  line-height: 1.24;
}

.may-service-card p {
  min-height: 4.8em;
  margin-bottom: 16px;
  color: rgba(38, 22, 12, 0.72);
  -webkit-line-clamp: 3;
}

.may-service-card__meta {
  margin-top: auto;
}

.may-service-card__meta strong,
.may-service-card__meta span {
  border: 1px solid rgba(201, 148, 58, 0.24);
  background: rgba(255, 242, 198, 0.42);
  color: var(--may-coffee);
}

.may-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.may-card-actions a,
.may-card-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--may-gold-line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.may-pricing {
  display: block;
  max-width: 1040px;
  padding: 30px;
  border: 1px solid var(--may-gold-line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.96), rgba(252, 239, 210, 0.8));
  box-shadow: var(--may-gold-glow);
}

.may-pricing .may-section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.may-tabs {
  justify-content: center;
  margin: 0 auto 22px;
  border-color: var(--may-gold-line);
  background: rgba(255, 242, 198, 0.32);
}

.may-tab.is-active {
  background: var(--may-coffee);
  color: #FFF8EA;
  box-shadow: inset 0 1px 0 rgba(255, 242, 198, 0.24);
}

.may-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.may-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "main meta" "main cta";
  min-height: 178px;
  gap: 14px 18px;
  align-items: start;
  border: 1px solid var(--may-card-border);
  background: rgba(255, 253, 247, 0.94);
}

.may-price-row__main {
  grid-area: main;
}

.may-price-row__meta {
  grid-area: meta;
  min-width: 112px;
  justify-items: end;
  text-align: right;
}

.may-price-row .may-button {
  grid-area: cta;
  align-self: end;
  min-width: 116px;
}

.may-price-row__meta strong {
  color: var(--may-coffee);
  font-size: 1.12rem;
}

.may-price-row.is-featured {
  border-color: rgba(201, 148, 58, 0.66);
  background: linear-gradient(180deg, rgba(255, 248, 234, 1), rgba(255, 242, 198, 0.38));
}

.may-price-row__eyebrow span,
.may-price-row__eyebrow b {
  border: 1px solid rgba(201, 148, 58, 0.24);
  background: rgba(255, 242, 198, 0.46);
  color: var(--may-coffee);
}

.may-price-row__eyebrow b {
  background: rgba(201, 148, 58, 0.18);
  color: #7b4f10;
}

.may-pricing-more {
  margin: 24px 0 0;
  text-align: center;
}

.may-benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.may-benefit {
  border: 1px solid var(--may-card-border);
  background: rgba(255, 248, 234, 0.82);
}

.may-benefit span {
  border: 1px solid var(--may-gold-line);
  background: rgba(255, 242, 198, 0.46);
  color: var(--may-gold);
}

.may-booking-section {
  background: linear-gradient(135deg, #3D2516 0%, #5A361F 58%, #C9943A 150%);
}

.may-booking-form,
.may-booking-highlights {
  border: 1px solid rgba(232, 200, 122, 0.5);
  background: rgba(255, 248, 234, 0.96);
}

.may-field input,
.may-field select,
.may-field textarea {
  min-height: 48px;
  border-color: rgba(201, 148, 58, 0.38);
  background: #FFFDF7;
}

.may-field input:focus,
.may-field select:focus,
.may-field textarea:focus {
  border-color: var(--may-gold);
  box-shadow: 0 0 0 3px rgba(201, 148, 58, 0.14);
  outline: none;
}

.may-short-card,
.may-post-card,
.may-review-card,
.may-faq-item {
  border: 1px solid var(--may-card-border);
  background: rgba(255, 248, 234, 0.9);
}

.may-short-card__thumb,
.may-post-card img {
  border-bottom: 1px solid rgba(201, 148, 58, 0.28);
}

.may-review-card {
  min-height: 248px;
}

.may-faq {
  align-items: start;
  gap: 34px;
}

.may-faq-item__trigger {
  min-height: 62px;
}

.may-cta-rail {
  right: max(12px, env(safe-area-inset-right));
  gap: 9px;
}

.may-cta-rail a,
.may-cta-rail button,
.may-mobile-sticky {
  background: rgba(255, 248, 234, 0.94);
  color: var(--may-coffee);
  box-shadow: var(--may-gold-glow);
}

.may-chat-widget {
  max-width: calc(100vw - 24px);
}

.may-chat-panel {
  border: 1px solid var(--may-gold-line);
  background: #FFF8EA;
}

.may-footer {
  border-top: 1px solid var(--may-gold-line);
  background: #26160C;
}

@media (max-width: 1280px) {
  .may-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .may-price-list {
    grid-template-columns: 1fr;
  }

  .may-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .may-service-grid,
  .may-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .may-service-card:first-child,
  .may-service-card.is-featured {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .may-section {
    padding: 54px 0;
  }

  .may-hero {
    padding: 30px 0 34px;
  }

  .may-hero--banner {
    min-height: min(var(--may-hero-mobile-height, 520px), 540px);
  }

  .may-hero--banner .may-hero__copy {
    margin: 0;
    padding: 22px;
  }

  .may-hero--banner + .may-section--pull,
  .may-hero--image-only + .may-section--pull {
    margin-top: -14px;
  }

  .may-pricing {
    padding: 20px;
    border-radius: 22px;
  }

  .may-price-row {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "meta" "cta";
    min-height: 0;
  }

  .may-price-row__meta {
    justify-items: start;
    text-align: left;
  }

  .may-price-row .may-button {
    width: 100%;
  }

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

  .may-mobile-sticky {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: calc(100vw - 20px);
  }

  .may-booking-form {
    margin-bottom: 80px;
  }
}

@media (max-width: 544px) {
  .may-container {
    width: min(var(--may-container), calc(100% - 28px));
  }

  .may-service-card {
    padding: 13px;
    border-radius: 18px;
  }

  .may-service-card h3 {
    min-height: 0;
    font-size: 1rem;
  }

  .may-service-card p {
    min-height: 3.2em;
    font-size: 0.88rem;
    -webkit-line-clamp: 2;
  }

  .may-card-actions {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 430px) {
  .may-price-row {
    padding: 15px;
  }

  .may-mobile-sticky a {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .may-service-grid,
  .may-services-grid,
  .may-benefit-grid {
    grid-template-columns: 1fr;
  }
}

.may-core-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 70px;
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.94), rgba(243, 216, 171, 0.52)),
    var(--may-cream);
  border-bottom: 1px solid var(--may-gold-line);
}

.may-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(61, 37, 22, 0.68);
  font-size: 0.86rem;
  font-weight: 750;
}

.may-post-meta a,
.may-post-meta span,
.may-post-meta time {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(201, 148, 58, 0.24);
  border-radius: 999px;
  background: rgba(255, 242, 198, 0.42);
  color: var(--may-coffee);
}

.may-article-hero {
  padding: 58px 0 42px;
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.94), rgba(243, 216, 171, 0.48)),
    var(--may-cream);
  border-bottom: 1px solid var(--may-gold-line);
}

.may-article-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--may-coffee);
  font-weight: 850;
}

.may-article-hero h1 {
  max-width: 880px;
  margin: 16px 0 14px;
  color: var(--may-ink);
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  line-height: 1.02;
}

.may-article-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(38, 22, 12, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

.may-article-image {
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid var(--may-gold-line);
  border-radius: 26px;
  background: var(--may-card-bg);
  box-shadow: var(--may-shadow-soft);
}

.may-article-image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.may-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 34px;
  align-items: start;
}

.may-article-content {
  max-width: 820px;
}

.may-article-content p,
.may-article-content li {
  color: rgba(38, 22, 12, 0.78);
  font-size: 1.05rem;
  line-height: 1.82;
}

.may-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.may-article-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--may-gold);
  background: rgba(255, 248, 234, 0.78);
  color: var(--may-coffee);
}

.may-article-side {
  position: sticky;
  top: 92px;
}

.may-article-cta {
  padding: 22px;
  border: 1px solid var(--may-gold-line);
  border-radius: 24px;
  background: var(--may-card-bg);
  box-shadow: var(--may-shadow-soft);
}

.may-article-cta h2 {
  margin: 8px 0 16px;
  color: var(--may-ink);
  font-size: 1.28rem;
  line-height: 1.3;
}

.may-core-hero--compact {
  padding-bottom: 46px;
}

.may-core-hero__grid,
.may-core-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 34px;
  align-items: center;
}

.may-core-split--reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.may-core-hero__copy h1 {
  max-width: 760px;
  margin: 8px 0 16px;
  color: var(--may-ink);
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  line-height: 0.98;
}

.may-core-hero__copy p,
.may-core-panel p,
.may-core-card p,
.may-core-hero-card p,
.may-core-final-cta p,
.may-core-faq-list p {
  color: rgba(38, 22, 12, 0.72);
  line-height: 1.7;
}

.may-core-hero__image,
.may-core-hero-card,
.may-core-panel,
.may-core-card,
.may-core-mini-steps article,
.may-core-faq-list article {
  border: 1px solid var(--may-gold-line);
  border-radius: 24px;
  background: var(--may-card-bg);
  box-shadow: var(--may-shadow-soft);
}

.may-core-hero__image {
  margin: 0;
  overflow: hidden;
}

.may-core-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.may-core-hero__image figcaption {
  padding: 16px 18px;
  color: var(--may-coffee);
  font-weight: 750;
}

.may-core-panel,
.may-core-card,
.may-core-hero-card,
.may-core-mini-steps article,
.may-core-faq-list article {
  padding: 24px;
}

.may-core-panel h2,
.may-core-card h3,
.may-core-hero-card strong,
.may-core-faq-list h3 {
  margin: 0 0 10px;
  color: var(--may-ink);
  line-height: 1.25;
}

.may-core-card-grid {
  display: grid;
  gap: 20px;
}

.may-core-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.may-core-card__icon,
.may-core-hero-card > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 148, 58, 0.32);
  border-radius: 50%;
  background: rgba(255, 242, 198, 0.64);
  color: var(--may-gold);
}

.may-core-card__icon svg,
.may-core-hero-card > span svg {
  width: 24px;
  height: 24px;
}

.may-core-steps,
.may-core-mini-steps {
  display: grid;
  gap: 14px;
}

.may-core-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.may-core-steps article {
  min-height: 148px;
  padding: 20px;
  border: 1px solid var(--may-gold-line);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.86);
}

.may-core-steps span,
.may-core-mini-steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--may-coffee);
  color: var(--may-white-soft);
  font-weight: 850;
}

.may-core-steps p,
.may-core-mini-steps p {
  margin: 0;
  color: rgba(38, 22, 12, 0.74);
}

.may-core-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.may-core-list li {
  padding: 12px 14px;
  border: 1px solid rgba(201, 148, 58, 0.24);
  border-radius: 16px;
  background: rgba(255, 248, 234, 0.74);
  color: rgba(38, 22, 12, 0.78);
}

.may-core-final-cta {
  text-align: center;
}

.may-core-final-cta h2 {
  max-width: 760px;
  margin: 8px auto 18px;
  color: var(--may-ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.may-core-final-cta .may-contact-chip-list {
  margin-top: 20px;
}

.may-service-grid--booking {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-type-archive-may_service .may-service-grid,
.tax-may_service_category .may-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-type-archive-may_service .may-service-card:first-child,
.post-type-archive-may_service .may-service-card.is-featured,
.tax-may_service_category .may-service-card:first-child,
.tax-may_service_category .may-service-card.is-featured {
  grid-column: auto;
}

.post-type-archive-may_service .may-service-card,
.tax-may_service_category .may-service-card,
.may-service-grid--booking .may-service-card {
  height: 100%;
  min-height: 0;
}

.may-news-layout {
  display: grid;
  gap: 24px;
}

.may-post-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.may-post-card--featured .may-post-card__image-link img,
.may-post-card--featured .may-post-card__placeholder {
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
}

.may-post-card__placeholder {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 10;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(201, 148, 58, 0.28);
  background: radial-gradient(circle at 35% 20%, rgba(255, 242, 198, 0.82), rgba(243, 216, 171, 0.32));
  color: var(--may-gold);
}

.may-post-card__placeholder svg {
  width: 54px;
  height: 54px;
}

.may-post-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.may-post-card__footer span {
  color: rgba(61, 37, 22, 0.58);
  font-size: 0.84rem;
}

.may-pagination,
.page-numbers {
  margin-top: 28px;
}

.may-pagination .nav-links,
.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.may-pagination .page-numbers,
.page-numbers a,
.page-numbers span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--may-gold-line);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.86);
  color: var(--may-coffee);
  font-weight: 800;
}

.may-pagination .page-numbers.current,
.page-numbers .current {
  background: var(--may-coffee);
  color: var(--may-white-soft);
}

@media (max-width: 1024px) {
  .may-core-hero__grid,
  .may-core-split,
  .may-core-split--reverse,
  .may-post-card--featured,
  .may-article-layout {
    grid-template-columns: 1fr;
  }

  .may-article-side {
    position: static;
  }

  .may-core-steps,
  .may-core-card-grid--three,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .may-core-hero {
    padding: 40px 0 48px;
  }

  .may-core-hero__copy h1 {
    font-size: 2.45rem;
  }

  .may-article-hero {
    padding: 42px 0 34px;
  }

  .may-article-hero h1 {
    font-size: 2.3rem;
  }

  .may-article-content p,
  .may-article-content li {
    font-size: 1rem;
  }

  .may-core-panel,
  .may-core-card,
  .may-core-hero-card,
  .may-core-mini-steps article,
  .may-core-faq-list article {
    padding: 18px;
    border-radius: 20px;
  }

  .may-core-steps,
  .may-core-card-grid--three,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking {
    grid-template-columns: 1fr;
  }

  .may-post-card--featured .may-post-card__image-link img,
  .may-post-card--featured .may-post-card__placeholder {
    min-height: 220px;
  }
}

.may-hero--banner,
.may-hero--fallback {
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 200, 122, 0.28), transparent 32%),
    linear-gradient(135deg, #fff8ea 0%, #fcefd2 46%, #f3d8ab 100%);
  color: var(--may-ink);
}

.may-hero--banner::before {
  background: rgba(255, 248, 234, var(--may-hero-overlay, 0.12));
}

.may-hero--banner .may-hero__copy {
  max-width: 680px;
  border: 1px solid var(--may-gold-line);
  background: rgba(255, 248, 234, 0.88);
  box-shadow: 0 20px 58px rgba(61, 37, 22, 0.13);
  color: var(--may-ink);
  backdrop-filter: blur(8px);
}

.may-hero--banner .may-hero__copy h1,
.may-hero--banner .may-hero__copy p,
.may-hero--banner .may-logo-lockup,
.may-hero--banner .may-trust-list li {
  color: var(--may-ink);
}

.may-hero--banner .may-hero__copy p {
  color: rgba(61, 37, 22, 0.78);
}

.may-hero--fallback .may-hero-banner-bg {
  display: none;
}

#may-home-news .may-blog-grid,
#may-section-5 .may-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

#may-home-news .may-post-card,
#may-section-5 .may-post-card {
  min-height: 100%;
}

.may-news-empty {
  padding: 24px;
  border: 1px solid var(--may-gold-line);
  border-radius: 22px;
  background: rgba(255, 248, 234, 0.82);
  color: rgba(61, 37, 22, 0.74);
}

.may-news-empty p {
  margin: 0;
}

@media (max-width: 1024px) {
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid {
    grid-template-columns: 1fr;
  }

  .may-hero--banner + .may-section--pull,
  .may-hero--image-only + .may-section--pull {
    margin-top: -12px;
  }
}

:root {
  --may-bg-page: #F5F3EE;
  --may-bg-soft: #F8F7F4;
  --may-surface-white: #FCFBF8;
  --may-surface-cream: #F2E7D8;
  --may-surface-warm: #EAD7BE;
  --may-surface-dark: #40210F;
  --may-text-main: #3B2418;
  --may-text-soft: #6D574A;
  --may-line-gold: #D7B980;
  --may-line-soft: #E8D9C1;
  --may-shadow-soft: 0 12px 30px rgba(72, 42, 19, 0.08);
  --may-shadow-card: 0 16px 40px rgba(72, 42, 19, 0.10);
}

body.may-home-ui {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(245, 243, 238, 0.98), rgba(248, 247, 244, 0.96) 42%, rgba(252, 251, 248, 0.98)),
    var(--may-bg-page);
  color: var(--may-text-main);
}

.may-page-shell {
  background: transparent;
}

.may-section {
  background: var(--may-bg-soft);
}

.may-section--tint {
  background: var(--may-surface-white);
}

#may-section-1,
.may-reviews {
  background: var(--may-bg-page);
}

#may-section-2,
#may-home-news,
.blog .may-section,
.archive .may-section,
.category .may-section,
.page-template-default .may-section {
  background: var(--may-bg-soft);
}

#may-pricing {
  background: linear-gradient(180deg, var(--may-surface-cream), rgba(248, 247, 244, 0.96));
}

#may-section-3,
#may-section-4,
#may-section-7 {
  background: var(--may-surface-white);
}

.may-hero--split,
.may-hero--banner,
.may-hero--fallback,
.may-service-archive-hero,
.may-core-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(215, 185, 128, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(252, 251, 248, 0.98), rgba(242, 231, 216, 0.76));
  border-bottom: 1px solid rgba(215, 185, 128, 0.36);
}

.may-coupon,
.may-card,
.may-service-card,
.may-benefit,
.may-price-row,
.may-post-card,
.may-review-card,
.may-faq-item,
.may-short-card,
.may-core-panel,
.may-core-card,
.may-core-hero-card,
.may-core-mini-steps article,
.may-core-faq-list article,
.may-booking-form {
  border: 1px solid rgba(215, 185, 128, 0.46);
  background: var(--may-surface-white);
  box-shadow: var(--may-shadow-soft);
}

.may-service-card,
.may-post-card,
.may-short-card,
.may-review-card,
.may-benefit {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.may-card-actions,
.may-post-card__footer {
  margin-top: auto;
}

.may-service-grid,
.may-services-grid,
.post-type-archive-may_service .may-service-grid,
.tax-may_service_category .may-service-grid,
.may-service-grid--booking {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.may-service-grid--partial {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.may-service-card:first-child,
.may-service-card.is-featured,
.post-type-archive-may_service .may-service-card:first-child,
.post-type-archive-may_service .may-service-card.is-featured,
.tax-may_service_category .may-service-card:first-child,
.tax-may_service_category .may-service-card.is-featured {
  grid-column: auto;
}

.may-service-card__media,
.may-card-media--service {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(215, 185, 128, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(248, 247, 244, 0.94), rgba(242, 231, 216, 0.74)),
    var(--may-surface-cream);
}

.may-service-card__media img,
.may-card-media--service img,
.may-service-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.may-service-card h3,
.may-service-card__subtitle,
.may-service-card p {
  color: var(--may-text-main);
}

.may-service-card h3,
.may-post-card__title,
.may-short-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.may-service-card p,
.may-post-card__excerpt,
.may-short-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--may-text-soft);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.may-service-card__meta {
  min-height: 34px;
  align-items: center;
}

.may-blog-grid,
#may-home-news .may-blog-grid,
#may-section-5 .may-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.may-post-card {
  overflow: hidden;
  border-radius: 22px;
}

.may-post-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 247, 244, 0.94), rgba(234, 215, 190, 0.58)),
    var(--may-surface-cream);
}

.may-post-card__image-link,
.may-post-card__placeholder,
.may-post-card__media img {
  display: flex;
  width: 100%;
  height: 100%;
}

.may-post-card__media img,
.may-post-card__image-link img {
  aspect-ratio: auto;
  object-fit: cover;
}

.may-post-card__placeholder {
  align-items: center;
  justify-content: center;
  color: rgba(64, 33, 15, 0.68);
}

.may-post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.may-post-card__title,
.may-post-card__title a,
.may-post-card h3,
.may-post-card h3 a {
  color: var(--may-text-main);
}

.may-post-card__excerpt,
.may-post-card__body p {
  margin: 0;
  color: var(--may-text-soft);
}

.may-post-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.may-post-card--featured .may-post-card__media {
  height: 100%;
  min-height: 320px;
  aspect-ratio: 16 / 9;
}

.may-post-card--featured .may-post-card__body {
  justify-content: center;
  padding: 28px;
}

.may-news-layout {
  display: grid;
  gap: 28px;
}

.may-video-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.may-short-card__thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.may-short-card {
  gap: 10px;
}

.may-pricing {
  padding: 26px;
  border: 1px solid rgba(215, 185, 128, 0.42);
  border-radius: 26px;
  background: rgba(252, 251, 248, 0.78);
  box-shadow: var(--may-shadow-soft);
}

.may-price-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.may-price-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 92px;
}

.may-price-row strong {
  justify-self: end;
  text-align: right;
}

.may-price-row .may-card-action,
.may-price-row a {
  grid-column: 1 / -1;
  justify-self: start;
}

.may-booking-section {
  background:
    linear-gradient(90deg, rgba(64, 33, 15, 0.88), rgba(64, 33, 15, 0.72)),
    var(--may-surface-dark);
}

.may-booking-form {
  background: rgba(252, 251, 248, 0.94);
}

.may-booking-highlights {
  background: rgba(252, 251, 248, 0.10);
  box-shadow: none;
}

.may-booking-form input,
.may-booking-form select,
.may-booking-form textarea {
  border-color: rgba(215, 185, 128, 0.46);
  background: #fff;
}

.may-service-filter a,
.may-contact-chip,
.may-footer-social a,
.may-footer-contact a {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .may-post-card--featured {
    grid-template-columns: 1fr;
  }

  .may-post-card--featured .may-post-card__media {
    min-height: 0;
  }

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

@media (max-width: 900px) {
  .may-service-grid,
  .may-services-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial,
  .may-blog-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .may-price-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 544px) {
  .may-pricing {
    padding: 18px;
    border-radius: 20px;
  }

  .may-price-row {
    grid-template-columns: 1fr;
  }

  .may-price-row strong {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .may-service-grid,
  .may-services-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial,
  .may-blog-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid,
  .may-video-row {
    grid-template-columns: 1fr;
  }

  .may-service-card__media,
  .may-card-media--service {
    border-radius: 16px;
  }
}

:root {
  --may-bg-page: #F7F5F0;
  --may-bg-soft: #FBFAF6;
  --may-bg-ivory: #FFFDF8;
  --may-surface-white: #FFFFFF;
  --may-surface-soft: #FAF7F0;
  --may-surface-cream: #F3E6D2;
  --may-surface-warm: #EAD8BE;
  --may-surface-dark: #321A0E;
  --may-text-main: #2F1C12;
  --may-text-soft: #6F5A4B;
  --may-text-muted: #9A8675;
  --may-gold: #C59A4A;
  --may-gold-soft: #DEC68F;
  --may-line-soft: #E8DCCB;
  --may-line-gold: rgba(197, 154, 74, 0.42);
  --may-shadow-soft: 0 14px 34px rgba(55, 34, 18, 0.08);
  --may-shadow-card: 0 18px 42px rgba(55, 34, 18, 0.10);
  --may-radius-card: 18px;
  --may-radius-section: 24px;
  --may-container: 1120px;
}

body.may-home-ui {
  background:
    linear-gradient(180deg, var(--may-bg-page), var(--may-bg-soft) 42%, var(--may-bg-ivory));
  color: var(--may-text-main);
}

.may-container {
  width: min(100% - 32px, var(--may-container));
  margin-inline: auto;
}

.may-section {
  padding-block: clamp(56px, 7vw, 96px);
}

.may-header {
  border-bottom: 1px solid rgba(232, 220, 203, 0.86);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(55, 34, 18, 0.05);
  backdrop-filter: blur(14px);
}

.may-header__inner {
  min-height: 72px;
}

.may-nav {
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(232, 220, 203, 0.72);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.84);
  box-shadow: none;
}

.may-nav a {
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--may-text-soft);
  font-size: 0.9rem;
  font-weight: 720;
}

.may-nav a:hover,
.may-nav a:focus-visible {
  background: var(--may-bg-ivory);
  color: var(--may-text-main);
}

.may-header__cta,
.may-button--primary,
.may-card-action--primary,
.may-card-actions a:last-child {
  background: var(--may-surface-dark);
  border-color: rgba(222, 198, 143, 0.58);
  color: #FFFDF8;
  box-shadow: 0 12px 24px rgba(50, 26, 14, 0.14);
}

.may-button--soft,
.may-card-action--soft,
.may-card-actions a:first-child {
  background: var(--may-bg-ivory);
  border-color: var(--may-line-soft);
  color: var(--may-text-main);
}

.may-hero--split,
.may-hero--banner,
.may-hero--fallback,
.may-service-archive-hero,
.may-core-hero {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 240, 0.94)),
    var(--may-bg-soft);
  border-bottom: 1px solid var(--may-line-soft);
}

.may-hero {
  padding-block: clamp(46px, 6vw, 86px);
}

.may-hero__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.78fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.may-hero h1,
.may-core-hero h1,
.may-service-archive-hero h1 {
  color: var(--may-text-main);
  letter-spacing: 0;
}

.may-hero p,
.may-core-hero p,
.may-service-archive-hero p,
.may-section-head p {
  color: var(--may-text-soft);
}

.may-hero-card,
.may-core-hero__image,
.may-hero-banner-picture {
  overflow: hidden;
  border: 1px solid var(--may-line-soft);
  border-radius: var(--may-radius-section);
  background: var(--may-surface-white);
  box-shadow: var(--may-shadow-card);
}

.may-hero-card picture,
.may-core-hero__image img {
  aspect-ratio: 4 / 3;
}

.may-hero-card img,
.may-core-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-hero--banner .may-hero__copy {
  max-width: 620px;
  border: 1px solid rgba(232, 220, 203, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--may-shadow-soft);
}

.may-hero--banner::before {
  background: rgba(255, 253, 248, 0.10);
}

.may-section--pull {
  background: transparent;
}

.may-coupon {
  border-color: rgba(232, 220, 203, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--may-shadow-soft);
}

#may-section-2,
#may-home-news,
.post-type-archive-may_service .may-section,
.tax-may_service_category .may-section,
.blog .may-section,
.archive .may-section,
.category .may-section {
  background: var(--may-bg-soft);
}

#may-pricing,
#may-section-3,
#may-section-4,
.may-reviews,
#may-section-7,
.may-core-section {
  background: var(--may-bg-ivory);
}

.may-card,
.may-service-card,
.may-benefit,
.may-price-row,
.may-post-card,
.may-review-card,
.may-faq-item,
.may-short-card,
.may-core-panel,
.may-core-card,
.may-core-hero-card,
.may-core-mini-steps article,
.may-core-faq-list article,
.may-booking-form {
  border-color: var(--may-line-soft);
  border-radius: var(--may-radius-card);
  background: var(--may-surface-white);
  box-shadow: var(--may-shadow-soft);
}

.may-section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.may-section-head--left {
  margin-inline: 0;
  text-align: left;
}

.may-section-label {
  color: var(--may-gold);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.045em;
}

.may-service-grid,
.may-services-grid,
.post-type-archive-may_service .may-service-grid,
.tax-may_service_category .may-service-grid,
.may-service-grid--booking,
.may-service-grid--partial {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.may-service-card {
  padding: 14px;
  border-radius: 20px;
}

.may-service-card__media {
  border-color: var(--may-line-soft);
  border-radius: 14px;
  background: var(--may-surface-soft);
}

.may-service-card h3 {
  margin-top: 14px;
  font-size: 1.04rem;
}

.may-service-card__subtitle {
  color: var(--may-text-muted);
}

.may-service-card__meta {
  gap: 8px;
}

.may-service-card__meta strong,
.may-service-card__meta span {
  padding: 5px 9px;
  border: 1px solid rgba(232, 220, 203, 0.78);
  border-radius: 999px;
  background: var(--may-bg-soft);
  color: var(--may-text-soft);
  font-size: 0.82rem;
}

.may-service-card__meta strong {
  color: var(--may-text-main);
}

.may-pricing {
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(18px, 3vw, 30px);
  border-color: var(--may-line-soft);
  border-radius: var(--may-radius-section);
  background: var(--may-surface-white);
  box-shadow: var(--may-shadow-soft);
}

.may-price-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.may-price-row {
  min-height: 86px;
  padding: 16px;
  border-radius: 16px;
  background: var(--may-bg-ivory);
}

.may-tabs {
  justify-content: center;
}

.may-tab {
  border-color: var(--may-line-soft);
  background: var(--may-bg-soft);
  color: var(--may-text-soft);
}

.may-tab.is-active,
.may-tab[aria-selected="true"] {
  background: var(--may-surface-dark);
  color: var(--may-bg-ivory);
}

.may-benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.may-benefit {
  min-height: 150px;
  padding: 18px;
  text-align: center;
}

.may-video-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.may-short-card {
  padding: 10px;
}

.may-short-card__thumb {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
}

#may-home-news .may-post-card__media {
  aspect-ratio: 16 / 10;
}

.may-blog-grid,
#may-home-news .may-blog-grid,
#may-section-5 .may-blog-grid {
  gap: 22px;
}

.may-post-card__media {
  background: var(--may-surface-soft);
}

.may-post-card__body {
  padding: 18px;
}

.may-booking-section {
  background:
    linear-gradient(135deg, rgba(58, 32, 18, 0.96), rgba(110, 72, 38, 0.86)),
    var(--may-surface-dark);
}

.may-booking-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.may-booking-form {
  border-color: rgba(232, 220, 203, 0.72);
  background: rgba(255, 253, 248, 0.96);
}

.may-booking-highlights {
  border-color: rgba(222, 198, 143, 0.24);
  background: rgba(255, 253, 248, 0.10);
}

.may-review-grid {
  align-items: stretch;
}

.may-faq {
  max-width: 920px;
}

.may-footer {
  background: var(--may-surface-dark);
  border-top: 1px solid rgba(222, 198, 143, 0.22);
}

.may-footer__grid {
  align-items: start;
}

.may-footer-social a,
.may-footer-contact a,
.may-contact-chip,
.may-cta-rail a,
.may-cta-rail button,
.may-mobile-sticky a,
.may-mobile-sticky button {
  flex-shrink: 0;
}

.may-cta-rail {
  gap: 9px;
}

.may-cta-rail a,
.may-cta-rail button {
  border-color: rgba(232, 220, 203, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(55, 34, 18, 0.10);
}

@media (max-width: 1024px) {
  .may-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .may-header__inner {
    min-height: 66px;
  }

  .may-hero__grid,
  .may-booking-grid {
    grid-template-columns: 1fr;
  }

  .may-service-grid,
  .may-services-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial,
  .may-blog-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid,
  .may-price-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 544px) {
  .may-container {
    width: min(100% - 24px, var(--may-container));
  }

  .may-section {
    padding-block: clamp(42px, 10vw, 64px);
  }

  .may-benefit-grid,
  .may-video-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .may-price-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .may-service-grid,
  .may-services-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial,
  .may-blog-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid,
  .may-benefit-grid,
  .may-video-row {
    grid-template-columns: 1fr;
  }

  .may-nav {
    border-radius: 16px;
  }
}

.may-page-shell {
  background: var(--may-bg-page);
}

.may-service-archive-hero,
.may-core-hero,
.may-article-hero {
  min-height: 0;
  padding-block: clamp(64px, 8vw, 104px);
  background:
    radial-gradient(circle at 12% 14%, rgba(222, 198, 143, 0.18), transparent 34%),
    linear-gradient(180deg, var(--may-bg-ivory), var(--may-bg-page));
  color: var(--may-text-main);
}

.may-service-archive-hero .may-container,
.may-core-hero__grid {
  max-width: var(--may-container);
}

.may-service-archive-hero h1,
.may-core-hero__copy h1,
.may-article-hero h1 {
  max-width: 760px;
  color: var(--may-text-main);
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  line-height: 1.04;
}

.may-service-archive-hero p,
.may-core-hero__copy p,
.may-article-hero p {
  max-width: 720px;
  color: var(--may-text-soft);
}

.may-core-hero__grid,
.may-core-split {
  align-items: center;
  gap: clamp(26px, 5vw, 64px);
}

.may-core-panel,
.may-core-card,
.may-core-hero-card,
.may-core-mini-steps article,
.may-core-faq-list article,
.may-article-cta,
.may-empty-state {
  border: 1px solid var(--may-line-soft);
  border-radius: var(--may-radius-card);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--may-shadow-soft);
}

.may-core-hero__image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--may-line-soft);
  border-radius: var(--may-radius-section);
  background: var(--may-surface-soft);
  box-shadow: var(--may-shadow-soft);
}

.may-core-hero__image img,
.may-article-image img,
.may-service-card__media img,
.may-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-service-card {
  height: 100%;
}

.may-service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: var(--may-surface-soft);
}

.may-service-card__meta:empty {
  display: none;
}

.post-type-archive-may_service .may-service-card,
.tax-may_service_category .may-service-card {
  justify-content: space-between;
}

.may-service-filter,
.may-pricing-filter {
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.may-service-filter a,
.may-pricing-filter a {
  border-color: var(--may-line-soft);
  background: rgba(255, 255, 255, 0.76);
  color: var(--may-text-soft);
}

.may-service-filter a:hover,
.may-service-filter a:focus-visible,
.may-service-filter a.is-active,
.may-pricing-filter a:hover,
.may-pricing-filter a:focus-visible {
  border-color: var(--may-line-gold);
  background: var(--may-surface-dark);
  color: var(--may-bg-ivory);
}

.may-news-layout {
  display: grid;
  gap: 24px;
}

.may-post-card {
  overflow: hidden;
}

.may-post-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.may-post-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.may-post-card--featured .may-post-card__media {
  aspect-ratio: 16 / 9;
}

.may-post-card__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.may-post-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.may-pricing-page {
  display: grid;
  gap: clamp(28px, 5vw, 44px);
  max-width: 1080px;
  margin-inline: auto;
}

.may-pricing-group {
  scroll-margin-top: 110px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--may-line-soft);
  border-radius: var(--may-radius-section);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--may-shadow-soft);
}

.may-pricing-group__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.may-pricing-group__head h2 {
  margin: 0;
  color: var(--may-text-main);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.may-pricing-group__head p {
  max-width: 420px;
  margin: 0;
  color: var(--may-text-soft);
}

.may-price-list--page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.may-price-list--page .may-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, auto) auto;
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(232, 220, 203, 0.78);
  background: var(--may-bg-ivory);
}

.may-price-row__main h3 {
  margin-bottom: 4px;
}

.may-price-row__meta {
  align-items: end;
  text-align: right;
}

.may-price-row__meta strong {
  color: var(--may-text-main);
  white-space: nowrap;
}

.may-core-faq-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--may-line-soft);
  border-radius: var(--may-radius-card);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--may-shadow-soft);
}

.may-core-faq-list article {
  position: relative;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--may-line-soft);
  background: transparent;
  box-shadow: none;
}

.may-core-faq-list article:last-child {
  border-bottom: 0;
}

.may-core-faq-list h3 {
  padding-right: 34px;
}

.may-core-faq-list h3::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--may-gold);
  font-size: 1.35rem;
  font-weight: 500;
}

.may-booking-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(222, 198, 143, 0.18), transparent 32%),
    linear-gradient(180deg, var(--may-bg-soft), var(--may-bg-page));
  color: var(--may-text-main);
}

.may-booking-copy,
.may-booking-copy p,
.may-booking-highlights,
.may-booking-highlights li {
  color: var(--may-text-main);
}

.may-booking-highlights {
  border-color: var(--may-line-soft);
  background: rgba(255, 255, 255, 0.76);
}

.may-booking-form {
  box-shadow: var(--may-shadow-soft);
}

.may-core-final-cta {
  background: var(--may-bg-ivory);
}

@media (max-width: 900px) {
  .may-post-card--featured,
  .may-price-list--page .may-price-row,
  .may-pricing-group__head {
    grid-template-columns: 1fr;
  }

  .may-pricing-group__head {
    display: grid;
    align-items: start;
  }

  .may-price-row__meta {
    align-items: start;
    text-align: left;
  }
}

@media (max-width: 544px) {
  .may-service-archive-hero,
  .may-core-hero,
  .may-article-hero {
    padding-block: 48px;
  }

  .may-service-filter,
  .may-pricing-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .may-price-list--page .may-price-row {
    gap: 12px;
    padding: 14px;
  }

  .may-price-list--page .may-price-row .may-button {
    width: 100%;
  }
}

.may-button,
.may-btn,
.may-card-action,
.may-card-actions a,
.may-price-row .may-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.may-button--primary,
.may-btn--primary,
.may-card-action,
.may-card-actions a:first-child {
  border: 1px solid #321a0e;
  background: #321a0e;
  color: #fffdf8;
}

.may-button--soft,
.may-button--ghost,
.may-btn--soft,
.may-btn--ghost,
.may-card-actions a + a {
  border: 1px solid rgba(50, 26, 14, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: #321a0e;
}

.may-button:empty,
.may-btn:empty,
.may-card-action:empty,
.may-card-actions a:empty {
  display: none;
}

.may-icon-button,
.may-btn--app,
.may-cta-rail a,
.may-cta-rail button,
.may-mobile-sticky a,
.may-mobile-sticky button,
.may-footer-social a,
.may-footer-social button {
  flex: 0 0 auto;
}

.may-cta-rail svg,
.may-mobile-sticky svg,
.may-footer-social svg,
.may-icon-button svg,
.may-btn--app svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.may-reviews-section,
.may-faq-section {
  background: var(--may-bg-soft);
}

.may-review-widget-wrap {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
  overflow: visible;
}

.may-review-widget-wrap > * {
  max-width: 100%;
}

.may-faq--full {
  max-width: 1080px;
}

.may-faq--full .may-section-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.may-faq--full .may-accordion {
  display: grid;
  width: 100%;
  gap: 12px;
}

.may-faq--full .may-faq-item {
  overflow: hidden;
  border: 1px solid var(--may-line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.may-faq-item__trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--may-text-main);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.may-faq-item__trigger span:first-child {
  min-width: 0;
}

.may-faq-item__icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(152, 113, 62, 0.12);
  color: var(--may-gold);
  font-size: 1.25rem;
  line-height: 1;
}

.may-faq-item__icon::before {
  content: "+";
}

.may-faq-item__icon::after {
  content: none;
}

.may-faq-item__trigger[aria-expanded="true"] .may-faq-item__icon::before {
  content: "-";
}

.may-faq-item__panel {
  padding: 0 22px 20px;
  color: var(--may-text-soft);
}

.may-faq-item__panel p {
  margin: 0;
}

@media (max-width: 544px) {
  .may-button,
  .may-btn,
  .may-card-action,
  .may-card-actions a {
    width: 100%;
    min-height: 44px;
    padding-inline: 16px;
  }

  .may-faq-item__trigger {
    min-height: 56px;
    padding: 16px;
  }

  .may-faq-item__panel {
    padding-inline: 16px;
  }
}

.may-header__cta {
  min-width: max-content;
  max-width: none;
  color: #fffdf8 !important;
  opacity: 1;
  overflow: visible;
  text-indent: 0;
  white-space: nowrap;
  font-size: 0.95rem;
  line-height: 1.12;
}

.may-header__cta:empty {
  display: none;
}

.may-home-faq {
  background: var(--may-bg-ivory);
}

.may-home-faq .may-faq-container {
  display: block;
  max-width: 980px;
}

.may-home-faq .may-section-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.may-home-faq .may-faq-list {
  display: grid;
  width: 100%;
  gap: 12px;
}

.may-home-faq .may-faq-item {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--may-line-soft);
  border-radius: 16px;
  background: var(--may-surface-white, #fffdf8);
  box-shadow: none;
}

.may-media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 247, 244, 0.96), rgba(232, 220, 203, 0.72)),
    var(--may-bg-soft);
}

.may-media-frame--service,
.may-service-card__media {
  aspect-ratio: 4 / 3;
}

.may-media-frame--post,
.may-post-card__media {
  aspect-ratio: 4 / 3;
}

.may-media-frame img,
.may-card-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(50, 26, 14, 0.48);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 253, 248, 0.86), rgba(255, 253, 248, 0.18) 34%, transparent 56%),
    linear-gradient(135deg, rgba(250, 247, 240, 0.98), rgba(232, 220, 203, 0.76));
}

.may-media-placeholder svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
}

.may-media-frame.is-image-missing .may-media-placeholder,
.may-media-frame:not(:has(img)) .may-media-placeholder {
  display: flex;
}

.may-media-frame.is-image-missing .may-post-card__image-link {
  display: none;
}

.may-home-faq .may-faq-item__icon,
.may-faq-list .may-faq-item__icon {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: rgba(152, 113, 62, 0.12);
  color: var(--may-gold);
  font-size: 20px;
  line-height: 1;
}

.may-home-faq .may-faq-item__icon::before,
.may-faq-list .may-faq-item__icon::before {
  content: "+";
  position: static;
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transform: none;
}

.may-home-faq .may-faq-item__icon::after,
.may-faq-list .may-faq-item__icon::after {
  content: none;
  display: none;
}

.may-home-faq .may-faq-item__trigger[aria-expanded="true"] .may-faq-item__icon::before,
.may-faq-list .may-faq-item__trigger[aria-expanded="true"] .may-faq-item__icon::before {
  content: "-";
}

@media (max-width: 544px) {
  .may-header__cta {
    width: auto;
    min-height: 40px;
    padding-inline: 14px;
  }
}

/* May UI system stability layer */
body.may-home-ui {
  background: var(--may-bg, #fbf8f1);
  color: var(--may-text, #2f2a24);
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: var(--may-body-size, 1rem);
  line-height: var(--may-body-line, 1.72);
}

body.may-home-ui h1,
body.may-home-ui h2,
body.may-home-ui h3,
.may-core-hero__copy h1,
.may-section-head h2,
.may-section-heading h2,
.may-pricing-group__head h2,
.may-service-card h3,
.may-post-card__title,
.may-post-card h3,
.may-core-faq-list h3 {
  color: var(--may-text, #2f2a24);
  font-family: var(--may-font-heading, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-weight: 650;
  line-height: var(--may-heading-line, 1.08);
  letter-spacing: 0;
}

.may-core-hero__copy h1,
body.may-home-ui h1 {
  font-size: var(--may-h1-size, clamp(2.3rem, 4vw, 4.15rem));
}

.may-section-head h2,
.may-section-heading h2,
.may-pricing-group__head h2,
body.may-home-ui h2 {
  font-size: var(--may-h2-size, clamp(1.9rem, 3vw, 3rem));
}

.may-service-card h3,
.may-post-card__title,
.may-post-card h3,
.may-core-faq-list h3,
body.may-home-ui h3 {
  font-size: var(--may-h3-size, clamp(1.35rem, 2vw, 1.85rem));
}

body.may-home-ui p,
body.may-home-ui li,
.may-service-card p,
.may-post-card__excerpt,
.may-review-card p,
.may-core-faq-list p,
.may-faq-answer p,
.may-faq-item__panel p {
  color: var(--may-muted, #766f64);
  line-height: var(--may-body-line, 1.72);
}

.may-container {
  width: min(100% - 32px, var(--may-container, 1180px));
  margin-inline: auto;
}

.may-section {
  padding-block: var(--may-section-y, clamp(58px, 7vw, 96px));
}

.may-section--compact {
  padding-block: clamp(44px, 5vw, 68px);
}

.may-section--tint,
.may-home-faq,
.may-reviews-section,
.may-booking-section {
  background: var(--may-bg, #fbf8f1);
}

.may-card,
.may-service-card,
.may-post-card,
.may-review-card,
.may-price-row,
.may-core-faq-list article,
.may-booking-form,
.may-booking-highlights,
.may-core-panel,
.may-core-hero-card,
.may-faq-item {
  background: var(--may-surface, #fffdf8);
  border: 1px solid var(--may-border, rgba(159, 115, 53, .16));
  border-radius: var(--may-radius-card, 22px);
  box-shadow: var(--may-shadow-card, 0 16px 38px rgba(64, 48, 32, .07));
}

.may-media-frame,
.may-service-card__media,
.may-post-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--may-radius-media, 16px);
  background: var(--may-surface-soft, #f6efe3);
}

.may-media-frame--service,
.may-service-card__media {
  aspect-ratio: 4 / 3;
}

.may-media-frame--post,
.may-post-card__media {
  aspect-ratio: 4 / 3;
}

.may-media-frame img,
.may-media-frame .may-card-img,
.may-service-card__media img,
.may-post-card__media img,
.may-post-card__image-link,
.may-post-card__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-service-card,
.may-post-card,
.may-review-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.may-service-card p,
.may-post-card__excerpt,
.may-review-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.may-service-card p,
.may-post-card__excerpt {
  -webkit-line-clamp: 3;
}

.may-review-card p {
  -webkit-line-clamp: 5;
}

.may-service-card h3,
.may-post-card__title,
.may-post-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.may-service-card__meta,
.may-post-card__meta,
.may-post-card__footer,
.may-card-actions {
  margin-top: auto;
}

.may-card-actions,
.may-post-card__footer,
.may-hero__actions {
  align-items: center;
  gap: 12px;
}

.may-button,
.may-btn,
.may-card-action,
.may-card-actions a,
.may-price-row .may-button,
.may-post-card__footer a,
.may-post-card__body > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: var(--may-radius-pill, 999px);
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: .95rem;
  font-weight: 750;
  line-height: 1.15;
  opacity: 1;
  overflow: visible;
  text-indent: 0;
  white-space: normal;
}

.may-button--primary,
.may-btn--primary,
.may-card-action--primary,
.may-card-actions a:last-child {
  background: var(--may-accent, #b98238);
  border-color: var(--may-accent, #b98238);
  color: #fffdf8;
}

.may-button--soft,
.may-button--ghost,
.may-btn--soft,
.may-btn--ghost,
.may-card-action--soft,
.may-card-actions a:first-child,
.may-post-card__footer a,
.may-post-card__body > a {
  background: rgba(185, 130, 56, .1);
  border-color: rgba(185, 130, 56, .2);
  color: var(--may-text, #2f2a24);
}

.may-button:empty,
.may-btn:empty,
.may-card-action:empty,
.may-card-actions a:empty,
.may-post-card__footer a:empty,
.may-post-card__body > a:empty {
  display: none;
}

.may-section-label,
.may-post-card__meta,
.may-post-card__body > span,
.may-price-row__eyebrow,
.may-service-card__subtitle {
  color: var(--may-accent, #b98238);
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: var(--may-small-size, .92rem);
  font-weight: 750;
  letter-spacing: .04em;
}

.may-service-grid,
.post-type-archive-may_service .may-service-grid,
.tax-may_service_category .may-service-grid,
.may-service-grid--booking,
.may-service-grid--partial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--may-gap, clamp(18px, 2.4vw, 28px));
}

.may-blog-grid,
#may-home-news .may-blog-grid,
#may-section-5 .may-blog-grid,
.may-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--may-gap, clamp(18px, 2.4vw, 28px));
}

.may-post-card--featured {
  grid-column: span 2;
}

.may-post-card--featured .may-post-card__media {
  aspect-ratio: 16 / 10;
}

.may-price-list--page {
  display: grid;
  gap: 14px;
}

.may-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
}

.may-price-row__meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.may-price-row__meta strong {
  color: var(--may-text, #2f2a24);
  white-space: nowrap;
}

.may-review-widget-wrap {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
  overflow: visible;
}

.may-review-widget-wrap > * {
  max-width: 100%;
}

.may-faq-container,
.may-home-faq .may-faq-container {
  display: block;
  max-width: 980px;
}

.may-faq-list,
.may-home-faq .may-faq-list {
  display: grid;
  width: 100%;
  gap: 12px;
}

.may-faq-item,
.may-home-faq .may-faq-item {
  width: 100%;
  overflow: clip;
}

.may-faq-question,
.may-faq-item__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 58px;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--may-text, #2f2a24);
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.may-faq-question::-webkit-details-marker {
  display: none;
}

.may-faq-question-text,
.may-faq-item__trigger span:first-child {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  color: inherit;
  opacity: 1;
  overflow: visible;
  text-indent: 0;
  white-space: normal;
}

.may-faq-toggle,
.may-faq-item__icon {
  position: static;
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(185, 130, 56, .12);
  color: var(--may-accent, #b98238);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.may-faq-toggle::before,
.may-faq-item__icon::before {
  content: "+";
  position: static;
  display: block;
  width: auto;
  height: auto;
  background: transparent;
  color: currentColor;
  transform: none;
}

.may-faq-toggle::after,
.may-faq-item__icon::after {
  content: none;
  display: none;
}

.may-faq-item[open] .may-faq-toggle::before,
.may-faq-item__trigger[aria-expanded="true"] .may-faq-item__icon::before {
  content: "-";
}

.may-faq-answer,
.may-faq-item__panel {
  padding: 0 22px 22px;
}

.may-faq-answer p,
.may-faq-item__panel p {
  margin: 0;
}

.may-core-faq-list {
  display: grid;
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.may-core-faq-list article {
  position: relative;
  padding: 22px;
}

.may-core-faq-list article:last-child {
  border-bottom: 1px solid var(--may-border, rgba(159, 115, 53, .16));
}

.may-core-faq-list h3 {
  margin: 0 0 8px;
  padding-right: 34px;
}

.may-core-faq-list h3::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 22px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--may-accent, #b98238);
}

.may-core-faq-list p {
  margin: 0;
}

@media (max-width: 960px) {
  .may-service-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial,
  .may-blog-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid,
  .may-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .may-post-card--featured {
    grid-column: span 1;
  }

  .may-price-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .may-price-row__meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .may-container {
    width: min(100% - 28px, var(--may-container, 1180px));
  }

  .may-section {
    padding-block: clamp(44px, 12vw, 64px);
  }

  .may-service-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial,
  .may-blog-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid,
  .may-review-grid {
    grid-template-columns: 1fr;
  }

  .may-faq-question,
  .may-faq-item__trigger {
    min-height: 56px;
    gap: 12px;
    padding: 16px;
  }

  .may-faq-answer,
  .may-faq-item__panel {
    padding: 0 16px 18px;
  }

  .may-button,
  .may-btn,
  .may-card-action,
  .may-card-actions a,
  .may-price-row .may-button {
    width: 100%;
  }
}

.may-page-title,
.may-section-title,
.may-display-title,
.may-hero h1,
.may-core-hero__copy h1,
.may-service-archive-hero h1,
.may-article-hero h1,
.may-section-head h2,
.may-section-heading h2,
.may-booking-copy h2,
.may-pricing-group__head h2 {
  font-family: var(--may-font-heading, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  letter-spacing: 0;
}

.may-card-title,
.may-service-card h3,
.may-service-card h3 a,
.may-post-card__title,
.may-post-card__title a,
.may-post-card h3,
.may-post-card h3 a,
.may-price-row__main h3,
.may-service-package h3,
.may-short-card h3,
.may-core-card h3,
.may-core-faq-list h3,
.may-footer h2,
.may-footer h3,
.may-footer-title,
.may-footer-column-title,
.may-nav,
.may-btn,
.may-button,
.may-chip,
.may-form label,
.may-faq-question,
.may-faq-item__trigger {
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  letter-spacing: 0;
}

.may-service-card h3,
.may-post-card__title,
.may-post-card h3,
.may-price-row__main h3,
.may-service-package h3,
.may-short-card h3 {
  color: var(--may-text, #2f2a24);
  font-size: clamp(1.05rem, 1.1vw, 1.18rem);
  font-weight: 800;
  line-height: 1.28;
}

.may-post-card__title a,
.may-post-card h3 a,
.may-service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.may-price-row__meta strong {
  color: var(--may-text, #2f2a24);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 850;
}

.may-footer {
  background: #32180d;
  color: rgba(255, 250, 242, .82);
}

.may-footer h2,
.may-footer h3,
.may-footer-title,
.may-footer-column-title {
  color: #fffaf2;
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.may-footer p,
.may-footer a,
.may-footer li {
  color: rgba(255, 250, 242, .74);
  font-size: .92rem;
  line-height: 1.65;
}

.may-footer a:hover,
.may-footer a:focus-visible {
  color: #fffaf2;
}

.may-footer-socials a,
.may-footer-socials button,
.may-footer-social a,
.may-footer-social button,
.may-footer-contact a,
.may-contact-chip-list a,
.may-contact-chip-list button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border-color: rgba(255, 250, 242, .18);
  background: rgba(255, 250, 242, .08);
  color: #fffaf2;
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: .9rem;
  line-height: 1.2;
}

.may-media-frame.is-image-missing,
.may-media-frame--placeholder,
.may-media-placeholder,
.may-post-card__placeholder,
.may-service-card__placeholder,
.may-service-hero__placeholder {
  background:
    radial-gradient(circle at 50% 40%, rgba(197, 154, 74, .16), transparent 38%),
    linear-gradient(135deg, #fffdf8, #f0dfc5);
  color: rgba(58, 36, 24, .46);
}

.may-media-placeholder,
.may-post-card__placeholder,
.may-service-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center;
}

.may-media-placeholder svg,
.may-post-card__placeholder svg,
.may-service-card__placeholder svg,
.may-service-hero__placeholder svg {
  width: clamp(46px, 7vw, 78px);
  height: clamp(46px, 7vw, 78px);
  opacity: .26;
}

.may-button,
.may-btn,
.may-card-action,
.may-card-actions a,
.may-price-row .may-button,
.may-post-card__footer a,
.may-post-card__body > a,
.may-header__cta,
.may-contact-chip-list a,
.may-contact-chip-list button,
.may-mobile-sticky a,
.may-mobile-sticky button {
  min-height: 44px;
  border-radius: var(--may-radius-pill, 999px);
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-weight: 800;
  text-decoration: none;
}

.may-header__cta,
.may-button--primary,
.may-btn--primary,
.may-card-action--primary {
  background: var(--may-accent, #b98238);
  border-color: var(--may-accent, #b98238);
  color: #fffdf8;
}

.may-core-hero,
.may-service-archive-hero,
.may-article-hero {
  padding-block: clamp(58px, 7vw, 92px);
}

.may-core-hero__copy p,
.may-service-archive-hero p,
.may-article-hero p {
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  line-height: 1.68;
}

@media (max-width: 640px) {
  .may-footer__grid {
    gap: 24px;
  }

  .may-footer h2,
  .may-footer h3,
  .may-footer-title,
  .may-footer-column-title {
    margin-bottom: 8px;
  }

  .may-service-card h3,
  .may-post-card__title,
  .may-post-card h3,
  .may-price-row__main h3 {
    font-size: 1.05rem;
  }
}

.may-service-grid,
.may-services-grid,
.may-service-preview-grid,
.post-type-archive-may_service .may-service-grid,
.tax-may_service_category .may-service-grid,
.may-service-grid--booking,
.may-service-grid--partial {
  display: grid;
  gap: clamp(12px, 2vw, 24px);
}

@media (min-width: 1024px) {
  .may-service-grid,
  .may-services-grid,
  .may-service-preview-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .may-service-grid,
  .may-services-grid,
  .may-service-preview-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 340px) and (max-width: 767px) {
  .may-service-grid,
  .may-services-grid,
  .may-service-preview-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .may-service-card {
    padding: clamp(12px, 3.4vw, 16px);
  }
}

@media (max-width: 339px) {
  .may-service-grid,
  .may-services-grid,
  .may-service-preview-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-service-grid--partial {
    grid-template-columns: 1fr;
  }
}

.may-service-card__actions,
.may-service-card .may-card-actions,
.may-service-card .may-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.may-service-card__actions .may-btn,
.may-service-card .may-card-actions .may-btn,
.may-service-card .may-card__actions .may-btn,
.may-service-card__actions .may-card-action,
.may-service-card .may-card-actions .may-card-action,
.may-service-card .may-card__actions .may-card-action,
.may-service-card .may-card-actions a {
  min-height: 40px;
  padding-inline: 10px;
  font-size: clamp(.78rem, 1.8vw, .92rem);
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 360px) {
  .may-service-card__actions,
  .may-service-card .may-card-actions,
  .may-service-card .may-card__actions {
    grid-template-columns: 1fr;
  }
}

.may-video-row,
.may-video-grid {
  display: grid;
  gap: clamp(12px, 2vw, 22px);
}

@media (min-width: 1024px) {
  .may-video-row,
  .may-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 520px) and (max-width: 1023px) {
  .may-video-row,
  .may-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 360px) and (max-width: 519px) {
  .may-video-row,
  .may-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 359px) {
  .may-video-row,
  .may-video-grid {
    grid-template-columns: 1fr;
  }
}

.may-short-card__thumb,
.may-video-card__thumb,
.may-video-frame {
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: var(--may-radius-media, 16px);
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.may-short-card__thumb img,
.may-video-card__thumb img,
.may-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-price-row .may-btn,
.may-price-row .may-button,
.may-pricing-page .may-btn,
.may-pricing-page .may-button {
  min-height: 40px;
  padding-inline: 18px;
  border-color: transparent;
  border-radius: 999px;
  background: var(--may-accent, #b98238);
  color: #fffdf8;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.15;
  opacity: 1;
  text-indent: 0;
  white-space: nowrap;
}

.may-price-row .may-btn:empty,
.may-price-row .may-button:empty {
  display: inline-flex;
}

.may-price-row .may-btn:empty::before,
.may-price-row .may-button:empty::before {
  content: "Đặt lịch";
}

.may-video-row,
.may-video-grid {
  display: grid;
  gap: clamp(12px, 2vw, 22px);
}

@media (min-width: 1024px) {
  body .may-video-row,
  body .may-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 520px) and (max-width: 1023px) {
  body .may-video-row,
  body .may-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 360px) and (max-width: 519px) {
  body .may-video-row,
  body .may-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 339px) {
  body .may-video-row,
  body .may-video-grid {
    grid-template-columns: 1fr !important;
  }
}

.may-short-card {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.may-short-card__media,
.may-short-card__thumb,
.may-video-frame {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16 !important;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--may-surface-soft, #f6efe3);
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.may-short-card__media img,
.may-short-card__thumb-img,
.may-short-card__thumb img,
.may-video-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-short-card__play,
.may-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(43, 20, 11, .72);
  color: #fffdf8;
  transform: translate(-50%, -50%);
}

.may-short-card__play svg,
.may-play svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.may-short-card__body {
  display: grid;
  gap: 6px;
  padding-top: 12px;
}

@media (min-width: 360px) and (max-width: 767px) {
  body .may-service-grid,
  body .may-services-grid,
  body .may-service-preview-grid,
  body.post-type-archive-may_service .may-service-grid,
  body.tax-may_service_category .may-service-grid,
  body .may-service-grid--booking,
  body .may-service-grid--partial,
  body .may-booking-suggestions .may-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
}

@media (max-width: 339px) {
  body .may-service-grid,
  body .may-services-grid,
  body .may-service-preview-grid,
  body.post-type-archive-may_service .may-service-grid,
  body.tax-may_service_category .may-service-grid,
  body .may-service-grid--booking,
  body .may-service-grid--partial,
  body .may-booking-suggestions .may-service-grid {
    grid-template-columns: 1fr !important;
  }
}

.may-service-card {
  display: flex;
  flex-direction: column;
}

.may-service-card__meta,
.may-service-card .may-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}

.may-service-card .may-card-actions,
.may-service-card__actions,
.may-service-card .may-card__actions {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.may-service-card .may-card-actions .may-btn,
.may-service-card__actions .may-btn,
.may-service-card .may-card__actions .may-btn,
.may-service-card .may-card-actions .may-card-action,
.may-service-card__actions .may-card-action,
.may-service-card .may-card__actions .may-card-action,
.may-service-card .may-card-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: clamp(.78rem, 1.5vw, .92rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 340px) {
  .may-service-card .may-card-actions,
  .may-service-card__actions,
  .may-service-card .may-card__actions {
    grid-template-columns: 1fr;
  }
}

body .may-pricing-page .may-btn,
body .may-pricing-page .may-button,
body .may-price-row .may-btn,
body .may-price-row .may-button,
body .may-price-row a {
  min-height: 40px;
  padding-inline: 18px;
  border-color: transparent;
  border-radius: 999px;
  background: #b98238 !important;
  color: #fffdf8 !important;
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  opacity: 1;
  text-indent: 0;
  white-space: nowrap;
}

body .may-pricing-page .may-btn *,
body .may-pricing-page .may-button *,
body .may-price-row .may-btn *,
body .may-price-row .may-button * {
  color: inherit;
}

body .may-footer {
  padding: clamp(44px, 6vw, 72px) 0;
  background: #2b140b;
  color: rgba(255, 250, 242, .78);
}

body .may-footer .may-footer__grid {
  display: grid;
  width: min(100% - 32px, var(--may-container, 1180px));
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

body .may-footer .may-footer__grid h1,
body .may-footer .may-footer__grid h2,
body .may-footer .may-footer__grid h3,
body .may-footer .may-footer-title,
body .may-footer .may-footer-column-title {
  margin: 0 0 12px;
  color: #fffaf2 !important;
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: .88rem !important;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .01em;
}

body .may-footer p,
body .may-footer a,
body .may-footer li {
  color: rgba(255, 250, 242, .72);
  font-family: var(--may-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: .9rem;
  line-height: 1.62;
}

body .may-footer a {
  display: block;
  text-decoration: none;
}

body .may-footer a:hover,
body .may-footer a:focus-visible {
  color: #fffaf2;
}

body .may-footer-socials,
body .may-footer .may-contact-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

body .may-footer-socials a,
body .may-footer-socials button,
body .may-footer .may-contact-chip-list a,
body .may-footer .may-contact-chip-list button {
  display: inline-flex;
  width: auto;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 242, .16);
  border-radius: 999px;
  background: rgba(255, 250, 242, .08);
  color: #fffaf2;
}

@media (max-width: 900px) {
  body .may-footer .may-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body .may-footer .may-footer__grid {
    width: min(100% - 28px, var(--may-container, 1180px));
    grid-template-columns: 1fr;
  }
}

:root {
  --may-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-font-body: "Inter", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --may-radius-card: 8px;
  --may-radius-media: 8px;
  --may-card-border-color: rgba(116, 83, 45, .16);
  --may-card-border-rule: 1px solid var(--may-card-border-color);
  --may-card-shadow-soft: 0 10px 28px rgba(50, 36, 23, .055);
}

body.may-home-ui,
body.may-home-ui button,
body.may-home-ui input,
body.may-home-ui select,
body.may-home-ui textarea {
  font-family: var(--may-font-body) !important;
  letter-spacing: 0;
}

body.may-home-ui h1,
body.may-home-ui h2,
body.may-home-ui h3,
.may-core-hero__copy h1,
.may-section-head h2,
.may-section-heading h2,
.may-service-card h3,
.may-post-card__title,
.may-short-card__body h3,
.may-core-faq-list h3 {
  font-family: var(--may-font-heading) !important;
  letter-spacing: 0;
  text-wrap: wrap;
}

.may-service-card,
.may-card,
.may-post-card,
.may-short-card,
.may-review-card,
.may-faq-item,
.may-core-panel,
.may-core-faq-list article,
.may-booking-form,
.may-booking-copy,
.may-price-row,
.may-contact-card,
.may-manual-review-card {
  background: var(--may-surface, #fffdf8);
  border: var(--may-card-border-rule);
  border-radius: var(--may-radius-card);
  box-shadow: var(--may-card-shadow-soft);
}

.may-short-card {
  overflow: hidden;
}

.may-service-card,
.may-post-card,
.may-short-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.may-service-card__media,
.may-post-card__media,
.may-short-card__media,
.may-media-frame {
  border-radius: var(--may-radius-media) !important;
}

.may-video-row,
.may-video-grid {
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.may-short-card__media,
button.may-short-card__media,
.may-video-frame {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16 !important;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: inherit;
  background: #efe5d6;
}

.may-short-card__media img,
.may-short-card__thumb-img,
.may-video-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-short-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: #9b6a2c;
  box-shadow: 0 12px 30px rgba(38, 26, 16, .18);
}

.may-short-card__play svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.may-short-card__body {
  padding: 14px 14px 16px;
}

.may-short-card__body h3,
.may-post-card__title,
.may-service-card h3 {
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  line-height: 1.28;
}

.may-video-modal[hidden] {
  display: none !important;
}

.may-video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
}

.may-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 14, 10, .72);
  backdrop-filter: blur(8px);
}

.may-video-modal__dialog {
  position: relative;
  width: min(92vw, 430px);
  max-height: min(86vh, 760px);
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  background: #120c08;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
}

.may-video-modal__frame,
.may-video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.may-video-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 250, 242, .35);
  border-radius: 999px;
  background: #fffdf8;
  color: #2f2118;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

body.may-video-modal-open {
  overflow: hidden;
}

.may-service-grid,
.may-services-grid,
.may-service-preview-grid {
  display: grid;
  gap: clamp(12px, 2vw, 22px);
}

@media (min-width: 1024px) {
  .may-service-grid,
  .may-services-grid,
  .may-service-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .may-service-grid,
  .may-services-grid,
  .may-service-preview-grid,
  .may-video-row,
  .may-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  body .may-service-grid,
  body .may-services-grid,
  body .may-service-preview-grid,
  body .post-type-archive-may_service .may-service-grid,
  body .tax-may_service_category .may-service-grid,
  body .may-booking-suggestions .may-service-grid,
  body .may-video-row,
  body .may-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
}

@media (max-width: 339px) {
  body .may-service-grid,
  body .may-services-grid,
  body .may-service-preview-grid,
  body .may-video-row,
  body .may-video-grid {
    grid-template-columns: 1fr !important;
  }
}

.may-service-card__meta,
.may-service-card .may-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}

.may-service-card .may-card-actions,
.may-service-card__actions,
.may-service-card .may-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.may-card-action,
.may-service-card .may-button,
.may-service-card .may-btn {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  font-size: clamp(.76rem, 1.8vw, .92rem);
  font-weight: 800;
  line-height: 1.18;
}

.may-post-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.may-post-card__media img,
.may-post-card__image-link,
.may-post-card__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(16px, 2vw, 22px);
}

.may-post-card__title,
.may-post-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.may-post-card__title {
  -webkit-line-clamp: 2;
}

.may-post-card__excerpt {
  -webkit-line-clamp: 3;
}

.may-post-card__footer {
  margin-top: auto;
}

.may-pricing-page .may-btn,
.may-pricing-page .may-button,
.may-price-row .may-btn,
.may-price-row .may-button,
.may-price-row a {
  min-height: 40px;
  padding-inline: 18px;
  border-radius: 999px;
  background: #b98238 !important;
  color: #fffdf8 !important;
  font-family: var(--may-font-body) !important;
  font-size: .92rem;
  font-weight: 800;
  opacity: 1 !important;
  text-decoration: none;
  text-indent: 0 !important;
  white-space: nowrap;
}

.may-booking-focused .may-core-hero--compact {
  padding-block: clamp(34px, 5vw, 58px) clamp(20px, 3vw, 34px);
}

.may-booking-focused .may-core-hero__grid {
  grid-template-columns: minmax(0, 1fr);
}

.may-booking-focused .may-core-hero__copy {
  max-width: 760px;
}

.may-booking-focused .may-core-hero__copy h1 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.may-booking-focused .may-core-mini-steps {
  display: none;
}

.may-booking-focused .may-booking-section {
  padding-top: clamp(20px, 3vw, 36px);
}

.may-booking-focused .may-booking-grid {
  align-items: start;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.45fr);
}

.may-booking-focused .may-booking-copy,
.may-booking-focused .may-booking-form {
  border-radius: 8px;
}

.may-booking-focused .may-booking-copy {
  padding: clamp(18px, 2.5vw, 28px);
}

.may-booking-focused .may-booking-form {
  padding: clamp(20px, 3vw, 34px);
}

.may-booking-focused .may-service-grid--booking {
  opacity: .94;
}

.may-footer {
  background: #2b140b !important;
  color: rgba(255, 250, 242, .78);
}

body .may-footer .may-footer__grid h1,
body .may-footer .may-footer__grid h2,
body .may-footer .may-footer__grid h3,
.may-footer-title,
.may-footer-column-title {
  color: #fffaf2 !important;
  font-family: var(--may-font-body) !important;
  font-size: .88rem !important;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.may-footer p,
.may-footer a,
.may-footer li {
  color: rgba(255, 250, 242, .72) !important;
  font-family: var(--may-font-body) !important;
  font-size: .9rem;
  line-height: 1.62;
}

.may-footer a:hover {
  color: #fffaf2 !important;
}

@media (max-width: 760px) {
  .may-booking-focused .may-booking-grid {
    grid-template-columns: 1fr;
  }

  .may-booking-focused .may-booking-copy {
    order: 2;
  }

  .may-booking-focused .may-booking-form {
    order: 1;
  }
}

.may-short-card__placeholder,
.may-short-card__media.is-video-thumb-missing .may-short-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f2e6d7, #e4d1b8);
  color: #9b6a2c;
}

.may-short-card__placeholder svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.may-home-news-grid,
.may-news-grid,
.may-post-grid,
#may-home-news .may-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.may-news-layout--grid {
  display: block;
}

.may-home-news-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 3vw, 28px);
}

.may-post-card {
  min-width: 0;
  height: 100%;
}

.may-post-card__media {
  aspect-ratio: 16 / 10;
}

.may-post-card__title,
.may-post-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.may-post-card__title {
  -webkit-line-clamp: 2;
}

.may-post-card__excerpt {
  -webkit-line-clamp: 3;
}

.may-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 42px);
}

.may-pagination ul,
.may-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.may-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.may-pagination .page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(116, 83, 45, .18);
  border-radius: 999px;
  background: #fffdf8;
  color: #5b3b22;
  font-family: var(--may-font-body);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.may-pagination .page-numbers.current {
  background: #b98238;
  border-color: #b98238;
  color: #fffdf8;
}

.may-pagination a.page-numbers:hover,
.may-pagination a.page-numbers:focus-visible {
  background: #f5eadc;
  color: #2f2118;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .may-home-news-grid,
  .may-news-grid,
  .may-post-grid,
  #may-home-news .may-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  body .may-home-news-grid,
  body .may-news-grid,
  body .may-post-grid,
  body #may-home-news .may-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
}

@media (max-width: 359px) {
  body .may-home-news-grid,
  body .may-news-grid,
  body .may-post-grid,
  body #may-home-news .may-blog-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  .may-post-card {
    border-radius: 8px;
  }

  .may-post-card__body,
  .may-post-card .may-card__body {
    padding: 10px;
    gap: 7px;
  }

  .may-post-card__media {
    border-radius: 8px 8px 0 0 !important;
    aspect-ratio: 16 / 11;
  }

  .may-post-card__title,
  .may-post-card h3 {
    font-size: .92rem !important;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .may-post-card__excerpt,
  .may-post-card p {
    font-size: .78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #may-home-news .may-post-card__excerpt {
    display: none;
  }

  .may-post-card__meta,
  .may-post-card .may-post-meta {
    gap: 5px;
    font-size: .68rem;
    line-height: 1.25;
  }

  .may-post-card__footer a,
  .may-post-card .may-btn,
  .may-post-card a {
    font-size: .72rem;
  }

  .may-pagination .page-numbers {
    min-width: 34px;
    min-height: 34px;
    font-size: .82rem;
  }
}

@media (max-width: 1199px) {
  html body aside.may-cta-rail,
  html body .may-cta-rail {
    display: none !important;
  }
}

body.may-home-ui .may-footer svg,
body.may-home-ui .may-cta-rail svg,
body.may-home-ui .may-mobile-sticky svg,
body.may-home-ui .may-contact-chip svg,
body.may-home-ui .may-app-icon svg,
body.may-page-shell .may-footer svg,
body.may-page-shell .may-cta-rail svg,
body.may-page-shell .may-mobile-sticky svg,
body.may-page-shell .may-contact-chip svg,
body.may-page-shell .may-app-icon svg {
  width: 1em;
  height: 1em;
  max-width: 24px;
  max-height: 24px;
  display: block;
}

body.may-home-ui .may-app-icon,
body.may-page-shell .may-app-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
}

body.may-home-ui .may-app-icon svg,
body.may-home-ui .may-app-icon img,
body.may-page-shell .may-app-icon svg,
body.may-page-shell .may-app-icon img {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  display: block;
}

body .may-service-package .may-button,
body .may-price-row .may-button,
body.single-may_service .may-price-row .may-button,
body.single-may_service .may-service-package .may-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 92px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #b98238;
  color: #fffdf8;
  font-family: var(--may-font-body);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  opacity: 1;
  text-indent: 0;
  white-space: nowrap;
}

body .may-service-package .may-button *,
body .may-price-row .may-button * {
  color: inherit;
}

.may-app-icon,
.may-contact-icon,
.may-cta-icon,
.may-channel-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
}

.may-app-icon img,
.may-contact-icon img,
.may-cta-icon img,
.may-channel-icon img,
.may-app-icon svg,
.may-contact-icon svg,
.may-cta-icon svg,
.may-channel-icon svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
  display: block;
}

.may-service-package.is-featured {
  border-color: color-mix(in srgb, var(--may-accent) 35%, var(--may-border));
  box-shadow: 0 18px 38px rgba(46, 76, 59, .11);
}

.may-service-package__badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(190, 145, 70, .14);
  color: var(--may-accent-strong);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.may-service-package .may-button,
.may-price-row .may-button {
  white-space: nowrap;
}

.may-service-hero__media,
.may-service-hero__media img,
.may-service-card__media,
.may-service-card__media img {
  max-width: 100%;
}

@media (max-width: 420px) {
  .may-service-package .may-button,
  .may-price-row .may-button {
    min-width: 100%;
  }
}

.may-section-head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 42px);
  text-align: left;
}

.may-section-head--split > div {
  max-width: 740px;
}

.may-gallery-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f8f0e7 100%);
  overflow: hidden;
}

.may-gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  padding: 2px 2px 12px;
}

.may-gallery-card {
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid rgba(116, 83, 45, .16);
  border-radius: 8px;
  background: #fffdf8;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(68, 45, 25, .08);
}

.may-gallery-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: linear-gradient(145deg, #f2e5d5, #e6d2b9);
}

.may-gallery-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.may-gallery-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #9b6a2c;
}

.may-gallery-card__placeholder svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.may-gallery-card__body {
  padding: 14px 15px 16px;
}

.may-gallery-card__body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.may-gallery-card__body p {
  margin: 0;
  color: #6f5948;
  font-size: .9rem;
  line-height: 1.55;
}

.may-final-cta-section {
  padding-block: clamp(42px, 6vw, 72px);
}

.may-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: clamp(20px, 4vw, 46px);
  border: 1px solid rgba(116, 83, 45, .16);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf8 0%, #f2e5d5 100%);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 18px 44px rgba(68, 45, 25, .08);
}

.may-final-cta h2 {
  margin: 6px 0 10px;
  max-width: 720px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.may-final-cta p {
  margin: 0;
  max-width: 640px;
  color: #6f5948;
  line-height: 1.7;
}

.may-final-cta__actions {
  display: grid;
  gap: 10px;
}

.may-final-cta__button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(116, 83, 45, .18);
  border-radius: 999px;
  background: #fffdf8;
  color: #4a2f1d;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.may-final-cta__button:first-child {
  background: #b98238;
  border-color: #b98238;
  color: #fffdf8;
}

.may-final-cta__button .may-app-icon {
  width: 24px;
  height: 24px;
}

.may-final-cta__button .may-app-icon svg {
  width: 100%;
  height: 100%;
}

.may-coupon {
  min-height: 0;
}

@media (max-width: 1023px) {
  .may-section-head--split,
  .may-final-cta {
    grid-template-columns: 1fr;
  }

  .may-section-head--split {
    display: grid;
    align-items: start;
  }

  .may-gallery-rail {
    grid-template-columns: none;
    grid-auto-columns: minmax(260px, 46vw);
  }
}

@media (max-width: 1199px) {
  .may-cta-rail {
    display: none !important;
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  body .may-service-grid,
  body .may-services-grid,
  body .may-video-row,
  body .may-video-grid,
  body .may-home-news-grid,
  body .may-news-grid,
  body .may-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .may-gallery-section .may-container {
    padding-right: 0;
  }

  .may-gallery-rail {
    grid-auto-columns: minmax(238px, 78vw);
    padding-right: 18px;
  }

  .may-gallery-card__body {
    padding: 12px;
  }

  .may-gallery-card__body h3 {
    font-size: .92rem;
  }

  .may-gallery-card__body p {
    font-size: .8rem;
  }

  .may-final-cta {
    padding: 20px;
  }

  .may-final-cta h2 {
    font-size: 1.55rem;
  }

  .may-final-cta__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 359px) {
  body .may-service-grid,
  body .may-services-grid,
  body .may-video-row,
  body .may-video-grid,
  body .may-home-news-grid,
  body .may-news-grid,
  body .may-post-grid {
    grid-template-columns: 1fr !important;
  }

  .may-gallery-rail {
    grid-auto-columns: minmax(220px, 86vw);
  }
}

@media (max-width: 1199px) {
  body .may-cta-rail {
    display: none !important;
  }
}

.may-app-icon,
.may-contact-icon,
.may-cta-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
}

.may-app-icon img,
.may-contact-icon img,
.may-cta-icon img,
.may-app-icon svg,
.may-contact-icon svg,
.may-cta-icon svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
  display: block;
}

.may-cta-rail .may-app-icon,
.may-cta-rail .may-contact-icon,
.may-cta-rail .may-cta-icon,
.may-cta-rail .may-channel-icon {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.may-cta-rail .may-app-icon img,
.may-cta-rail .may-contact-icon img,
.may-cta-rail .may-cta-icon img,
.may-cta-rail .may-channel-icon img,
.may-cta-rail .may-app-icon svg,
.may-cta-rail .may-contact-icon svg,
.may-cta-rail .may-cta-icon svg,
.may-cta-rail .may-channel-icon svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.may-footer .may-app-icon,
.may-footer .may-contact-icon,
.may-footer .may-cta-icon,
.may-footer .may-channel-icon {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

body .may-app-icon,
body .may-contact-icon,
body .may-cta-icon,
body .may-channel-icon {
  box-sizing: border-box;
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
}

body .may-app-icon img,
body .may-contact-icon img,
body .may-cta-icon img,
body .may-channel-icon img,
body .may-app-icon svg,
body .may-contact-icon svg,
body .may-cta-icon svg,
body .may-channel-icon svg {
  width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  max-height: 18px !important;
}

body .may-cta-rail .may-app-icon,
body .may-cta-rail .may-contact-icon,
body .may-cta-rail .may-cta-icon,
body .may-cta-rail .may-channel-icon {
  width: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  flex-basis: 24px !important;
}

body .may-cta-rail .may-app-icon img,
body .may-cta-rail .may-contact-icon img,
body .may-cta-rail .may-cta-icon img,
body .may-cta-rail .may-channel-icon img,
body .may-cta-rail .may-app-icon svg,
body .may-cta-rail .may-contact-icon svg,
body .may-cta-rail .may-cta-icon svg,
body .may-cta-rail .may-channel-icon svg {
  width: 20px !important;
  max-width: 20px !important;
  height: 20px !important;
  max-height: 20px !important;
}

body .may-footer .may-app-icon,
body .may-footer .may-contact-icon,
body .may-footer .may-cta-icon,
body .may-footer .may-channel-icon {
  width: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
  height: 26px !important;
  min-height: 26px !important;
  max-height: 26px !important;
  flex-basis: 26px !important;
}

:root {
  --may-section-gap-lg: clamp(56px, 7vw, 98px);
  --may-section-gap-md: clamp(38px, 5vw, 72px);
  --may-hero-bottom-gap: clamp(28px, 4vw, 54px);
  --may-card-radius: var(--may-radius-card, 22px);
  --may-soft-border: 1px solid var(--may-line-soft, rgba(232, 220, 203, 0.9));
}

.may-hero--banner-card {
  min-height: min(var(--may-hero-desktop-height, 620px), 680px);
  padding-block: clamp(58px, 7vw, 92px);
}

.may-hero--banner-card .may-hero__content-card {
  max-width: 640px;
  border: var(--may-soft-border);
  border-radius: var(--may-card-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--may-shadow-card, 0 16px 40px rgba(72, 42, 19, 0.1));
}

.may-promotion-section {
  position: relative;
  z-index: 4;
  padding-top: var(--may-section-gap-md);
  background: transparent;
}

.may-promotion-section--position-overlap {
  margin-top: -42px;
  padding-top: 0;
}

.may-hero--banner + .may-promotion-section--position-overlap {
  margin-top: -42px;
  padding-top: 0;
}

.may-promotion-section--position-detached {
  margin-top: 0;
  padding-top: var(--may-section-gap-md);
}

.may-hero--banner + .may-promotion-section--position-detached {
  margin-top: 0;
  padding-top: var(--may-section-gap-md);
}

.may-hero--image-only + .may-promotion-section,
.may-hero--split + .may-promotion-section,
.may-promotion-section--from-image_only,
.may-promotion-section--from-split {
  margin-top: 0;
  padding-top: var(--may-hero-bottom-gap);
}

.may-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 112px) clamp(46px, 6vw, 84px);
  border-bottom: 1px solid var(--may-line-soft, rgba(232, 220, 203, 0.9));
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 240, 0.94)),
    var(--may-bg-soft, #f8f7f4);
}

.may-page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.may-page-hero--minimal .may-page-hero__inner {
  display: block;
}

.may-page-hero__copy {
  max-width: 760px;
}

.may-page-hero--minimal .may-page-hero__copy {
  margin-inline: auto;
  text-align: center;
}

.may-page-hero h1 {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--may-text-main, #3b2418);
  font-family: var(--may-font-display, inherit);
  font-size: clamp(2.45rem, 5.4vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.may-page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--may-text-soft, #6d574a);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.72;
}

.may-page-hero--minimal p,
.may-page-hero--minimal h1 {
  margin-inline: auto;
}

.may-page-hero__breadcrumb,
.may-page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.may-page-hero__breadcrumb {
  margin-bottom: 16px;
  color: rgba(61, 37, 22, 0.64);
  font-size: 0.92rem;
  font-weight: 800;
}

.may-page-hero--minimal .may-page-hero__breadcrumb {
  justify-content: center;
}

.may-page-hero__breadcrumb a {
  color: var(--may-text-main, #3b2418);
}

.may-page-hero__chips {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.may-page-hero--minimal .may-page-hero__chips {
  justify-content: center;
}

.may-page-hero__chips li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: var(--may-soft-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--may-text-main, #3b2418);
  font-size: 0.92rem;
  font-weight: 800;
}

.may-page-hero__actions {
  margin-top: 24px;
}

.may-page-hero--minimal .may-page-hero__actions {
  justify-content: center;
}

.may-page-hero__media,
.may-page-hero__card {
  overflow: hidden;
  border: var(--may-soft-border);
  border-radius: var(--may-card-radius);
  background: var(--may-surface-white, #fffcf8);
  box-shadow: var(--may-shadow-card, 0 16px 40px rgba(72, 42, 19, 0.1));
}

.may-page-hero__media {
  margin: 0;
}

.may-page-hero__media picture,
.may-page-hero__media img {
  display: block;
  width: 100%;
}

.may-page-hero__media img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.may-page-hero__card {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
}

.may-page-hero__card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--may-bg-ivory, #fff7e8);
  color: var(--may-text-main, #3b2418);
}

.may-page-hero__card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.may-page-hero__card strong {
  color: var(--may-text-main, #3b2418);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.may-page-hero__card p {
  margin: 0;
}

.may-page-hero--banner {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.may-page-hero--banner .may-page-hero__inner {
  display: block;
}

.may-page-hero--banner .may-page-hero__copy {
  max-width: 720px;
  padding: clamp(22px, 4vw, 34px);
  border: var(--may-soft-border);
  border-radius: var(--may-card-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--may-shadow-card, 0 16px 40px rgba(72, 42, 19, 0.1));
}

.may-page-hero__bg {
  position: absolute;
  inset: 0;
}

.may-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0.24);
}

.may-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-page-filterbar {
  padding: 18px 0 0;
  background: var(--may-bg-soft, #f8f7f4);
}

.may-page-filterbar .may-service-filter,
.may-page-filterbar .may-contact-chip-list {
  justify-content: center;
  margin: 0;
}

@media (max-width: 900px) {
  .may-page-hero__inner {
    grid-template-columns: 1fr;
  }

  .may-page-hero__card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .may-hero--banner-card {
    min-height: min(var(--may-hero-mobile-height, 520px), 540px);
    padding-block: 34px;
  }

  .may-promotion-section,
  .may-promotion-section--position-overlap,
  .may-promotion-section--position-detached,
  .may-hero--banner + .may-promotion-section--position-overlap,
  .may-hero--banner + .may-promotion-section--position-detached,
  .may-hero--image-only + .may-promotion-section,
  .may-hero--split + .may-promotion-section {
    margin-top: 0;
    padding-top: 22px;
  }

  .may-page-hero {
    padding-block: 42px 34px;
  }

  .may-page-hero h1 {
    font-size: clamp(2.15rem, 14vw, 3.1rem);
  }

  .may-page-hero__copy,
  .may-page-hero--minimal .may-page-hero__copy {
    text-align: left;
  }

  .may-page-hero--minimal .may-page-hero__breadcrumb,
  .may-page-hero--minimal .may-page-hero__chips,
  .may-page-hero--minimal .may-page-hero__actions {
    justify-content: flex-start;
  }

  .may-page-hero__actions .may-button {
    width: 100%;
  }
}

/* Soft layered divider between the homepage hero and the following section. */
body.may-home-ui .may-hero {
  --may-hero-wave-height: clamp(88px, 8vw, 128px);
}

body.may-home-ui .may-hero-wave {
  position: relative;
  z-index: 3;
  width: 100%;
  height: var(--may-hero-wave-height);
  margin-top: calc(-1 * var(--may-hero-wave-height));
  overflow: hidden;
  pointer-events: none;
}

body.may-home-ui .may-hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

body.may-home-ui .may-hero-wave__glow {
  fill: rgba(244, 207, 153, .42);
}

body.may-home-ui .may-hero-wave__surface {
  fill: #fffaf3;
}

body.may-home-ui .may-hero--image-only .may-hero__actions--below {
  position: relative;
  z-index: 4;
}

@media (max-width: 1024px) {
  body.may-home-ui .may-hero {
    --may-hero-wave-height: clamp(66px, 8vw, 88px);
  }
}

@media (max-width: 640px) {
  body.may-home-ui .may-hero {
    --may-hero-wave-height: clamp(46px, 14vw, 64px);
  }
}

.may-page-shell {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(248, 244, 237, 0.98) 52%, rgba(255, 252, 247, 0.98) 100%);
}

.may-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at 12% 8%, rgba(206, 158, 83, 0.2), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f5f0e8 58%, #fffdf8 100%);
  border-bottom: 1px solid rgba(198, 148, 73, 0.22);
}

.may-page-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(198, 148, 73, 0.2);
  border-radius: 26px;
  pointer-events: none;
}

.may-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.may-page-hero--minimal .may-page-hero__inner {
  display: block;
}

.may-page-hero__copy {
  max-width: 760px;
}

.may-page-hero__visual {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.may-page-hero--minimal .may-page-hero__copy {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.may-page-hero .may-section-label {
  margin-bottom: 14px;
}

.may-page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #2f2118;
  font-size: 3.08rem;
  line-height: 1.04;
}

.may-page-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #6d5748;
  font-size: 1.08rem;
  line-height: 1.76;
}

.may-page-hero__actions {
  gap: 12px;
}

.may-page-hero__actions .may-button {
  min-height: 48px;
  border-radius: 999px;
}

.may-page-hero__chips li {
  min-height: 40px;
  border-color: rgba(194, 145, 77, 0.28);
  background: rgba(255, 252, 246, 0.88);
  box-shadow: 0 10px 24px rgba(71, 46, 28, 0.06);
}

.may-page-hero__media {
  position: relative;
  border-radius: 24px;
  transform: translateZ(0);
}

.may-page-hero__media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  pointer-events: none;
}

.may-page-hero__media img {
  aspect-ratio: 5 / 4;
}

.may-page-hero__card {
  min-height: 300px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 235, 0.92)),
    #fffaf4;
}

.may-page-hero__card-icon {
  width: 58px;
  height: 58px;
  background: #efe3d2;
  color: #8b612c;
}

.may-page-hero--banner {
  min-height: 500px;
  background: #2f2118;
}

.may-page-hero--banner .may-page-hero__copy {
  max-width: 700px;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(12px);
}

.may-core-panel,
.may-core-card,
.may-core-faq-list article,
.may-empty-state,
.may-pricing-group,
.may-service-archive-cta,
.may-article-cta {
  border: 1px solid rgba(194, 145, 77, 0.24);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 48px rgba(69, 43, 26, 0.08);
}

.may-core-panel,
.may-core-card,
.may-core-faq-list article,
.may-empty-state,
.may-service-archive-cta,
.may-article-cta {
  padding: 26px;
}

.may-core-card-grid {
  align-items: stretch;
}

.may-core-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.may-core-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #efe3d2;
  color: #8b612c;
}

.may-core-card h3,
.may-core-panel h2,
.may-pricing-group h2,
.may-article-cta h2 {
  color: #2f2118;
}

.may-core-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.may-core-list li {
  position: relative;
  padding-left: 26px;
  color: #6d5748;
  line-height: 1.65;
}

.may-core-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c69449;
}

.may-core-steps {
  gap: 18px;
}

.may-core-steps article {
  border: 1px solid rgba(194, 145, 77, 0.24);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 34px rgba(69, 43, 26, 0.07);
}

.may-core-final-cta {
  margin: 26px 0 0;
  background:
    linear-gradient(135deg, rgba(47, 33, 24, 0.96), rgba(103, 71, 41, 0.94)),
    #2f2118;
  color: rgba(255, 250, 242, 0.86);
}

.may-core-final-cta .may-container {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.may-core-final-cta h2,
.may-core-final-cta .may-section-label {
  color: #fffaf2;
}

.may-page-filterbar {
  padding: 20px 0;
  background: rgba(255, 252, 247, 0.88);
  border-bottom: 1px solid rgba(194, 145, 77, 0.16);
}

.may-page-filterbar .may-service-filter {
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.may-service-filter a {
  white-space: nowrap;
}

.may-service-grid,
.may-blog-grid,
.may-post-grid {
  align-items: stretch;
}

.may-service-card,
.may-post-card {
  border-color: rgba(194, 145, 77, 0.24);
  background: rgba(255, 253, 248, 0.96);
}

.may-pricing-filter {
  margin-bottom: 26px;
}

.may-pricing-page {
  display: grid;
  gap: 24px;
}

.may-pricing-group {
  padding: 24px;
}

.may-pricing-group__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.may-pricing-group__head p {
  max-width: 460px;
  margin: 0;
  color: #7a6252;
}

.may-booking-focused .may-booking-section {
  padding-top: 56px;
}

.may-booking-card,
.may-booking-highlights {
  border-radius: 24px;
}

.may-article-layout {
  align-items: start;
}

.may-article-image {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(194, 145, 77, 0.24);
  box-shadow: 0 18px 44px rgba(69, 43, 26, 0.1);
}

.may-article-side {
  position: sticky;
  top: 94px;
}

.may-video-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.98), rgba(255, 252, 247, 0.98));
}

.may-video-row {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, 0.72fr));
  gap: 18px;
  align-items: stretch;
}

.may-short-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.96);
}

.may-short-card--featured {
  grid-row: span 2;
}

.may-short-card__media {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 9 / 16;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #efe3d2;
  cursor: pointer;
}

.may-short-card--featured .may-short-card__media {
  aspect-ratio: 4 / 5;
}

.may-short-card__thumb-img,
.may-short-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-short-card__play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.94);
  color: #8b612c;
  box-shadow: 0 14px 28px rgba(44, 27, 16, 0.18);
}

.may-short-card__play svg {
  width: 20px;
  height: 20px;
}

.may-short-card__body {
  display: grid;
  gap: 6px;
  padding: 16px 4px 2px;
}

.may-short-card__body h3 {
  margin: 0;
  color: #2f2118;
}

.may-gallery-section {
  overflow: hidden;
}

.may-gallery-shell {
  position: relative;
}

.may-gallery-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
}

.may-gallery-card {
  flex: 0 0 min(74vw, 420px);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(194, 145, 77, 0.24);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 42px rgba(69, 43, 26, 0.08);
}

.may-gallery-card__media {
  border: 0;
  border-radius: 0;
  background: #efe3d2;
}

.may-gallery-card__media img,
.may-gallery-card__media picture {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-gallery-card__body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.may-gallery-card__body h3,
.may-gallery-card__body p {
  margin: 0;
}

.may-gallery-card__link {
  display: inline-flex;
  width: fit-content;
  color: #8b612c;
  font-weight: 800;
}

.may-gallery-nav {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(194, 145, 77, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.96);
  color: #6d4421;
  box-shadow: 0 16px 28px rgba(69, 43, 26, 0.12);
  cursor: pointer;
}

.may-gallery-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.may-gallery-nav--prev {
  left: 8px;
}

.may-gallery-nav--next {
  right: 8px;
}

.may-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 26px;
  background:
    radial-gradient(circle at 18% 0%, rgba(198, 148, 73, 0.24), transparent 32%),
    linear-gradient(135deg, #20150f, #332116 62%, #1c120d);
  color: rgba(255, 250, 242, 0.82);
}

.may-footer::before,
.may-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.may-footer--image::before {
  background-image: var(--may-footer-bg-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.may-footer::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(31, 20, 14, 0.96), rgba(31, 20, 14, calc(var(--may-footer-overlay, 0.62) + 0.1)) 48%, rgba(31, 20, 14, var(--may-footer-overlay, 0.62))),
    rgba(31, 20, 14, var(--may-footer-overlay, 0.62));
}

.may-footer__inner {
  display: grid;
  gap: 28px;
}

.may-footer__lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.16);
}

.may-footer__brand p {
  max-width: 560px;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.72;
}

.may-footer .may-brand {
  display: inline-flex;
}

.may-footer__grid {
  grid-template-columns: 1.12fr 0.9fr 0.9fr 0.9fr;
}

.may-footer__panel {
  display: grid;
  gap: 9px;
  align-content: start;
}

.may-footer__panel h2 {
  margin-bottom: 3px;
}

.may-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.92rem;
}

.may-footer__bottom a,
.may-footer__bottom span {
  margin: 0;
  color: inherit;
}

.may-footer-socials {
  justify-content: flex-end;
}

.may-footer-socials a,
.may-footer-socials button {
  min-width: 0;
  max-width: 100%;
  border-color: rgba(255, 250, 242, 0.18);
  background: rgba(255, 250, 242, 0.1);
}

@media (max-width: 1080px) {
  .may-video-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .may-short-card--featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .may-short-card--featured .may-short-card__media {
    aspect-ratio: 16 / 10;
  }

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

  .may-footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .may-page-hero {
    padding: 48px 0 36px;
  }

  .may-page-hero::before {
    inset: 10px;
    border-radius: 20px;
  }

  .may-page-hero__inner,
  .may-footer__lead,
  .may-footer__grid,
  .may-pricing-group__head {
    grid-template-columns: 1fr;
  }

  .may-page-hero h1 {
    font-size: 2.32rem;
  }

  .may-page-hero p {
    font-size: 1rem;
  }

  .may-page-hero--minimal .may-page-hero__copy {
    text-align: left;
  }

  .may-page-filterbar .may-service-filter {
    justify-content: flex-start;
  }

  .may-core-panel,
  .may-core-card,
  .may-core-faq-list article,
  .may-empty-state,
  .may-pricing-group,
  .may-service-archive-cta,
  .may-article-cta {
    padding: 20px;
    border-radius: 20px;
  }

  .may-video-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .may-short-card,
  .may-short-card--featured {
    flex: 0 0 76vw;
    scroll-snap-align: start;
  }

  .may-short-card--featured .may-short-card__media,
  .may-short-card__media {
    aspect-ratio: 9 / 16;
  }

  .may-gallery-card {
    flex-basis: 82vw;
  }

  .may-gallery-nav {
    display: none;
  }

  .may-footer {
    padding: 58px 0 104px;
  }

  .may-footer__lead {
    align-items: start;
  }

  .may-footer__bottom {
    display: grid;
    justify-content: start;
  }
}

:root {
  --may-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-h1-size-desktop: 3.18rem;
  --may-h1-size-mobile: 2.28rem;
  --may-h2-size-desktop: 2.42rem;
  --may-h2-size-mobile: 1.88rem;
  --may-card-title-size: 1.18rem;
  --may-body-size: 1rem;
  --may-small-size: .86rem;
  --may-line-height-heading: 1.12;
  --may-line-height-body: 1.72;
  --may-luxe-bg: #fbf8f1;
  --may-luxe-surface: #fffdf8;
  --may-luxe-surface-strong: #fff7ea;
  --may-luxe-text: #2f2118;
  --may-luxe-muted: #735f50;
  --may-luxe-accent: #b98238;
  --may-luxe-accent-dark: #8d5d24;
  --may-luxe-line: rgba(156, 111, 54, .22);
  --may-luxe-line-strong: rgba(156, 111, 54, .34);
  --may-luxe-shadow: 0 18px 44px rgba(57, 38, 23, .075);
  --may-luxe-shadow-hover: 0 22px 54px rgba(57, 38, 23, .12);
  --may-luxe-radius: 22px;
  --may-luxe-media-radius: 17px;
}

body.may-home-ui {
  overflow-x: clip;
  background:
    linear-gradient(180deg, #fffdf8 0%, var(--may-luxe-bg) 48%, #fffdf8 100%);
  color: var(--may-luxe-text);
  font-family: var(--may-font-body);
  font-size: var(--may-body-size);
  line-height: var(--may-line-height-body);
}

body.may-home-ui h1,
body.may-home-ui h2,
body.may-home-ui h3,
.may-page-hero h1,
.may-section-head h2,
.may-section-heading h2,
.may-core-panel h2,
.may-core-card h3,
.may-service-card h3,
.may-post-card__title,
.may-post-card h3,
.may-price-row h3,
.may-pricing-group__head h2,
.may-service-package h3,
.may-article-cta h2 {
  color: var(--may-luxe-text);
  font-family: var(--may-font-heading);
  font-weight: 650;
  letter-spacing: 0;
  line-height: var(--may-line-height-heading);
}

body.may-home-ui h1,
.may-page-hero h1,
.may-core-hero__copy h1 {
  font-size: var(--may-h1-size-desktop);
}

body.may-home-ui h2,
.may-section-head h2,
.may-section-heading h2,
.may-core-panel h2,
.may-pricing-group__head h2 {
  font-size: var(--may-h2-size-desktop);
}

body.may-home-ui h3,
.may-core-card h3,
.may-service-card h3,
.may-post-card__title,
.may-post-card h3,
.may-price-row h3,
.may-service-package h3 {
  font-size: var(--may-card-title-size);
}

body.may-home-ui p,
body.may-home-ui li,
.may-page-hero p,
.may-section-head p,
.may-core-panel p,
.may-core-card p,
.may-service-card p,
.may-post-card__excerpt,
.may-price-row p,
.may-service-package p,
.may-footer p {
  color: var(--may-luxe-muted);
  font-size: var(--may-body-size);
  line-height: var(--may-line-height-body);
}

.may-section-label,
.may-price-row__eyebrow,
.may-service-card__subtitle,
.may-post-card__meta,
.may-footer h2 {
  font-family: var(--may-font-body);
  font-size: var(--may-small-size);
  font-weight: 780;
  letter-spacing: .035em;
}

.may-container {
  width: min(100% - 36px, 1160px);
}

.may-section {
  padding-block: clamp(60px, 7vw, 92px);
}

.may-section-head {
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.may-section-head h2 {
  max-width: 760px;
}

.may-section-head p {
  max-width: 680px;
}

.may-btn,
.may-button,
.may-card-action,
.may-card-actions a,
.may-post-card__footer a,
.may-price-row .may-button,
.may-service-package .may-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 11px 19px;
  border: 1px solid var(--may-luxe-line-strong);
  border-radius: 999px;
  color: var(--may-luxe-text);
  font-family: var(--may-font-body);
  font-size: .94rem;
  font-weight: 780;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  white-space: normal;
  box-shadow: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.may-btn--primary,
.may-button--primary,
.may-button--small,
.may-card-action--primary,
.may-card-actions a:last-child,
.may-price-row .may-button,
.may-service-package .may-button {
  border-color: var(--may-luxe-accent);
  background: linear-gradient(180deg, #c89348, var(--may-luxe-accent-dark));
  color: #fffdf8;
  box-shadow: 0 12px 26px rgba(141, 93, 36, .2);
}

.may-btn--secondary,
.may-button--soft,
.may-button--secondary,
.may-card-action--soft,
.may-card-actions a:first-child,
.may-post-card__footer a {
  border-color: var(--may-luxe-line);
  background: rgba(255, 253, 248, .9);
  color: var(--may-luxe-text);
}

.may-btn--ghost,
.may-button--ghost {
  border-color: rgba(156, 111, 54, .18);
  background: transparent;
  color: var(--may-luxe-accent-dark);
}

.may-btn--pill {
  border-radius: 999px;
}

.may-btn-row,
.may-hero__actions,
.may-page-hero__actions,
.may-card-actions,
.may-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.may-card-actions,
.may-card__actions {
  margin-top: auto;
}

.may-card-actions a,
.may-card-action {
  flex: 1 1 128px;
  min-width: 0;
}

.may-btn:hover,
.may-button:hover,
.may-card-action:hover,
.may-card-actions a:hover,
.may-post-card__footer a:hover,
.may-price-row .may-button:hover,
.may-service-package .may-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--may-luxe-shadow-hover);
}

.may-button:empty,
.may-btn:empty,
.may-card-action:empty,
.may-card-actions a:empty {
  display: none;
}

.may-card,
.may-card--soft,
.may-service-card,
.may-post-card,
.may-review-card,
.may-faq-item,
.may-core-card,
.may-core-panel,
.may-core-faq-list article,
.may-pricing-group,
.may-price-row,
.may-service-package,
.may-booking-form,
.may-booking-highlights,
.may-booking-copy,
.may-empty-state,
.may-article-cta,
.may-service-archive-cta {
  border: 1px solid var(--may-luxe-line);
  border-radius: var(--may-luxe-radius);
  background: rgba(255, 253, 248, .96);
  box-shadow: var(--may-luxe-shadow);
}

.may-card--compact {
  border-radius: 18px;
}

.may-card--image,
.may-service-card,
.may-post-card,
.may-video-card,
.may-gallery-card {
  overflow: hidden;
}

.may-card__media,
.may-service-card__media,
.may-post-card__media,
.may-gallery-card__media,
.may-video-media,
.may-media-frame {
  overflow: hidden;
  border: 1px solid rgba(156, 111, 54, .12);
  border-radius: var(--may-luxe-media-radius);
  background:
    linear-gradient(135deg, #f4ead9, #fff8eb);
}

.may-card__media img,
.may-service-card__media img,
.may-post-card__media img,
.may-gallery-card__media img,
.may-video-media img,
.may-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-card__body,
.may-post-card__body,
.may-short-card__body,
.may-gallery-card__body {
  padding: 18px;
}

.may-card__title,
.may-service-card h3,
.may-post-card__title,
.may-gallery-card h3,
.may-short-card h3 {
  margin: 0;
}

.may-card__text,
.may-card__meta,
.may-service-card p,
.may-post-card__excerpt,
.may-gallery-card p,
.may-short-card p {
  color: var(--may-luxe-muted);
}

.may-media-placeholder {
  color: rgba(141, 93, 36, .42);
}

.may-media-placeholder svg,
.may-gallery-card__placeholder svg {
  width: 34px;
  height: 34px;
}

.may-service-grid,
.post-type-archive-may_service .may-service-grid,
.tax-may_service_category .may-service-grid,
.may-service-grid--booking,
.may-service-grid--partial,
.may-core-card-grid,
.may-blog-grid,
.may-news-grid,
.may-post-grid,
#may-home-news .may-blog-grid,
#may-section-5 .may-blog-grid,
.may-review-grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
}

.may-service-grid,
.post-type-archive-may_service .may-service-grid,
.tax-may_service_category .may-service-grid,
.may-service-grid--booking,
.may-core-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.may-service-grid--partial {
  max-width: 900px;
  margin-inline: auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.may-blog-grid,
.may-news-grid,
.may-post-grid,
#may-home-news .may-blog-grid,
#may-section-5 .may-blog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.may-service-card,
.may-post-card,
.may-video-card,
.may-gallery-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
}

.may-service-card {
  gap: 12px;
  padding: 14px;
}

.may-service-card__media {
  aspect-ratio: 4 / 3;
  margin: 0;
}

.may-service-card h3 {
  padding-inline: 2px;
}

.may-service-card__subtitle,
.may-service-card p,
.may-service-card__meta {
  padding-inline: 2px;
}

.may-service-card__meta {
  display: grid;
  gap: 5px;
  color: var(--may-luxe-muted);
}

.may-service-card__meta strong {
  color: var(--may-luxe-text);
}

.may-post-card__media {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  border-width: 0 0 1px;
}

.may-post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
}

.may-post-card__title {
  font-size: 1.08rem;
}

.may-post-card__footer {
  margin-top: auto;
}

.may-post-card__footer a {
  width: fit-content;
  min-height: 38px;
  padding: 9px 15px;
}

.may-page-hero {
  padding: 68px 0 56px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(246, 239, 227, .92)),
    var(--may-luxe-bg);
}

.may-page-hero::before {
  inset: 20px;
  border-color: rgba(156, 111, 54, .16);
}

.may-page-hero__inner {
  grid-template-columns: minmax(0, .95fr) minmax(300px, .72fr);
  gap: clamp(26px, 4vw, 46px);
}

.may-page-hero__copy {
  max-width: 750px;
}

.may-page-hero p {
  max-width: 680px;
  margin-top: 16px;
}

.may-page-hero__visual {
  gap: 14px;
}

.may-page-hero__media,
.may-page-hero__card {
  border-color: var(--may-luxe-line);
  border-radius: 24px;
  box-shadow: var(--may-luxe-shadow);
}

.may-page-hero__media img {
  aspect-ratio: 4 / 3;
}

.may-page-hero__card {
  min-height: 0;
  padding: 24px;
}

.may-page-filterbar .may-service-filter {
  gap: 10px;
}

.may-service-filter a {
  border-color: var(--may-luxe-line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 10px 24px rgba(57, 38, 23, .045);
}

.may-service-filter a.is-active,
.may-service-filter a:hover {
  border-color: var(--may-luxe-accent);
  background: rgba(185, 130, 56, .12);
  color: var(--may-luxe-text);
}

.may-pricing-page {
  max-width: 980px;
  margin-inline: auto;
}

.may-pricing-group {
  padding: clamp(20px, 3vw, 30px);
}

.may-price-list--page,
.may-service-package-list {
  display: grid;
  gap: 13px;
}

.may-price-row,
.may-service-package {
  grid-template-columns: minmax(0, 1fr) minmax(116px, auto) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  box-shadow: none;
}

.may-price-row h3,
.may-service-package h3 {
  margin-bottom: 4px;
}

.may-price-row__meta,
.may-service-package > strong {
  color: var(--may-luxe-text);
}

.may-price-row .may-button,
.may-service-package .may-button {
  min-width: 112px;
  min-height: 40px;
  white-space: nowrap;
}

.may-booking-section .may-container,
.may-booking-focused .may-booking-section .may-container {
  align-items: start;
}

.may-booking-form,
.may-booking-copy,
.may-booking-highlights {
  border-radius: 24px;
}

.may-booking-form {
  gap: 15px;
  padding: clamp(22px, 3vw, 34px);
}

.may-booking-form input,
.may-booking-form select,
.may-booking-form textarea {
  border-color: var(--may-luxe-line);
  border-radius: 14px;
  background: rgba(255, 253, 248, .94);
}

.may-core-split {
  gap: clamp(18px, 3vw, 32px);
}

.may-core-card,
.may-core-panel,
.may-core-faq-list article,
.may-core-steps article {
  transition: transform .18s ease, box-shadow .18s ease;
}

.may-core-card:hover,
.may-service-card:hover,
.may-post-card:hover,
.may-gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--may-luxe-shadow-hover);
}

.may-core-steps article {
  min-height: 100%;
}

.may-core-final-cta {
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 148, 58, .22), transparent 34%),
    linear-gradient(135deg, #24170f, #3a2618 62%, #21140d);
}

.may-video-section {
  background:
    linear-gradient(180deg, rgba(246, 239, 227, .58), rgba(255, 253, 248, .96));
}

.may-video-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.may-video-card,
.may-short-card {
  padding: 12px;
  border-color: var(--may-luxe-line);
  border-radius: 22px;
  background: rgba(255, 253, 248, .96);
}

.may-short-card--featured {
  grid-column: auto;
  grid-row: auto;
}

.may-video-media,
.may-short-card__media,
.may-short-card--featured .may-short-card__media {
  aspect-ratio: 9 / 16;
  border-radius: 18px;
}

.may-short-card__body {
  padding: 14px 4px 2px;
}

.may-short-card__body h3 {
  font-size: 1rem;
}

.may-short-card__body p {
  font-size: .9rem;
}

.may-short-card__play {
  width: 40px;
  height: 40px;
  color: var(--may-luxe-accent-dark);
}

.may-gallery-section {
  background: #fffdf8;
}

.may-gallery-shell {
  margin-inline: -4px;
}

.may-gallery-rail {
  gap: 16px;
  padding: 5px 4px 20px;
}

.may-gallery-card {
  flex: 0 0 300px;
  border-radius: 22px;
}

.may-gallery-card__media {
  aspect-ratio: 4 / 5;
  border-width: 0 0 1px;
  border-radius: 0;
}

.may-gallery-card__media img,
.may-gallery-card__media picture,
.may-gallery-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.may-gallery-card__body {
  padding: 16px;
}

.may-gallery-nav {
  width: 42px;
  height: 42px;
  border-color: var(--may-luxe-line);
  background: rgba(255, 253, 248, .96);
}

.may-footer {
  padding: 78px 0 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 148, 58, .24), transparent 28%),
    linear-gradient(135deg, #1d130e 0%, #362217 54%, #21140e 100%);
}

.may-footer::after {
  background:
    linear-gradient(90deg, rgba(29, 19, 14, .94), rgba(45, 29, 19, .86) 52%, rgba(29, 19, 14, .82)),
    rgba(29, 19, 14, var(--may-footer-overlay, .62));
}

.may-footer__lead {
  align-items: start;
  gap: 34px;
}

.may-footer__grid {
  gap: 22px;
}

.may-footer__panel {
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, .12);
  border-radius: 18px;
  background: rgba(255, 250, 242, .045);
}

.may-footer h2 {
  color: #fff7ea;
}

.may-footer p,
.may-footer a,
.may-footer__bottom {
  color: rgba(255, 250, 242, .78);
}

.may-footer-socials {
  gap: 10px;
}

.may-footer-socials a,
.may-footer-socials button {
  min-height: 44px;
  border-color: rgba(255, 250, 242, .2);
  background: rgba(255, 250, 242, .1);
  color: #fff7ea;
}

.may-faq-item__trigger {
  gap: 14px;
}

.may-faq-item__icon {
  margin-left: auto;
}

.may-pagination,
.may-post-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
}

.may-pagination a,
.may-pagination span,
.may-post-pagination a,
.may-post-pagination span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--may-luxe-line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: var(--may-luxe-text);
  font-weight: 760;
}

@media (max-width: 1120px) {
  .may-blog-grid,
  .may-news-grid,
  .may-post-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .may-video-row {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}

@media (max-width: 920px) {
  .may-page-hero__inner,
  .may-footer__lead,
  .may-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .may-service-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-core-card-grid--three,
  .may-blog-grid,
  .may-news-grid,
  .may-post-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .may-price-row,
  .may-service-package {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .may-price-row .may-button,
  .may-service-package .may-button {
    grid-column: 1 / -1;
    width: fit-content;
  }

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

@media (max-width: 760px) {
  :root {
    --may-h1-size-desktop: var(--may-h1-size-mobile);
    --may-h2-size-desktop: var(--may-h2-size-mobile);
    --may-body-size: .96rem;
  }

  body.may-home-ui h1,
  .may-page-hero h1,
  .may-core-hero__copy h1 {
    font-size: var(--may-h1-size-mobile);
  }

  body.may-home-ui h2,
  .may-section-head h2,
  .may-section-heading h2,
  .may-core-panel h2,
  .may-pricing-group__head h2 {
    font-size: var(--may-h2-size-mobile);
  }

  .may-container {
    width: min(100% - 28px, 100%);
  }

  .may-section {
    padding-block: 48px;
  }

  .may-page-hero {
    padding: 42px 0 34px;
  }

  .may-page-hero__inner,
  .may-footer__lead,
  .may-footer__grid,
  .may-pricing-group__head {
    grid-template-columns: 1fr;
  }

  .may-page-hero--minimal .may-page-hero__copy {
    text-align: left;
  }

  .may-page-hero__actions .may-button,
  .may-hero__actions .may-button {
    width: auto;
    flex: 1 1 148px;
  }

  .may-card__body,
  .may-post-card__body,
  .may-short-card__body,
  .may-gallery-card__body {
    padding: 14px;
  }

  .may-service-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-core-card-grid--three,
  .may-blog-grid,
  .may-news-grid,
  .may-post-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .may-service-card {
    padding: 10px;
    border-radius: 18px;
  }

  .may-service-card__media,
  .may-post-card__media {
    border-radius: 13px;
  }

  .may-service-card h3,
  .may-post-card__title {
    font-size: .98rem;
  }

  .may-service-card p,
  .may-post-card__excerpt {
    font-size: .86rem;
    line-height: 1.55;
  }

  .may-card-actions,
  .may-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .may-card-actions a,
  .may-card-action,
  .may-button,
  .may-btn {
    min-height: 40px;
    padding: 9px 12px;
    font-size: .86rem;
  }

  .may-video-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }

  .may-video-card,
  .may-short-card,
  .may-short-card--featured {
    flex: 0 0 min(46vw, 188px);
    scroll-snap-align: start;
  }

  .may-gallery-card {
    flex-basis: 78vw;
  }

  .may-footer {
    padding-bottom: 104px;
  }
}

@media (max-width: 360px) {
  .may-service-grid,
  .post-type-archive-may_service .may-service-grid,
  .tax-may_service_category .may-service-grid,
  .may-service-grid--booking,
  .may-core-card-grid--three,
  .may-blog-grid,
  .may-news-grid,
  .may-post-grid,
  #may-home-news .may-blog-grid,
  #may-section-5 .may-blog-grid {
    grid-template-columns: 1fr !important;
  }

  .may-video-card,
  .may-short-card,
  .may-short-card--featured {
    flex-basis: 74vw;
  }
}

/* Service and video premium polish */
body.may-home-ui .may-service-grid,
body.may-home-ui.post-type-archive-may_service .may-service-grid,
body.may-home-ui.tax-may_service_category .may-service-grid,
body.may-home-ui .may-service-grid--booking,
body.may-home-ui .may-booking-suggestions .may-service-grid {
  width: min(100%, 1080px);
  margin-inline: auto;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.6vw, 28px);
  align-items: stretch;
}

body.may-home-ui .may-service-grid--partial {
  width: min(100%, 900px);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

body.may-home-ui .may-service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(194, 141, 56, .28);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(252, 246, 235, .96));
  box-shadow: 0 18px 42px rgba(79, 52, 28, .09);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

@media (hover: hover) and (pointer: fine) {
  body.may-home-ui .may-service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(194, 141, 56, .42);
    box-shadow: 0 22px 52px rgba(79, 52, 28, .13);
  }
}

body.may-home-ui .may-service-card__media {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(194, 141, 56, .24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 25% 12%, rgba(214, 172, 102, .28), transparent 36%),
    linear-gradient(135deg, #f5ead8, #fffaf0);
}

body.may-home-ui .may-service-card__media img,
body.may-home-ui .may-service-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.may-home-ui .may-service-card__media .may-media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: rgba(141, 93, 36, .42);
}

body.may-home-ui .may-service-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  max-width: calc(100% - 24px);
  min-height: 32px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(255, 253, 248, .34);
  border-radius: 999px;
  background: rgba(62, 47, 34, .82);
  color: #fffaf2;
  font-size: .78rem;
  font-weight: 780;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(34, 22, 14, .22);
}

body.may-home-ui .may-service-card__duration-pill {
  position: absolute;
  right: 16px;
  bottom: 12px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border: 1px solid rgba(255, 253, 248, .76);
  border-radius: 999px;
  background: rgba(255, 253, 248, .94);
  color: var(--may-luxe-text, #2f2319);
  font-size: .83rem;
  font-weight: 820;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 10px 24px rgba(41, 28, 18, .12);
}

body.may-home-ui .may-service-card__body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 11px;
  padding: 16px 4px 4px;
}

body.may-home-ui .may-service-card__title,
body.may-home-ui .may-service-card h3 {
  margin: 0;
  padding: 0;
  color: var(--may-luxe-text, #2f2319);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  font-weight: 760;
  line-height: 1.22;
}

body.may-home-ui .may-service-card__subtitle {
  display: block;
  padding: 0;
  color: rgba(156, 111, 54, .86);
  font-size: .78rem;
  font-weight: 820;
  line-height: 1.35;
  text-transform: none;
}

body.may-home-ui .may-service-card__desc,
body.may-home-ui .may-service-card p {
  display: -webkit-box;
  min-height: calc(1.55em * 2);
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--may-luxe-muted, #6f6258);
  font-size: .94rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.may-home-ui .may-service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
  padding: 0;
}

body.may-home-ui .may-service-card__price,
body.may-home-ui .may-service-card__meta strong {
  flex: 1 1 100%;
  color: #087a3e;
  font-size: 1.04rem;
  font-weight: 860;
  line-height: 1.2;
}

body.may-home-ui .may-service-card__chip,
body.may-home-ui .may-service-card__meta span {
  display: inline-flex;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(194, 141, 56, .22);
  border-radius: 999px;
  background: rgba(255, 253, 248, .88);
  color: rgba(62, 47, 34, .84);
  font-size: .8rem;
  font-weight: 760;
  line-height: 1.15;
}

body.may-home-ui .may-service-card__actions,
body.may-home-ui .may-service-card .may-card-actions,
body.may-home-ui .may-service-card .may-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: auto;
  padding-top: 4px;
}

body.may-home-ui .may-service-card__actions .may-card-action,
body.may-home-ui .may-service-card .may-card-actions .may-card-action,
body.may-home-ui .may-service-card .may-card__actions .may-card-action,
body.may-home-ui .may-service-card .may-card-actions a {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 820;
  line-height: 1.15;
  white-space: normal;
}

body.may-home-ui .may-service-card__actions .may-card-action--soft,
body.may-home-ui .may-service-card .may-card-actions .may-card-action--soft,
body.may-home-ui .may-service-card .may-card-actions a:first-child {
  border-color: rgba(156, 111, 54, .32);
  background: rgba(255, 253, 248, .92);
  color: var(--may-luxe-text, #2f2319);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .52);
}

body.may-home-ui .may-service-card__actions .may-card-action--primary,
body.may-home-ui .may-service-card .may-card-actions .may-card-action--primary,
body.may-home-ui .may-service-card .may-card-actions a:last-child {
  border-color: rgba(185, 130, 56, .78);
  background: linear-gradient(180deg, #c9954f, #9e6429);
  color: #fffdf8;
  box-shadow: 0 12px 26px rgba(141, 93, 36, .22);
}

body.may-home-ui .may-video-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 168, 91, .2), transparent 34%),
    linear-gradient(180deg, rgba(252, 246, 235, .96), rgba(255, 253, 248, .98));
}

body.may-home-ui .may-video-section .may-container {
  width: min(100% - 36px, 1160px);
}

body.may-home-ui .may-video-row,
body.may-home-ui .may-video-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2.4vw, 26px);
  align-items: stretch;
  overflow: visible;
  padding-bottom: 0;
}

body.may-home-ui .may-video-card,
body.may-home-ui .may-short-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(194, 141, 56, .28);
  border-radius: 26px;
  background: #211712;
  box-shadow: 0 22px 46px rgba(64, 42, 24, .14);
  transition: transform .18s ease, box-shadow .18s ease;
}

body.may-home-ui .may-short-card--featured {
  grid-column: auto;
  grid-row: auto;
}

body.may-home-ui .may-video-card__media,
body.may-home-ui .may-video-media,
body.may-home-ui .may-short-card__media,
body.may-home-ui .may-short-card--featured .may-short-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 246, 226, .18), transparent 34%),
    linear-gradient(180deg, #49311f, #211712);
  color: #fffaf2;
  cursor: pointer;
}

body.may-home-ui button.may-video-card__media,
body.may-home-ui button.may-short-card__media {
  padding: 0;
  font: inherit;
  text-align: inherit;
}

body.may-home-ui .may-video-card__thumb,
body.may-home-ui .may-short-card__thumb-img,
body.may-home-ui .may-short-card__media img,
body.may-home-ui .may-video-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .22s ease;
}

body.may-home-ui .may-video-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(29, 19, 14, .05) 0%, rgba(29, 19, 14, .2) 48%, rgba(29, 19, 14, .72) 100%);
}

body.may-home-ui .may-video-card__play,
body.may-home-ui .may-short-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, .36);
  border-radius: 999px;
  background: rgba(255, 253, 248, .28);
  color: #fffdf8;
  box-shadow: 0 16px 36px rgba(22, 14, 9, .28);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

body.may-home-ui .may-video-card__play svg,
body.may-home-ui .may-short-card__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

body.may-home-ui .may-video-card__content {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 5;
  display: grid;
  gap: 6px;
  justify-items: center;
  pointer-events: none;
}

body.may-home-ui .may-video-card__title {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, .22);
  border-radius: 999px;
  background: rgba(35, 24, 17, .72);
  color: #f7d996;
  font-size: .86rem;
  font-weight: 820;
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
  backdrop-filter: blur(8px);
}

body.may-home-ui .may-video-card__caption,
body.may-home-ui .may-short-card__body {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.may-home-ui .may-video-card:hover,
  body.may-home-ui .may-short-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 58px rgba(64, 42, 24, .18);
  }

  body.may-home-ui .may-video-card__media:hover .may-video-card__thumb,
  body.may-home-ui .may-short-card__media:hover .may-short-card__thumb-img {
    transform: scale(1.045);
  }
}

@media (max-width: 920px) {
  body.may-home-ui .may-service-grid,
  body.may-home-ui.post-type-archive-may_service .may-service-grid,
  body.may-home-ui.tax-may_service_category .may-service-grid,
  body.may-home-ui .may-service-grid--booking,
  body.may-home-ui .may-booking-suggestions .may-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.may-home-ui .may-video-row,
  body.may-home-ui .may-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.may-home-ui .may-service-grid,
  body.may-home-ui.post-type-archive-may_service .may-service-grid,
  body.may-home-ui.tax-may_service_category .may-service-grid,
  body.may-home-ui .may-service-grid--booking,
  body.may-home-ui .may-service-grid--partial,
  body.may-home-ui .may-booking-suggestions .may-service-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  body.may-home-ui .may-service-card {
    padding: 8px;
    border-radius: 18px;
  }

  body.may-home-ui .may-service-card__media {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  body.may-home-ui .may-service-card__badge {
    top: 8px;
    left: 8px;
    min-height: 26px;
    padding: 6px 9px;
    font-size: .7rem;
  }

  body.may-home-ui .may-service-card__duration-pill {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 28px;
    padding: 6px 9px;
    font-size: .72rem;
  }

  body.may-home-ui .may-service-card__body {
    gap: 8px;
    padding: 11px 2px 2px;
  }

  body.may-home-ui .may-service-card__title,
  body.may-home-ui .may-service-card h3 {
    font-size: .95rem;
    line-height: 1.24;
  }

  body.may-home-ui .may-service-card__subtitle {
    font-size: .68rem;
  }

  body.may-home-ui .may-service-card__desc,
  body.may-home-ui .may-service-card p {
    min-height: 0;
    font-size: .8rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  body.may-home-ui .may-service-card__price,
  body.may-home-ui .may-service-card__meta strong {
    font-size: .92rem;
  }

  body.may-home-ui .may-service-card__chip,
  body.may-home-ui .may-service-card__meta span {
    min-height: 26px;
    padding: 5px 8px;
    font-size: .69rem;
  }

  body.may-home-ui .may-service-card__actions,
  body.may-home-ui .may-service-card .may-card-actions,
  body.may-home-ui .may-service-card .may-card__actions {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  body.may-home-ui .may-service-card__actions .may-card-action,
  body.may-home-ui .may-service-card .may-card-actions .may-card-action,
  body.may-home-ui .may-service-card .may-card__actions .may-card-action,
  body.may-home-ui .may-service-card .may-card-actions a {
    min-height: 38px;
    padding: 8px 10px;
    font-size: .78rem;
  }

  body.may-home-ui .may-video-section .may-container {
    width: min(100% - 28px, 100%);
  }

  body.may-home-ui .may-video-row,
  body.may-home-ui .may-video-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  body.may-home-ui .may-video-card,
  body.may-home-ui .may-short-card,
  body.may-home-ui .may-short-card--featured {
    flex: none;
    border-radius: 20px;
  }

  body.may-home-ui .may-video-card__media,
  body.may-home-ui .may-video-media,
  body.may-home-ui .may-short-card__media,
  body.may-home-ui .may-short-card--featured .may-short-card__media {
    border-radius: 20px;
  }

  body.may-home-ui .may-video-card__play,
  body.may-home-ui .may-short-card__play {
    width: 48px;
    height: 48px;
  }

  body.may-home-ui .may-video-card__play svg,
  body.may-home-ui .may-short-card__play svg {
    width: 20px;
    height: 20px;
  }

  body.may-home-ui .may-video-card__content {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  body.may-home-ui .may-video-card__title {
    min-height: 36px;
    padding: 8px 10px;
    font-size: .72rem;
  }
}

@media (max-width: 340px) {
  body.may-home-ui .may-service-grid,
  body.may-home-ui.post-type-archive-may_service .may-service-grid,
  body.may-home-ui.tax-may_service_category .may-service-grid,
  body.may-home-ui .may-service-grid--booking,
  body.may-home-ui .may-service-grid--partial,
  body.may-home-ui .may-booking-suggestions .may-service-grid {
    grid-template-columns: 1fr !important;
  }

  body.may-home-ui .may-video-row,
  body.may-home-ui .may-video-grid {
    gap: 9px;
  }

  body.may-home-ui .may-video-card__title {
    min-height: 32px;
    padding: 7px 8px;
    font-size: .68rem;
  }
}

/* Global typography application */
:root {
  --may-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --may-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-font-heading-safe: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-text-xs: clamp(.75rem, .72rem + .12vw, .82rem);
  --may-text-sm: clamp(.82rem, .79rem + .16vw, .9rem);
  --may-text-md: clamp(.94rem, .9rem + .18vw, 1rem);
  --may-text-lg: clamp(1.04rem, .98rem + .26vw, 1.16rem);
  --may-text-xl: clamp(1.18rem, 1.08rem + .42vw, 1.38rem);
  --may-h1: clamp(2.25rem, 5vw, 4rem);
  --may-h1-hero: clamp(2.35rem, 6vw, 4.5rem);
  --may-h2: clamp(1.75rem, 3.2vw, 2.75rem);
  --may-h3: clamp(1.18rem, 1.7vw, 1.48rem);
  --may-h4: clamp(1.02rem, 1.2vw, 1.18rem);
  --may-leading-tight: 1.08;
  --may-leading-heading: 1.14;
  --may-leading-body: 1.68;
  --may-leading-ui: 1.18;
  --may-tracking-eyebrow: .035em;
  --may-tracking-ui: 0;
  --may-btn-height-sm: 38px;
  --may-btn-height-md: 44px;
  --may-btn-height-lg: 52px;
  --may-btn-radius: 999px;
  --may-btn-font-size: var(--may-text-sm);
  --may-btn-font-weight: 760;
  --may-space-1: .25rem;
  --may-space-2: .5rem;
  --may-space-3: .75rem;
  --may-space-4: 1rem;
  --may-space-5: 1.5rem;
  --may-space-6: 2rem;
  --may-section-y: clamp(58px, 7vw, 94px);
  --may-section-y-sm: clamp(42px, 5vw, 68px);
  --may-container: 1180px;
  --may-container-narrow: 920px;
  --may-h1-size-desktop: var(--may-h1);
  --may-h1-size-mobile: clamp(2rem, 9vw, 2.5rem);
  --may-h2-size-desktop: var(--may-h2);
  --may-h2-size-mobile: clamp(1.62rem, 7vw, 2rem);
  --may-card-title-size: var(--may-h4);
  --may-body-size: var(--may-text-md);
  --may-small-size: var(--may-text-sm);
  --may-line-height-heading: var(--may-leading-heading);
  --may-line-height-body: var(--may-leading-body);
  --may-h1-size: var(--may-h1-size-desktop);
  --may-h2-size: var(--may-h2-size-desktop);
  --may-h3-size: var(--may-h3);
  --may-heading-line: var(--may-line-height-heading);
  --may-body-line: var(--may-line-height-body);
  --may-text-main: var(--may-text, #2f2a24);
  --may-text-soft: var(--may-muted, #766f64);
  --may-text-muted: rgba(118, 111, 100, .78);
}

body.may-home-ui {
  font-family: var(--may-font-body);
  font-size: var(--may-body-size);
  line-height: var(--may-leading-body);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.may-home-ui button,
body.may-home-ui input,
body.may-home-ui select,
body.may-home-ui textarea,
body.may-home-ui .may-button,
body.may-home-ui .may-btn,
body.may-home-ui .may-card-action,
body.may-home-ui .may-card-actions a,
body.may-home-ui .may-submit,
body.may-home-ui .may-nav a,
body.may-home-ui .may-header-actions a,
body.may-home-ui .may-contact-chip,
body.may-home-ui .may-footer-socials a,
body.may-home-ui .may-footer-socials button {
  font-family: var(--may-font-ui);
}

body.may-home-ui h1,
body.may-home-ui h2,
body.may-home-ui h3,
body.may-home-ui h4,
body.may-home-ui .may-page-title,
body.may-home-ui .may-section-title,
body.may-home-ui .may-page-hero h1,
body.may-home-ui .may-core-hero__copy h1,
body.may-home-ui .may-section-head h2,
body.may-home-ui .may-section-heading h2,
body.may-home-ui .may-core-panel h2,
body.may-home-ui .may-pricing-group__head h2,
body.may-home-ui .may-final-cta h2,
body.may-home-ui .may-footer h2 {
  font-family: var(--may-font-heading);
  font-weight: 660;
  line-height: var(--may-leading-heading);
  letter-spacing: 0;
  text-wrap: wrap;
}

body.may-home-ui h1,
body.may-home-ui .may-page-title,
body.may-home-ui .may-page-hero h1 {
  font-size: var(--may-h1);
  line-height: var(--may-leading-tight);
}

body.may-home-ui .may-hero h1,
body.may-home-ui .may-core-hero__copy h1 {
  font-size: var(--may-h1-hero);
  line-height: var(--may-leading-tight);
}

body.may-home-ui h2,
body.may-home-ui .may-section-title,
body.may-home-ui .may-section-head h2,
body.may-home-ui .may-section-heading h2,
body.may-home-ui .may-core-panel h2,
body.may-home-ui .may-pricing-group__head h2,
body.may-home-ui .may-final-cta h2 {
  font-size: var(--may-h2);
}

body.may-home-ui h3,
body.may-home-ui h4,
body.may-home-ui .may-card-title,
body.may-home-ui .may-service-card__title,
body.may-home-ui .may-service-card h3,
body.may-home-ui .may-post-card__title,
body.may-home-ui .may-post-card h3,
body.may-home-ui .may-gallery-card h3,
body.may-home-ui .may-review-card h3,
body.may-home-ui .may-faq-item h3,
body.may-home-ui .may-core-faq-list h3,
body.may-home-ui .may-price-row h3,
body.may-home-ui .may-service-package h3 {
  font-family: var(--may-font-heading);
  font-size: var(--may-h4);
  font-weight: 680;
  line-height: 1.22;
  letter-spacing: 0;
}

body.may-home-ui p,
body.may-home-ui li,
body.may-home-ui .may-section-subtitle,
body.may-home-ui .may-card-text,
body.may-home-ui .may-body-text,
body.may-home-ui .may-page-hero p,
body.may-home-ui .may-section-head p,
body.may-home-ui .may-core-panel p,
body.may-home-ui .may-core-card p,
body.may-home-ui .may-service-card__desc,
body.may-home-ui .may-service-card p,
body.may-home-ui .may-post-card__excerpt,
body.may-home-ui .may-gallery-card p,
body.may-home-ui .may-review-card p,
body.may-home-ui .may-faq-answer p,
body.may-home-ui .may-faq-item__panel p,
body.may-home-ui .may-price-row p,
body.may-home-ui .may-service-package p,
body.may-home-ui .may-footer p,
body.may-home-ui .may-footer a {
  font-family: var(--may-font-body);
  font-size: var(--may-text-md);
  line-height: var(--may-leading-body);
  letter-spacing: 0;
}

body.may-home-ui .may-eyebrow,
body.may-home-ui .may-meta-text,
body.may-home-ui .may-section-label,
body.may-home-ui .may-price-row__eyebrow,
body.may-home-ui .may-service-card__subtitle,
body.may-home-ui .may-post-card__meta,
body.may-home-ui .may-post-card__body > span,
body.may-home-ui .may-service-card__chip,
body.may-home-ui .may-service-card__meta span,
body.may-home-ui .may-service-card__badge,
body.may-home-ui .may-service-card__duration-pill,
body.may-home-ui .may-video-card__title,
body.may-home-ui .may-contact-chip,
body.may-home-ui .may-language-switcher,
body.may-home-ui .may-pagination a,
body.may-home-ui .may-pagination span,
body.may-home-ui .may-post-pagination a,
body.may-home-ui .may-post-pagination span {
  font-family: var(--may-font-ui);
  letter-spacing: var(--may-tracking-ui);
  line-height: var(--may-leading-ui);
}

body.may-home-ui .may-section-label,
body.may-home-ui .may-price-row__eyebrow,
body.may-home-ui .may-service-card__subtitle,
body.may-home-ui .may-post-card__meta,
body.may-home-ui .may-post-card__body > span {
  font-size: var(--may-text-sm);
  font-weight: 760;
  letter-spacing: var(--may-tracking-eyebrow);
}

body.may-home-ui .may-nav a,
body.may-home-ui .may-header-actions a,
body.may-home-ui .may-language-switcher {
  font-size: var(--may-text-sm);
  font-weight: 720;
  line-height: var(--may-leading-ui);
}

body.may-home-ui .may-btn,
body.may-home-ui .may-button,
body.may-home-ui .may-card-action,
body.may-home-ui .may-card-actions a,
body.may-home-ui .may-post-card__footer a,
body.may-home-ui .may-price-row .may-button,
body.may-home-ui .may-service-package .may-button,
body.may-home-ui .may-booking-form button,
body.may-home-ui .may-submit {
  min-height: var(--may-btn-height-md);
  border-radius: var(--may-btn-radius);
  font-family: var(--may-font-ui);
  font-size: var(--may-btn-font-size);
  font-weight: var(--may-btn-font-weight);
  line-height: var(--may-leading-ui);
  letter-spacing: var(--may-tracking-ui);
}

body.may-home-ui .may-hero__actions .may-button,
body.may-home-ui .may-page-hero__actions .may-button,
body.may-home-ui .may-final-cta .may-button {
  min-height: var(--may-btn-height-lg);
  font-size: var(--may-text-sm);
}

body.may-home-ui .may-service-card__title,
body.may-home-ui .may-service-card h3 {
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
}

body.may-home-ui .may-service-card__desc,
body.may-home-ui .may-service-card p {
  font-size: var(--may-text-sm);
  line-height: 1.56;
}

body.may-home-ui .may-service-card__price,
body.may-home-ui .may-service-card__meta strong {
  font-family: var(--may-font-ui);
  font-size: clamp(.98rem, 1vw, 1.08rem);
  font-weight: 820;
  line-height: 1.2;
}

body.may-home-ui .may-service-card__chip,
body.may-home-ui .may-service-card__meta span {
  font-size: var(--may-text-xs);
  font-weight: 730;
}

body.may-home-ui .may-video-card__title {
  font-size: clamp(.74rem, .9vw, .86rem);
  font-weight: 800;
}

body.may-home-ui .may-post-card__title,
body.may-home-ui .may-post-card h3 {
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.24;
}

body.may-home-ui .may-post-card__excerpt {
  font-size: var(--may-text-sm);
  line-height: 1.58;
}

body.may-home-ui .may-price-row h3,
body.may-home-ui .may-service-package h3 {
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
}

body.may-home-ui .may-price-row__meta,
body.may-home-ui .may-service-package > strong,
body.may-home-ui .may-pricing-group strong {
  font-family: var(--may-font-ui);
  font-size: var(--may-text-lg);
  font-weight: 820;
  line-height: 1.2;
}

body.may-home-ui .may-booking-form label,
body.may-home-ui .may-booking-form input,
body.may-home-ui .may-booking-form select,
body.may-home-ui .may-booking-form textarea {
  font-family: var(--may-font-ui);
  font-size: var(--may-text-sm);
  line-height: 1.35;
}

body.may-home-ui .may-core-faq-list h3,
body.may-home-ui .may-faq-item__trigger,
body.may-home-ui .may-faq-item h3 {
  font-family: var(--may-font-ui);
  font-size: clamp(.96rem, 1vw, 1.08rem);
  font-weight: 780;
  line-height: 1.3;
}

body.may-home-ui .may-footer h2,
body.may-home-ui .may-footer h3 {
  font-family: var(--may-font-ui);
  font-size: var(--may-text-sm);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: var(--may-tracking-eyebrow);
}

body.may-home-ui .may-footer p,
body.may-home-ui .may-footer a,
body.may-home-ui .may-footer__bottom {
  font-size: var(--may-text-sm);
  line-height: 1.62;
}

body.may-home-ui .may-section {
  padding-block: var(--may-section-y);
}

body.may-home-ui .may-section--compact,
body.may-home-ui .may-page-filterbar {
  padding-block: var(--may-section-y-sm);
}

@media (max-width: 760px) {
  :root {
    --may-h1-size: var(--may-h1-size-mobile);
    --may-h2-size: var(--may-h2-size-mobile);
    --may-h3-size: var(--may-card-title-size);
    --may-body-size: .9375rem;
    --may-small-size: .8125rem;
    --may-section-y: clamp(42px, 10vw, 58px);
    --may-section-y-sm: clamp(34px, 8vw, 48px);
  }

  body.may-home-ui h1,
  body.may-home-ui .may-page-title,
  body.may-home-ui .may-page-hero h1,
  body.may-home-ui .may-hero h1,
  body.may-home-ui .may-core-hero__copy h1 {
    font-size: var(--may-h1-size-mobile);
    line-height: 1.1;
  }

  body.may-home-ui h2,
  body.may-home-ui .may-section-title,
  body.may-home-ui .may-section-head h2,
  body.may-home-ui .may-section-heading h2,
  body.may-home-ui .may-core-panel h2,
  body.may-home-ui .may-pricing-group__head h2,
  body.may-home-ui .may-final-cta h2 {
    font-size: var(--may-h2-size-mobile);
    line-height: 1.16;
  }

  body.may-home-ui p,
  body.may-home-ui li,
  body.may-home-ui .may-page-hero p,
  body.may-home-ui .may-section-head p,
  body.may-home-ui .may-core-panel p {
    font-size: var(--may-text-md);
    line-height: 1.62;
  }

  body.may-home-ui .may-service-card__title,
  body.may-home-ui .may-service-card h3,
  body.may-home-ui .may-post-card__title,
  body.may-home-ui .may-post-card h3 {
    font-size: clamp(.92rem, 4vw, 1.02rem);
    line-height: 1.26;
  }

  body.may-home-ui .may-service-card__desc,
  body.may-home-ui .may-service-card p,
  body.may-home-ui .may-post-card__excerpt {
    font-size: clamp(.78rem, 3vw, .86rem);
    line-height: 1.5;
  }

  body.may-home-ui .may-btn,
  body.may-home-ui .may-button,
  body.may-home-ui .may-card-action,
  body.may-home-ui .may-card-actions a,
  body.may-home-ui .may-booking-form button,
  body.may-home-ui .may-submit {
    min-height: 40px;
    font-size: clamp(.78rem, 3vw, .86rem);
  }

  body.may-home-ui .may-video-card__title {
    font-size: clamp(.68rem, 2.6vw, .76rem);
  }
}

/* Typography, footer, gallery polish */
:root {
  --may-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-tracking-eyebrow: .035em;
  --may-tracking-ui: normal;
}

body.may-home-ui :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .may-page-title,
  .may-section-title,
  .may-card-title,
  .may-service-card__title,
  .may-video-card__title,
  .may-news-card__title,
  .may-post-card__title,
  .may-pricing-title,
  .may-footer-title,
  .may-footer-column-title,
  .may-gallery-card h3,
  .may-price-row h3,
  .may-service-package h3
) {
  letter-spacing: normal !important;
  word-spacing: normal !important;
  font-kerning: normal;
  font-stretch: normal;
  font-variant: normal;
  font-feature-settings: normal;
  text-rendering: optimizeLegibility;
}

body.may-home-ui :where(
  .may-button,
  .may-btn,
  .may-card-action,
  .may-card-actions a,
  button,
  input,
  select,
  textarea,
  .may-nav a,
  .may-header-actions a,
  .may-footer-socials a,
  .may-footer-socials button,
  .may-contact-chip,
  .may-language-switcher
) {
  letter-spacing: normal !important;
  word-spacing: normal !important;
  text-transform: none;
}

body.may-home-ui :where(
  .may-eyebrow,
  .may-section-label,
  .may-section-kicker,
  .may-label,
  .may-meta-text,
  .may-price-row__eyebrow,
  .may-post-card__meta
) {
  max-width: 100%;
  letter-spacing: var(--may-tracking-eyebrow) !important;
  word-spacing: normal !important;
  text-transform: none;
}

body.may-home-ui .may-service-card__subtitle,
body.may-home-ui .may-service-card__chip,
body.may-home-ui .may-service-card__meta span,
body.may-home-ui .may-service-card__badge,
body.may-home-ui .may-service-card__duration-pill,
body.may-home-ui .may-video-card__title {
  letter-spacing: normal !important;
  word-spacing: normal !important;
  text-transform: none;
}

body.may-home-ui .may-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 104px) 0 clamp(30px, 4vw, 42px);
  color: #fff7ea;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 162, 73, .2), transparent 32%),
    radial-gradient(circle at 78% 10%, rgba(111, 127, 97, .18), transparent 28%),
    linear-gradient(135deg, #1c120d 0%, #332116 48%, #21140e 100%);
}

body.may-home-ui .may-footer::before,
body.may-home-ui .may-footer::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

body.may-home-ui .may-footer::before {
  z-index: -2;
  background-image: var(--may-footer-bg-image, none);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
}

body.may-home-ui .may-footer--image::before {
  opacity: .5;
}

body.may-home-ui .may-footer::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 18, 13, .88), rgba(28, 18, 13, .78) 48%, rgba(28, 18, 13, .84)),
    rgba(28, 18, 13, var(--may-footer-overlay, .78));
}

body.may-home-ui .may-footer__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1160px);
}

body.may-home-ui .may-footer__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  padding-bottom: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(255, 250, 242, .14);
}

body.may-home-ui .may-footer__brand {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

body.may-home-ui .may-footer .may-brand {
  align-items: center;
  gap: 16px;
  color: #fff7ea;
}

body.may-home-ui .may-footer .may-brand__mark {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: 18px;
  background: rgba(255, 250, 242, .1);
  color: #f4cc79;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

body.may-home-ui .may-footer .may-brand strong {
  display: block;
  color: #fffaf2;
  font-family: var(--may-font-heading);
  font-size: clamp(1.52rem, 2.5vw, 2.28rem);
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: normal;
}

body.may-home-ui .may-footer .may-brand small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 250, 242, .72);
  font-family: var(--may-font-ui);
  font-size: var(--may-text-sm);
  letter-spacing: normal;
}

body.may-home-ui .may-footer__brand p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 242, .78);
  font-size: var(--may-text-md);
  line-height: 1.68;
}

body.may-home-ui .may-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: flex-end;
  align-content: start;
}

body.may-home-ui .may-footer-socials a,
body.may-home-ui .may-footer-socials button {
  min-height: 46px;
  max-width: 100%;
  padding: 9px 14px 9px 9px;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: 999px;
  background: rgba(255, 250, 242, .09);
  color: #fff7ea;
  font-size: var(--may-text-sm);
  font-weight: 720;
  line-height: 1.16;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

@media (hover: hover) and (pointer: fine) {
  body.may-home-ui .may-footer-socials a:hover,
  body.may-home-ui .may-footer-socials button:hover {
    border-color: rgba(244, 204, 121, .42);
    background: rgba(255, 250, 242, .15);
    transform: translateY(-1px);
  }
}

body.may-home-ui .may-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr .7fr .85fr 1fr;
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(22px, 4vw, 34px);
}

body.may-home-ui .may-footer__panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, .12);
  border-radius: 20px;
  background: rgba(255, 250, 242, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

body.may-home-ui .may-footer__panel h2 {
  margin: 0 0 12px;
  color: #fffaf2;
  font-family: var(--may-font-ui);
  font-size: var(--may-text-sm);
  font-weight: 800;
  letter-spacing: .04em !important;
  line-height: 1.25;
}

body.may-home-ui .may-footer__panel p,
body.may-home-ui .may-footer__panel a {
  color: rgba(255, 250, 242, .78);
  font-size: var(--may-text-sm);
  line-height: 1.58;
}

body.may-home-ui .may-footer__panel a {
  display: block;
  width: fit-content;
  padding-block: 4px;
}

body.may-home-ui .may-footer__panel a:hover,
body.may-home-ui .may-footer__bottom a:hover {
  color: #f4cc79;
}

body.may-home-ui .may-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  margin-top: clamp(24px, 4vw, 36px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 242, .12);
  color: rgba(255, 250, 242, .62);
  font-size: var(--may-text-xs);
  line-height: 1.5;
}

body.may-home-ui .may-gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(218, 168, 82, .14), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f8efe1 100%);
}

body.may-home-ui .may-gallery-section .may-container {
  width: min(100% - 36px, 1160px);
}

body.may-home-ui .may-gallery-section .may-section-head--split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 4vw, 38px);
  text-align: left;
}

body.may-home-ui .may-gallery-section .may-section-head--split > div {
  max-width: 700px;
}

body.may-home-ui .may-gallery-cta {
  flex: 0 0 auto;
}

body.may-home-ui .may-gallery-shell {
  position: relative;
  margin-inline: 0;
  padding-inline: 50px;
}

body.may-home-ui .may-gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: clamp(16px, 2vw, 22px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 2px 28px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

body.may-home-ui .may-gallery-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(194, 141, 56, .28);
  border-radius: 24px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 18px 42px rgba(79, 52, 28, .1);
  scroll-snap-align: start;
}

body.may-home-ui .may-gallery-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(194, 141, 56, .22);
  border-radius: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(244, 204, 121, .32), transparent 36%),
    linear-gradient(135deg, #f4ead9, #fff8eb);
}

body.may-home-ui .may-gallery-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(36, 24, 16, .14));
  content: "";
}

body.may-home-ui .may-gallery-card__media img,
body.may-home-ui .may-gallery-card__media picture,
body.may-home-ui .may-gallery-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.may-home-ui .may-gallery-card__placeholder {
  display: grid;
  place-items: center;
  color: rgba(156, 111, 54, .52);
}

body.may-home-ui .may-gallery-card__placeholder svg {
  width: 42px;
  height: 42px;
}

body.may-home-ui .may-gallery-card__body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

body.may-home-ui .may-gallery-card h3 {
  margin: 0;
  color: var(--may-luxe-text, #2f2319);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.24;
}

body.may-home-ui .may-gallery-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--may-luxe-muted, #6f6258);
  font-size: var(--may-text-sm);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.may-home-ui .may-gallery-card__link {
  width: fit-content;
  color: var(--may-luxe-accent-dark, #9e6429);
  font-family: var(--may-font-ui);
  font-size: var(--may-text-sm);
  font-weight: 760;
}

body.may-home-ui .may-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(194, 141, 56, .28);
  border-radius: 999px;
  background: rgba(255, 253, 248, .94);
  color: var(--may-luxe-text, #2f2319);
  box-shadow: 0 14px 30px rgba(79, 52, 28, .14);
  transform: translateY(-50%);
}

body.may-home-ui .may-gallery-nav--prev {
  left: 0;
}

body.may-home-ui .may-gallery-nav--next {
  right: 0;
}

@media (hover: hover) and (pointer: fine) {
  body.may-home-ui .may-gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(79, 52, 28, .14);
  }

  body.may-home-ui .may-gallery-nav:hover {
    border-color: rgba(194, 141, 56, .44);
    background: #fffaf2;
  }
}

@media (max-width: 920px) {
  body.may-home-ui .may-footer__lead,
  body.may-home-ui .may-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.may-home-ui .may-footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body.may-home-ui .may-footer {
    padding: 62px 0 108px;
  }

  body.may-home-ui .may-footer__inner,
  body.may-home-ui .may-gallery-section .may-container {
    width: min(100% - 28px, 100%);
  }

  body.may-home-ui .may-footer__lead,
  body.may-home-ui .may-footer__grid {
    grid-template-columns: 1fr;
  }

  body.may-home-ui .may-footer .may-brand__mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 16px;
  }

  body.may-home-ui .may-footer .may-brand strong {
    font-size: clamp(1.32rem, 7vw, 1.78rem);
  }

  body.may-home-ui .may-footer-socials {
    gap: 9px;
  }

  body.may-home-ui .may-footer-socials a,
  body.may-home-ui .may-footer-socials button {
    min-height: 42px;
    padding: 8px 11px 8px 8px;
    font-size: var(--may-text-xs);
  }

  body.may-home-ui .may-footer__bottom {
    display: grid;
    justify-content: stretch;
  }

  body.may-home-ui .may-gallery-section .may-section-head--split {
    display: grid;
    gap: 16px;
  }

  body.may-home-ui .may-gallery-cta {
    width: fit-content;
  }

  body.may-home-ui .may-gallery-shell {
    padding-inline: 0;
  }

  body.may-home-ui .may-gallery-rail {
    grid-auto-columns: minmax(236px, 82vw);
    gap: 14px;
    padding-bottom: 20px;
  }

  body.may-home-ui .may-gallery-nav {
    display: none;
  }

  body.may-home-ui .may-gallery-card {
    border-radius: 22px;
  }

body.may-home-ui .may-gallery-card__body {
    padding: 14px;
  }
}

body.may-pricing-focused .may-pricing-content-section {
  padding-top: clamp(26px, 4vw, 48px);
}

body.may-pricing-focused .may-pricing-content-section .may-container,
body.may-pricing-focused .may-pricing-notes-section .may-container,
body.may-pricing-focused .may-pricing-final-cta .may-container {
  width: min(100% - 32px, 980px);
}

body.may-pricing-focused .may-pricing-filter {
  width: min(100%, 980px);
  margin: 0 auto clamp(24px, 3vw, 34px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

body.may-pricing-focused .may-pricing-filter a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid rgba(194, 141, 56, .26);
  border-radius: 999px;
  background: rgba(255, 253, 248, .96);
  color: var(--may-luxe-text, #2f2319);
  box-shadow: 0 12px 26px rgba(79, 52, 28, .08);
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

body.may-pricing-focused .may-pricing-page {
  width: min(100%, 980px);
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

body.may-pricing-focused .may-pricing-group {
  scroll-margin-top: 104px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(194, 141, 56, .22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(255, 249, 240, .94));
  box-shadow: 0 22px 54px rgba(79, 52, 28, .11);
}

body.may-pricing-focused .may-pricing-group__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  align-items: start;
  gap: clamp(14px, 2.5vw, 28px);
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  padding-bottom: clamp(14px, 2vw, 20px);
  border-bottom: 1px solid rgba(194, 141, 56, .16);
}

body.may-pricing-focused .may-pricing-group__head h2,
body.may-pricing-focused .may-price-row__main h3 {
  font-family: var(--may-font-heading, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-kerning: normal;
  font-feature-settings: normal;
  text-rendering: optimizeLegibility;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

body.may-pricing-focused .may-pricing-group__head h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--may-luxe-text, #2f2319);
  font-size: clamp(1.5rem, 3vw, 2.12rem);
  font-weight: 800;
  line-height: 1.16;
}

body.may-pricing-focused .may-pricing-group__head p {
  max-width: 34ch;
  margin: 0;
  color: var(--may-luxe-muted, #6f6257);
  font-size: clamp(.96rem, 1.25vw, 1.04rem);
  line-height: 1.58;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

body.may-pricing-focused .may-price-list--page {
  display: grid;
  gap: 12px;
}

body.may-pricing-focused .may-price-list--page .may-price-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, auto) minmax(136px, auto);
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(17px, 2.4vw, 22px);
  border: 1px solid rgba(194, 141, 56, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 24px rgba(79, 52, 28, .06);
}

body.may-pricing-focused .may-price-row__main {
  min-width: 0;
}

body.may-pricing-focused .may-price-row__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: none;
}

body.may-pricing-focused .may-price-row__main h3 {
  margin: 0;
  color: var(--may-luxe-text, #2f2319);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  font-weight: 800;
  line-height: 1.22;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.may-pricing-focused .may-price-row__main small {
  display: block;
  margin-top: 5px;
  color: var(--may-luxe-muted, #6f6257);
  font-family: var(--may-font-body);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

body.may-pricing-focused .may-price-row__main p {
  margin: 8px 0 0;
  color: var(--may-luxe-muted, #6f6257);
  font-size: .95rem;
  line-height: 1.6;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

body.may-pricing-focused .may-price-row__meta {
  min-width: 132px;
  display: grid;
  justify-items: end;
  gap: 7px;
  text-align: right;
}

body.may-pricing-focused .may-price-row__meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(194, 141, 56, .12);
  color: var(--may-luxe-text, #2f2319);
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: normal;
  word-spacing: normal;
}

body.may-pricing-focused .may-price-row__meta strong {
  color: var(--may-luxe-green, #087f50);
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: normal;
  word-spacing: normal;
}

body.may-pricing-focused .may-price-row .may-button {
  min-width: 136px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a2b 0%, #f06413 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(240, 100, 19, .22);
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  white-space: nowrap;
}

body.may-pricing-focused .may-pricing-notes-section {
  padding-top: clamp(52px, 6vw, 78px);
}

body.may-pricing-focused .may-pricing-notes-section .may-core-panel,
body.may-pricing-focused .may-pricing-notes-section .may-core-faq-list article {
  border-color: rgba(194, 141, 56, .2);
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 18px 42px rgba(79, 52, 28, .08);
}

body.may-pricing-focused .may-pricing-notes-section h2,
body.may-pricing-focused .may-pricing-notes-section h3 {
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

body.may-pricing-focused .may-pricing-final-cta {
  padding-top: clamp(56px, 7vw, 86px);
}

body.may-pricing-focused .may-pricing-final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.16;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

body.may-pricing-focused .may-pricing-final-cta .may-button {
  min-height: 48px;
  padding-inline: 24px;
  letter-spacing: normal;
  word-spacing: normal;
}

@media (hover: hover) and (pointer: fine) {
  body.may-pricing-focused .may-pricing-filter a:hover,
  body.may-pricing-focused .may-price-list--page .may-price-row:hover {
    border-color: rgba(194, 141, 56, .38);
    box-shadow: 0 18px 38px rgba(79, 52, 28, .1);
    transform: translateY(-1px);
  }
}

@media (max-width: 760px) {
  body.may-pricing-focused .may-pricing-content-section .may-container,
  body.may-pricing-focused .may-pricing-notes-section .may-container,
  body.may-pricing-focused .may-pricing-final-cta .may-container {
    width: min(100% - 28px, 100%);
  }

  body.may-pricing-focused .may-pricing-filter {
    width: 100%;
    margin-left: 0;
    padding: 2px 7px 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  body.may-pricing-focused .may-pricing-filter::-webkit-scrollbar {
    display: none;
  }

  body.may-pricing-focused .may-pricing-filter a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  body.may-pricing-focused .may-pricing-page {
    gap: 18px;
  }

  body.may-pricing-focused .may-pricing-group {
    padding: 18px;
    border-radius: 22px;
  }

  body.may-pricing-focused .may-pricing-group__head {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 14px;
  }

  body.may-pricing-focused .may-pricing-group__head h2 {
    max-width: none;
    font-size: clamp(1.32rem, 8vw, 1.68rem);
    line-height: 1.18;
  }

  body.may-pricing-focused .may-pricing-group__head p {
    max-width: none;
    font-size: .94rem;
  }

  body.may-pricing-focused .may-price-list--page .may-price-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 16px;
    border-radius: 16px;
  }

  body.may-pricing-focused .may-price-row__eyebrow {
    margin-bottom: 7px;
  }

  body.may-pricing-focused .may-price-row__main h3 {
    font-size: clamp(1.04rem, 5.2vw, 1.22rem);
    line-height: 1.24;
  }

  body.may-pricing-focused .may-price-row__meta {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
  }

  body.may-pricing-focused .may-price-row__meta strong {
    text-align: right;
  }

  body.may-pricing-focused .may-price-row .may-button {
    width: 100%;
    min-width: 0;
  }

  body.may-pricing-focused .may-pricing-notes-section .may-core-split {
    gap: 18px;
  }
}

body.may-booking-focused .may-booking-section {
  background:
    linear-gradient(135deg, rgba(47, 32, 22, .92), rgba(82, 54, 31, .82)),
    radial-gradient(circle at 22% 12%, rgba(255, 219, 160, .36), transparent 34%),
    #2f2016;
}

/* Split page heroes: preserve the full image and remove the auxiliary card. */
body.may-home-ui .may-page-hero--split.may-page-hero--hide-card .may-page-hero__inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  align-items: center;
}

body.may-home-ui .may-page-hero--split.may-page-hero--hide-card .may-page-hero__visual {
  display: flex;
  justify-content: flex-end;
}

body.may-home-ui .may-page-hero--split.may-page-hero--hide-card .may-page-hero__media {
  width: min(100%, 460px);
  margin: 0 0 0 auto;
  overflow: hidden;
}

body.may-home-ui .may-page-hero--split.may-page-hero--hide-card .may-page-hero__media picture,
body.may-home-ui .may-page-hero--split.may-page-hero--hide-card .may-page-hero__media img {
  display: block;
  width: 100%;
}

body.may-home-ui .may-page-hero--split.may-page-hero--hide-card .may-page-hero__media img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: right center;
}

@media (max-width: 820px) {
  body.may-home-ui .may-page-hero--split.may-page-hero--hide-card .may-page-hero__visual,
  body.may-home-ui .may-page-hero--split.may-page-hero--hide-card .may-page-hero__media {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
}

body.may-booking-focused .may-booking-grid {
  width: min(100% - 32px, 1120px);
  grid-template-columns: minmax(250px, .66fr) minmax(0, 1.34fr);
  gap: clamp(18px, 3vw, 34px);
}

body.may-booking-focused .may-booking-copy {
  position: sticky;
  top: 92px;
  border: 1px solid rgba(255, 250, 242, .16);
  border-radius: 24px;
  background: rgba(255, 250, 242, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
}

body.may-booking-focused .may-booking-form--advanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(194, 141, 56, .2);
  border-radius: 24px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 28px 70px rgba(47, 32, 22, .2);
}

body.may-booking-focused .may-booking-form__head,
body.may-booking-focused .may-booking-form__section,
body.may-booking-focused .may-booking-summary,
body.may-booking-focused .may-booking-submit-row,
body.may-booking-focused .may-booking-notice {
  grid-column: 1 / -1;
}

body.may-booking-focused .may-booking-form__head {
  display: grid;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(194, 141, 56, .18);
}

body.may-booking-focused .may-booking-form__head span,
body.may-booking-focused .may-booking-section-title span {
  color: #b98238;
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: none;
}

body.may-booking-focused .may-booking-form__head h3 {
  margin: 0;
  color: var(--may-luxe-text, #2f2319);
  font-family: var(--may-font-heading, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-size: clamp(1.28rem, 2.1vw, 1.78rem);
  line-height: 1.18;
  letter-spacing: normal;
}

body.may-booking-focused .may-booking-form__head p {
  max-width: 62ch;
  margin: 0;
  color: var(--may-luxe-muted, #6f6257);
  line-height: 1.56;
}

body.may-booking-focused .may-booking-form__section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(194, 141, 56, .16);
  border-radius: 20px;
  background: rgba(255, 249, 240, .64);
}

body.may-booking-focused .may-booking-section-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.may-booking-focused .may-booking-section-title h4 {
  margin: 0;
  color: var(--may-luxe-text, #2f2319);
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: normal;
}

body.may-booking-focused .may-booking-form--advanced .may-field {
  grid-column: 1 / -1;
}

body.may-booking-focused .may-booking-form--advanced .may-field--half {
  grid-column: span 1;
}

body.may-booking-focused .may-booking-form--advanced .may-field--compact {
  margin-top: 2px;
}

body.may-booking-focused .may-booking-service-picker,
body.may-booking-focused .may-booking-package-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

body.may-booking-focused .may-booking-service-picker {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.may-booking-focused [data-booking-service-card],
body.may-booking-focused [data-booking-package-card] {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(194, 141, 56, .2);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  color: var(--may-luxe-text, #2f2319);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 22px rgba(79, 52, 28, .06);
}

body.may-booking-focused [data-booking-service-card] {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
}

body.may-booking-focused [data-booking-service-card] strong,
body.may-booking-focused [data-booking-package-card] strong {
  min-width: 0;
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.may-booking-focused [data-booking-service-card] span,
body.may-booking-focused [data-booking-package-card] span,
body.may-booking-focused [data-booking-package-card] em {
  color: var(--may-luxe-muted, #6f6257);
  font-size: .84rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
}

body.may-booking-focused [data-booking-service-card].is-active,
body.may-booking-focused [data-booking-package-card].is-active {
  border-color: rgba(185, 130, 56, .58);
  background: #fff9ef;
  box-shadow: 0 16px 34px rgba(185, 130, 56, .14);
}

body.may-booking-focused .may-booking-package-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.may-booking-focused [data-booking-package-card] {
  display: grid;
  gap: 5px;
  padding: 12px;
}

body.may-booking-focused [data-booking-package-card][hidden],
body.may-booking-focused [data-booking-package-empty][hidden] {
  display: none !important;
}

body.may-booking-focused [data-booking-package-card] em {
  color: #087f50;
  font-weight: 900;
}

body.may-booking-focused .may-booking-package-empty,
body.may-booking-focused .may-booking-selection {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed rgba(194, 141, 56, .32);
  border-radius: 14px;
  background: rgba(255, 253, 248, .9);
  color: var(--may-luxe-muted, #6f6257);
  font-size: .9rem;
  line-height: 1.5;
}

body.may-booking-focused .may-booking-summary {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(8, 127, 80, .18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(240, 251, 245, .94), rgba(255, 253, 248, .96));
}

body.may-booking-focused .may-booking-summary > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.may-booking-focused .may-booking-summary span {
  color: #087f50;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: none;
}

body.may-booking-focused .may-booking-summary strong {
  color: var(--may-luxe-text, #2f2319);
  font-size: .95rem;
  font-weight: 900;
}

body.may-booking-focused .may-booking-summary dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

body.may-booking-focused .may-booking-summary dl div {
  min-width: 0;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
}

body.may-booking-focused .may-booking-summary dt {
  margin: 0 0 5px;
  color: var(--may-luxe-muted, #6f6257);
  font-size: .76rem;
  font-weight: 800;
}

body.may-booking-focused .may-booking-summary dd {
  margin: 0;
  color: var(--may-luxe-text, #2f2319);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.28;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.may-booking-focused .may-booking-submit-row {
  display: grid;
  gap: 10px;
}

body.may-booking-focused .may-booking-submit-row .may-button {
  min-height: 50px;
  font-size: .96rem;
}

@media (hover: hover) and (pointer: fine) {
  body.may-booking-focused [data-booking-service-card]:hover,
  body.may-booking-focused [data-booking-package-card]:hover {
    border-color: rgba(185, 130, 56, .46);
    transform: translateY(-1px);
  }
}

@media (max-width: 920px) {
  body.may-booking-focused .may-booking-grid {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-copy {
    position: static;
    order: 2;
  }

  body.may-booking-focused .may-booking-form--advanced {
    order: 1;
  }

  body.may-booking-focused .may-booking-summary dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.may-booking-focused .may-booking-grid {
    width: min(100% - 28px, 100%);
  }

  body.may-booking-focused .may-booking-form--advanced {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  body.may-booking-focused .may-booking-form__section,
  body.may-booking-focused .may-booking-service-picker,
  body.may-booking-focused .may-booking-package-list,
  body.may-booking-focused .may-booking-summary dl {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-form--advanced .may-field--half {
    grid-column: 1 / -1;
  }

  body.may-booking-focused .may-booking-summary > div:first-child {
    display: grid;
  }

  body.may-booking-focused .may-booking-submit-row {
    padding-bottom: 74px;
  }
}

/* Visual foundation */

/* Base tokens */
:root {
  --may-page-container: 1180px;
  --may-page-narrow: 960px;
  --may-page-readable: 880px;
  --may-page-gutter: clamp(28px, 5vw, 56px);
  --may-page-section: clamp(64px, 8vw, 108px);
  --may-page-section-mobile: 56px;
  --may-panel-bg: #fffdf8;
  --may-panel-soft: #fbf5eb;
  --may-panel-line: rgba(176, 128, 64, .18);
  --may-panel-shadow: 0 18px 44px rgba(62, 43, 25, .08);
  --may-panel-shadow-soft: 0 12px 28px rgba(62, 43, 25, .06);
  --may-caramel: #d87b24;
  --may-caramel-dark: #a95f1c;
  --may-ink: #2f261d;
  --may-ink-soft: #766b5e;
  --may-success: #087f50;
}

/* Overflow */
html,
body.may-home-ui {
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body.may-home-ui {
    overflow-x: hidden;
  }
}

body.may-home-ui {
  background:
    linear-gradient(180deg, #fffaf2 0%, #fbf7ef 34%, #fffdf8 100%);
  color: var(--may-ink);
}

body.may-home-ui .may-container {
  width: min(100% - var(--may-page-gutter), var(--may-page-container));
}

body.may-home-ui .may-section {
  padding-block: var(--may-page-section);
}

body.may-home-ui .may-section--pull {
  padding-top: 48px;
}

/* Typography */
body.may-home-ui :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .may-page-title,
  .may-section-title,
  .may-card-title,
  .may-service-card__title,
  .may-pricing-title,
  .may-booking-title,
  .may-news-card__title,
  .may-footer-title,
  .may-btn,
  .may-button,
  .may-card-action,
  .may-nav a,
  .may-main-nav a,
  .may-service-card__subtitle,
  .may-post-card__title,
  .may-price-row__main h3,
  .may-booking-section-title h4,
  .may-core-card h3,
  .may-core-panel h2,
  .may-core-panel h3,
  .may-faq-item__trigger,
  .may-faq-item__trigger span,
  .may-service-package h3,
  .may-service-detail-block h2
) {
  letter-spacing: normal !important;
  word-spacing: normal !important;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  text-transform: none;
}

body.may-home-ui :where(
  .may-section-label,
  .may-price-row__eyebrow span,
  .may-price-row__eyebrow b,
  .may-service-package__badge,
  .may-post-card__meta,
  .may-booking-form__head > span,
  .may-booking-section-title > span,
  .may-page-hero__breadcrumb
) {
  letter-spacing: .045em;
  word-spacing: normal;
  text-transform: none;
}

/* Buttons */
body.may-home-ui :where(.may-button, .may-card-action) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.15;
  white-space: normal;
  text-align: center;
}

body.may-home-ui :where(.may-button--primary, .may-card-action--primary) {
  border-color: transparent;
  background: linear-gradient(180deg, #ee8a32 0%, var(--may-caramel) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(216, 123, 36, .24);
}

body.may-home-ui :where(.may-button--soft, .may-card-action--soft) {
  border: 1px solid var(--may-panel-line);
  background: rgba(255, 253, 248, .88);
  color: var(--may-ink);
}

/* Cards */
body.may-home-ui :where(
  .may-core-card,
  .may-core-panel,
  .may-service-card,
  .may-post-card,
  .may-pricing-group,
  .may-price-row,
  .may-service-package,
  .may-service-detail-block,
  .may-faq-item,
  .may-core-faq-list article,
  .may-booking-form,
  .may-booking-copy
) {
  border: 1px solid var(--may-panel-line);
  background: var(--may-panel-bg);
  box-shadow: var(--may-panel-shadow-soft);
}

/* Page heroes */
body.may-home-ui .may-page-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 14% 12%, rgba(216, 123, 36, .12), transparent 32%),
    linear-gradient(180deg, rgba(255, 251, 244, .98), rgba(250, 243, 232, .7));
}

body.may-home-ui .may-page-hero__inner {
  width: min(100% - var(--may-page-gutter), 1120px);
  gap: 34px;
}

body.may-home-ui .may-page-hero--minimal .may-page-hero__copy {
  max-width: var(--may-page-readable);
  margin-inline: auto;
  text-align: center;
}

body.may-home-ui .may-page-hero--split .may-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .82fr);
  align-items: center;
}

body.may-home-ui .may-page-hero__copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--may-ink);
  font-size: 2.8rem;
  line-height: 1.08;
}

body.may-home-ui .may-page-hero__copy p {
  max-width: 680px;
  color: var(--may-ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

body.may-home-ui .may-page-hero__media,
body.may-home-ui .may-page-hero__card {
  border-radius: 24px;
  border-color: var(--may-panel-line);
  background: rgba(255, 253, 248, .86);
  box-shadow: var(--may-panel-shadow);
}

/* Editorial pages */
body.may-about-focused .may-core-split,
body.may-recruitment-focused .may-core-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.may-about-focused .may-core-panel,
body.may-recruitment-focused .may-core-panel {
  padding: 28px;
}

body.may-about-focused .may-core-card-grid--three,
body.may-recruitment-focused .may-core-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.may-about-focused .may-core-steps,
body.may-recruitment-focused .may-core-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.may-about-focused .may-core-steps article,
body.may-recruitment-focused .may-core-steps article {
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
}

/* Grids */
body.may-services-focused .may-service-grid,
body.may-booking-focused .may-service-grid--booking {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

body.may-home-ui .may-service-card {
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

body.may-home-ui .may-service-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 20px 20px 0 0;
}

body.may-home-ui .may-service-card__body {
  min-height: 260px;
  padding: 22px;
  gap: 12px;
}

body.may-home-ui .may-service-card__title {
  font-size: 1.18rem;
  line-height: 1.2;
}

body.may-home-ui .may-service-card__meta {
  gap: 8px;
}

body.may-home-ui .may-service-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.may-news-focused .may-news-grid,
body.may-news-focused .may-post-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

body.may-news-focused .may-post-card {
  overflow: hidden;
  border-radius: 22px;
}

body.may-news-focused .may-post-card__media {
  aspect-ratio: 16 / 10;
}

body.may-news-focused .may-post-card__body {
  padding: 18px;
}

body.may-news-focused .may-post-card__title {
  font-size: 1.02rem;
  line-height: 1.28;
}

/* Pricing */
body.may-pricing-focused .may-pricing-content-section .may-container,
body.may-pricing-focused .may-pricing-notes-section .may-container,
body.may-pricing-focused .may-pricing-final-cta .may-container {
  width: min(100% - var(--may-page-gutter), 1040px);
}

body.may-pricing-focused .may-pricing-filter {
  position: sticky;
  top: 78px;
  z-index: 8;
  display: flex;
  gap: 10px;
  padding: 10px;
  margin: 0 0 28px;
  border: 1px solid var(--may-panel-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 14px 32px rgba(62, 43, 25, .07);
  backdrop-filter: blur(10px);
}

body.may-pricing-focused .may-pricing-filter a {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: .9rem;
}

body.may-pricing-focused .may-pricing-page {
  gap: 28px;
}

body.may-pricing-focused .may-pricing-group {
  padding: 26px;
  border-radius: 24px;
}

body.may-pricing-focused .may-pricing-group__head {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 20px;
}

body.may-pricing-focused .may-pricing-group__head h2 {
  max-width: none;
  font-size: 1.72rem;
}

body.may-pricing-focused .may-price-list--page {
  gap: 12px;
}

body.may-pricing-focused .may-price-list--page .may-price-row {
  grid-template-columns: minmax(0, 1fr) minmax(148px, .24fr) auto;
  gap: 22px;
  min-height: 0;
  padding: 18px 20px;
  border-radius: 18px;
  align-items: center;
}

body.may-pricing-focused .may-price-row__main h3 {
  font-size: 1.08rem;
  line-height: 1.26;
}

body.may-pricing-focused .may-price-row__main p {
  margin-top: 7px;
  font-size: .94rem;
  line-height: 1.58;
}

body.may-pricing-focused .may-price-row__meta {
  gap: 8px;
  min-width: 148px;
}

body.may-pricing-focused .may-price-row .may-button {
  min-width: 128px;
}

/* Booking */
body.may-booking-focused .may-booking-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(216, 123, 36, .12), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #fbf4e8 100%);
}

body.may-booking-focused .may-booking-grid {
  width: min(100% - var(--may-page-gutter), 1120px);
  grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr);
  align-items: start;
  gap: 24px;
}

body.may-booking-focused .may-booking-copy {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 253, 248, .86);
  box-shadow: var(--may-panel-shadow-soft);
}

body.may-booking-focused .may-booking-copy h2,
body.may-booking-focused .may-booking-copy p,
body.may-booking-focused .may-booking-highlights strong,
body.may-booking-focused .may-booking-highlights span {
  color: var(--may-ink);
}

body.may-booking-focused .may-booking-highlights {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: var(--may-panel-soft);
}

body.may-booking-focused .may-booking-form--advanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: #fffefa;
  box-shadow: var(--may-panel-shadow);
}

body.may-booking-focused .may-booking-form__head {
  padding-bottom: 12px;
}

body.may-booking-focused .may-booking-form__head h3 {
  font-size: 1.46rem;
}

body.may-booking-focused .may-booking-form__section {
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(176, 128, 64, .14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.may-booking-focused .may-booking-section-title {
  padding-top: 16px;
}

body.may-booking-focused .may-booking-service-picker {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.may-booking-focused [data-booking-service-card] {
  min-height: 86px;
  padding: 12px;
  border-radius: 14px;
}

body.may-booking-focused [data-booking-service-card] span {
  font-size: .78rem;
}

body.may-booking-focused .may-booking-package-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.may-booking-focused [data-booking-package-card] {
  min-height: 78px;
  padding: 11px 12px;
  border-radius: 14px;
}

body.may-booking-focused .may-booking-summary {
  padding: 14px;
  border-color: rgba(176, 128, 64, .18);
  background: #fff9ef;
}

body.may-booking-focused .may-booking-summary span {
  color: var(--may-caramel-dark);
}

body.may-booking-focused .may-booking-summary dl {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.may-booking-focused .may-booking-summary dl div {
  background: rgba(255, 255, 255, .72);
}

/* Recruitment */
body.may-recruitment-focused .may-section {
  padding-block: 74px;
}

body.may-recruitment-focused .may-core-card {
  min-height: 190px;
  padding: 24px;
}

body.may-recruitment-focused .may-core-final-cta .may-container,
body.may-about-focused .may-core-final-cta .may-container {
  max-width: var(--may-page-readable);
}

/* Service detail */
body.may-service-single-focused .may-service-package-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

body.may-service-single-focused .may-service-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
}

body.may-service-single-focused .may-service-package h3 {
  font-size: 1.08rem;
}

body.may-service-single-focused .may-service-package > strong {
  color: var(--may-success);
  font-size: 1.08rem;
  white-space: nowrap;
}

body.may-service-single-focused .may-service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.may-service-single-focused .may-service-detail-block {
  padding: 24px;
  border-radius: 22px;
}

/* Footer */
body.may-home-ui .may-footer {
  overflow: clip;
}

body.may-home-ui .may-footer__inner {
  width: min(100% - var(--may-page-gutter), 1120px);
}

body.may-home-ui .may-cta-rail {
  right: clamp(10px, 2vw, 18px);
  max-width: calc(100vw - 24px);
}

body.may-home-ui .may-cta-rail,
body.may-home-ui .may-mobile-cta {
  contain: layout paint;
}

/* Responsive */
@media (max-width: 1024px) {
  body.may-news-focused .may-news-grid,
  body.may-news-focused .may-post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.may-booking-focused .may-booking-service-picker,
  body.may-booking-focused .may-booking-package-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.may-home-ui .may-page-hero--split .may-page-hero__inner,
  body.may-about-focused .may-core-split,
  body.may-recruitment-focused .may-core-split,
  body.may-booking-focused .may-booking-grid,
  body.may-pricing-focused .may-pricing-group__head {
    grid-template-columns: 1fr;
  }

  body.may-home-ui .may-page-hero__copy h1 {
    font-size: 2rem;
  }

  body.may-about-focused .may-core-card-grid--three,
  body.may-recruitment-focused .may-core-card-grid--three,
  body.may-about-focused .may-core-steps,
  body.may-recruitment-focused .may-core-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.may-pricing-focused .may-price-list--page .may-price-row,
  body.may-service-single-focused .may-service-package {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 360px) and (max-width: 760px) {
  body.may-services-focused .may-service-grid,
  body.may-booking-focused .may-service-grid--booking,
  body.may-news-focused .may-news-grid,
  body.may-news-focused .may-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.may-home-ui .may-service-card__body,
  body.may-news-focused .may-post-card__body {
    padding: 13px;
  }

  body.may-home-ui .may-service-card__title,
  body.may-news-focused .may-post-card__title {
    font-size: .96rem;
  }

  body.may-home-ui .may-service-card__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.may-home-ui .may-container,
  body.may-home-ui .may-page-hero__inner,
  body.may-booking-focused .may-booking-grid,
  body.may-pricing-focused .may-pricing-content-section .may-container,
  body.may-pricing-focused .may-pricing-notes-section .may-container,
  body.may-pricing-focused .may-pricing-final-cta .may-container {
    width: min(100% - 28px, 100%);
  }

  body.may-home-ui .may-section {
    padding-block: var(--may-page-section-mobile);
  }

  body.may-home-ui .may-page-hero {
    padding: 46px 0 36px;
  }

  body.may-home-ui .may-page-hero__copy p {
    font-size: .95rem;
  }

  body.may-pricing-focused .may-pricing-filter {
    top: 66px;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  body.may-pricing-focused .may-pricing-filter::-webkit-scrollbar {
    display: none;
  }

  body.may-pricing-focused .may-pricing-filter a {
    flex: 0 0 auto;
  }

  body.may-pricing-focused .may-pricing-group,
  body.may-booking-focused .may-booking-form--advanced,
  body.may-booking-focused .may-booking-copy {
    padding: 18px;
    border-radius: 20px;
  }

  body.may-booking-focused .may-booking-form--advanced,
  body.may-booking-focused .may-booking-form__section,
  body.may-booking-focused .may-booking-service-picker,
  body.may-booking-focused .may-booking-package-list,
  body.may-booking-focused .may-booking-summary dl,
  body.may-service-single-focused .may-service-detail-grid {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-form--advanced .may-field--half {
    grid-column: 1 / -1;
  }

  body.may-booking-focused .may-booking-submit-row {
    padding-bottom: 78px;
  }

  body.may-about-focused .may-core-panel,
  body.may-recruitment-focused .may-core-panel,
  body.may-service-single-focused .may-service-detail-block {
    padding: 20px;
  }
}

@media (max-width: 359px) {
  body.may-services-focused .may-service-grid,
  body.may-booking-focused .may-service-grid--booking,
  body.may-news-focused .may-news-grid,
  body.may-news-focused .may-post-grid,
  body.may-about-focused .may-core-card-grid--three,
  body.may-recruitment-focused .may-core-card-grid--three,
  body.may-about-focused .may-core-steps,
  body.may-recruitment-focused .may-core-steps {
    grid-template-columns: 1fr;
  }
}

/* Priority recovery: overflow, typography, booking, pricing, recruitment */

/* Overflow root causes */
body.may-home-ui,
body.may-home-ui .may-page-shell {
  max-width: 100%;
  overflow-x: clip;
}

body.may-home-ui :where(.may-section, .may-container, .may-page-hero, .may-footer) {
  max-width: 100%;
}

body.may-home-ui .may-gallery-section {
  overflow: hidden;
}

body.may-home-ui .may-gallery-shell {
  position: relative;
  overflow: hidden;
  padding-inline: 8px;
}

body.may-home-ui .may-gallery-rail {
  max-width: 100%;
  overscroll-behavior-inline: contain;
}

body.may-home-ui .may-gallery-nav--prev {
  left: 8px;
}

body.may-home-ui .may-gallery-nav--next {
  right: 8px;
}

body.may-home-ui .may-video-modal__dialog {
  max-width: min(960px, calc(100vw - 32px));
}

body.may-home-ui .may-video-modal__close {
  top: 8px;
  right: 8px;
}

body.may-home-ui .may-chat-widget {
  right: max(14px, env(safe-area-inset-right));
  max-width: min(420px, calc(100vw - 28px));
}

body.may-home-ui .may-cta-rail {
  right: max(16px, env(safe-area-inset-right));
  width: auto;
  max-width: 66px;
  contain: layout;
  gap: 11px;
}

body.may-home-ui .may-cta-rail a,
body.may-home-ui .may-cta-rail button {
  width: 62px;
  height: 62px;
  min-height: 62px;
  border: 1px solid rgba(61, 37, 22, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(37, 24, 16, 0.18);
}

body.may-home-ui .may-cta-rail .may-app-icon {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  max-width: 38px !important;
}

body.may-home-ui .may-cta-rail .may-app-icon svg,
body.may-home-ui .may-cta-rail .may-app-icon img {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain;
}

body.may-home-ui .may-cta-rail .may-cta-label {
  right: 72px;
  max-width: min(220px, calc(100vw - 96px));
  white-space: normal;
  line-height: 1.2;
}

body.may-home-ui .may-mobile-sticky {
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  max-width: calc(100vw - 20px);
}

/* Typography recovery */
body.may-home-ui :where(
  .may-service-card__title,
  .may-post-card__title,
  .may-price-row__main h3,
  .may-core-card h3,
  .may-core-panel h2,
  .may-core-panel h3,
  .may-booking-section-title h4,
  .may-page-hero__copy h1,
  .may-page-hero__copy p,
  .may-service-package h3
) {
  min-width: 0;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.may-home-ui :where(.may-section-label, .may-price-row__eyebrow span, .may-price-row__eyebrow b) {
  letter-spacing: .04em;
  word-spacing: normal;
  text-transform: none;
}

/* Booking recovery */
body.may-booking-focused .may-booking-section {
  padding-block: clamp(54px, 7vw, 82px);
}

body.may-booking-focused .may-booking-grid {
  grid-template-columns: minmax(220px, .48fr) minmax(0, 1.52fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

body.may-booking-focused .may-booking-copy {
  padding: 22px;
}

body.may-booking-focused .may-booking-copy h2 {
  font-size: clamp(1.35rem, 2vw, 1.78rem);
}

body.may-booking-focused .may-booking-highlights {
  padding: 14px;
}

body.may-booking-focused .may-booking-highlights span {
  font-size: .9rem;
  line-height: 1.45;
}

body.may-booking-focused .may-booking-form--advanced {
  padding: clamp(18px, 2.4vw, 26px);
  gap: 12px 16px;
  border-radius: 22px;
}

body.may-booking-focused .may-booking-form__head {
  padding-bottom: 10px;
}

body.may-booking-focused .may-booking-form__head h3 {
  font-size: clamp(1.22rem, 1.9vw, 1.48rem);
}

body.may-booking-focused .may-booking-form__section {
  gap: 11px 14px;
  padding-top: 12px;
}

body.may-booking-focused .may-booking-section-title {
  padding-top: 4px;
}

body.may-booking-focused .may-booking-service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.may-booking-focused [data-booking-service-card] {
  width: auto;
  min-height: 40px;
  min-width: min(100%, 148px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  text-align: center;
}

body.may-booking-focused [data-booking-service-card] strong {
  font-size: .86rem;
  line-height: 1.18;
}

body.may-booking-focused [data-booking-service-card] span {
  display: none;
}

body.may-booking-focused .may-booking-package-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.may-booking-focused [data-booking-package-card] {
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 10px;
  padding: 10px 12px;
}

body.may-booking-focused [data-booking-package-card] span {
  grid-column: 1 / -1;
  font-size: .76rem;
}

body.may-booking-focused [data-booking-package-card] strong {
  font-size: .88rem;
}

body.may-booking-focused [data-booking-package-card] em {
  font-size: .86rem;
}

body.may-booking-focused .may-booking-selection,
body.may-booking-focused .may-booking-package-empty {
  padding: 10px 12px;
  font-size: .86rem;
}

body.may-booking-focused .may-booking-summary {
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: #fff9ef;
}

body.may-booking-focused .may-booking-summary dl {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

body.may-booking-focused .may-booking-summary dl div {
  padding: 8px;
  border-radius: 12px;
}

body.may-booking-focused .may-booking-summary dt {
  font-size: .72rem;
}

body.may-booking-focused .may-booking-summary dd {
  font-size: .82rem;
}

/* Pricing recovery */
body.may-pricing-focused .may-pricing-content-section .may-container,
body.may-pricing-focused .may-pricing-notes-section .may-container,
body.may-pricing-focused .may-pricing-final-cta .may-container {
  width: min(100% - var(--may-page-gutter), 1100px);
}

body.may-pricing-focused .may-pricing-filter {
  width: 100%;
  margin-left: 0;
  padding: 10px;
}

body.may-pricing-focused .may-pricing-filter a {
  min-height: 42px;
  padding: 0 18px;
  font-size: .92rem;
}

body.may-pricing-focused .may-pricing-group {
  padding: clamp(20px, 2.6vw, 28px);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(62, 43, 25, .06);
}

body.may-pricing-focused .may-price-list--page .may-price-row {
  grid-template-columns: minmax(0, 1fr) minmax(150px, .22fr) minmax(132px, auto);
  padding: 18px;
}

body.may-pricing-focused .may-price-row__main h3 {
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
}

body.may-pricing-focused .may-price-row__main p {
  max-width: 68ch;
}

body.may-pricing-focused .may-price-row .may-button {
  min-height: 44px;
  min-width: 132px;
}

/* Recruitment recovery */
body.may-recruitment-focused .may-section {
  padding-block: clamp(52px, 6.4vw, 76px);
}

body.may-recruitment-focused .may-core-card {
  min-height: 168px;
}

body.may-recruitment-focused .may-core-steps article {
  min-height: 132px;
}

@media (max-width: 860px) {
  body.may-booking-focused .may-booking-grid {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-copy {
    position: static;
    order: 2;
  }

  body.may-booking-focused .may-booking-form--advanced {
    order: 1;
  }

  body.may-pricing-focused .may-price-list--page .may-price-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.may-pricing-focused .may-pricing-filter {
    width: 100%;
    margin-left: 0;
    padding: 8px 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  body.may-booking-focused .may-booking-form--advanced {
    padding: 16px;
  }

  body.may-booking-focused .may-booking-service-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.may-booking-focused [data-booking-service-card] {
    width: 100%;
    min-width: 0;
  }

  body.may-booking-focused .may-booking-package-list,
  body.may-booking-focused .may-booking-summary dl {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-submit-row {
    padding-bottom: 82px;
  }

  body.may-pricing-focused .may-pricing-group {
    padding: 16px;
  }

  body.may-pricing-focused .may-price-list--page .may-price-row {
    padding: 15px;
  }

  body.may-pricing-focused .may-price-row__meta {
    width: 100%;
    justify-content: space-between;
  }

  body.may-pricing-focused .may-price-row .may-button {
    width: 100%;
  }
}

body.may-home-ui :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .may-page-title,
  .may-section-title,
  .may-card-title,
  .may-service-card__title,
  .may-pricing-title,
  .may-booking-title,
  .may-booking-form label,
  .may-booking-form h3,
  .may-booking-form h4,
  .may-core-card h3,
  .may-recruitment-card h3,
  .may-price-row h3,
  .may-btn,
  .may-button,
  .may-nav a
) {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
}

body.may-home-ui :where(
  .may-booking-form label,
  .may-booking-form input,
  .may-booking-form select,
  .may-booking-form textarea,
  .may-booking-form button,
  .may-booking-form__head h3,
  .may-booking-section-title h4,
  .may-price-row__main h3,
  .may-recruitment-focused .may-core-card h3,
  .may-recruitment-focused .may-core-panel h2,
  .may-recruitment-focused .may-core-panel h3,
  .may-recruitment-focused .may-core-steps article h3
) {
  font-family: var(--may-font-ui, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
}

body.may-home-ui :where(
  .may-section-label,
  .may-price-row__eyebrow,
  .may-price-row__eyebrow span,
  .may-price-row__eyebrow b,
  .may-booking-form__head > span,
  .may-booking-section-title > span
) {
  letter-spacing: .04em !important;
  word-spacing: normal;
  text-transform: none;
}

body.may-booking-focused .may-booking-section {
  padding-block: clamp(50px, 6vw, 76px);
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 123, 36, .1), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #f8efe2 100%);
}

body.may-booking-focused .may-booking-grid {
  width: min(100% - var(--may-page-gutter, 32px), 1100px);
  grid-template-columns: minmax(216px, .44fr) minmax(0, 1.56fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

body.may-booking-focused .may-booking-copy {
  position: sticky;
  top: 88px;
  align-self: start;
  padding: 20px;
  border: 1px solid rgba(176, 128, 64, .18);
  border-radius: 20px;
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 16px 36px rgba(62, 43, 25, .08);
}

body.may-booking-focused .may-booking-copy h2 {
  font-size: clamp(1.22rem, 1.8vw, 1.58rem);
  line-height: 1.22;
}

body.may-booking-focused .may-booking-highlights {
  gap: 8px;
  padding: 13px;
  border-radius: 16px;
}

body.may-booking-focused .may-booking-highlights span {
  font-size: .88rem;
  line-height: 1.46;
}

body.may-booking-focused .may-booking-form--advanced {
  gap: 14px 18px;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(176, 128, 64, .18);
  border-radius: 24px;
  background: #fffefb;
  box-shadow: 0 18px 46px rgba(62, 43, 25, .1);
}

body.may-booking-focused .may-booking-form__head {
  gap: 6px;
  padding-bottom: 12px;
}

body.may-booking-focused .may-booking-form__head h3 {
  font-size: clamp(1.16rem, 1.7vw, 1.38rem);
  font-weight: 850;
  line-height: 1.28;
}

body.may-booking-focused .may-booking-form__head p {
  max-width: 68ch;
  font-size: .96rem;
  line-height: 1.56;
}

body.may-booking-focused .may-booking-form__section {
  gap: 12px 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(176, 128, 64, .14);
}

body.may-booking-focused .may-booking-section-title {
  gap: 9px;
  padding-top: 2px;
}

body.may-booking-focused .may-booking-section-title span {
  min-width: 28px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(216, 123, 36, .12);
  color: var(--may-caramel-dark, #b85d1a);
  font-size: .78rem;
  line-height: 1;
}

body.may-booking-focused .may-booking-section-title h4 {
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.28;
}

body.may-booking-focused .may-booking-form--advanced .may-field {
  display: grid;
  gap: 6px;
}

body.may-booking-focused .may-booking-form--advanced label {
  color: var(--may-ink, #2f2319);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.3;
}

body.may-booking-focused .may-booking-form--advanced input,
body.may-booking-focused .may-booking-form--advanced select,
body.may-booking-focused .may-booking-form--advanced textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border-color: rgba(176, 128, 64, .24);
  background: rgba(255, 255, 255, .9);
  color: var(--may-ink, #2f2319);
  font-size: .95rem;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .76);
}

body.may-booking-focused .may-booking-form--advanced textarea {
  min-height: 92px;
  padding-block: 12px;
}

body.may-booking-focused .may-booking-service-picker {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: 100%;
  padding: 1px 2px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

body.may-booking-focused [data-booking-service-card] {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: 178px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: normal;
}

body.may-booking-focused [data-booking-service-card] strong {
  font-size: .82rem;
  font-weight: 820;
  line-height: 1.18;
}

body.may-booking-focused [data-booking-service-card] span {
  display: none;
}

body.may-booking-focused .may-booking-package-list {
  display: none !important;
}

body.may-booking-focused .may-booking-selection {
  display: none !important;
}

body.may-booking-focused .may-booking-package-empty {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: .86rem;
  line-height: 1.48;
}

body.may-booking-focused .may-booking-summary {
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(176, 128, 64, .18);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf1 0%, #fffdf8 100%);
}

body.may-booking-focused .may-booking-summary span {
  color: var(--may-caramel-dark, #b85d1a);
  letter-spacing: .04em;
}

body.may-booking-focused .may-booking-summary dl {
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
}

body.may-booking-focused .may-booking-summary dl div {
  padding: 9px 10px;
  border: 1px solid rgba(176, 128, 64, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .68);
}

body.may-booking-focused .may-booking-summary dt {
  font-size: .72rem;
  line-height: 1.25;
}

body.may-booking-focused .may-booking-summary dd {
  font-size: .84rem;
  line-height: 1.32;
}

body.may-booking-focused .may-booking-submit-row .may-button {
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f08a30 0%, #e26918 100%);
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
}

body.may-pricing-focused .may-pricing-content-section .may-container,
body.may-pricing-focused .may-pricing-notes-section .may-container,
body.may-pricing-focused .may-pricing-final-cta .may-container {
  width: min(100% - var(--may-page-gutter, 32px), 1080px);
}

body.may-pricing-focused .may-pricing-filter {
  gap: 10px;
  padding: 10px;
}

body.may-pricing-focused .may-pricing-filter a {
  min-height: 42px;
  padding-inline: 18px;
  font-size: .92rem;
  line-height: 1.15;
}

body.may-pricing-focused .may-pricing-page {
  width: min(100%, 1080px);
  max-width: 1080px;
  gap: 30px;
}

body.may-pricing-focused .may-pricing-group {
  padding: clamp(22px, 2.8vw, 30px);
}

body.may-pricing-focused .may-pricing-group__head {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

body.may-pricing-focused .may-pricing-group__head h2 {
  font-size: clamp(1.48rem, 2.4vw, 2rem);
  line-height: 1.18;
}

body.may-pricing-focused .may-pricing-group__head p {
  max-width: 46ch;
  font-size: .98rem;
  line-height: 1.62;
}

body.may-pricing-focused .may-price-list--page {
  gap: 14px;
}

body.may-pricing-focused .may-price-list--page .may-price-row {
  grid-template-columns: minmax(0, 1fr) minmax(154px, auto) minmax(136px, auto);
  gap: clamp(18px, 2.2vw, 26px);
  padding: clamp(18px, 2.2vw, 22px);
  border-radius: 18px;
}

body.may-pricing-focused .may-price-row__main h3 {
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  font-weight: 850;
  line-height: 1.34;
}

body.may-pricing-focused .may-price-row__main p {
  max-width: 72ch;
  font-size: .96rem;
  line-height: 1.62;
}

body.may-pricing-focused .may-price-row__meta {
  min-width: 154px;
}

body.may-pricing-focused .may-price-row .may-button {
  min-width: 136px;
  min-height: 44px;
  padding-inline: 20px;
  font-size: .9rem;
}

body.may-recruitment-focused .may-section {
  padding-block: clamp(48px, 5.8vw, 68px);
}

body.may-recruitment-focused .may-core-card-grid--three {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 20px;
}

body.may-recruitment-focused .may-core-card,
body.may-recruitment-focused .may-core-panel,
body.may-recruitment-focused .may-core-steps article {
  min-width: 0;
}

body.may-recruitment-focused .may-core-card {
  min-height: 156px;
  padding: 22px;
}

body.may-recruitment-focused .may-core-card h3,
body.may-recruitment-focused .may-core-panel h2,
body.may-recruitment-focused .may-core-panel h3,
body.may-recruitment-focused .may-core-steps article h3 {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 850;
  line-height: 1.34;
}

body.may-recruitment-focused .may-core-panel p,
body.may-recruitment-focused .may-core-card p,
body.may-recruitment-focused .may-core-steps article p {
  line-height: 1.62;
}

@media (max-width: 860px) {
  body.may-booking-focused .may-booking-grid,
  body.may-pricing-focused .may-pricing-group__head {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-copy {
    position: static;
    order: 2;
  }

  body.may-booking-focused .may-booking-form--advanced {
    order: 1;
  }

  body.may-pricing-focused .may-price-list--page .may-price-row {
    grid-template-columns: 1fr;
  }

  body.may-recruitment-focused .may-core-card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.may-booking-focused .may-booking-section {
    padding-block: 42px 52px;
  }

  body.may-booking-focused .may-booking-grid {
    width: min(100% - 28px, 100%);
  }

  body.may-booking-focused .may-booking-form--advanced,
  body.may-booking-focused .may-booking-form__section,
  body.may-booking-focused .may-booking-summary dl {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-form--advanced {
    padding: 16px;
    gap: 12px;
  }

  body.may-booking-focused .may-booking-form--advanced .may-field--half {
    grid-column: 1 / -1;
  }

  body.may-booking-focused .may-booking-service-picker {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  body.may-booking-focused [data-booking-service-card] {
    width: auto;
    max-width: 160px;
  }

  body.may-booking-focused .may-booking-submit-row {
    padding-bottom: 84px;
  }

  body.may-pricing-focused .may-pricing-filter {
    padding-inline: 0;
  }

  body.may-pricing-focused .may-pricing-group {
    padding: 16px;
  }

  body.may-pricing-focused .may-price-list--page .may-price-row {
    padding: 16px;
  }

  body.may-pricing-focused .may-price-row__meta {
    min-width: 0;
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  body.may-pricing-focused .may-price-row .may-button {
    width: 100%;
  }

  body.may-recruitment-focused .may-core-card-grid--three,
  body.may-recruitment-focused .may-core-steps {
    grid-template-columns: 1fr;
  }
}

body.may-home-ui .may-hero--image-only {
  padding: 0 0 clamp(48px, 6vw, 72px);
  background: #fffaf3;
}

body.may-home-ui .may-hero--image-only .may-hero-banner-picture {
  width: 100%;
  height: var(--may-hero-desktop-height, 520px);
  display: block;
  overflow: hidden;
  border-radius: 0;
  background: rgba(176, 128, 64, .08);
  box-shadow: none;
}

body.may-home-ui .may-hero--image-only .may-hero-banner-picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--may-hero-position, center center);
}

body.may-home-ui .may-hero--image-only .may-hero__actions--below {
  width: min(100% - var(--may-page-gutter, 32px), 1120px);
  margin: 18px auto 0;
}

body.may-home-ui .may-page-hero--image-only {
  padding: 0 0 clamp(42px, 5vw, 64px);
  background: #fffaf3;
}

body.may-home-ui .may-page-hero__only-banner {
  width: 100%;
  height: clamp(420px, 42vw, 560px);
  display: block;
  overflow: hidden;
  background: rgba(176, 128, 64, .08);
}

body.may-home-ui .may-page-hero__only-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

body.may-booking-focused .may-page-filterbar--contact,
body.may-booking-focused .may-contact-chip-list {
  display: none;
}

body.may-booking-focused .may-booking-section {
  padding-block: clamp(42px, 5.4vw, 72px);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 123, 36, .09), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #f8efe2 100%);
}

body.may-booking-focused .may-booking-grid {
  width: min(100% - var(--may-page-gutter, 32px), 1120px);
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1.58fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

body.may-booking-focused .may-booking-copy {
  position: sticky;
  top: 88px;
  align-self: start;
  padding: 20px;
  border: 1px solid rgba(176, 128, 64, .18);
  border-radius: 18px;
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 14px 34px rgba(62, 43, 25, .08);
}

body.may-booking-focused .may-booking-copy h2 {
  font-size: clamp(1.18rem, 1.65vw, 1.48rem);
  line-height: 1.22;
}

body.may-booking-focused .may-booking-highlights {
  gap: 8px;
  padding: 13px;
  border-radius: 16px;
  background: rgba(255, 249, 240, .72);
}

body.may-booking-focused .may-booking-form--full {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px 16px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(176, 128, 64, .18);
  border-radius: 22px;
  background: #fffefb;
  box-shadow: 0 18px 46px rgba(62, 43, 25, .1);
}

body.may-booking-focused .may-booking-form--full .may-booking-form__head,
body.may-booking-focused .may-booking-form--full .may-booking-form__section,
body.may-booking-focused .may-booking-form--full .may-booking-summary,
body.may-booking-focused .may-booking-form--full .may-booking-submit-row,
body.may-booking-focused .may-booking-form--full .may-booking-notice {
  grid-column: 1 / -1;
}

body.may-booking-focused .may-booking-form--full .may-booking-form__section {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 14px;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid rgba(176, 128, 64, .14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.may-booking-focused .may-booking-form--full .may-booking-section-title {
  grid-column: 1 / -1;
}

body.may-booking-focused .may-booking-form--full .may-field {
  grid-column: 1 / -1;
}

body.may-booking-focused .may-booking-form--full .may-field--half {
  grid-column: span 3;
}

body.may-booking-focused .may-booking-form--full .may-field--third {
  grid-column: span 2;
}

body.may-booking-focused .may-booking-check {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  border: 1px solid rgba(176, 128, 64, .2);
  border-radius: 16px;
  background: rgba(255, 249, 240, .68);
  cursor: pointer;
}

body.may-booking-focused .may-booking-check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 3px;
  accent-color: var(--may-caramel, #d87b24);
}

body.may-booking-focused .may-booking-check span {
  display: grid;
  gap: 4px;
}

body.may-booking-focused .may-booking-check strong {
  color: var(--may-ink, #2f2319);
  font-family: var(--may-font-ui, var(--may-font-body));
  font-size: .94rem;
  line-height: 1.25;
}

body.may-booking-focused .may-booking-check small {
  color: var(--may-muted, #6f6257);
  font-size: .84rem;
  line-height: 1.45;
}

body.may-booking-focused .may-booking-pickup-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 14px;
}

body.may-booking-focused .may-booking-pickup-fields[hidden] {
  display: none !important;
}

body.may-booking-focused .may-booking-form--full .may-booking-service-picker {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
}

body.may-booking-focused .may-booking-form--full [data-booking-service-card] {
  flex: 0 0 auto;
  width: auto;
  max-width: 176px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
}

body.may-booking-focused .may-booking-form--full [data-booking-service-card] strong {
  font-size: .82rem;
  line-height: 1.18;
}

body.may-booking-focused .may-booking-form--full .may-booking-package-list,
body.may-booking-focused .may-booking-form--full .may-booking-selection {
  display: none !important;
}

body.may-booking-focused .may-booking-form--full .may-booking-summary {
  border-color: rgba(176, 128, 64, .2);
  background: linear-gradient(180deg, #fffaf1 0%, #fffdf8 100%);
}

body.may-booking-focused .may-booking-form--full .may-booking-summary span {
  color: var(--may-caramel-dark, #b85d1a);
}

body.may-booking-focused .may-booking-form--full .may-booking-summary dl {
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
}

body.may-booking-focused .may-booking-form--full .may-booking-summary dd {
  font-size: .84rem;
  line-height: 1.32;
}

body.may-booking-focused .may-booking-form--full .may-booking-submit-row .may-button {
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f08a30 0%, #e26918 100%);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 860px) {
  body.may-booking-focused .may-booking-grid {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-copy {
    position: static;
    order: 2;
  }

  body.may-booking-focused .may-booking-form--full {
    order: 1;
  }
}

@media (max-width: 760px) {
  body.may-home-ui .may-hero--image-only .may-hero-banner-picture {
    height: var(--may-hero-mobile-height, 420px);
  }

  body.may-home-ui .may-page-hero__only-banner {
    height: clamp(280px, 72vw, 440px);
  }

  body.may-booking-focused .may-booking-form--full,
  body.may-booking-focused .may-booking-form--full .may-booking-form__section,
  body.may-booking-focused .may-booking-pickup-fields {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-form--full .may-field--half,
  body.may-booking-focused .may-booking-form--full .may-field--third {
    grid-column: 1 / -1;
  }
}

body.may-booking-focused .may-booking-form--full,
body.may-booking-focused .may-booking-form--full input,
body.may-booking-focused .may-booking-form--full select,
body.may-booking-focused .may-booking-form--full textarea,
body.may-booking-focused .may-booking-form--full button {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

body.may-booking-focused .may-booking-form--full .may-booking-form__head h3,
body.may-booking-focused .may-booking-form--full .may-booking-section-title h4,
body.may-booking-focused .may-booking-form--full .may-booking-guest-row__header strong {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

body.may-booking-focused .may-booking-form--full .may-booking-form__head {
  gap: 5px;
  margin-bottom: 4px;
}

body.may-booking-focused .may-booking-form--full .may-booking-form__head span {
  font-size: .78rem;
}

body.may-booking-focused .may-booking-form--full .may-booking-form__head h3 {
  font-size: clamp(1.24rem, 2.1vw, 1.55rem);
  line-height: 1.22;
}

body.may-booking-focused .may-booking-form--full .may-booking-form__head p {
  max-width: 680px;
  font-size: .92rem;
  line-height: 1.58;
}

body.may-booking-focused .may-booking-form--full .may-booking-section-title {
  grid-column: 1 / -1;
  align-items: center;
  margin-bottom: 2px;
}

body.may-booking-focused .may-booking-form--full .may-booking-section-title span {
  width: 28px;
  height: 28px;
  font-size: .78rem;
}

body.may-booking-focused .may-booking-form--full .may-booking-section-title h4 {
  font-size: .98rem;
  line-height: 1.28;
}

body.may-booking-focused .may-booking-form--full .may-field label {
  margin-bottom: 6px;
  color: #4d4235;
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.3;
  text-transform: none;
}

body.may-booking-focused .may-booking-form--full .may-field input,
body.may-booking-focused .may-booking-form--full .may-field select,
body.may-booking-focused .may-booking-form--full .may-field textarea {
  min-height: 44px;
  border-color: rgba(181, 134, 72, .28);
  border-radius: 14px;
  color: #241c16;
  font-size: .95rem;
  font-weight: 500;
}

body.may-booking-focused .may-booking-form--full .may-booking-form__section--guests,
body.may-booking-focused .may-booking-form--full .may-booking-form__section--summary {
  grid-column: 1 / -1;
}

body.may-booking-focused .may-booking-guest-list {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
}

body.may-booking-focused .may-booking-guest-row {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(181, 134, 72, .2);
  border-radius: 18px;
  background: #fffdf8;
}

body.may-booking-focused .may-booking-guest-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.may-booking-focused .may-booking-guest-row__header strong {
  color: #122947;
  font-size: .98rem;
  font-weight: 800;
}

body.may-booking-focused .may-booking-guest-row__header span {
  flex: 0 0 auto;
  color: #9a6b2f;
  font-size: .8rem;
  font-weight: 700;
}

body.may-booking-focused .may-booking-guest-row__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.may-booking-focused .may-booking-guest-row__summary {
  margin: 0;
  padding-top: 2px;
  color: #6c5d4b;
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.45;
}

body.may-booking-focused .may-booking-form--full .may-booking-form__section--summary {
  gap: 12px;
}

body.may-booking-focused .may-booking-form--full .may-booking-summary {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(181, 134, 72, .22);
  border-radius: 18px;
  background: #fffaf1;
}

body.may-booking-focused .may-booking-summary__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.may-booking-focused .may-booking-summary__metrics div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

body.may-booking-focused .may-booking-summary__metrics span {
  color: #8d6944;
  font-size: .78rem;
  font-weight: 750;
}

body.may-booking-focused .may-booking-summary__metrics strong {
  color: #1f1712;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.28;
}

body.may-booking-focused .may-booking-summary__guests {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.may-booking-focused .may-booking-summary__guests li {
  color: #4d4235;
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.45;
}

@media (max-width: 760px) {
  body.may-booking-focused .may-booking-guest-row__fields,
  body.may-booking-focused .may-booking-summary__metrics {
    grid-template-columns: 1fr;
  }

  body.may-booking-focused .may-booking-guest-row__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

:root,
body.may-home-ui {
  --may-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-font-heading-safe: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-tracking-eyebrow: .035em;
}

body.may-home-ui :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .may-page-title,
  .may-section-title,
  .may-section-heading h2,
  .may-section-head h2,
  .may-core-hero h1,
  .may-core-panel h2,
  .may-core-panel h3,
  .may-core-card h3,
  .may-service-card h3,
  .may-service-card__title,
  .may-pricing-group__head h2,
  .may-price-row h3,
  .may-booking-form h3,
  .may-booking-form h4,
  .may-booking-form label,
  .may-btn,
  .may-button,
  .may-nav a,
  .may-main-nav a
) {
  font-family: var(--may-font-ui, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif) !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-transform: none;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body.may-home-ui :where(h1, h2, h3, .may-section-head h2, .may-page-hero h1) {
  font-weight: 820;
  line-height: 1.12;
}

body.may-home-ui :where(.may-section-label, .may-price-row__eyebrow span, .may-price-row__eyebrow b) {
  font-family: var(--may-font-ui, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif) !important;
  letter-spacing: .035em !important;
  word-spacing: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body.may-pricing-focused .may-pricing-content-section .may-container {
  max-width: 1000px;
}

body.may-pricing-focused .may-pricing-page {
  display: grid;
  gap: 24px;
  margin-inline: auto;
  max-width: 1000px;
}

body.may-pricing-focused .may-pricing-group {
  border: 1px solid rgba(181, 134, 72, .18);
  border-radius: 22px;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 18px 44px rgba(64, 48, 32, .07);
  padding: clamp(18px, 2.4vw, 28px);
}

body.may-pricing-focused .may-pricing-group__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin: 0 0 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(181, 134, 72, .14);
}

body.may-pricing-focused .may-pricing-group__head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.82rem);
}

body.may-pricing-focused .may-pricing-group__head p {
  max-width: 680px;
  margin: 0;
  color: #756b5d;
  font-size: .95rem;
  line-height: 1.55;
}

body.may-pricing-focused .may-price-list--page {
  display: grid;
  gap: 12px;
}

body.may-pricing-focused .may-price-list--page .may-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 210px);
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(181, 134, 72, .16);
  border-radius: 18px;
  background: #fffaf1;
}

body.may-pricing-focused .may-price-row__main {
  min-width: 0;
}

body.may-pricing-focused .may-price-row__main h3 {
  margin: 4px 0 6px;
  color: #1f2b3a;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.18;
}

body.may-pricing-focused .may-price-row__main p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #756b5d;
  font-size: .92rem;
  line-height: 1.52;
}

body.may-pricing-focused .may-price-row__side {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 0;
}

body.may-pricing-focused .may-price-row__meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 0;
  text-align: right;
}

body.may-pricing-focused .may-price-row__meta span {
  min-width: 0;
  color: #756b5d;
  font-size: .86rem;
  font-weight: 720;
}

body.may-pricing-focused .may-price-row__meta strong {
  color: #0b8c4a;
  font-size: 1.06rem;
  line-height: 1.1;
}

body.may-pricing-focused .may-price-row .may-button {
  width: min(140px, 100%);
  min-height: 40px;
  justify-content: center;
  border-color: rgba(203, 112, 34, .72);
  background: linear-gradient(180deg, #f08a30 0%, #e26918 100%);
  color: #fff !important;
  font-size: .9rem;
  font-weight: 820;
}

body.may-recruitment-focused .may-core-card-grid--three {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

body.may-recruitment-focused .may-core-card,
body.may-recruitment-focused .may-core-panel,
body.may-recruitment-focused .may-core-steps article {
  border-color: rgba(181, 134, 72, .16);
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(64, 48, 32, .06);
}

body.may-recruitment-focused .may-core-card {
  padding: clamp(22px, 2.4vw, 28px);
}

body.may-recruitment-focused .may-core-card h3,
body.may-recruitment-focused .may-core-panel h2,
body.may-about-focused .may-core-panel h2 {
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
  line-height: 1.16;
}

body.may-recruitment-focused .may-core-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

body.may-recruitment-focused .may-core-list li {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 34px;
  border: 1px solid rgba(181, 134, 72, .15);
  border-radius: 14px;
  background: #fffaf1;
  color: #4d4235;
  line-height: 1.55;
}

body.may-recruitment-focused .may-core-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 1.15em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c68a37;
  box-shadow: 0 0 0 4px rgba(198, 138, 55, .12);
}

body.may-about-focused .may-core-panel h2 {
  max-width: 760px;
}

body.may-booking-focused .may-booking-form--full {
  font-family: var(--may-font-ui, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
}

body.may-booking-focused .may-booking-form--full .may-booking-form__section {
  gap: 14px;
}

body.may-booking-focused .may-booking-form--full .may-booking-section-title {
  margin-bottom: 0;
}

body.may-booking-focused .may-booking-form--full .may-booking-section-title h4 {
  font-size: .98rem;
  font-weight: 820;
}

body.may-booking-focused .may-booking-form--full .may-booking-summary {
  background: #fffaf1;
}

body.may-home-ui .may-core-list li::marker {
  content: "";
}

@media (max-width: 900px) {
  body.may-pricing-focused .may-price-list--page .may-price-row {
    grid-template-columns: 1fr;
  }

  body.may-pricing-focused .may-price-row__side,
  body.may-pricing-focused .may-price-row__meta {
    justify-items: start;
    text-align: left;
  }

  body.may-pricing-focused .may-price-row .may-button {
    width: min(220px, 100%);
  }

  body.may-recruitment-focused .may-core-card-grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.may-pricing-focused .may-pricing-group {
    padding: 16px;
  }

  body.may-pricing-focused .may-price-list--page .may-price-row {
    padding: 14px;
  }

  body.may-pricing-focused .may-price-row .may-button {
    width: 100%;
  }

  body.may-recruitment-focused .may-core-card,
  body.may-recruitment-focused .may-core-panel {
    padding: 18px;
  }
}

body.may-pricing-focused .may-price-list--page .may-price-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 190px !important;
  column-gap: 18px !important;
  row-gap: 14px !important;
  align-items: center !important;
  padding: 16px 18px !important;
}

body.may-pricing-focused .may-price-row__main {
  min-width: 0 !important;
  padding-right: 0 !important;
}

body.may-pricing-focused .may-price-row__side {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 190px !important;
  min-width: 190px !important;
  max-width: 190px !important;
  margin: 0 !important;
  text-align: center !important;
}

body.may-pricing-focused .may-price-row__side .may-price-row__meta {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
}

body.may-pricing-focused .may-price-row__side .may-price-row__meta span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 26px !important;
  max-width: 100% !important;
  padding: 4px 10px !important;
  border: 1px solid rgba(181, 134, 72, .18) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .72) !important;
  color: #75624c !important;
  font-size: .82rem !important;
  font-weight: 760 !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

body.may-pricing-focused .may-price-row__side .may-price-row__meta strong {
  display: block !important;
  max-width: 100% !important;
  color: #0b8c4a !important;
  font-size: 1.08rem !important;
  font-weight: 860 !important;
  line-height: 1.12 !important;
  white-space: nowrap !important;
}

body.may-pricing-focused .may-price-row__side .may-button {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 132px !important;
  min-width: 132px !important;
  max-width: 132px !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border-color: rgba(203, 112, 34, .72) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #f08a30 0%, #e26918 100%) !important;
  color: #fff !important;
  font-size: .88rem !important;
  font-weight: 840 !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.may-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 28px auto 8px !important;
  padding: 0 !important;
}

.may-pagination__list {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  border: 1px solid rgba(120, 90, 40, .14) !important;
  border-radius: 999px !important;
  background: #fffaf2 !important;
  box-shadow: 0 14px 30px rgba(64, 48, 32, .06) !important;
}

.may-pagination__list .page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(120, 90, 40, .14) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #5a4633 !important;
  font-family: var(--may-font-ui, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif) !important;
  font-size: .92rem !important;
  font-weight: 780 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  vertical-align: middle !important;
}

.may-pagination__list .page-numbers.current {
  border-color: transparent !important;
  background: linear-gradient(180deg, #d39a42 0%, #b97826 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(185, 120, 38, .22) !important;
}

.may-pagination__list a.page-numbers:hover,
.may-pagination__list a.page-numbers:focus-visible {
  border-color: rgba(120, 90, 40, .2) !important;
  background: #f7ecda !important;
  color: #473222 !important;
}

.may-pagination__list .page-numbers.dots {
  border-color: transparent !important;
  background: transparent !important;
  color: #8a7966 !important;
}

@media (max-width: 767px) {
  body.may-pricing-focused .may-price-list--page .may-price-row {
    grid-template-columns: 1fr !important;
    padding: 14px !important;
  }

  body.may-pricing-focused .may-price-row__side {
    align-items: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    text-align: left !important;
  }

  body.may-pricing-focused .may-price-row__side .may-price-row__meta {
    align-items: flex-start !important;
    text-align: left !important;
  }

  body.may-pricing-focused .may-price-row__side .may-button {
    width: min(220px, 100%) !important;
    min-width: 0 !important;
    max-width: 220px !important;
  }

  .may-pagination {
    margin-top: 24px !important;
  }

  .may-pagination__list {
    gap: 7px !important;
    padding: 8px 10px !important;
    border-radius: 24px !important;
  }

  .may-pagination__list .page-numbers {
    width: 39px !important;
    height: 39px !important;
    min-width: 39px !important;
    min-height: 39px !important;
    font-size: .88rem !important;
  }
}

/* Booking form validation polish */
body.may-booking-focused .may-booking-notice[hidden],
body.may-booking-focused .may-booking-pickup-fields[hidden] {
  display: none !important;
}

body.may-booking-focused .may-booking-form--full [aria-invalid="true"] {
  border-color: rgba(196, 54, 42, .72) !important;
  box-shadow: 0 0 0 3px rgba(196, 54, 42, .1) !important;
}

body.may-booking-focused .may-booking-form--full .may-booking-notice--error {
  border-color: rgba(196, 54, 42, .2) !important;
  background: #fff5f2 !important;
  color: #7a2d22 !important;
}

body.may-booking-focused .may-booking-form--full .may-booking-guest-row__fields select {
  min-height: 46px !important;
}

@media (max-width: 767px) {
  body.may-booking-focused .may-booking-submit-row {
    padding-bottom: 18px !important;
  }
}

/* FINAL VIETNAMESE TYPOGRAPHY FREEZE */
:root,
body.may-home-ui {
  --may-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-font-heading-safe: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --may-font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body.may-home-ui :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .may-page-title,
  .may-section-title,
  .may-section-head h2,
  .may-core-hero h1,
  .may-core-card h3,
  .may-service-card h3,
  .may-service-card__title,
  .may-pricing-group__head h2,
  .may-price-row h3,
  .may-booking-form h3,
  .may-booking-form h4,
  .may-booking-form label,
  .may-btn,
  .may-button,
  .may-nav a,
  .may-main-nav a
) {
  font-family: var(--may-font-ui) !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-transform: none !important;
}

/* FINAL PRICING FREEZE */
body.may-home-ui.may-pricing-focused .may-price-list--page .may-price-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 190px !important;
  gap: 18px !important;
  align-items: center !important;
}

body.may-home-ui.may-pricing-focused .may-price-row__main {
  min-width: 0 !important;
}

body.may-home-ui.may-pricing-focused .may-price-row__side {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  width: 190px !important;
  min-width: 190px !important;
  max-width: 190px !important;
  margin: 0 !important;
}

body.may-home-ui.may-pricing-focused .may-price-row__meta {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 5px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

body.may-home-ui.may-pricing-focused .may-price-row__side .may-button {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  width: 132px !important;
  min-width: 132px !important;
  max-width: 132px !important;
  margin: 0 !important;
}

/* Service card and recruitment stability */
body.may-home-ui .may-service-card {
  min-width: 0;
  height: 100%;
}

body.may-home-ui .may-service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

body.may-home-ui .may-service-card__media img,
body.may-home-ui .may-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.may-home-ui .may-service-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

body.may-home-ui .may-service-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

body.may-home-ui .may-service-card__actions .may-card-action {
  min-width: 0;
}

body.may-recruitment-focused .may-core-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 14px;
}

body.may-recruitment-focused .may-core-list li::before {
  position: static;
  flex: 0 0 7px;
  margin-top: .58em;
}

@media (max-width: 767px) {
  body.may-home-ui.may-pricing-focused .may-price-list--page .may-price-row {
    grid-template-columns: 1fr !important;
  }

  body.may-home-ui.may-pricing-focused .may-price-row__side {
    align-items: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  body.may-home-ui.may-pricing-focused .may-price-row__meta {
    align-items: flex-start !important;
    text-align: left !important;
  }

  body.may-home-ui.may-pricing-focused .may-price-row__side .may-button {
    width: min(220px, 100%) !important;
    min-width: 0 !important;
    max-width: 220px !important;
  }

  body.may-recruitment-focused .may-core-card-grid--three {
    grid-template-columns: 1fr !important;
  }

  body.may-home-ui .may-service-card__actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  body.may-home-ui .may-service-grid,
  body.may-home-ui .may-services-grid,
  body.may-home-ui .may-service-grid--booking {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
}

@media (max-width: 359px) {
  body.may-home-ui .may-service-grid,
  body.may-home-ui .may-services-grid,
  body.may-home-ui .may-service-grid--booking {
    grid-template-columns: 1fr !important;
  }
}

body.may-home-ui .may-language-switcher {
  position: relative;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

body.may-home-ui .may-language-switcher__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 76px;
  height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(217, 177, 103, .42);
  border-radius: 999px;
  color: #fff8ea;
  background: rgba(29, 24, 20, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  cursor: pointer;
}

body.may-home-ui .may-language-switcher__flag {
  font-size: 1.05rem;
  line-height: 1;
}

body.may-home-ui .may-language-switcher__code {
  font-size: .8rem;
  font-weight: 820;
}

body.may-home-ui .may-language-switcher__chevron {
  font-size: .95rem;
  line-height: 1;
  transition: transform .18s ease;
}

body.may-home-ui .may-language-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 178px;
  padding: 8px;
  border: 1px solid rgba(217, 177, 103, .35);
  border-radius: 16px;
  background: rgba(255, 252, 246, .98);
  box-shadow: 0 20px 45px rgba(43, 27, 15, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
}

body.may-home-ui .may-language-switcher:hover .may-language-switcher__menu,
body.may-home-ui .may-language-switcher:focus-within .may-language-switcher__menu,
body.may-home-ui .may-language-switcher.is-open .may-language-switcher__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.may-home-ui .may-language-switcher:hover .may-language-switcher__chevron,
body.may-home-ui .may-language-switcher:focus-within .may-language-switcher__chevron,
body.may-home-ui .may-language-switcher.is-open .may-language-switcher__chevron {
  transform: rotate(180deg);
}

body.may-home-ui .may-language-switcher__item {
  display: grid;
  grid-template-columns: 26px 38px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 9px;
  border-radius: 12px;
  color: #2d2118;
  text-decoration: none;
}

body.may-home-ui .may-language-switcher__item:hover,
body.may-home-ui .may-language-switcher__item:focus,
body.may-home-ui .may-language-switcher__item[aria-current="true"] {
  color: #1f170f;
  background: #fff2dc;
}

body.may-home-ui .may-language-switcher__item .may-language-switcher__name {
  overflow: hidden;
  color: rgba(45, 33, 24, .68);
  font-size: .76rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.may-home-ui .may-language-switcher--mobile .may-language-switcher__menu {
  right: auto;
  left: 0;
}

@media (max-width: 768px) {
  body.may-home-ui .may-language-switcher__button {
    min-width: 66px;
    height: 36px;
    padding: 0 10px;
  }

  body.may-home-ui .may-language-switcher__menu {
    min-width: 164px;
  }
}

/* MAY-03.24J Luxury Footer */
body.may-home-ui .may-footer,
body.may-page-shell .may-footer,
.may-footer {
  --may-footer-gold: #f0bd75;
  --may-footer-cream: #fff7ea;
  --may-footer-muted: rgba(255, 255, 255, .68);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  padding: clamp(76px, 7vw, 92px) 0 42px;
  color: rgba(255, 255, 255, .88);
  background:
    radial-gradient(circle at 18% 6%, rgba(240, 189, 117, .2), transparent 32%),
    radial-gradient(circle at 92% 22%, rgba(105, 74, 45, .38), transparent 38%),
    linear-gradient(135deg, #160a05 0%, #2b160c 44%, #120805 100%);
}

body.may-home-ui .may-footer::before,
body.may-home-ui .may-footer::after,
body.may-page-shell .may-footer::before,
body.may-page-shell .may-footer::after,
.may-footer::before,
.may-footer::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

body.may-home-ui .may-footer::before,
body.may-page-shell .may-footer::before,
.may-footer::before {
  z-index: -2;
  background-image: var(--may-footer-bg-image, none);
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.025);
}

body.may-home-ui .may-footer--image::before,
body.may-page-shell .may-footer--image::before,
.may-footer--image::before {
  opacity: .92;
}

body.may-home-ui .may-footer::after,
body.may-page-shell .may-footer::after,
.may-footer::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(39, 20, 10, .68) 0%, rgba(22, 10, 5, .76) 42%, rgba(12, 5, 3, .88) 100%),
    linear-gradient(90deg, rgba(22, 10, 5, calc(var(--may-footer-overlay, .74) + .04)), rgba(30, 14, 8, var(--may-footer-overlay, .74)));
}

body.may-home-ui .may-footer__inner,
body.may-page-shell .may-footer__inner,
.may-footer__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1220px);
}

body.may-home-ui .may-footer__grid,
body.may-page-shell .may-footer__grid,
.may-footer__grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.05fr) minmax(260px, 1.15fr) minmax(190px, .82fr) minmax(210px, .92fr);
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
  margin: 0;
}

body.may-home-ui .may-footer__panel,
body.may-page-shell .may-footer__panel,
.may-footer__panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

body.may-home-ui .may-footer .may-brand,
body.may-page-shell .may-footer .may-brand,
.may-footer .may-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--may-footer-cream);
}

body.may-home-ui .may-footer .may-brand__mark,
body.may-page-shell .may-footer .may-brand__mark,
.may-footer .may-brand__mark {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  color: var(--may-footer-gold);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

body.may-home-ui .may-footer .may-brand__mark img,
body.may-page-shell .may-footer .may-brand__mark img,
.may-footer .may-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.may-home-ui .may-footer .may-brand strong,
body.may-page-shell .may-footer .may-brand strong,
.may-footer .may-brand strong {
  display: block;
  color: #fff7ea;
  font-family: var(--may-font-heading);
  font-size: clamp(1.38rem, 1.9vw, 2rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: 0;
}

body.may-home-ui .may-footer .may-brand small,
body.may-page-shell .may-footer .may-brand small,
.may-footer .may-brand small {
  display: block;
  margin-top: 6px;
  color: var(--may-footer-muted);
  font-family: var(--may-font-ui);
  font-size: .88rem;
  line-height: 1.35;
  letter-spacing: 0;
}

body.may-home-ui .may-footer__panel--brand p,
body.may-page-shell .may-footer__panel--brand p,
.may-footer__panel--brand p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .96rem;
  line-height: 1.68;
}

body.may-home-ui .may-footer h2,
body.may-page-shell .may-footer h2,
.may-footer h2 {
  margin: 0;
  color: #fff7ea;
  font-family: var(--may-font-ui);
  font-size: .84rem;
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: .04em !important;
  text-transform: uppercase;
}

body.may-home-ui .may-footer p,
body.may-home-ui .may-footer a,
body.may-page-shell .may-footer p,
body.may-page-shell .may-footer a,
.may-footer p,
.may-footer a {
  color: rgba(255, 255, 255, .76);
  font-size: .94rem;
  line-height: 1.58;
}

body.may-home-ui .may-footer__hours,
body.may-page-shell .may-footer__hours,
.may-footer__hours {
  display: grid;
  gap: 5px;
  padding-top: 2px;
}

body.may-home-ui .may-footer__hours span,
body.may-page-shell .may-footer__hours span,
.may-footer__hours span {
  color: var(--may-footer-gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body.may-home-ui .may-footer__hours strong,
body.may-page-shell .may-footer__hours strong,
.may-footer__hours strong {
  color: rgba(255, 255, 255, .86);
  font-size: .96rem;
  line-height: 1.45;
}

body.may-home-ui .may-footer-socials,
body.may-page-shell .may-footer-socials,
.may-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-start;
  margin-top: auto;
}

body.may-home-ui .may-footer-socials a,
body.may-home-ui .may-footer-socials button,
body.may-page-shell .may-footer-socials a,
body.may-page-shell .may-footer-socials button,
.may-footer-socials a,
.may-footer-socials button {
  display: inline-flex;
  min-height: 42px;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .075);
  color: #fff7ea;
  font-family: var(--may-font-ui);
  font-size: .85rem;
  font-weight: 760;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

body.may-home-ui .may-footer-socials .may-app-icon,
body.may-home-ui .may-footer-socials svg,
body.may-page-shell .may-footer-socials .may-app-icon,
body.may-page-shell .may-footer-socials svg,
.may-footer-socials .may-app-icon,
.may-footer-socials svg {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px;
}

body.may-home-ui .may-footer .may-app-icon-img,
body.may-page-shell .may-footer .may-app-icon-img,
.may-footer .may-app-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.may-home-ui .may-footer__links,
body.may-page-shell .may-footer__links,
.may-footer__links {
  display: grid;
  gap: 0;
}

body.may-home-ui .may-footer__links a,
body.may-page-shell .may-footer__links a,
.may-footer__links a {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
}

body.may-home-ui .may-footer__links a::after,
body.may-page-shell .may-footer__links a::after,
.may-footer__links a::after {
  flex: 0 0 auto;
  color: rgba(240, 189, 117, .82);
  content: ">";
}

body.may-home-ui .may-footer a:hover,
body.may-home-ui .may-footer a:focus-visible,
body.may-page-shell .may-footer a:hover,
body.may-page-shell .may-footer a:focus-visible,
.may-footer a:hover,
.may-footer a:focus-visible {
  color: var(--may-footer-gold);
}

@media (hover: hover) and (pointer: fine) {
  body.may-home-ui .may-footer-socials a:hover,
  body.may-home-ui .may-footer-socials button:hover,
  body.may-page-shell .may-footer-socials a:hover,
  body.may-page-shell .may-footer-socials button:hover,
  .may-footer-socials a:hover,
  .may-footer-socials button:hover {
    border-color: rgba(240, 189, 117, .4);
    background: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
  }
}

body.may-home-ui .may-footer__bottom,
body.may-page-shell .may-footer__bottom,
.may-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: clamp(24px, 3vw, 34px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  line-height: 1.5;
}

body.may-home-ui .may-footer__bottom-cell--language,
body.may-page-shell .may-footer__bottom-cell--language,
.may-footer__bottom-cell--language {
  display: flex;
  justify-content: center;
}

body.may-home-ui .may-footer__bottom-cell--copyright,
body.may-page-shell .may-footer__bottom-cell--copyright,
.may-footer__bottom-cell--copyright {
  text-align: right;
}

body.may-home-ui .may-footer .may-language-switcher,
body.may-page-shell .may-footer .may-language-switcher,
.may-footer .may-language-switcher {
  max-width: 100%;
}

body.may-home-ui .may-footer .may-language-switcher__button,
body.may-page-shell .may-footer .may-language-switcher__button,
.may-footer .may-language-switcher__button {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .075);
  color: #fff7ea;
}

@media (max-width: 1040px) {
  body.may-home-ui .may-footer__grid,
  body.may-page-shell .may-footer__grid,
  .may-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.may-home-ui .may-footer,
  body.may-page-shell .may-footer,
  .may-footer {
    padding: 56px 0 32px;
  }

  body.may-home-ui .may-footer__inner,
  body.may-page-shell .may-footer__inner,
  .may-footer__inner {
    width: min(100% - 28px, 100%);
  }

  body.may-home-ui .may-footer__grid,
  body.may-page-shell .may-footer__grid,
  .may-footer__grid,
  body.may-home-ui .may-footer__bottom,
  body.may-page-shell .may-footer__bottom,
  .may-footer__bottom {
    grid-template-columns: 1fr;
  }

  body.may-home-ui .may-footer__panel,
  body.may-page-shell .may-footer__panel,
  .may-footer__panel {
    border-radius: 20px;
    padding: 18px;
  }

  body.may-home-ui .may-footer .may-brand__mark,
  body.may-page-shell .may-footer .may-brand__mark,
  .may-footer .may-brand__mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 17px;
  }

  body.may-home-ui .may-footer .may-brand strong,
  body.may-page-shell .may-footer .may-brand strong,
  .may-footer .may-brand strong {
    font-size: clamp(1.24rem, 6vw, 1.62rem);
  }

  body.may-home-ui .may-footer-socials a,
  body.may-home-ui .may-footer-socials button,
  body.may-page-shell .may-footer-socials a,
  body.may-page-shell .may-footer-socials button,
  .may-footer-socials a,
  .may-footer-socials button {
    min-height: 44px;
  }

  body.may-home-ui .may-footer__bottom-cell,
  body.may-page-shell .may-footer__bottom-cell,
  .may-footer__bottom-cell,
  body.may-home-ui .may-footer__bottom-cell--copyright,
  body.may-page-shell .may-footer__bottom-cell--copyright,
  .may-footer__bottom-cell--copyright {
    text-align: left;
  }

  body.may-home-ui .may-footer__bottom-cell--language,
  body.may-page-shell .may-footer__bottom-cell--language,
  .may-footer__bottom-cell--language {
    justify-content: flex-start;
  }
}

/* Mobile contact rail: reuse the desktop rail and remove the bottom sticky bar. */
@media (max-width: 1199px) {
  html body aside.may-cta-rail,
  html body .may-cta-rail {
    display: grid !important;
    right: 10px;
    top: 50%;
    bottom: auto;
    max-height: calc(100dvh - 24px);
    gap: 8px;
    overflow-x: visible;
    overflow-y: auto;
    transform: translateY(-50%);
    scrollbar-width: none;
  }

  html body .may-cta-rail::-webkit-scrollbar {
    display: none;
  }

  html body .may-cta-rail > a,
  html body .may-cta-rail > button {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    border-radius: 17px;
  }

  html body .may-cta-rail .may-app-icon,
  html body .may-cta-rail .may-contact-icon,
  html body .may-cta-rail .may-cta-icon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  html body .may-cta-rail .may-app-icon svg,
  html body .may-cta-rail .may-app-icon img,
  html body .may-cta-rail .may-contact-icon svg,
  html body .may-cta-rail .may-contact-icon img,
  html body .may-cta-rail .may-cta-icon svg,
  html body .may-cta-rail .may-cta-icon img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }

  html body .may-mobile-sticky {
    display: none !important;
  }
}

@media (max-width: 359px), (max-height: 520px) {
  html body .may-cta-rail {
    right: 6px;
    gap: 6px;
  }

  html body .may-cta-rail > a,
  html body .may-cta-rail > button {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 15px;
  }
}

/* Promotion Engine price presentation. */
.may-price-original {
  display: inline-block;
  margin-right: 6px;
  color: rgba(61, 37, 22, .56);
  font-size: .82em;
  font-weight: 500;
}

.may-service-package__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

/* Language-aware promotion banner. */
.may-coupon--banner {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(400px, 42%);
  align-items: stretch;
  gap: 0;
  min-height: 420px;
  padding: 0;
  border: 1px solid rgba(198, 148, 73, .22);
  border-radius: 28px;
  background: #fffdf9;
}

.may-coupon__banner-media {
  display: block;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  background: #f4eadc;
}

.may-coupon__banner-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.may-coupon:not(.may-coupon--banner) .may-coupon__body {
  display: contents;
}

.may-coupon--banner .may-coupon__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 40px);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 171, 93, .13), transparent 36%),
    #fffdf9;
}

.may-coupon__content {
  min-width: 0;
  max-width: 560px;
}

.may-coupon--banner .may-coupon__content h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 2.65vw, 2.75rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.may-coupon--banner .may-coupon__content p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.55;
}

.may-coupon--banner .may-coupon__code {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(130px, .72fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 2px 18px;
  margin-top: 16px;
  padding: 13px 16px;
  border-color: rgba(198, 148, 73, .48);
  background: #fff8e8;
}

.may-coupon--banner .may-coupon__code span {
  grid-column: 1;
  grid-row: 1;
}

.may-coupon--banner .may-coupon__code strong {
  grid-column: 1;
  grid-row: 2;
  font-size: 1.25rem;
}

.may-coupon--banner .may-coupon__code small {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  line-height: 1.45;
}

.may-coupon--banner .may-coupon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .may-coupon--banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .may-coupon__banner-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .may-coupon--banner .may-coupon__body {
    padding: clamp(28px, 6vw, 48px);
  }
}

@media (max-width: 640px) {
  .may-coupon--banner {
    border-radius: 22px;
  }

  .may-coupon__banner-media {
    aspect-ratio: 16 / 9;
  }

  .may-coupon__banner-media--has-mobile {
    aspect-ratio: 1 / 1;
  }

  .may-coupon--banner .may-coupon__body {
    padding: 24px 72px 26px 20px;
  }

  .may-coupon--banner .may-coupon__content h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .may-coupon--banner .may-coupon__code {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2px;
  }

  .may-coupon--banner .may-coupon__code span,
  .may-coupon--banner .may-coupon__code strong,
  .may-coupon--banner .may-coupon__code small {
    grid-column: 1;
    grid-row: auto;
  }

  .may-coupon--banner .may-coupon__code small {
    margin-top: 6px;
  }

  .may-coupon--banner .may-coupon__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .may-coupon--banner .may-coupon__actions .may-button {
    width: 100%;
    min-width: 0;
  }
}

/* Elegant serif headings inspired by the reference spa typography. */
:root,
body.may-home-ui {
  --may-font-heading: Cambria, "Times New Roman", "Noto Serif", serif;
  --may-font-heading-safe: Cambria, "Times New Roman", "Noto Serif", serif;
}

body.may-home-ui :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .may-page-title,
  .may-section-title,
  .may-section-heading h2,
  .may-section-head h2,
  .may-core-hero h1,
  .may-core-panel h2,
  .may-core-panel h3,
  .may-core-card h3,
  .may-service-card h3,
  .may-service-card__title,
  .may-pricing-group__head h2,
  .may-price-row h3,
  .may-booking-form h3,
  .may-booking-form h4
) {
  font-family: var(--may-font-heading) !important;
  font-weight: 700;
  letter-spacing: 0 !important;
  line-height: 1.14;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
}

html[lang^="ko"] body.may-home-ui,
html[lang^="zh"] body.may-home-ui,
html[lang^="ja"] body.may-home-ui {
  --may-font-heading: "Noto Serif CJK KR", "Noto Serif CJK SC", "Yu Mincho", "Malgun Myeongjo", Cambria, serif;
  --may-font-heading-safe: "Noto Serif CJK KR", "Noto Serif CJK SC", "Yu Mincho", "Malgun Myeongjo", Cambria, serif;
}

/* Service showcase cards, promotion badges and lazy video dialog. */
body.may-home-ui .may-service-grid,
body.may-home-ui .may-services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: start;
  gap: clamp(16px, 2vw, 24px);
}
body.may-home-ui .may-services-grid .may-service-card--showcase { height: auto; min-height: 0; }

body.may-home-ui .may-service-card--showcase {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(190, 139, 75, .25);
  border-radius: 22px;
  background: #fffaf3;
}

body.may-home-ui .may-service-card--showcase .may-service-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

body.may-home-ui .may-service-card--showcase .may-service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.may-home-ui .may-service-card__badge,
body.may-home-ui .may-service-card__discount {
  position: absolute;
  z-index: 3;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font: 700 .82rem/1 var(--may-font-ui);
}

body.may-home-ui .may-service-card__badge { left: 14px; background: #173653; }
body.may-home-ui .may-service-card__discount { right: 14px; background: #e77c68; }

body.may-home-ui .may-service-card--showcase .may-service-card__duration-pill {
  right: 16px;
  bottom: 12px;
  left: 16px;
  width: auto;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #173653;
  font-weight: 800;
}

body.may-home-ui .may-service-card--showcase .may-service-card__body { padding: 18px; }
body.may-home-ui .may-service-card--showcase .may-service-card__title { min-height: 2.35em; font-size: clamp(1.25rem, 1.7vw, 1.65rem); color: #173653; }
body.may-home-ui .may-services-grid .may-service-card__subtitle,
body.may-home-ui .may-services-grid .may-service-card__desc { display: none; }
body.may-home-ui .may-service-card__price-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; }
body.may-home-ui .may-service-card__price-line small { font-weight: 700; }
body.may-home-ui .may-service-card__price-line del { color: #8a7566; }
body.may-home-ui .may-service-card__price { color: #07863f; font-size: 1.2rem; }
body.may-home-ui .may-service-card__promo { display: flex; gap: 8px; margin: 10px 0; padding: 10px 12px; border: 1px dashed #e4ba7c; border-radius: 12px; color: #aa6b25; }

body.may-home-ui .may-service-card--showcase .may-service-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

body.may-home-ui .may-service-card--showcase .may-card-action { min-height: 46px; width: 100%; justify-content: center; cursor: pointer; }
body.may-home-ui .may-service-card--showcase.has-no-video .may-card-action--primary { grid-column: span 2; }
body.may-home-ui .may-service-favorite.is-active { color: #c74b42; border-color: #e77c68; background: #fff3ef; }
body.may-home-ui .may-price-discount-badge { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: #e77c68; color: #fff; font: 700 .78rem/1.2 var(--may-font-ui); }
body.may-home-ui .may-price-promo-code { color: #a96722; font-weight: 750; }

body.may-home-ui .may-service-card__price-panel {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e9c58f;
  border-radius: 20px;
  background: rgba(255, 252, 246, .98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
body.may-home-ui .may-service-card__price-panel[hidden] { display: none; }
body.may-home-ui .may-service-card__package-list { display: grid; gap: 10px; }
body.may-home-ui .may-service-card__package-row {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid #ecd3ae;
  border-radius: 16px;
  background: #fffdf9;
}
body.may-home-ui .may-service-card__package-name { min-width: 0; color: #173653; font: 750 .96rem/1.3 var(--may-font-ui); overflow-wrap: anywhere; }
body.may-home-ui .may-service-card__package-price { display: flex; min-width: 0; align-items: flex-end; justify-content: center; flex-direction: column; gap: 3px; }
body.may-home-ui .may-service-card__package-price del { color: #9b8d83; font-size: .78rem; }
body.may-home-ui .may-service-card__package-price b { max-width: 100%; color: #07863f; font: 800 clamp(.9rem, 1.05vw, 1.05rem)/1.2 var(--may-font-ui); white-space: nowrap; }
body.may-home-ui .may-service-card__package-price em { padding: 4px 8px; border-radius: 999px; background: #e77c68; color: #fff; font: normal 750 .73rem/1.2 var(--may-font-ui); }
body.may-home-ui .may-service-card__price-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  border: 1px dashed #e4ba7c;
  border-radius: 15px;
  color: #173653;
  font-weight: 800;
  text-decoration: none;
}
body.may-home-ui .may-service-card__price-detail:hover { border-style: solid; color: #a96722; }

body.may-home-ui .may-service-video-feature { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: clamp(24px, 4vw, 54px); align-items: center; }
body.may-home-ui .may-service-video-feature > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 24px; }

.may-video-modal-open { overflow: hidden; }
.may-service-video-modal { position: fixed; z-index: 100000; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(18, 12, 8, .82); }
.may-service-video-modal__panel { position: relative; overflow: hidden; width: min(960px, 100%); max-height: 90vh; border-radius: 22px; background: #fffaf3; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.may-service-video-modal__panel iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
.may-service-video-modal__panel > img { display: block; width: 100%; max-height: 65vh; object-fit: cover; }
.may-service-video-modal__close { position: absolute; z-index: 2; top: 10px; right: 10px; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; color: #2f2118; font-size: 1.8rem; cursor: pointer; box-shadow: 0 5px 20px rgba(0,0,0,.18); }
.may-service-video-modal__source { padding: 24px; text-align: center; }

@media (max-width: 1100px) {
  body.may-home-ui .may-service-grid,
  body.may-home-ui .may-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 820px) {
  body.may-home-ui .may-service-grid,
  body.may-home-ui .may-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  body.may-home-ui .may-service-video-feature { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body.may-home-ui .may-service-grid,
  body.may-home-ui .may-services-grid { grid-template-columns: 1fr !important; }
  .may-service-video-modal { padding: 12px; }
  body.may-home-ui .may-service-card--showcase .may-service-card__body { padding-right: 72px; }
}

/* Compact contact rail on every viewport while preserving a 44px touch target. */
body.may-home-ui .may-cta-rail {
  max-width: 60px;
  gap: 8px;
}

body.may-home-ui .may-cta-rail > a,
body.may-home-ui .may-cta-rail > button {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 16px;
}

body.may-home-ui .may-cta-rail .may-app-icon,
body.may-home-ui .may-cta-rail .may-contact-icon,
body.may-home-ui .may-cta-rail .may-cta-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  flex-basis: 34px !important;
}

body.may-home-ui .may-cta-rail .may-app-icon :is(svg, img),
body.may-home-ui .may-cta-rail .may-contact-icon :is(svg, img),
body.may-home-ui .may-cta-rail .may-cta-icon :is(svg, img) {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
}

body.may-home-ui .may-cta-rail .may-cta-label {
  right: 64px;
}

@media (max-width: 1199px) {
  html body.may-home-ui .may-cta-rail { gap: 7px; }
  html body.may-home-ui .may-cta-rail > a,
  html body.may-home-ui .may-cta-rail > button {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 15px;
  }
  html body.may-home-ui .may-cta-rail .may-app-icon,
  html body.may-home-ui .may-cta-rail .may-contact-icon,
  html body.may-home-ui .may-cta-rail .may-cta-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    flex-basis: 30px !important;
  }
  html body.may-home-ui .may-cta-rail :is(.may-app-icon, .may-contact-icon, .may-cta-icon) :is(svg, img) {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    min-height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
  }
}

@media (max-width: 359px), (max-height: 520px) {
  html body.may-home-ui .may-cta-rail > a,
  html body.may-home-ui .may-cta-rail > button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 14px;
  }
}
