:root {
  --font-luxury: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --font-ui: "Manrope", Arial, sans-serif;
  --font-logo: "GFS Didot", "Cormorant Garamond", Georgia, serif;
  --font-arabic: "IBM Plex Sans Arabic", "Noto Naskh Arabic", sans-serif;
  --font-arabic-display: "Noto Naskh Arabic", "IBM Plex Sans Arabic", serif;
  --font-hebrew: "Heebo", "Noto Serif Hebrew", sans-serif;
  --font-hebrew-display: "Noto Serif Hebrew", "Heebo", serif;
  --brand-bg: #ffffff;
  --brand-cream: #f6f2ea;
  --brand-white: #ffffff;
  --brand-text: #121315;
  --brand-strong: #121315;
  --brand-muted: #6f675e;
  --brand-border: #cbbca7;
  --brand-gold: #b08b57;
  --brand-aqua: #2d4038;
  --brand-coral: #cbbca7;
  --brand-ink: #121315;
  --shadow-soft: 0 22px 70px rgba(18, 19, 21, 0.08);
  --shadow-tiny: 0 10px 28px rgba(18, 19, 21, 0.06);
  --radius-card: 20px;
  --header-h: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  background: #ffffff;
  color: var(--theme-text, var(--brand-text));
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background 240ms ease, color 240ms ease;
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

body[data-motion-sparkle="true"]::before {
  background:
    radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--theme-primary, #b89a64) 38%, transparent) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 32%, color-mix(in srgb, var(--theme-primary, #b89a64) 32%, transparent) 0 1px, transparent 2px),
    radial-gradient(circle at 43% 72%, color-mix(in srgb, var(--theme-accent, #6fc7c5) 24%, transparent) 0 1px, transparent 2px);
  background-size: 220px 220px;
  opacity: 0.24;
  animation: themeSparkle 8s linear infinite;
}

body[data-motion-bubbles="true"]::after {
  background:
    radial-gradient(circle at 14% 80%, color-mix(in srgb, var(--theme-accent, #6fc7c5) 26%, transparent) 0 10px, transparent 11px),
    radial-gradient(circle at 86% 72%, color-mix(in srgb, var(--theme-primary, #b89a64) 20%, transparent) 0 7px, transparent 8px),
    radial-gradient(circle at 54% 92%, color-mix(in srgb, var(--theme-accent, #6fc7c5) 18%, transparent) 0 13px, transparent 14px);
  opacity: 0.22;
  animation: themeBubbles 12s ease-in-out infinite alternate;
}

@keyframes themeSparkle {
  to { background-position: 220px 110px; }
}

@keyframes themeBubbles {
  to { transform: translateY(-18px); }
}

[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea,
[dir="rtl"] button {
  font-family: var(--font-arabic);
}

html[lang="he"] body,
html[lang="he"] input,
html[lang="he"] select,
html[lang="he"] textarea,
html[lang="he"] button {
  font-family: var(--font-hebrew);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3 {
  font-family: var(--font-arabic-display);
}

html[lang="he"] h1,
html[lang="he"] h2,
html[lang="he"] h3 {
  font-family: var(--font-hebrew-display);
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--theme-heading, var(--brand-strong));
  font-family: var(--theme-heading-font, var(--font-luxury));
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 920px;
  font-size: clamp(46px, 9vw, 112px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: 0.03em;
}

h3 {
  font-size: 30px;
  letter-spacing: 0.02em;
}

body.locked {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--brand-strong);
  color: var(--brand-white);
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--font-ui);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(176, 139, 87, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 24px rgba(18, 19, 21, 0.035);
}

section[id],
main[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.production-config-warning {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(156, 77, 66, 0.22);
  background: #fff7ed;
  color: #5f3327;
  font-family: var(--font-ui);
  font-size: 13px;
}

.production-config-warning strong {
  font-size: 14px;
}

.production-config-warning span {
  color: #7a5144;
}

.header-inner {
  min-height: var(--header-h);
  width: min(1500px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.concierge-header-inner {
  direction: ltr;
}

.concierge-header-inner .header-left {
  grid-column: 1;
  justify-self: start;
  position: relative;
}

.concierge-header-inner .brand-mark {
  grid-column: 2;
  justify-self: center;
}

.concierge-header-inner .header-right {
  grid-column: 3;
  justify-self: end;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-right {
  justify-content: flex-end;
}

.brand-mark {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  text-decoration: none;
}

.brand-mark img {
  width: clamp(var(--theme-logo-mobile-width, 132px), 15vw, var(--theme-logo-desktop-width, 220px));
  height: auto;
  object-fit: contain;
}

.drawer-logo {
  width: min(196px, 68vw);
  height: auto;
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  color: var(--brand-ink);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-wordmark span {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
}

.brand-wordmark strong {
  font-family: var(--font-luxury);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 0.9;
}

.drawer-wordmark {
  text-align: start;
}

.menu-button,
.button,
.icon-button,
.float-button,
.lang-button,
.filter-button,
.step-tab,
.choice-button,
.chip-button {
  border: 1px solid transparent;
  background: none;
  color: inherit;
  cursor: pointer;
}

.icon-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.icon-text svg,
.icon-button svg,
.float-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.whatsapp-mark {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.149-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.05 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.149-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.05 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.float-button .whatsapp-mark {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

.instagram-mark {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-sizing: border-box;
}

.instagram-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.instagram-mark::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.float-button .instagram-mark {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  color: var(--theme-button-text, var(--brand-white));
}

.float-button .instagram-mark::before {
  inset: 5px;
}

.float-button .instagram-mark::after {
  top: 4px;
  right: 4px;
}

.menu-button {
  padding: 10px 0;
  color: var(--brand-strong);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.language-switcher {
  display: inline-flex;
  border: 1px solid rgba(176, 139, 87, 0.24);
  background: rgba(255, 255, 255, 0.86);
}

.language-menu,
.menu-popover {
  position: relative;
  display: inline-flex;
}

.language-menu summary,
.menu-popover summary {
  list-style: none;
}

.language-menu summary::-webkit-details-marker,
.menu-popover summary::-webkit-details-marker {
  display: none;
}

.language-menu-summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(176, 139, 87, 0.30);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-strong);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.language-menu-summary svg {
  width: 15px;
  height: 15px;
}

.language-flag {
  display: inline-block;
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(18, 19, 21, 0.12);
}

.language-menu-list,
.menu-popover-list {
  position: absolute;
  top: calc(100% + 10px);
  z-index: 120;
  display: grid;
  min-width: 132px;
  border: 1px solid rgba(176, 139, 87, 0.26);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(18, 19, 21, 0.12);
}

.language-menu:not([open]) .language-menu-list,
.menu-popover:not([open]) .menu-popover-list {
  display: none;
}

.language-menu-list {
  right: 0;
}

.menu-popover-list {
  left: 0;
  right: auto;
  width: min(310px, 78vw);
  max-height: min(520px, calc(100svh - var(--header-h) - 30px));
  overflow: auto;
  padding: 14px;
  gap: 2px;
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .menu-popover-list {
  direction: rtl;
  text-align: right;
}

.menu-popover-list a {
  padding: 12px 14px;
  color: var(--brand-strong);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-popover-list a:hover {
  background: color-mix(in srgb, var(--brand-cream) 34%, #ffffff);
  color: var(--brand-gold);
}

.lang-button {
  min-width: 38px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brand-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.language-menu-list .lang-button {
  min-width: 100%;
  height: auto;
  justify-content: flex-start;
  padding: 10px 12px;
  border: 0;
  background: transparent;
}

.lang-button.is-active {
  background: var(--brand-gold);
  color: var(--brand-white);
}

.button {
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--theme-button-radius, 4px);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--theme-letter-spacing, 0.13em);
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.float-button:hover,
.icon-button:hover,
.filter-button:hover,
.choice-button:hover {
  transform: translateY(-1px);
}

.button.is-disabled,
.float-button.is-disabled {
  opacity: 0.48;
  pointer-events: auto;
  cursor: not-allowed;
}

.button:focus-visible,
.icon-button:focus-visible,
.lang-button:focus-visible,
.filter-button:focus-visible,
.choice-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

.button-primary {
  border-color: var(--theme-button, var(--brand-strong));
  background: var(--theme-button, var(--brand-strong));
  color: var(--theme-button-text, var(--brand-white));
  box-shadow: var(--theme-shadow, var(--shadow-tiny));
}

.button-primary:hover {
  background: color-mix(in srgb, var(--theme-button, #2f2a25) 88%, #000000);
}

.button-ghost {
  border-color: rgba(176, 139, 87, 0.30);
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-strong);
}

.button-light {
  border-color: var(--brand-white);
  background: var(--brand-white);
  color: var(--brand-strong);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--brand-white);
}

.menu-drawer,
.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-drawer {
  background: rgba(18, 19, 21, 0.42);
  overflow: hidden;
}

.menu-drawer:not(.is-open) {
  display: none;
}

.menu-drawer.is-open,
.modal.is-open,
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  width: min(430px, calc(100% - 34px));
  height: 100%;
  background: var(--brand-bg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transform: translateX(-100%);
  transition: transform 260ms ease;
}

[dir="rtl"] .drawer-panel {
  margin-inline-start: auto;
  transform: translateX(100%);
}

.menu-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--brand-border);
}

.drawer-top img {
  width: 150px;
  height: auto;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(81, 72, 62, 0.16);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.drawer-nav {
  display: grid;
  gap: 10px;
  padding-top: 26px;
}

.drawer-nav a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(81, 72, 62, 0.12);
  color: var(--brand-strong);
  font-family: var(--font-luxury);
  font-size: 30px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: calc(100svh - 34px);
  display: flex;
  align-items: center;
  overflow: clip;
  background: var(--brand-strong);
}

.hero-image,
.hero-video,
.hero-slideshow,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slideshow {
  z-index: 0;
  overflow: hidden;
  background: var(--brand-strong);
}

.hero-slide {
  opacity: 0;
  animation: heroSlideFade var(--hero-motion-duration, 24s) ease-in-out infinite;
}

.hero-slide img {
  transform: scale(1.06);
  animation: heroSlideDrift var(--hero-motion-duration, 24s) ease-in-out infinite;
}

.hero-slide:nth-child(1),
.hero-slide:nth-child(1) img { animation-delay: 0s; }

.hero-slide:nth-child(2),
.hero-slide:nth-child(2) img { animation-delay: 6s; }

.hero-slide:nth-child(3),
.hero-slide:nth-child(3) img { animation-delay: 12s; }

.hero-slide:nth-child(4),
.hero-slide:nth-child(4) img { animation-delay: 18s; }

@keyframes heroSlideFade {
  0%, 28% { opacity: 1; }
  34%, 100% { opacity: 0; }
}

@keyframes heroSlideDrift {
  0% { transform: scale(1.06) translate3d(0, 0, 0); }
  50% { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.08) translate3d(1%, 0.8%, 0); }
}

.hero-video {
  display: none;
  z-index: 1;
}

.hero-video.has-video {
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, var(--theme-overlay, rgba(47, 42, 37, 0.72)) 0%, color-mix(in srgb, var(--theme-overlay, rgba(47, 42, 37, 0.42)) 72%, transparent) 42%, rgba(47, 42, 37, 0.16) 100%),
    linear-gradient(0deg, rgba(47, 42, 37, 0.45) 0%, rgba(47, 42, 37, 0) 42%);
}

[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, var(--theme-overlay, rgba(47, 42, 37, 0.72)) 0%, color-mix(in srgb, var(--theme-overlay, rgba(47, 42, 37, 0.42)) 72%, transparent) 42%, rgba(47, 42, 37, 0.16) 100%),
    linear-gradient(0deg, rgba(47, 42, 37, 0.45) 0%, rgba(47, 42, 37, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 118px;
  color: var(--brand-white);
}

.hero h1,
.hero .eyebrow {
  color: var(--brand-white);
}

.eyebrow {
  color: var(--brand-gold);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-luxury);
  font-size: clamp(27px, 4vw, 46px);
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
}

.hero-actions,
.contact-actions,
.send-actions,
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.trust-badges span,
.tag,
.summary-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section,
.gallery-section,
.contact-section {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  color: var(--theme-text, var(--brand-text));
  transition: background 220ms ease, color 220ms ease;
}

.section-band {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1380px) / 2));
  background:
    linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--brand-cream) 35%, #ffffff) 100%);
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-head.compact {
  margin-bottom: 26px;
}

.section-head h2 {
  margin-top: 10px;
}

.section-head p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--brand-muted);
  font-size: 20px;
}

.filter-bar,
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button,
.chip-button {
  min-height: 38px;
  padding: 8px 12px;
  border-color: rgba(176, 139, 87, 0.22);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--theme-button-radius, 4px);
  color: var(--brand-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-button.is-active,
.chip-button.is-active {
  border-color: var(--brand-gold);
  background: var(--brand-gold);
  color: var(--theme-button-text, var(--brand-white));
}

.experience-grid,
.package-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(176, 139, 87, 0.18);
  border-radius: var(--radius-card);
  color: var(--theme-text, var(--brand-text));
  box-shadow: var(--theme-shadow, var(--shadow-tiny));
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: color-mix(in srgb, var(--brand-cream) 55%, #ffffff);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.card:hover .card-media img {
  transform: scale(1.03);
}

.offer-card[data-offer-theme] {
  position: relative;
}

.offer-card[data-offer-theme]::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 46px;
  height: 2px;
  background: var(--theme-primary, var(--brand-gold));
}

[dir="rtl"] .offer-card[data-offer-theme]::after {
  inset-inline: 18px auto;
}

.card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.card-body h3 {
  min-height: 62px;
}

.card-body p {
  color: var(--theme-text, var(--brand-muted));
}

.meta-row,
.price-row,
.facts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-pill,
.price-pill {
  padding: 7px 9px;
  border: 1px solid rgba(176, 139, 87, 0.24);
  background: color-mix(in srgb, var(--brand-cream) 28%, #ffffff);
  color: var(--theme-heading, var(--brand-strong));
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-pill strong {
  font-weight: 700;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.mini-button {
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid rgba(176, 139, 87, 0.28);
  border-radius: var(--theme-button-radius, 4px);
  background: var(--theme-surface, var(--brand-white));
  color: var(--theme-heading, var(--brand-strong));
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.mini-button.primary {
  background: var(--theme-button, var(--brand-strong));
  color: var(--theme-button-text, var(--brand-white));
}

.mini-button.aqua {
  border-color: rgba(45, 64, 56, 0.38);
  color: var(--brand-aqua);
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.builder-workspace,
.builder-summary {
  border: 1px solid rgba(176, 139, 87, 0.18);
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--theme-shadow, var(--shadow-tiny));
}

.builder-workspace {
  padding: 22px;
}

.builder-summary {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  padding: 24px;
}

.builder-steps {
  display: grid;
  grid-template-columns: repeat(8, minmax(82px, 1fr));
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.step-tab {
  min-height: 52px;
  border-color: rgba(176, 139, 87, 0.22);
  background: color-mix(in srgb, var(--brand-cream) 30%, #ffffff);
  border-radius: 4px;
  color: var(--theme-text, var(--brand-muted));
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-tab.is-active {
  background: var(--theme-button, var(--brand-strong));
  color: var(--theme-button-text, var(--brand-white));
}

.builder-pane {
  display: none;
  min-height: 342px;
}

.builder-pane.is-active {
  display: block;
}

.choice-grid,
.mini-grid,
.compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-button,
.mini-choice {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(176, 139, 87, 0.20);
  background: color-mix(in srgb, var(--brand-cream) 24%, #ffffff);
  border-radius: 4px;
  text-align: start;
  color: var(--theme-heading, var(--brand-strong));
  cursor: pointer;
}

.choice-button strong,
.mini-choice strong {
  display: block;
  font-family: var(--font-luxury);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.choice-button span,
.mini-choice span {
  display: block;
  margin-top: 8px;
  color: var(--theme-text, var(--brand-muted));
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-button.is-selected,
.mini-choice.is-selected {
  border-color: var(--theme-button, var(--brand-strong));
  background: var(--theme-button, var(--brand-strong));
  color: var(--theme-button-text, var(--brand-white));
}

.choice-button.is-selected span,
.mini-choice.is-selected span {
  color: rgba(255, 255, 255, 0.76);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--theme-heading, var(--brand-strong));
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

label.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(176, 139, 87, 0.26);
  border-radius: 4px;
  background: #ffffff;
  color: var(--theme-heading, var(--brand-strong));
  padding: 13px 12px;
  font-family: var(--font-ui);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

textarea {
  resize: vertical;
}

.promo-panel {
  display: grid;
  gap: 14px;
  max-width: 650px;
}

.status-line {
  min-height: 28px;
  color: var(--theme-text, var(--brand-muted));
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
}

.builder-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(81, 72, 62, 0.12);
}

.total {
  margin: 8px 0 18px;
  color: var(--theme-heading, var(--brand-strong));
  font-family: var(--theme-heading-font, var(--font-luxury));
  font-size: 48px;
  line-height: 1;
}

.summary-list {
  display: grid;
  gap: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--theme-border, var(--brand-border)) 28%, transparent);
}

.summary-row span:first-child {
  color: var(--theme-text, var(--brand-muted));
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-row span:last-child {
  color: var(--theme-heading, var(--brand-strong));
  text-align: end;
}

.fine-print,
.alert {
  color: var(--theme-text, var(--brand-muted));
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.55;
}

.fine-print {
  margin-top: 18px;
}

.alert-stack {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.alert {
  padding: 12px;
  border: 1px solid rgba(200, 130, 117, 0.35);
  background: rgba(200, 130, 117, 0.09);
  color: #7c4137;
  border-radius: 4px;
}

.send-panel {
  display: grid;
  gap: 18px;
}

.send-copy {
  max-height: 350px;
  overflow: auto;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--theme-border, var(--brand-border)) 34%, transparent);
  background: var(--theme-secondary, var(--brand-cream));
  border-radius: 4px;
  color: var(--theme-heading, var(--brand-strong));
  font-family: var(--font-ui);
  font-size: 14px;
  white-space: pre-wrap;
}

.gallery-section {
  padding-bottom: 76px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--brand-border);
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(47, 42, 37, 0.72);
  color: var(--brand-white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[dir="rtl"] .gallery-item span {
  left: auto;
  right: 12px;
}

.instagram-section {
  width: min(1710px, calc(100% - 10vw));
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(36px, 5vw, 92px);
  align-items: center;
  margin: 0 auto;
  padding: 104px 0 118px;
  background: #ffffff;
}

.instagram-copy {
  max-width: 560px;
  display: grid;
  gap: 22px;
}

.instagram-copy h2 {
  color: var(--brand-strong);
  font-size: clamp(50px, 4.6vw, 86px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

.instagram-copy p:not(.eyebrow) {
  color: var(--brand-muted);
  font-size: clamp(18px, 1.2vw, 23px);
  line-height: 1.55;
}

.instagram-copy .button {
  width: max-content;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(178px, 15vw);
  gap: 12px;
}

.instagram-grid a {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--brand-cream) 58%, #ffffff);
  text-decoration: none;
}

.instagram-grid a:first-child,
.instagram-grid a:nth-child(5) {
  grid-row: span 2;
}

.instagram-grid picture,
.instagram-grid img {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-grid img {
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.instagram-grid a:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.04);
}

.home-launch-contact {
  width: min(1180px, calc(100% - 10vw));
  display: grid;
  justify-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: 96px 0 124px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid rgba(81, 72, 62, 0.14);
}

.home-launch-contact h2 {
  max-width: 900px;
  color: var(--brand-strong);
  font-size: clamp(58px, 5.8vw, 104px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.home-launch-contact p:not(.eyebrow) {
  max-width: 740px;
  color: var(--brand-muted);
  font-size: clamp(18px, 1.18vw, 22px);
  line-height: 1.6;
}

.home-launch-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.home-launch-contact .contact-facts {
  width: min(820px, 100%);
  justify-content: center;
  margin-top: 14px;
}

.home-launch-contact .fact {
  border-color: rgba(81, 72, 62, 0.16);
  background: color-mix(in srgb, var(--brand-cream) 28%, #ffffff);
}

.home-launch-contact .fact strong {
  color: var(--brand-gold);
}

.home-launch-contact .fact span,
.home-launch-contact .fact a {
  color: var(--brand-strong);
}

.contact-qr {
  width: min(520px, 100%);
  display: grid;
  justify-items: center;
}

.contact-qr-card {
  width: min(100%, 460px);
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(176, 139, 87, 0.3);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-strong);
  text-align: start;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(28, 22, 16, 0.08);
}

.contact-qr-card img {
  width: 128px;
  height: 128px;
  display: block;
  border-radius: 4px;
  background: #fff;
}

.contact-qr-card span {
  display: grid;
  gap: 6px;
}

.contact-qr-card strong {
  color: var(--brand-strong);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-qr-card small {
  color: var(--brand-muted);
  font-size: 13px;
  line-height: 1.55;
}

.two-column {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 58px;
  align-items: start;
}

.sticky-head {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

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

.accordion details {
  border: 1px solid rgba(81, 72, 62, 0.15);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-card);
}

.accordion.soft details {
  background: rgba(255, 255, 255, 0.58);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: var(--brand-strong);
  cursor: pointer;
  font-family: var(--font-luxury);
  font-size: 26px;
  line-height: 1.05;
}

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

.accordion summary::after {
  content: "+";
  color: var(--brand-gold);
  font-family: var(--font-ui);
  font-size: 22px;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion .answer {
  padding: 0 20px 20px;
  color: var(--brand-muted);
}

.contact-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  padding: 0;
  background: var(--brand-strong);
  color: rgba(255, 255, 255, 0.82);
}

.contact-media {
  min-height: 620px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 72px max(36px, calc((100vw - 1380px) / 2)) 72px 60px;
}

[dir="rtl"] .contact-content {
  padding: 72px 60px 72px max(36px, calc((100vw - 1380px) / 2));
}

.contact-content h2,
.contact-content .eyebrow {
  color: var(--brand-white);
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.fact {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
}

.fact strong {
  display: block;
  color: var(--brand-white);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.fact a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.fact a:hover {
  color: var(--brand-white);
}

/* =========================================================
   Concierge-Inspired Homepage
   Reference structure adapted from a luxury conciergerie layout.
========================================================= */

.home-concierge-hero {
  width: min(1710px, calc(100% - 10vw));
  min-height: 520px;
  height: clamp(520px, 80svh, 720px);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.home-concierge-hero .hero-overlay {
  background:
    linear-gradient(0deg, rgba(35, 31, 27, 0.70) 0%, rgba(35, 31, 27, 0.30) 55%, rgba(35, 31, 27, 0.42) 100%),
    linear-gradient(90deg, rgba(35, 31, 27, 0.46) 0%, rgba(35, 31, 27, 0.18) 50%, rgba(35, 31, 27, 0.46) 100%);
}

[dir="rtl"] .home-concierge-hero .hero-overlay {
  background:
    linear-gradient(0deg, rgba(35, 31, 27, 0.70) 0%, rgba(35, 31, 27, 0.30) 55%, rgba(35, 31, 27, 0.42) 100%),
    linear-gradient(270deg, rgba(35, 31, 27, 0.46) 0%, rgba(35, 31, 27, 0.18) 50%, rgba(35, 31, 27, 0.46) 100%);
}

.home-concierge-hero .hero-content {
  display: grid;
  min-height: inherit;
  height: 100%;
  justify-items: start;
  align-content: end;
  gap: 0;
  text-align: start;
  padding: 0 0 56px;
}

.home-hero-kicker {
  display: none;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.home-concierge-hero h1 {
  max-width: 1120px;
  margin-top: 0;
  font-size: clamp(54px, 7.3vw, 112px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: none;
}

.home-concierge-hero .hero-subtitle {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(25px, 2.2vw, 36px);
}

.home-concierge-hero .hero-copy {
  max-width: 700px;
  margin-top: 16px;
  font-size: clamp(18px, 1.7vw, 23px);
}

.home-concierge-hero .hero-copy,
.home-concierge-hero .hero-actions .button:not(:first-child) {
  display: none;
}

.home-concierge-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.home-concierge-hero .hero-actions .button-primary {
  min-width: 260px;
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  box-shadow: none;
}

.home-concierge-hero .trust-badges,
.home-concierge-hero .home-hero-panel {
  display: none;
}

.home-hero-panel {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.home-hero-panel div {
  min-height: 158px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 22px;
  background: rgba(248, 242, 237, 0.11);
  backdrop-filter: blur(14px);
}

.home-hero-panel span {
  color: var(--brand-aqua);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.home-hero-panel strong {
  color: var(--brand-white);
  font-family: var(--font-luxury);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.home-hero-panel p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.home-service-overview {
  width: min(1710px, calc(100% - 10vw));
  padding: 92px 0 108px;
  background: #ffffff;
}

body:not(.seo-static-page) .seo-root-breadcrumbs {
  display: none;
}

.home-service-overview .section-head {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-service-overview .section-head h2 {
  margin-top: 0;
  font-size: clamp(48px, 4.1vw, 78px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.home-service-overview .section-head .eyebrow,
.home-service-overview .section-head p:not(.eyebrow) {
  display: none;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.55vw, 30px);
}

.home-service-card {
  --service-card-ratio: 212 / 450;
  --service-card-height: clamp(360px, 32vw, 500px);
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
  overflow: visible;
  color: var(--brand-text);
  text-decoration: none;
}

.home-service-card::after {
  display: none;
}

.home-service-card picture {
  display: block;
  width: 100%;
  height: var(--service-card-height);
  overflow: hidden;
  border-radius: 6px;
  background: rgba(81, 72, 62, 0.08);
}

.home-service-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-service-card:hover img {
  transform: scale(1.035);
}

.home-service-card span {
  display: block;
  margin: 0;
  padding: 0 4px;
  color: var(--brand-strong);
  font-family: var(--font-luxury);
  font-size: clamp(26px, 2.25vw, 46px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  text-align: center;
  text-transform: none;
  text-shadow: none;
}

.home-service-card strong {
  display: block;
  max-width: none;
  margin: 0;
  color: var(--brand-muted);
  font-family: var(--font-body);
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 1.22;
  text-align: center;
}

.home-service-card::before,
.home-expertise-card::before {
  content: "";
  order: 2;
  width: 54px;
  height: 1px;
  justify-self: center;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}

.home-service-card:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img {
    animation: none;
  }

  .hero-slide {
    opacity: 0;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.home-editorial {
  display: none;
}

.home-editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.home-editorial-row.reverse .home-editorial-media {
  order: 2;
}

.home-editorial-media {
  min-height: 520px;
  overflow: hidden;
}

.home-editorial-media picture,
.home-editorial-media img {
  width: 100%;
  height: 100%;
}

.home-editorial-media img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.home-editorial-row:hover .home-editorial-media img {
  transform: scale(1.035);
}

.home-editorial-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
  padding: 72px max(34px, calc((100vw - 1380px) / 2)) 72px 64px;
}

.home-editorial-row.reverse .home-editorial-copy {
  padding: 72px 64px 72px max(34px, calc((100vw - 1380px) / 2));
}

[dir="rtl"] .home-editorial-copy {
  padding: 72px 64px 72px max(34px, calc((100vw - 1380px) / 2));
}

[dir="rtl"] .home-editorial-row.reverse .home-editorial-copy {
  padding: 72px max(34px, calc((100vw - 1380px) / 2)) 72px 64px;
}

.home-editorial-copy h2,
.home-editorial-copy .eyebrow {
  color: var(--brand-white);
}

.home-editorial-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 21px;
}

.home-editorial-copy .button-ghost,
.home-editorial-copy .button-primary {
  border-color: rgba(255, 255, 255, 0.24);
}

.home-editorial-copy .button-primary {
  background: var(--brand-white);
  color: var(--brand-strong);
}

.home-expertise {
  width: min(1710px, calc(100% - 10vw));
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.38fr);
  gap: clamp(52px, 6.4vw, 108px);
  align-items: center;
  padding: 34px 0 80px;
  padding-inline: 0;
  background: #ffffff;
}

.home-expertise .section-head {
  max-width: none;
  margin: 0;
  text-align: start;
}

.home-expertise .section-head .eyebrow {
  display: none;
}

.home-expertise .section-head h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(54px, 5.35vw, 92px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: none;
}

.home-expertise-rule {
  width: 100%;
  height: 1px;
  margin: clamp(38px, 4.6vw, 74px) 0 clamp(34px, 4.3vw, 70px);
  background: rgba(176, 139, 87, 0.72);
}

.home-expertise-body {
  display: grid;
  gap: 20px;
  max-width: 1010px;
}

.home-expertise .section-head .home-expertise-body p {
  margin: 0;
  color: var(--brand-text);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.22vw, 23px);
  font-weight: 500;
  line-height: 1.48;
}

.home-expertise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: clamp(36px, 4.2vw, 72px);
}

.home-expertise-actions .button {
  min-width: min(280px, 100%);
  min-height: 56px;
  border-color: var(--brand-gold);
  background: var(--brand-gold);
  color: var(--brand-white);
  font-size: clamp(18px, 1.15vw, 23px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  box-shadow: none;
}

.home-expertise-media {
  width: 100%;
}

.home-expertise-media picture,
.home-expertise-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-expertise-media picture {
  height: clamp(520px, 51.5vw, 660px);
  overflow: hidden;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand-cream) 55%, #ffffff);
}

.home-expertise-media img {
  object-fit: cover;
}

.home-expertise-gallery {
  width: min(1710px, calc(100% - 10vw));
  padding: 88px 0 114px;
  background: #ffffff;
}

.home-expertise-gallery .section-head {
  max-width: none;
  margin: 0 auto 36px;
  text-align: center;
}

.home-expertise-gallery .section-head h2 {
  margin: 0;
  color: var(--brand-strong);
  font-size: clamp(50px, 4.2vw, 78px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.home-expertise-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 46px);
}

.home-expertise-gallery-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  color: var(--brand-text);
  text-decoration: none;
}

.home-expertise-gallery-card picture {
  display: block;
  width: 100%;
  height: clamp(350px, 27.4vw, 530px);
  overflow: hidden;
  border-radius: 6px;
  background: color-mix(in srgb, var(--brand-cream) 55%, #ffffff);
}

.home-expertise-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-expertise-gallery-card:hover img {
  transform: scale(1.035);
}

.home-expertise-gallery-card strong {
  display: block;
  color: var(--brand-strong);
  font-family: var(--font-luxury);
  font-size: clamp(30px, 2.5vw, 52px);
  font-weight: 700;
  line-height: 0.98;
  text-align: center;
}

.home-expertise-gallery-card span {
  display: block;
  color: var(--brand-muted);
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.32;
  text-align: center;
}

.home-owner-video {
  width: min(1710px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 0 0 118px;
}

.home-owner-video-frame {
  position: relative;
  min-height: clamp(620px, 43vw, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-strong);
  color: var(--brand-white);
}

.home-owner-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-owner-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 32%, rgba(18, 19, 21, 0.18), rgba(18, 19, 21, 0.54) 68%),
    linear-gradient(180deg, rgba(18, 19, 21, 0.50) 0%, rgba(18, 19, 21, 0.24) 38%, rgba(18, 19, 21, 0.62) 100%);
}

.home-owner-content {
  position: relative;
  z-index: 2;
  width: min(950px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  padding: 58px 0;
  text-align: center;
}

.home-owner-mark {
  width: clamp(58px, 5vw, 82px);
  height: auto;
  margin-bottom: clamp(22px, 2vw, 32px);
}

.home-owner-content h2 {
  max-width: 940px;
  color: var(--brand-white);
  font-size: clamp(54px, 4.6vw, 88px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.home-owner-rule {
  width: min(780px, 88%);
  height: 1px;
  margin: clamp(26px, 2.9vw, 44px) 0 clamp(30px, 3.3vw, 52px);
  background: rgba(176, 139, 87, 0.82);
}

.home-owner-question {
  max-width: 960px;
  color: rgba(252, 251, 248, 0.95);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.2;
}

.home-owner-copy {
  max-width: 890px;
  margin-top: clamp(30px, 3vw, 48px);
  color: rgba(252, 251, 248, 0.88);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 500;
  line-height: 1.42;
}

.home-owner-content h3 {
  margin-top: clamp(54px, 5.5vw, 86px);
  color: var(--brand-white);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.home-owner-service-list {
  width: min(650px, 100%);
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.home-owner-service-list span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 14px 26px;
  border: 1px solid rgba(252, 251, 248, 0.58);
  border-radius: 999px;
  background: rgba(252, 251, 248, 0.14);
  color: var(--brand-white);
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  backdrop-filter: blur(12px);
}

.home-professional-events {
  width: 100%;
  background: #ffffff;
  color: var(--brand-text);
}

.home-professional-events-copy {
  width: min(1710px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 22px 0 64px;
}

.home-professional-events-head {
  max-width: 760px;
}

.home-professional-events-head h2 {
  margin: 0;
  color: var(--brand-strong);
  font-size: clamp(56px, 5.2vw, 92px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: none;
}

.home-professional-events-rule {
  width: min(685px, 100%);
  height: 1px;
  margin-top: clamp(34px, 4vw, 58px);
  background: rgba(176, 139, 87, 0.72);
}

.home-professional-events-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 10.5vw, 200px);
  margin-top: clamp(38px, 4vw, 60px);
  align-items: start;
}

.home-professional-events-columns article {
  display: grid;
  gap: clamp(22px, 2.2vw, 34px);
  min-width: 0;
}

.home-professional-events-columns h3 {
  color: var(--brand-strong);
  font-family: var(--font-body);
  font-size: clamp(24px, 1.75vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.24;
}

.home-professional-events-columns p {
  color: var(--brand-text);
  font-size: clamp(18px, 1.22vw, 23px);
  font-weight: 500;
  line-height: 1.48;
}

.home-professional-events-media {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(360px, 36vw, 560px);
  overflow: hidden;
  background: var(--brand-strong);
}

.home-professional-events-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 19, 21, 0.14), rgba(18, 19, 21, 0.24)),
    linear-gradient(90deg, rgba(18, 19, 21, 0.18), transparent 45%, rgba(18, 19, 21, 0.12));
  pointer-events: none;
}

.home-professional-events-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.55vw, 30px);
}

.home-expertise-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
}

.home-expertise-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: color-mix(in srgb, var(--brand-cream) 55%, #ffffff);
}

.home-expertise-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-expertise-card:hover img {
  transform: scale(1.035);
}

.home-expertise-grid strong {
  color: var(--brand-strong);
  font-family: var(--font-luxury);
  font-size: clamp(27px, 2vw, 42px);
  font-weight: 700;
  line-height: 0.98;
  text-align: center;
}

.home-expertise-grid span {
  color: var(--brand-muted);
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.32;
  text-align: center;
}

.home-professional-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) auto;
  gap: 24px;
  align-items: end;
  border-top: 1px solid rgba(81, 72, 62, 0.14);
  border-bottom: 1px solid rgba(81, 72, 62, 0.14);
}

.home-professional-cta h2 {
  max-width: 920px;
}

@media (max-width: 1180px) {
  .home-concierge-hero,
  .home-service-overview,
  .home-expertise,
  .home-expertise-gallery,
  .home-owner-video,
  .home-professional-events-copy,
  .instagram-section,
  .home-launch-contact {
    width: calc(100% - 40px);
  }

  .home-hero-panel,
  .home-service-grid,
  .home-expertise-grid,
  .home-expertise-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-editorial-row,
  .home-editorial-row.reverse {
    grid-template-columns: 1fr;
  }

  .home-editorial-row.reverse .home-editorial-media {
    order: 0;
  }

  .home-editorial-copy,
  .home-editorial-row.reverse .home-editorial-copy,
  [dir="rtl"] .home-editorial-copy,
  [dir="rtl"] .home-editorial-row.reverse .home-editorial-copy {
    padding: 56px 28px;
  }

  .home-editorial-row {
    min-height: auto;
  }

  .instagram-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .instagram-copy {
    max-width: 760px;
  }

  .home-editorial-media {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .home-concierge-hero,
  .home-service-overview,
  .home-expertise,
  .home-expertise-gallery,
  .home-owner-video,
  .home-professional-events-copy,
  .instagram-section,
  .home-launch-contact {
    width: calc(100% - 28px);
  }

  .home-concierge-hero {
    height: 72svh;
    min-height: 480px;
  }

  .home-expertise {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 18px 0 70px;
  }

  .home-expertise .section-head h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .home-expertise-rule {
    margin: 30px 0 34px;
  }

  .home-expertise-actions {
    gap: 12px;
    margin-top: 34px;
  }

  .home-expertise-actions .button {
    width: 100%;
  }

  .home-launch-contact {
    padding: 76px 0 96px;
  }

  .home-launch-contact h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .home-launch-contact-actions {
    width: 100%;
  }

  .home-launch-contact-actions .button {
    width: 100%;
  }

  .home-expertise-media picture {
    height: 360px;
  }

  .home-concierge-hero .hero-content {
    padding-bottom: 42px;
  }

  .home-hero-panel,
  .home-service-grid,
  .home-expertise-grid,
  .home-expertise-gallery-grid,
  .home-professional-cta {
    grid-template-columns: 1fr;
  }

  .home-hero-panel div,
  .home-service-card,
  .home-expertise-card,
  .home-expertise-gallery-card {
    min-height: auto;
  }

  .home-service-card {
    --service-card-ratio: 4 / 5;
    --service-card-height: 360px;
    padding-bottom: 4px;
  }

  .home-service-card picture {
    height: var(--service-card-height);
  }

  .home-expertise-gallery {
    padding: 64px 0 80px;
  }

  .home-expertise-gallery .section-head h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .home-expertise-gallery-card picture {
    height: 360px;
  }

  .home-owner-video {
    padding-bottom: 82px;
  }

  .home-owner-video-frame {
    min-height: 720px;
  }

  .home-owner-content {
    width: calc(100% - 28px);
    padding: 44px 0;
  }

  .home-owner-content h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .home-owner-question {
    font-size: 22px;
  }

  .home-owner-copy {
    margin-top: 26px;
  }

  .home-owner-content h3 {
    margin-top: 48px;
  }

  .home-owner-service-list span {
    min-height: 54px;
    padding-inline: 18px;
  }

  .home-professional-events-copy {
    padding: 8px 0 48px;
  }

  .home-professional-events-head h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .home-professional-events-columns {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-professional-events-media {
    height: 360px;
  }

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

  .instagram-copy .button {
    width: 100%;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .instagram-grid a:first-child,
  .instagram-grid a:nth-child(5) {
    grid-row: span 1;
  }

  .home-editorial-media {
    min-height: 330px;
  }

  .home-editorial-copy {
    justify-items: stretch;
  }
}

.modal {
  display: grid;
  place-items: center;
  background: rgba(47, 42, 37, 0.56);
  padding: 20px;
}

.modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  background: var(--brand-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 2;
  margin: 14px;
}

[dir="rtl"] .modal-close {
  float: left;
}

.modal-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 28px;
}

.modal-gallery {
  display: grid;
  gap: 10px;
}

.modal-gallery img:first-child {
  aspect-ratio: 4 / 3;
}

.modal-gallery img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.modal-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 38px;
}

.lightbox {
  z-index: 260;
  display: grid;
  place-items: center;
  background: rgba(47, 42, 37, 0.82);
  padding: 24px;
}

.lightbox .icon-button {
  position: fixed;
  top: 20px;
  right: 20px;
}

[dir="rtl"] .lightbox .icon-button {
  right: auto;
  left: 20px;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: calc(100svh - 80px);
  object-fit: contain;
  border-radius: var(--radius-card);
}

.floating-cta {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 95;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

[dir="rtl"] .floating-cta {
  right: 18px;
  left: auto;
}

.float-button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border-color: rgba(252, 251, 248, 0.16);
  background: var(--brand-strong);
  color: var(--theme-button-text, var(--brand-white));
  box-shadow: var(--shadow-tiny);
  text-decoration: none;
}

.float-button:nth-child(2) {
  background: var(--brand-aqua);
}

.float-button:nth-child(3) {
  background: var(--brand-gold);
}

#floatWhatsapp {
  background: var(--brand-aqua);
}

#floatInstagram {
  background: #1f1b17;
}

#floatEmail {
  background: var(--brand-gold);
}

/* =========================================================
   YAMAR Studio Footer Credit
   Required developer credit
========================================================= */

.site-footer {
  background: var(--brand-strong);
}

.footer-info {
  display: grid;
  gap: 4px;
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 18px 10px;
  color: rgba(252, 251, 248, 0.78);
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
}

.footer-info p {
  margin: 0;
}

.footer-info a {
  color: rgba(252, 251, 248, 0.82);
  text-decoration: none;
}

.footer-info a:hover {
  color: #FCFBF8;
}

.footer-qr {
  display: grid;
  justify-items: center;
  padding: 6px 18px 22px;
}

.footer-qr-card {
  grid-template-columns: 92px minmax(0, 220px);
  width: auto;
  max-width: min(100%, 360px);
  padding: 12px;
  background: rgba(252, 251, 248, 0.96);
  box-shadow: none;
}

.footer-qr-card img {
  width: 92px;
  height: 92px;
}

.yamar-credit {
  width: 100%;
  padding: 18px 14px;
  background: var(--brand-strong);
  border-top: 1px solid rgba(176, 139, 87, 0.35);
  text-align: center;
  color: #FCFBF8;
  position: relative;
  z-index: 20;
}

.yamar-credit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 80%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 64, 56, 0.45),
    rgba(176, 139, 87, 0.75),
    rgba(45, 64, 56, 0.45),
    transparent
  );
}

.yamar-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #FCFBF8;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.yamar-credit a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.yamar-credit-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.yamar-credit-svg {
  width: 38px;
  height: 38px;
  display: block;
}

.yamar-credit-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.yamar-credit-line {
  font-family: "Montserrat", "DM Sans", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(252, 251, 248, 0.86);
}

.yamar-credit-line strong {
  color: var(--brand-gold);
  font-weight: 600;
}

.yamar-credit-tagline {
  margin-top: 4px;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

@media (max-width: 640px) {
  .yamar-credit {
    padding: 16px 10px;
  }

  .yamar-credit a {
    gap: 10px;
  }

  .yamar-credit-mark,
  .yamar-credit-svg {
    width: 32px;
    height: 32px;
  }

  .yamar-credit-line {
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  .yamar-credit-tagline {
    font-size: 8px;
    letter-spacing: 0.2em;
  }
}

.hide {
  display: none !important;
}

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

@media (max-width: 1180px) {
  .experience-grid,
  .package-grid,
  .offer-grid,
  .choice-grid,
  .mini-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .builder-summary,
  .sticky-head {
    position: static;
  }

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

@media (max-width: 820px) {
  :root {
    --header-h: 78px;
  }

  body {
    font-size: 17px;
  }

  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .menu-button span,
  .hide-small,
  .header-right .button span {
    display: none;
  }

  .menu-button,
  .header-right .button {
    width: 42px;
    padding-inline: 0;
  }

  .header-left {
    gap: 6px;
  }

  .brand-mark {
    padding-inline: 4px;
  }

  .brand-wordmark {
    letter-spacing: 0.08em;
  }

  .brand-wordmark span {
    font-size: 8px;
  }

  .brand-wordmark strong {
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  .lang-button {
    min-width: 30px;
    height: 32px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .brand-mark img {
    width: var(--theme-logo-mobile-width, 132px);
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 70px 0 92px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section,
  .gallery-section {
    width: calc(100% - 28px);
    padding: 70px 0;
  }

  .section-band {
    width: 100%;
    padding-inline: 14px;
  }

  .experience-grid,
  .package-grid,
  .offer-grid,
  .choice-grid,
  .mini-grid,
  .compact-grid,
  .form-grid,
  .contact-facts,
  .modal-body {
    grid-template-columns: 1fr;
  }

  .contact-qr-card,
  .footer-qr-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .card-body h3 {
    min-height: auto;
  }

  .builder-workspace,
  .builder-summary {
    width: 100%;
    min-width: 0;
    padding: 16px;
    overflow: hidden;
  }

  .builder-steps {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(8, 112px);
  }

  .builder-form,
  .builder-pane,
  .choice-grid,
  .builder-nav,
  .summary-list {
    width: 100%;
    min-width: 0;
  }

  .builder-nav {
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 0 0;
    backdrop-filter: blur(14px);
  }

  .contact-section {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .contact-media {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 360px;
  }

  .contact-media img,
  .contact-content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .contact-content,
  [dir="rtl"] .contact-content {
    padding: 44px 18px 82px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-row: span 1;
  }

  .modal-body {
    padding: 18px;
  }

  .modal-content {
    padding-top: 0;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

  .hero-actions,
  .contact-actions,
  .send-actions,
  .promo-actions,
  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .mini-button {
    width: 100%;
  }
}
