:root {
  --bg: #fffaf8;
  --bg-soft: #f8eef1;
  --rose: #c98795;
  --rose-light: #8f5564;
  --gold: #b48a4a;
  --text: #3e2d33;
  --muted: #78666c;
  --card: rgba(255, 255, 255, .82);
  --border: rgba(143, 85, 100, .16);
  --shadow: 0 24px 70px rgba(112, 72, 84, .14);
}

* { box-sizing: border-box; }

/* SVG Icon Helper */
.svg-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.btn .svg-icon {
  width: 18px;
  height: 18px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(201,135,149,.16), transparent 32%),
    radial-gradient(circle at 90% 85%, rgba(180,138,74,.10), transparent 30%),
    linear-gradient(135deg, #fffdfc 0%, #f8eef1 52%, #fffaf8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .7;
}

body::before {
  width: 420px;
  height: 420px;
  left: -190px;
  top: 18%;
  border: 1px solid rgba(201,135,149,.18);
  box-shadow: 0 0 0 55px rgba(201,135,149,.035), 0 0 0 110px rgba(201,135,149,.025);
}

body::after {
  width: 300px;
  height: 300px;
  right: -140px;
  bottom: -60px;
  border: 1px solid rgba(180,138,74,.16);
  box-shadow: 0 0 0 48px rgba(180,138,74,.025), 0 0 0 96px rgba(180,138,74,.02);
}

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.shell {
  width: min(1180px, 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,248,250,.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(143,85,100,.035) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(143,85,100,.025) 50%, transparent 50.2%);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 80%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 34px;
  border-bottom: 1px solid rgba(143,85,100,.10);
  background: rgba(255, 253, 254, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lang-selector {
  position: relative;
  z-index: 10;
}

.lang-btn {
  background: rgba(255, 253, 254, 0.65);
  border: 1px solid rgba(143, 85, 100, 0.12);
  padding: 8px 15px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 15px rgba(112, 72, 84, 0.03);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(143, 85, 100, 0.25);
  box-shadow: 0 6px 20px rgba(112, 72, 84, 0.06);
  transform: translateY(-1px);
}

.lang-btn .svg-icon {
  width: 13px;
  height: 13px;
  opacity: 0.85;
}

.lang-btn .svg-chevron {
  width: 9px;
  height: 9px;
  opacity: 0.6;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-selector.open .lang-btn {
  background: #ffffff;
  border-color: rgba(143, 85, 100, 0.25);
  box-shadow: 0 4px 15px rgba(112, 72, 84, 0.05);
}

.lang-selector.open .lang-btn .svg-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0; /* Align dropdown to the right edge of the button */
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(143, 85, 100, 0.10);
  border-radius: 14px;
  padding: 5px;
  margin: 0;
  list-style: none !important;
  list-style-type: none !important;
  width: 80px;
  box-shadow: 0 12px 35px rgba(112, 72, 84, 0.1);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-dropdown li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 6px 10px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.lang-dropdown li:hover {
  background: rgba(201, 135, 149, 0.08);
  color: var(--rose-light);
}

.lang-dropdown li.active {
  background: linear-gradient(135deg, #c98795, #b48a4a); /* Rose to Gold luxury gradient */
  color: #ffffff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143,85,100,.28);
  border-radius: 50%;
  color: var(--rose-light);
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  background: rgba(255,255,255,.72);
}

.brand-copy strong {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
  letter-spacing: .04em;
}

.brand-copy span {
  display: block;
  margin-top: 5px;
  color: var(--rose);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  transition: .25s ease;
}

.social-link:hover { color: #4a343b; transform: translateY(-1px); }

.content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 32px;
  padding: 72px 64px 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--rose-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: clamp(52px, 7.1vw, 96px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.035em;
}

h1 em {
  display: block;
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}

.lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: .25s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #c98795, #a95f72);
  box-shadow: 0 10px 30px rgba(169,95,114,.22);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(169,95,114,.30); }

.btn-outline {
  border-color: rgba(143,85,100,.18);
  background: rgba(255,255,255,.72);
}

.btn-outline:hover { border-color: rgba(143,85,100,.34); background: rgba(255,255,255,.95); }

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 9px 13px;
  border: 1px solid rgba(143,85,100,.14);
  border-radius: 999px;
  color: #6d545d;
  font-size: 11px;
  font-weight: 600;
  background: rgba(143,85,100,.035);
}

.info-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid rgba(143,85,100,.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(143,85,100,.035)),
    radial-gradient(circle at 100% 0, rgba(201,135,149,.13), transparent 45%);
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-light);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #85d7a5;
  box-shadow: 0 0 0 7px rgba(133,215,165,.10);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(133,215,165,.08); }
  50% { box-shadow: 0 0 0 12px rgba(133,215,165,0); }
}

.info-title {
  margin: 48px 0 24px;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-size: 35px;
  line-height: 1.05;
}

.info-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(143,85,100,.10);
}

.info-row .info-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-light);
  background: rgba(201,135,149,.12);
}

.info-row .info-icon .svg-icon {
  width: 18px;
  height: 18px;
}

.info-row small {
  display: block;
  margin-bottom: 5px;
  color: var(--rose);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.info-row p,
.info-row .p {
  display: block;
  margin: 0;
  color: #4f3941;
  font-size: 13px;
  line-height: 1.65;
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 34px;
  border-top: 1px solid rgba(143,85,100,.10);
  color: #8b747c;
  font-size: 11px;
}

.footer strong { color: #4f3941; font-weight: 500; }

@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    padding: 56px 34px 34px;
  }

  .info-card { margin-top: 10px; }
}

@media (max-width: 600px) {
  .page { padding: 12px; }
  .shell { border-radius: 22px; }
  .topbar { padding: 16px 18px; gap: 12px; }
  .brand-mark { width: 40px; height: 40px; font-size: 20px; }
  .brand-copy strong { font-size: clamp(15px, 4.8vw, 19px); }
  .brand-copy span { font-size: 8px; margin-top: 2px; }
  .social-link { font-size: 16px; padding: 10px; }
  .social-link span { display: none; }
  .content { padding: 40px 20px 24px; }
  h1 { font-size: clamp(34px, 11vw, 52px); }
  .lead { font-size: 14px; margin-top: 20px; }
  .actions { flex-direction: column; gap: 10px; margin-top: 28px; }
  .btn { width: 100%; min-height: 48px; }
  .info-card { padding: 24px 20px; }
  .info-title { margin-top: 32px; font-size: 28px; }
  .footer { flex-direction: column; text-align: center; padding: 20px; gap: 10px; }
}
