:root {
  --ink: #0d1115;
  --night: #12100d;
  --cream: #f4efe5;
  --sand: #d8c4a3;
  --gold: #b9945f;
  --copper: #8d6042;
  --sea: #0f4c5c;
  --muted: #8f887d;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 64px);
  transform: none;
  backdrop-filter: blur(26px);
  background:
    linear-gradient(180deg, rgba(6, 7, 8, 0.88), rgba(9, 10, 11, 0.52)),
    linear-gradient(90deg, rgba(185, 148, 95, 0.12), transparent 24%, transparent 76%, rgba(185, 148, 95, 0.1));
  border: 0;
  border-bottom: 1px solid rgba(216, 183, 120, 0.16);
  border-radius: 0;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(244, 239, 229, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #d8b778, transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  color: #ead6aa;
  transform: translateY(-1px);
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(216, 183, 120, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 58px;
  height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  color: rgba(244, 239, 229, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-switcher span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  font-size: 12px;
  letter-spacing: 0;
}

.language-switcher a.active,
.language-switcher a:hover {
  background: linear-gradient(135deg, rgba(216, 183, 120, 0.2), rgba(255, 255, 255, 0.05));
  color: #dfc28a;
  transform: translateY(-1px);
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(185, 148, 95, 0.7);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(185, 148, 95, 0.2), rgba(255, 255, 255, 0.04));
  color: #d8b778;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mobile-menu-toggle {
  display: none;
}

.language-select {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 170px clamp(20px, 6vw, 90px) 80px;
  overflow: hidden;
  background: #0b0a08;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(185, 148, 95, 0.28), transparent 34%),
    linear-gradient(115deg, rgba(8, 10, 12, 0.86), rgba(8, 10, 12, 0.44) 42%, rgba(12, 35, 41, 0.18)),
    url("assets/gallery-full-22.png");
  background-position: center 45%;
  background-size: cover;
  filter: saturate(0.82) contrast(1.16) brightness(0.92);
  transform: scale(1.02);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.78), rgba(7, 8, 9, 0.24) 46%, rgba(7, 8, 9, 0.1)),
    radial-gradient(circle at 50% 42%, transparent 0 34%, rgba(5, 5, 4, 0.5) 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  content: "";
  background: linear-gradient(0deg, var(--night), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  align-self: center;
  padding-left: clamp(18px, 2vw, 28px);
}

.hero-content::before {
  position: absolute;
  top: 4px;
  bottom: 8px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(185, 148, 95, 0.9), transparent);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.85vw, 108px);
  font-weight: 500;
  letter-spacing: -0.055em;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff9ec 0%, #ead6aa 56%, #ba9258 128%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
}

h2 {
  font-size: clamp(40px, 5.2vw, 78px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 32px;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(244, 239, 229, 0.74);
  font-size: clamp(16px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #d7b77e, #9f7743);
  color: #17120c;
  box-shadow: 0 14px 34px rgba(185, 148, 95, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(244, 239, 229, 0.24);
  color: var(--cream);
  backdrop-filter: blur(12px);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: 80px;
  z-index: 3;
  width: min(320px, calc(100% - 40px));
  padding: 26px;
  background: rgba(244, 239, 229, 0.12);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  line-height: 1;
}

.card-label {
  color: rgba(244, 239, 229, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 100px clamp(20px, 6vw, 90px);
  scroll-margin-top: 92px;
}

.intro {
  background: var(--night);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
}

.intro p,
.experience p,
.contact p {
  margin: 0;
  color: rgba(244, 239, 229, 0.68);
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  background: linear-gradient(90deg, transparent, rgba(185, 148, 95, 0.28), transparent);
}

.stats article {
  min-height: 190px;
  padding: 32px;
  background: #17130f;
  border: 1px solid rgba(244, 239, 229, 0.08);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 16px;
  color: rgba(244, 239, 229, 0.64);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 330px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(244, 239, 229, 0.1), rgba(244, 239, 229, 0.035));
  border: 1px solid rgba(244, 239, 229, 0.11);
  border-radius: 30px;
}

.feature-grid span {
  color: var(--gold);
  font-weight: 800;
}

.feature-grid h3 {
  margin-top: 46px;
}

.feature-grid p {
  color: rgba(244, 239, 229, 0.66);
}

.prestige-location {
  background:
    radial-gradient(circle at 82% 12%, rgba(185, 148, 95, 0.18), transparent 32%),
    linear-gradient(180deg, #17130f, #0f0d0a);
}

.prestige-location .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
  max-width: none;
}

.prestige-location .section-heading p:last-child {
  margin: 0;
  color: rgba(244, 239, 229, 0.68);
  font-size: 18px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(216, 183, 120, 0.14);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(216, 183, 120, 0.18);
}

.brand-row span {
  display: grid;
  min-height: 112px;
  place-items: center;
  background: rgba(255, 255, 255, 0.045);
  color: #ead6aa;
  font-family: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.7vw, 42px);
  letter-spacing: -0.04em;
  text-align: center;
}

.seo-focus {
  background: #eee5d7;
  color: var(--ink);
}

.seo-focus .section-kicker {
  color: var(--copper);
}

.seo-focus .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.82fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
  max-width: none;
}

.seo-focus .section-heading p:last-child {
  margin: 0;
  color: rgba(13, 17, 21, 0.68);
  font-size: 18px;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.seo-card-grid article {
  padding: 28px;
  border: 1px solid rgba(13, 17, 21, 0.08);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 20px 52px rgba(54, 42, 27, 0.1);
}

.seo-card-grid h3 {
  font-size: 28px;
  color: #1d1711;
}

.seo-card-grid p {
  color: rgba(13, 17, 21, 0.64);
}

.gallery {
  background: #eee5d7;
  color: var(--ink);
}

.gallery .section-kicker {
  color: var(--copper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 18px;
}

.gallery-item {
  margin: 0;
}

.gallery-item.large {
  grid-row: span 2;
}

.art {
  min-height: 320px;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(54, 42, 27, 0.18);
}

.gallery-item.large .art {
  min-height: 660px;
}

.art.sea {
  background:
    linear-gradient(180deg, rgba(244, 239, 229, 0.04), rgba(15, 76, 92, 0.3)),
    url("assets/sea-view-terrace.png");
  background-position: center;
  background-size: cover;
}

.art.stone {
  background:
    linear-gradient(45deg, rgba(13, 17, 21, 0.28), rgba(185, 148, 95, 0.22)),
    url("assets/dining-art-red.png");
  background-position: center;
  background-size: cover;
}

.art.light {
  background:
    linear-gradient(45deg, rgba(13, 17, 21, 0.36), rgba(15, 76, 92, 0.2)),
    url("assets/portrait-art-room.png");
  background-position: center;
  background-size: cover;
}

figcaption {
  margin-top: 14px;
  color: rgba(13, 17, 21, 0.62);
  font-size: 14px;
}

.private-collection {
  background: #eee5d7;
  color: var(--ink);
  padding-top: 0;
}

.private-collection .section-kicker {
  color: var(--copper);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr;
  gap: 18px;
}

.collection-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 34px;
  background: #191512;
  box-shadow: 0 28px 70px rgba(54, 42, 27, 0.18);
}

.collection-card.tall {
  grid-row: span 2;
  min-height: 858px;
}

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

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

.collection-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(13, 17, 21, 0.48);
  color: rgba(255, 250, 241, 0.88);
  backdrop-filter: blur(18px);
}

.full-gallery {
  background: var(--night);
}

.full-gallery .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: none;
}

.gallery-note {
  margin: 0;
  color: rgba(244, 239, 229, 0.62);
  font-size: 16px;
}

.full-gallery-grid {
  columns: 4 240px;
  column-gap: 16px;
}

.full-gallery-item {
  position: relative;
  display: block;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 24px;
  background: #191512;
  border: 1px solid rgba(244, 239, 229, 0.08);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
  break-inside: avoid;
}

.full-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    filter 320ms ease,
    transform 700ms ease;
}

.full-gallery-item:hover img {
  filter: brightness(1.06);
  transform: scale(1.025);
}

.full-gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(13, 17, 21, 0.34));
  pointer-events: none;
}

.experience {
  background:
    radial-gradient(circle at 20% 10%, rgba(185, 148, 95, 0.22), transparent 34%),
    linear-gradient(180deg, #17130f, var(--night));
}

.experience-panel {
  max-width: 920px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(244, 239, 229, 0.13);
  border-radius: 36px;
  background: rgba(244, 239, 229, 0.055);
}

.experience-panel p:last-child {
  margin-top: 26px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 92px);
  background: var(--cream);
  color: var(--ink);
}

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

.contact p {
  color: rgba(13, 17, 21, 0.64);
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: #fffaf1;
  border: 1px solid rgba(13, 17, 21, 0.08);
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(54, 42, 27, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(13, 17, 21, 0.7);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 17, 21, 0.14);
  border-radius: 18px;
  padding: 15px 16px;
  background: white;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 148, 95, 0.16);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  color: rgba(13, 17, 21, 0.5);
  font-size: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 90px);
  background: #0b0a08;
  color: rgba(244, 239, 229, 0.52);
  font-size: 13px;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(115deg, rgba(8, 10, 12, 0.86), rgba(8, 10, 12, 0.52)),
    url("assets/gallery-full-22.png");
  background-position: center;
  background-size: cover;
}

.thanks-panel {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(216, 183, 120, 0.18);
  border-radius: 36px;
  background: rgba(9, 10, 11, 0.62);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(22px);
}

.thanks-panel h1 {
  max-width: none;
  margin-bottom: 22px;
}

.thanks-panel p:not(.section-kicker) {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(244, 239, 229, 0.72);
}

[dir="rtl"] .site-header,
[dir="rtl"] .intro-grid,
[dir="rtl"] .contact,
[dir="rtl"] .site-footer {
  direction: rtl;
}

[dir="rtl"] .hero-card {
  right: auto;
  left: clamp(20px, 6vw, 90px);
}

[dir="rtl"] .hero-content {
  padding-right: clamp(18px, 2vw, 28px);
  padding-left: 0;
}

[dir="rtl"] .hero-content::before {
  right: 0;
  left: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    z-index: 60;
    min-height: 62px;
    padding: 12px 14px;
  }

  .brand span:last-child,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .language-switcher {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 80;
    gap: 4px;
    padding: 5px;
    background: rgba(8, 9, 10, 0.82);
    border-color: rgba(216, 183, 120, 0.28);
    backdrop-filter: blur(18px);
  }

  .language-switcher a {
    min-width: 48px;
    height: 32px;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .language-switcher span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .site-nav {
    position: fixed;
    top: auto;
    bottom: 14px;
    left: 50%;
    z-index: 30;
    display: flex;
    width: min(620px, calc(100% - 28px));
    justify-content: center;
    gap: clamp(12px, 3vw, 22px);
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(8, 9, 10, 0.86), rgba(16, 14, 11, 0.66));
    border: 1px solid rgba(216, 183, 120, 0.18);
    border-radius: 999px;
    box-shadow:
      0 18px 58px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
  }

  .feature-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .full-gallery .section-heading {
    grid-template-columns: 1fr;
  }

  .prestige-location .section-heading,
  .seo-focus .section-heading,
  .brand-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .collection-card.tall {
    grid-row: span 1;
    min-height: 420px;
  }

  .intro-grid,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    min-height: 58px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .language-switcher {
    gap: 4px;
    padding: 4px;
  }

  .language-switcher a {
    min-width: 42px;
    height: 30px;
    padding: 0 6px;
    font-size: 10px;
  }

  .language-switcher span {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .site-nav {
    bottom: 12px;
    width: calc(100% - 20px);
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
    justify-content: space-between;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 1 0 auto;
    min-width: max-content;
    padding: 8px 4px;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .hero {
    min-height: 720px;
    padding: 104px 18px 34px;
  }

  .hero-bg {
    background-position: 58% center;
    filter: saturate(0.84) contrast(1.08) brightness(0.88);
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(7, 8, 9, 0.82), rgba(7, 8, 9, 0.46) 58%, rgba(7, 8, 9, 0.26)),
      linear-gradient(0deg, rgba(7, 8, 9, 0.42), transparent 44%);
  }

  .hero-content {
    max-width: 100%;
    padding-left: 14px;
  }

  .hero-content::before {
    bottom: 12px;
  }

  [dir="rtl"] .hero-content {
    padding-right: 14px;
  }

  h1 {
    max-width: 96%;
    font-size: clamp(40px, 12.5vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
  }

  h3 {
    font-size: 26px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero-lead {
    max-width: 92%;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-card {
    right: 20px;
    bottom: 34px;
  }

  [dir="rtl"] .hero-card {
    right: auto;
    left: 20px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    margin-top: 28px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 11px;
  }

  .section {
    padding: 64px 18px;
    scroll-margin-top: 74px;
  }

  .feature-grid,
  .stats,
  .gallery-grid,
  .collection-grid,
  .brand-row,
  .prestige-location .section-heading,
  .seo-focus .section-heading {
    grid-template-columns: 1fr;
  }

  .gallery-item.large .art,
  .art {
    min-height: 300px;
    border-radius: 26px;
  }

  .feature-grid article,
  .stats article {
    min-height: auto;
    padding: 24px;
  }

  .collection-card,
  .collection-card.tall {
    min-height: 320px;
    border-radius: 26px;
  }

  .full-gallery-grid {
    columns: 2 150px;
    column-gap: 10px;
  }

  .full-gallery-item {
    margin-bottom: 10px;
    border-radius: 18px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 14px;
    padding: 13px 14px;
  }

  .thanks-panel {
    border-radius: 28px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-width: 76px;
  }

  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .full-gallery-grid {
    columns: 1;
  }
}

@media (max-width: 820px) {
  .site-header {
    z-index: 100;
    min-height: 58px;
    padding: 10px 12px;
  }

  .brand span:last-child,
  .header-cta {
    display: none !important;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .header-actions {
    margin-left: 0;
  }

  .language-switcher {
    position: fixed;
    top: 10px;
    right: 12px;
    z-index: 120;
    gap: 4px;
    padding: 5px;
    background: rgba(8, 9, 10, 0.88);
    border-color: rgba(216, 183, 120, 0.26);
    backdrop-filter: blur(18px);
  }

  .language-switcher span {
    display: none;
  }

  .language-switcher a {
    min-width: 36px;
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .site-nav {
    position: fixed !important;
    top: auto !important;
    bottom: 12px !important;
    left: 50% !important;
    z-index: 110;
    display: flex !important;
    width: min(520px, calc(100% - 20px));
    justify-content: space-around;
    gap: 6px;
    padding: 10px 12px;
    transform: translateX(-50%) !important;
    background: rgba(8, 9, 10, 0.9);
    border: 1px solid rgba(216, 183, 120, 0.22);
    border-radius: 999px;
    box-shadow:
      0 18px 58px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 1 0 auto;
    min-width: max-content;
    padding: 8px 6px;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .language-switcher {
    right: 8px;
    gap: 2px;
  }

  .language-switcher a {
    min-width: 32px;
    padding: 0 6px;
    font-size: 10px;
  }

  .site-nav a {
    min-width: 72px;
  }
}

@media (max-width: 820px) {
  .site-header {
    justify-content: flex-start;
    gap: 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-left: 8px;
    padding: 0 13px;
    border: 1px solid rgba(216, 183, 120, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #ead6aa;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav {
    position: fixed !important;
    top: 66px !important;
    right: 12px !important;
    bottom: auto !important;
    left: 12px !important;
    z-index: 110;
    display: none !important;
    width: auto;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px;
    transform: none !important;
    background: rgba(8, 9, 10, 0.94);
    border: 1px solid rgba(216, 183, 120, 0.22);
    border-radius: 22px;
    box-shadow:
      0 22px 70px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
  }

  .site-header.is-menu-open .site-nav {
    display: flex !important;
  }

  .site-nav a {
    min-width: 0;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(244, 239, 229, 0.08);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-align: left;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  [dir="rtl"] .site-nav a {
    text-align: right;
  }
}

@media (max-width: 420px) {
  .mobile-menu-toggle {
    padding: 0 11px;
    font-size: 9px;
  }

  .is-compact-mobile .language-select {
    top: 22px;
    right: 20px;
    min-width: 76px;
    padding: 0 30px 0 12px;
    font-size: 11px;
  }
}

.is-compact-mobile .site-header {
  z-index: 100;
  justify-content: flex-start;
  min-height: 58px;
  gap: 10px;
  top: 12px;
  right: 12px;
  left: 12px;
  width: auto;
  padding: 10px;
  border: 1px solid rgba(216, 183, 120, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(12, 12, 11, 0.92), rgba(22, 18, 13, 0.76)),
    radial-gradient(circle at 18% 20%, rgba(216, 183, 120, 0.16), transparent 34%);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.is-compact-mobile .brand span:last-child,
.is-compact-mobile .header-cta,
.is-compact-mobile .language-switcher {
  display: none !important;
}

.is-compact-mobile .brand-mark {
  width: 34px;
  height: 34px;
  font-size: 21px;
}

.is-compact-mobile .header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.is-compact-mobile .mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  margin-left: 8px;
  padding: 0 15px 0 13px;
  border: 1px solid rgba(216, 183, 120, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(216, 183, 120, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  color: #ead6aa;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 10px 26px rgba(185, 148, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.is-compact-mobile .mobile-menu-toggle::before {
  display: block;
  width: 14px;
  height: 8px;
  content: "";
  background:
    linear-gradient(#ead6aa, #ead6aa) top left / 14px 1px no-repeat,
    linear-gradient(#ead6aa, #ead6aa) center left / 10px 1px no-repeat,
    linear-gradient(#ead6aa, #ead6aa) bottom left / 14px 1px no-repeat;
  opacity: 0.86;
}

.is-compact-mobile .mobile-menu-toggle:hover,
.is-compact-mobile .mobile-menu-toggle:focus-visible,
.is-compact-mobile .site-header.is-menu-open .mobile-menu-toggle {
  border-color: rgba(216, 183, 120, 0.72);
  background:
    linear-gradient(135deg, rgba(229, 196, 131, 0.88), rgba(180, 125, 57, 0.76)),
    rgba(216, 183, 120, 0.24);
  color: #12100d;
  box-shadow:
    0 12px 34px rgba(216, 183, 120, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.is-compact-mobile .mobile-menu-toggle:hover::before,
.is-compact-mobile .mobile-menu-toggle:focus-visible::before,
.is-compact-mobile .site-header.is-menu-open .mobile-menu-toggle::before {
  background:
    linear-gradient(#12100d, #12100d) top left / 14px 1px no-repeat,
    linear-gradient(#12100d, #12100d) center left / 10px 1px no-repeat,
    linear-gradient(#12100d, #12100d) bottom left / 14px 1px no-repeat;
  opacity: 0.94;
}

.is-compact-mobile .mobile-menu-toggle:active {
  transform: translateY(0) scale(0.98);
}

.is-compact-mobile .language-select {
  position: static;
  z-index: 1;
  display: block;
  height: 34px;
  min-width: 92px;
  padding: 0 34px 0 15px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(216, 183, 120, 0.32);
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23EAD6AA' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") right 14px center / 12px 8px no-repeat,
    linear-gradient(135deg, rgba(216, 183, 120, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(8, 9, 10, 0.92);
  color: #ead6aa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  outline: none;
  box-shadow:
    0 10px 26px rgba(185, 148, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.is-compact-mobile .language-select:hover,
.is-compact-mobile .language-select:focus,
.is-compact-mobile .language-select:active {
  border-color: rgba(216, 183, 120, 0.72);
  background:
    url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2312100D' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") right 14px center / 12px 8px no-repeat,
    linear-gradient(135deg, rgba(229, 196, 131, 0.9), rgba(180, 125, 57, 0.78)),
    rgba(216, 183, 120, 0.24);
  color: #12100d;
  box-shadow:
    0 12px 34px rgba(216, 183, 120, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.is-compact-mobile .site-nav {
  position: fixed !important;
  top: 78px !important;
  right: 12px !important;
  bottom: auto !important;
  left: 12px !important;
  z-index: 110;
  display: none !important;
  width: auto;
  max-width: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 9px;
  transform: none !important;
  background:
    linear-gradient(145deg, rgba(16, 14, 11, 0.98), rgba(5, 6, 6, 0.99)),
    #080706;
  border: 1px solid rgba(216, 183, 120, 0.28);
  border-radius: 26px;
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px);
  counter-reset: mobile-menu;
}

.is-compact-mobile .site-header.is-menu-open .site-nav {
  display: flex !important;
}

.is-compact-mobile .site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
  margin: 3px 0;
  padding: 16px 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 183, 120, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(216, 183, 120, 0.04)),
    rgba(255, 255, 255, 0.018);
  color: rgba(244, 239, 229, 0.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.is-compact-mobile .site-nav a::before {
  counter-increment: mobile-menu;
  content: "0" counter(mobile-menu);
  flex: 0 0 auto;
  color: rgba(216, 183, 120, 0.62);
  font-family: "Bodoni Moda", serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.is-compact-mobile .site-nav a::after {
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  flex: 0 0 auto;
  width: 20px;
  height: 1px;
  margin-left: auto;
  content: "";
  background: rgba(216, 183, 120, 0.42);
  opacity: 1;
  transform: none;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.is-compact-mobile .site-nav a:hover,
.is-compact-mobile .site-nav a:focus-visible,
.is-compact-mobile .site-nav a:active {
  border-color: rgba(216, 183, 120, 0.58);
  background:
    linear-gradient(135deg, rgba(229, 196, 131, 0.92), rgba(178, 121, 54, 0.82)),
    rgba(216, 183, 120, 0.2);
  color: #12100d;
  box-shadow:
    0 14px 32px rgba(216, 183, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.is-compact-mobile .site-nav a:hover::before,
.is-compact-mobile .site-nav a:focus-visible::before,
.is-compact-mobile .site-nav a:active::before {
  color: rgba(18, 16, 13, 0.62);
  transform: translateX(-2px);
}

.is-compact-mobile .site-nav a:hover::after,
.is-compact-mobile .site-nav a:focus-visible::after,
.is-compact-mobile .site-nav a:active::after {
  width: 30px;
  background: rgba(18, 16, 13, 0.58);
}

.is-compact-mobile .site-nav a:last-child {
  border-bottom: 0;
}

[dir="rtl"] .is-compact-mobile .site-nav a,
.is-compact-mobile[dir="rtl"] .site-nav a {
  text-align: right;
}

@media (max-width: 420px) {
  .is-compact-mobile .site-header {
    min-height: 56px;
    gap: 8px;
    padding: 10px 8px;
  }

  .is-compact-mobile .mobile-menu-toggle {
    gap: 7px;
    min-height: 32px;
    margin-left: 6px;
    padding: 0 11px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .is-compact-mobile .mobile-menu-toggle::before {
    width: 12px;
    background:
      linear-gradient(#ead6aa, #ead6aa) top left / 12px 1px no-repeat,
      linear-gradient(#ead6aa, #ead6aa) center left / 9px 1px no-repeat,
      linear-gradient(#ead6aa, #ead6aa) bottom left / 12px 1px no-repeat;
  }

  .is-compact-mobile .language-select {
    height: 32px;
    min-width: 76px;
    padding: 0 29px 0 12px;
    font-size: 11px;
  }

  .is-compact-mobile .site-nav {
    top: 76px !important;
  }
}
