@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("assets/fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("assets/fonts/inter-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("assets/fonts/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --ivory: #f6f0e7;
  --paper: #fffaf2;
  --olive: #505332;
  --olive-dark: #30331e;
  --terracotta: #a75a36;
  --brown: #3b2a1c;
  --muted: #7a6d5c;
  --line: rgba(59, 42, 28, .16);
  --shadow: 0 24px 60px rgba(59,42,28,.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0));
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 0;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
}

.brand-sub {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .84;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  opacity: .92;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 9px 16px;
}

.language-switcher {
  position: relative;
}

.language-toggle,
.language-menu button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.language-flag {
  font-size: 14px;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 108px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: var(--olive-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 7px 9px;
  border-radius: 9px;
  color: #fff;
  background: transparent;
  text-align: left;
  font-size: 12px;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: rgba(255,255,255,.12);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.hero picture,
.hero picture img,
.hero-video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.hero img,
.hero-video {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 45%, rgba(0,0,0,.1), rgba(0,0,0,.58)),
    linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,.1));
}

.hero-content {
  position: relative;
  max-width: 860px;
  text-align: center;
  padding: 140px 24px 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 700;
}

.hero .eyebrow {
  color: #efe3c9;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: .98;
  margin: 0;
}

h1 {
  font-size: clamp(72px, 13vw, 156px);
  letter-spacing: -.05em;
}

.hero-line {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4.8vw, 58px);
  line-height: 1;
  margin: 8px 0 18px;
}

.hero-text {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 18px;
  opacity: .92;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button.primary {
  background: var(--olive);
  color: #fff;
}

.hero .button.primary {
  background: #fff;
  color: var(--olive-dark);
}

.button.ghost {
  border: 1px solid rgba(255,255,255,.65);
  color: #fff;
}

.button.ghost.dark {
  border-color: var(--line);
  color: var(--brown);
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  background: var(--paper);
}

.story-intro-heading,
.story-intro-copy {
  animation: story-intro-fade .8s ease both;
}

.story-intro-copy {
  animation-delay: .12s;
}

.story-intro-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.story-intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--brown);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

@keyframes story-intro-fade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.intro-copy,
.area-copy {
  max-width: 620px;
}

h2 {
  font-size: clamp(42px, 6vw, 82px);
  letter-spacing: -.035em;
  margin-bottom: 22px;
}

.intro p,
.section-heading p,
.area p,
.story p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
}

.intro-media img,
.area-image img {
  border-radius: 32px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.apartments {
  background: var(--paper);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(59,42,28,.08);
}

.room-card.featured {
  grid-column: span 1;
}

.room-card img {
  height: 360px;
  object-fit: cover;
}

.room-gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}

.room-gallery-trigger img {
  transition: transform .45s ease;
}

.room-gallery-trigger span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(48, 51, 30, .88);
  color: #fff;
  font: 700 11px/1 Inter, system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
  transition: background .2s ease;
}

.room-gallery-trigger:hover img,
.room-gallery-trigger:focus-visible img {
  transform: scale(1.035);
}

.room-gallery-trigger:hover span,
.room-gallery-trigger:focus-visible span {
  background: rgba(48, 51, 30, .97);
}

.room-body {
  padding: 26px;
}

.room-type {
  margin: 0 0 6px;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
}

.room-body h3 {
  font-size: 42px;
  margin-bottom: 12px;
}

.room-body p {
  color: var(--muted);
  margin: 0 0 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--olive-dark);
  background: var(--ivory);
}

.room-body a {
  color: var(--olive);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.gallery-band img {
  height: 460px;
  object-fit: cover;
}

.area {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.facts {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.facts div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.facts strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.facts span {
  color: var(--muted);
  text-align: right;
}

.story {
  background: var(--olive-dark);
  color: #fff;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.story .eyebrow { color: #d8bb8a; }
.story p { color: rgba(255,255,255,.78); margin: 0; }

.contact {
  padding: clamp(70px, 9vw, 120px) 18px;
  background:
    linear-gradient(rgba(48,51,30,.72), rgba(48,51,30,.72)),
    url("assets/hero-aerial-2.jpg") center/cover;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,250,242,.94);
  border-radius: 34px;
  padding: clamp(34px, 6vw, 72px);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 14px;
}

.contact-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.footer {
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--brown);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer div:first-child {
  display: grid;
  gap: 4px;
}

.footer span,
.footer a {
  color: rgba(255,255,255,.7);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(150px, 18vw, 190px) 18px clamp(70px, 10vw, 120px);
}

.legal-page header {
  max-width: 680px;
  margin-bottom: 42px;
}

.legal-page h1,
.legal-page h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
}

.legal-page h1 {
  margin: 8px 0 14px;
  font-size: clamp(44px, 6vw, 68px);
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: clamp(29px, 3.6vw, 38px);
}

.legal-page p,
.legal-page li { max-width: 720px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--terracotta); }
.legal-page .legal-note { color: var(--muted); font-size: 14px; }
.legal-page [hidden] { display: none; }

.legal-back {
  display: inline-flex;
  margin-top: 14px;
  text-decoration: none;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.lightbox-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 3vw, 38px);
  padding: clamp(18px, 4vw, 60px);
  background: rgba(48, 51, 30, .94);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  display: grid;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.lightbox-media {
  position: relative;
  display: grid;
  min-width: 0;
}

.lightbox-image {
  width: 100%;
  max-width: 1240px;
  max-height: calc(100vh - 150px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.lightbox-thumbnails {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.lightbox-thumbnail {
  width: 70px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 9px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  opacity: .62;
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.lightbox-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumbnail.is-active {
  border-color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-size: 14px;
}

.lightbox figcaption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.lightbox-count { color: rgba(255, 255, 255, .72); }

.lightbox-close,
.lightbox-control {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.lightbox-close:hover,
.lightbox-control:hover { background: rgba(255, 255, 255, .22); }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font: 400 44px/.8 "Cormorant Garamond", serif;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

@media (max-width: 860px) {
  .site-header {
    align-items: center;
  }

  .nav {
    display: flex;
    gap: 0;
  }

  .nav > a { display: none; }

  .hero-content {
    text-align: left;
    width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }

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

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

  .room-card img {
    height: 310px;
  }

  .lightbox { gap: 12px; }

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

  .gallery-band img {
    height: 320px;
  }

  .facts div {
    display: grid;
  }

  .facts span {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    font-size: 24px;
  }

  h1 {
    font-size: 68px;
  }

  .hero-line {
    font-size: 34px;
  }

  .contact-card h2 {
    line-height: 1.08;
  }

  .button {
    width: 100%;
  }

  .room-body h3 {
    font-size: 34px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.story p { line-height: 1.85; }
.story strong { color: #fff; }
