:root {
  --bg: #f4f6fa;
  --text: #202020;
  --muted: #3f3f3f;
  --primary: #373bab;
  --secondary: #365eab;
  --deep: #0a0e73;
  --white: #ffffff;
  --line: #d9deea;
  --shadow-md: 0 4px 20px rgba(16, 24, 64, 0.16);
  --shadow-lg: 0 10px 40px rgba(128, 139, 165, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Karla, sans-serif;
  line-height: 1.5;
}

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

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

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
}

.section {
  padding: 76px 0;
}

.section-kicker {
  color: var(--muted);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: Montserrat, sans-serif;
  margin: 0;
}

h2 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
}

.btn {
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.05em;
  padding: 13px 22px;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: #272727;
}

.btn-small {
  font-size: 12px;
  padding: 8px 14px;
}

.site-header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar {
  background: #f8f9fc;
  border-bottom: 1px solid var(--line);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

.topbar-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 44px;
}

.topbar p {
  margin: 0;
}

.socials {
  align-items: center;
  display: flex;
  gap: 10px;
}

.socials img {
  height: 24px;
  width: 24px;
}

.nav-row {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 92px;
}

.logo {
  height: 70px;
  width: auto;
}

nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.hero {
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(7, 19, 49, 0.2) 10%, rgba(6, 20, 58, 0.76) 84%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  padding-top: 140px;
  position: relative;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 64px);
  margin-bottom: 20px;
}

.hero p {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  margin: 0 auto;
  max-width: 820px;
}

.hero-kicker {
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

.living-options {
  background: var(--white);
}

.living-options h2,
.living-options .section-copy,
.living-options .section-kicker {
  text-align: center;
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
  margin: 14px auto 42px;
  max-width: 920px;
}

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

.option-card {
  background: var(--white);
  border-radius: 5px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 22px;
}

.card-top {
  align-items: center;
  display: flex;
  height: 96px;
  justify-content: center;
  margin: -22px -22px 18px;
}

.card-top img {
  filter: brightness(100);
  height: 36px;
  width: auto;
}

.card-top-indigo {
  background: var(--primary);
}

.card-top-blue {
  background: var(--secondary);
}

.card-top-muted {
  background: #7084ab;
}

.card-top-deep {
  background: var(--deep);
}

.option-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.option-card p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 14px;
}

.option-card a {
  color: #363636;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story {
  background: linear-gradient(90deg, #f4f6fa 0%, #ffffff 87%);
}

.story-wrap {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr;
}

.story-image {
  border-radius: 5px;
  box-shadow: var(--shadow-md);
  min-height: 450px;
  object-fit: cover;
  width: 100%;
}

.story-content h2 {
  margin: 10px 0 18px;
}

.story-content p {
  color: #212121;
  font-size: 19px;
  margin: 0;
}

.signature {
  font-family: "La Belle Aurore", cursive;
  font-size: 36px;
  margin-top: 18px;
}

.story-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.story-nav button {
  background: transparent;
  border: 1px solid #676872;
  border-radius: 999px;
  color: #444;
  cursor: pointer;
  height: 40px;
  width: 40px;
}

.lifestyle {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%),
    url("https://www.figma.com/api/mcp/asset/5fc14ec6-e382-46dc-9663-88c8440a4213") center/cover no-repeat;
}

.lifestyle h2 {
  margin-bottom: 28px;
  text-align: center;
}

.gallery-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.1fr 1fr;
}

.gallery-item {
  border-radius: 5px;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-item.dim::after {
  background: rgba(0, 0, 0, 0.46);
  content: "";
  inset: 0;
  position: absolute;
}

.gallery-item.featured {
  box-shadow: var(--shadow-md);
}

.gallery-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 5px;
  box-shadow: var(--shadow-md);
  left: 50%;
  max-width: 420px;
  padding: 22px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 34px);
}

.gallery-card h3 {
  font-size: 30px;
  margin-bottom: 6px;
}

.gallery-card p {
  margin: 0 0 12px;
}

.cta-band {
  background: var(--secondary);
  color: var(--white);
  padding: 68px 0;
}

.center {
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer {
  background: #f2f4f8;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr;
}

.footer-contact p {
  color: var(--muted);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  margin: 16px 0;
}

.contact-form {
  background: var(--white);
  border-radius: 5px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.contact-form h3 {
  font-size: 38px;
  margin-bottom: 18px;
  text-align: center;
}

.contact-form input {
  border: 1px solid #c1c4d6;
  border-radius: 8px;
  display: block;
  font-family: Karla, sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
  padding: 13px 14px;
  width: 100%;
}

.contact-form .btn {
  margin-top: 8px;
  width: 100%;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 42px;
  padding-top: 16px;
}

.footer-bottom p {
  color: #505050;
  font-family: Karla, sans-serif;
  font-size: 14px;
  margin: 0;
}

.footer-bottom p:last-child {
  text-align: right;
}

.footer-bottom img {
  max-width: 260px;
}

@media (max-width: 1080px) {
  nav {
    display: none;
  }

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

  .story-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom p:last-child {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    font-size: 12px;
  }

  .logo {
    height: 54px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

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

  .contact-form h3 {
    font-size: 30px;
  }
}
