:root {
  --bg: #f5efe6;
  --bg-2: #efe5d8;
  --white: #ffffff;
  --text: #2b2520;
  --muted: #766d64;
  --dark: #141210;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.07);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 999px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.68;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.section-text { font-size: 18px; color: #5e554d; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.28s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { opacity: 0.92; }
.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-light:hover { background: var(--white); color: var(--dark); }
.btn-outline {
  border-color: rgba(20, 18, 16, 0.16);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--dark); color: var(--dark); }
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
}
.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(10, 10, 10, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}
.logo-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    letter-spacing: 0.28em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 36px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav a:hover, .nav a.active { color: var(--white); }
.hero, .page-hero { position: relative; overflow: hidden; color: var(--white); }
.hero { min-height: 100vh; }
.page-hero { min-height: 68vh; }
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.25), rgba(10,10,10,0.62));
  z-index: 1;
}
.hero-media, .page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero-inner, .page-hero-inner { position: relative; z-index: 2; }
.hero-inner {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  align-items: end;
  gap: 48px;
  padding: 150px 0 80px;
}
.page-hero-inner {
  min-height: 68vh;
  display: flex;
  align-items: end;
  padding: 150px 0 72px;
}
.hero-copy h1, .page-hero-copy h1 {
  margin: 0;
  max-width: 860px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.hero-copy h1 { font-size: clamp(64px, 9vw, 116px); }
.page-hero-copy h1 { font-size: clamp(54px, 8vw, 94px); }
.hero-copy p, .page-hero-copy p {
  max-width: 640px;
  font-size: 18px;
  color: rgba(255,255,255,0.82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-side { display: grid; gap: 16px; align-self: end; padding-bottom: 6px; }
.glass-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
}
.glass-card.dark { background: rgba(0,0,0,0.2); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
  margin-top: 18px;
}
.stat-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  line-height: 1;
}
.stat-label {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.page-section { padding: 110px 0; }
.intro-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.2));
  border: 1px solid rgba(43,37,32,0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 54px;
  margin-top: -56px;
  position: relative;
  z-index: 3;
  backdrop-filter: blur(10px);
}
.two-col, .location-grid, .contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}
.image-card, .map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(43,37,32,0.06);
}
.image-card img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.map-card iframe {
  width: 100%;
  height: 620px;
  border: 0;
}
.residences-list { display: grid; gap: 88px; margin-top: 30px; }
.residence-block {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 38px;
  align-items: center;
}
.residence-block.reverse { grid-template-columns: 0.92fr 1.08fr; }
.residence-block.reverse .residence-text { order: 1; }
.residence-block.reverse .image-card { order: 2; }
.residence-text h2 {
  margin: 4px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(216, 195, 168, 0.18);
  border: 1px solid rgba(43,37,32,0.08);
  font-size: 13px;
  color: #5d554d;
  letter-spacing: 0.03em;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.gallery-section { background: linear-gradient(180deg, var(--bg), #efe5d8); }
.gallery-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.gallery-item.large { grid-column: span 7; }
.gallery-item.small { grid-column: span 5; }
.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.note-box {
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(43,37,32,0.08);
  color: var(--muted);
  font-size: 14px;
}
.contact-section {
  background: linear-gradient(180deg, #1a1714, #100f0e);
  color: var(--white);
}
.contact-section .eyebrow, .contact-section .section-text { color: rgba(255,255,255,0.72); }
.contact-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.form-grid { display: grid; gap: 14px; }
.field, .textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 20px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}
.field::placeholder, .textarea::placeholder { color: rgba(255,255,255,0.45); }
.textarea { min-height: 150px; resize: vertical; }
.footer-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}
.site-footer {
  background: #12100f;
  color: rgba(255,255,255,0.62);
  padding: 24px 0 30px;
  font-size: 14px;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .hero-inner, .two-col, .location-grid, .contact-grid, .residence-block, .residence-block.reverse {
    grid-template-columns: 1fr;
  }
  .residence-block.reverse .residence-text, .residence-block.reverse .image-card { order: initial; }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .gallery-item.large, .gallery-item.small { grid-column: span 12; }
  .hero-inner, .page-hero-inner { padding-top: 122px; }
  .intro-panel { padding: 34px 24px; border-radius: 30px; }
}
@media (max-width: 640px) {
  .container, .nav-shell { width: min(var(--container), calc(100% - 24px)); }
  .site-header { top: 10px; }
  .nav-shell { padding: 12px 16px; }
  .brand img { height: 30px; }
  .section-text, .hero-copy p, .page-hero-copy p { font-size: 16px; }
  .page-section { padding: 82px 0; }
  .image-card img, .map-card iframe, .gallery-item img { height: 300px; }
  .contact-card { padding: 24px; }
}

.logo-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    letter-spacing: 0.28em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 999px;
        transition: 0.25s ease;
    }

.desktop-only {
    display: inline-flex;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-flex;
    }

    .desktop-only {
        display: none;
    }

    .nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 14px;
        background: rgba(15, 15, 15, 0.92);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 24px;
        backdrop-filter: blur(16px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }

        .nav a {
            width: 100%;
            padding: 14px 10px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.9);
        }

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

        .nav.open {
            display: flex;
        }
}