  :root {
    --black:   #080808;
    --black2:  #0d0d0d;
    --black3:  #111;
    --white:   #f0ede8;
    --white2:  #c8c4bc;
    --white3:  #7a7670;
    --blue:    #1a6cff;
    --blue2:   #4d8fff;
    --gold:    #b8922a;
    --gold2:   #d4aa4a;
    --line:    rgba(255,255,255,0.07);
    --line2:   rgba(255,255,255,0.04);
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
  }
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }

  /* ─── LANG SWITCH ─── */
  .lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white3);
    padding: 6px 10px;
    border-radius: 2px;
    transition: color 0.2s, background 0.2s;
  }
  .lang-btn:hover { color: var(--white); }
  .lang-btn.active { color: var(--white); background: rgba(255,255,255,0.07); }
  .lang-divider { color: #333; font-size: 11px; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    height: 68px;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }
  .nav-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white);
  }
  .nav-logo span { color: var(--blue); }
  .nav-logo .nav-inbuilding { color: var(--white3); font-size: 10px; letter-spacing: 3px; vertical-align: middle; margin-left: 4px; font-weight: 400; }
  .nav-center {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-center a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white3);
    text-decoration: none;
    transition: color 0.25s;
  }
  .nav-center a:hover { color: var(--white); }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nav-right a.reserve-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.14);
    padding: 10px 22px;
    border-radius: 2px;
    transition: background 0.25s, border-color 0.25s;
  }
  .nav-right a.reserve-btn:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.28); }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 52px 100px;
    overflow: hidden;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center 30%;
    pointer-events: none;
    opacity: 1;
    mix-blend-mode: normal;
  }
  /* Dark gradient layers over the photo */
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.60) 50%, rgba(8,8,8,0.30) 100%),
      linear-gradient(to top, rgba(8,8,8,1) 0%, transparent 55%);
  }
  .hero-grid {
    display: none;
  }
  .hero-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(26,108,255,0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }
  .eyebrow-line { width: 28px; height: 1px; background: var(--blue); flex-shrink: 0; }
  .eyebrow span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue2);
  }
  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(50px, 5.5vw, 78px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 28px;
  }
  .hero-h1 em { font-style: italic; color: var(--white2); display: block; }
  .hero-h1 strong { font-weight: 500; display: block; }
  .hero-p {
    font-size: 14px;
    color: var(--white3);
    max-width: 400px;
    margin-bottom: 40px;
    line-height: 1.85;
  }
  .hero-actions { display: flex; align-items: center; gap: 28px; }
  .btn-main {
    background: var(--blue);
    color: white;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-main:hover { background: #1457d4; transform: translateY(-1px); }
  .btn-text {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s;
  }
  .btn-text::after { content: '→'; transition: transform 0.2s; }
  .btn-text:hover { color: var(--white); }
  .btn-text:hover::after { transform: translateX(4px); }
  .hero-panel {
    background: rgba(8,8,8,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    padding: 32px 36px;
    margin-bottom: 2px;
  }
  .panel-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 12px;
  }
  .panel-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 300;
    color: var(--white2);
    line-height: 1.45;
    margin-bottom: 18px;
  }
  .promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(184,146,42,0.08);
    border: 1px solid rgba(184,146,42,0.22);
    padding: 9px 16px;
    border-radius: 2px;
    font-size: 12px;
    color: var(--gold2);
    letter-spacing: 1px;
  }
  .promo-pill strong { font-weight: 600; letter-spacing: 3px; font-size: 13px; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 2px;
  }
  .stat-box {
    background: rgba(8,8,8,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    padding: 20px 24px;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-num span { color: var(--blue2); }
  .stat-lbl { font-size: 11px; color: var(--white3); letter-spacing: 1.5px; text-transform: uppercase; }

  /* ─── SECTION BASE ─── */
  .section { padding: 100px 52px; border-top: 1px solid var(--line); }
  .wrap { max-width: 1100px; margin: 0 auto; }
  .sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .sec-title em { font-style: italic; color: var(--white2); }
  .sec-sub { font-size: 14px; color: var(--white3); line-height: 1.8; }

  /* ─── SERVICES ─── */
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line2);
  }
  .svc {
    background: var(--black2);
    padding: 40px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
  }
  .svc:hover { background: #101010; }
  .svc.featured { background: #0b1425; }
  .svc.featured:hover { background: #0d1830; }
  .svc.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
  }
  .svc-index {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white3);
    margin-bottom: 24px;
  }
  .svc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 33px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .svc.featured .svc-name { color: var(--blue2); }
  .svc.gold .svc-name { color: var(--gold2); }
  .svc-desc { font-size: 13px; color: var(--white3); margin-bottom: 28px; line-height: 1.7; }
  .price-block {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .price-row { display: flex; justify-content: space-between; align-items: baseline; }
  .p-type { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white3); }
  .p-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
  }
  .svc.featured .p-val { color: var(--blue2); }
  .svc.gold .p-val { color: var(--gold2); }
  .svc-list {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
  }
  .svc-list li {
    font-size: 13px;
    color: var(--white2);
    padding: 7px 0;
    border-bottom: 1px solid var(--line2);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 300;
  }
  .svc-list li:last-child { border: none; }
  .svc-list li::before { content: '—'; color: var(--white3); font-size: 11px; flex-shrink: 0; margin-top: 3px; }
  .svc.featured .svc-list li::before { color: var(--blue); }
  .svc.gold .svc-list li::before { color: var(--gold); }
  .popular-tag {
    position: absolute;
    top: 18px; right: 18px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--blue);
    color: white;
    padding: 4px 10px;
    border-radius: 2px;
  }
  .svc-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 13px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-top: auto;
    transition: all 0.25s;
  }
  .cta-ghost { border: 1px solid var(--line); color: var(--white3); }
  .cta-ghost:hover { border-color: rgba(255,255,255,0.24); color: var(--white); }
  .cta-blue { background: var(--blue); color: white; }
  .cta-blue:hover { background: #1457d4; }
  .cta-gold { border: 1px solid rgba(184,146,42,0.28); color: var(--gold2); }
  .cta-gold:hover { background: rgba(184,146,42,0.06); }
  .svc-note {
    margin-top: 18px;
    font-size: 12px;
    color: var(--white3);
    letter-spacing: 0.3px;
    line-height: 1.7;
    opacity: 0.7;
  }

  /* ─── MONTHLY ─── */
  .monthly-section { background: var(--black2); }
  .monthly-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
  }
  .monthly-pullquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: var(--white3);
    line-height: 1.75;
    border-left: 1px solid var(--line);
    padding-left: 28px;
  }
  .monthly-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line2);
  }
  .mo {
    background: var(--black);
    padding: 40px 36px;
    transition: background 0.3s;
    position: relative;
  }
  .mo:hover { background: #090909; }
  .mo.featured { background: #0b1425; }
  .mo.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
  }
  .mo-tier {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white3);
    margin-bottom: 6px;
  }
  .mo.featured .mo-tier { color: var(--blue2); }
  .mo.gold .mo-tier { color: var(--gold); }
  .mo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
  }
  .mo.featured .mo-name { color: var(--blue2); }
  .mo.gold .mo-name { color: var(--gold2); }
  .mo-sub { font-size: 12px; color: var(--white3); margin-bottom: 28px; }
  .mo-prices {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mo-p-row { display: flex; justify-content: space-between; align-items: baseline; }
  .mo-p-type { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white3); }
  .mo-p-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
  }
  .mo-p-val sub { font-family: 'Outfit', sans-serif; font-size: 12px; color: var(--white3); font-weight: 300; }
  .mo.featured .mo-p-val { color: var(--blue2); }
  .mo.gold .mo-p-val { color: var(--gold2); }
  .mo-saving { font-size: 12px; color: #4caf7d; margin-bottom: 24px; }
  .mo-list { list-style: none; margin-bottom: 28px; }
  .mo-list li {
    font-size: 13px;
    color: var(--white2);
    padding: 6px 0;
    border-bottom: 1px solid var(--line2);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 300;
  }
  .mo-list li:last-child { border: none; }
  .mo-list li::before { content: '·'; color: var(--blue2); font-size: 18px; line-height: 1.3; flex-shrink: 0; }
  .mo.gold .mo-list li::before { color: var(--gold); }

  /* ─── PROCESS ─── */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    margin-top: 56px;
  }
  .ps {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    position: relative;
  }
  .ps:last-child { border-right: none; }
  .ps-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: rgba(26,108,255,0.14);
    line-height: 1;
    margin-bottom: 20px;
  }
  .ps-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
  .ps-desc { font-size: 13px; color: var(--white3); line-height: 1.75; }
  .ps-dot {
    position: absolute;
    top: 58px; right: -7px;
    width: 13px; height: 13px;
    background: var(--black);
    border: 1px solid var(--blue);
    border-radius: 50%;
    z-index: 2;
  }
  .ps:last-child .ps-dot { display: none; }

  /* ─── BOOKING ─── */
  .booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2px;
    background: var(--line2);
  }
  .bk-left { background: var(--black2); padding: 72px 60px; }
  .bk-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.07;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
  }
  .bk-title em { font-style: italic; color: var(--white2); }
  .bk-left p { font-size: 14px; color: var(--white3); line-height: 1.85; margin-bottom: 8px; max-width: 380px; }
  .bk-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white3);
    border: 1px solid var(--line);
    padding: 11px 18px;
    border-radius: 2px;
  }
  .bk-address span { color: var(--blue2); }
  .bk-right { background: var(--black); padding: 72px 52px; display: flex; flex-direction: column; gap: 3px; }
  .ci {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--black2);
    border: 1px solid var(--line);
    padding: 20px 22px;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.25s, background 0.25s;
  }
  .ci:hover { border-color: rgba(26,108,255,0.4); background: rgba(26,108,255,0.04); }
  .ci-icon {
    width: 38px; height: 38px;
    border: 1px solid var(--line);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
  }
  .ci-lbl { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--white3); margin-bottom: 4px; }
  .ci-val { font-size: 15px; font-weight: 400; color: var(--white); }
  .promo-block {
    background: rgba(184,146,42,0.04);
    border: 1px solid rgba(184,146,42,0.18);
    padding: 22px 24px;
    border-radius: 2px;
  }
  .promo-block .pb-lbl { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .promo-block p { font-size: 13px; color: var(--white3); line-height: 1.75; }
  .promo-block strong { color: var(--gold2); font-weight: 500; }
  .bk-footnote { font-size: 11px; color: #333; letter-spacing: 0.5px; line-height: 1.6; }

  /* ─── GALLERY ─── */
  .gallery-section { padding: 120px 52px; border-top: 1px solid var(--line); }
  .gallery-header { margin-bottom: 64px; max-width: 720px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .gallery-item {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--black2);
    cursor: pointer;
    transition: transform 0.5s ease;
  }
  .gallery-item:hover { transform: translateY(-4px); }
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: grayscale(15%) brightness(0.85);
  }
  .gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
  }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
  }
  .gallery-tag {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold2);
    margin-bottom: 12px;
    font-weight: 500;
  }
  .gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--white);
  }
  .gallery-title em { font-style: italic; color: var(--white2); display: block; }
  .gallery-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--white2);
    max-width: 280px;
  }
  .gallery-disclaimer {
    margin-top: 40px;
    font-size: 11px;
    color: var(--white3);
    text-align: center;
    letter-spacing: 0.5px;
    font-style: italic;
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 30px 52px;
    border-top: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .f-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #222;
  }
  .f-logo span { color: rgba(26,108,255,0.25); }
  footer p { font-size: 11px; color: #222; letter-spacing: 0.5px; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-center { display: none; }
    .hero, .section { padding-left: 24px; padding-right: 24px; }
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { display: none; }
    .services-grid, .monthly-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-section { padding: 80px 24px; }
    .monthly-intro { grid-template-columns: 1fr; gap: 32px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .booking-grid { grid-template-columns: 1fr; }
    .bk-left, .bk-right { padding: 48px 28px; }
    footer { padding: 24px; flex-direction: column; }
  }
  @media (max-width: 540px) {
    .process-grid { grid-template-columns: 1fr; }
    .nav-right { gap: 8px; }
  }

  /* ─── HIDDEN LANG ─── */
  [data-lang] { display: none !important; }
  [data-lang].active { display: revert !important; }
  span[data-lang], a[data-lang] { display: none !important; }
  span[data-lang].active, a[data-lang].active { display: inline !important; }
