@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap');

:root {
    --ink: #17362e;
    --deep: #0d3028;
    --paper: #f4f3ed;
    --white: #fff;
    --soft: #dfe8e1;
    --line: rgba(23, 54, 46, .17);
    --serif: 'Newsreader', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --container: min(1180px, calc(100% - 64px));
    --radius: 8px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 400 16px/1.65 var(--sans);
    overflow-x: hidden
}

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

a {
    color: inherit
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    background: #fff;
    transform: translateY(-150%)
}

.skip-link:focus {
    transform: none
}

.eyebrow {
    margin: 0 0 14px;
    color: #66887d;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase
}

.eyebrow.light {
    color: #b9d0c7
}

.section {
    width: var(--container);
    margin: auto;
    padding: clamp(75px, 8vw, 112px) 0
}

.section h2 {
    margin: 0;
    font: 400 clamp(2.7rem, 4.4vw, 4.6rem)/.98 var(--serif);
    letter-spacing: -.04em
}

.site-header {
    height: 92px;
    background: rgba(244, 243, 237, .98);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s
}

.site-header.is-sticky {
    box-shadow: 0 10px 35px rgba(13, 48, 40, .1)
}

.nav-shell {
    width: var(--container);
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 36px
}

.brand {
    width: 128px;
    margin-left: 18px
}

.brand img {
    width: 100%;
    height: auto
}

.site-nav {
    justify-self: center;
    display: flex;
    gap: 32px
}

.site-nav a {
    text-decoration: none;
    font-size: .88rem;
    position: relative
}

.site-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 1px;
    background: currentColor;
    transition: .25s
}

.site-nav a:hover:after {
    right: 0
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: none;
    color: var(--ink);
    padding: 10px
}

.menu-toggle span {
    display: block;
    height: 1px;
    background: currentColor;
    margin: 6px 0
}

.language {
    position: relative
}

.language-button {
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    font: 500 .78rem var(--sans);
    cursor: pointer
}

.language-button span {
    color: #6f817b;
    font-weight: 400
}

.language-button img,
.language-menu img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08)
}

.language-button i {
    font-style: normal;
    font-size: .9rem;
    transition: .2s
}

.language-button[aria-expanded=true] i {
    transform: rotate(180deg)
}

.language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 286px;
    max-height: min(470px, calc(100vh - 120px));
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(13, 48, 40, .17);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    transition: .2s
}

.language-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 7px;
    text-decoration: none;
    font-size: .76rem
}

.language-menu a:hover {
    background: var(--soft)
}

.hero {
    height: calc(88svh - 92px);
    min-height: 610px;
    position: relative;
    background: var(--deep);
    color: #fff;
    overflow: hidden
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 1.2s ease, transform 7s ease
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.06)
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 28, 22, .68), rgba(4, 28, 22, .1) 70%), linear-gradient(0deg, rgba(4, 28, 22, .34), transparent 55%)
}

.hero-content {
    position: relative;
    z-index: 2;
    width: var(--container);
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 4vh
}

.hero h1 {
    font: 400 clamp(4rem, 8vw, 7.7rem)/.88 var(--serif);
    letter-spacing: -.055em;
    margin: 0
}

.hero-content>p:last-child {
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    letter-spacing: .01em;
    margin: 22px 0 0
}

.slider-nav {
    position: absolute;
    z-index: 3;
    right: max(32px, calc((100% - 1180px)/2));
    bottom: 34px;
    display: flex;
    gap: 9px
}

.slider-nav button {
    width: 34px;
    height: 3px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, .43);
    cursor: pointer
}

.slider-nav button.is-active {
    width: 62px;
    background: #fff
}

.about {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(48px, 7vw, 92px)
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius)
}

.about-copy p:not(.eyebrow) {
    max-width: 530px
}

.about-copy h2 {
    margin-bottom: 28px
}

.about-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px
}

.about-notes span {
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 8px 13px;
    font-size: .75rem;
    font-weight: 600
}

.dark-section {
    width: 100%;
    background: var(--deep);
    color: #edf4f0;
    padding-left: max(32px, calc((100% - 1180px)/2));
    padding-right: max(32px, calc((100% - 1180px)/2))
}

.section-heading {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 48px
}

.section-heading .eyebrow {
    grid-column: 1/-1;
    margin-bottom: -35px
}

.section-heading>p:last-child {
    max-width: 480px;
    color: #bdd0c8;
    margin: 0
}

.section-heading.compact {
    display: block;
    margin-bottom: 38px
}

.section-heading.compact .eyebrow {
    margin-bottom: 14px
}

.apartment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.apartment-card {
    background: #173e34;
    overflow: hidden;
    border-radius: var(--radius)
}

.apartment-card img {
    width: 100%;
    height: 360px;
    object-fit: cover
}

.apartment-card>div {
    padding: 25px 27px 28px
}

.apartment-card h3 {
    font: 400 1.8rem var(--serif);
    margin: 3px 0 8px
}

.apartment-card p {
    margin: 0;
    color: #c5d5cf
}

.apartment-card .card-label {
    color: #90b0a4;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase
}

.apartment-card span {
    display: block;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: .78rem;
    color: #e8f0ec;
    text-transform: uppercase;
    letter-spacing: .07em
}

.gallery .section-heading h2 {
    font-size: clamp(2.8rem, 4.4vw, 4.4rem)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px
}

.gallery-grid button {
    padding: 0;
    border: 0;
    background: #ced8d1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 4/3
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s
}

.gallery-grid button:hover img {
    transform: scale(1.035)
}

.contact {
    position: relative;
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    background: var(--deep);
    overflow: hidden
}

.contact:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 35, 28, .12), rgba(6, 35, 28, .64) 58%, rgba(6, 35, 28, .88))
}

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

.contact-card {
    position: relative;
    z-index: 2;
    grid-column: 2;
    color: #fff;
    align-self: center;
    width: min(470px, calc(100% - 40px));
    background: rgba(10, 45, 36, .94);
    padding: clamp(38px, 5vw, 65px);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius)
}

.contact h2 {
    font: 400 clamp(3rem, 5vw, 4.8rem)/.95 var(--serif);
    letter-spacing: -.045em;
    margin: 0
}

.contact-card>p:not(.eyebrow) {
    margin: 10px 0 27px;
    color: #cfddd7
}

.contact address {
    font-style: normal;
    margin-bottom: 23px
}

.contact-links a {
    display: block;
    width: max-content;
    max-width: 100%;
    color: #fff;
    text-decoration: none;
    margin: 7px 0
}

.contact-links a:hover {
    text-decoration: underline
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 31px
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 13px 18px;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600
}

.button-light {
    background: #fff;
    color: var(--deep)
}

.button-light:hover {
    background: transparent;
    color: #fff
}

.text-link {
    color: #fff;
    font-size: .84rem
}

.site-footer {
    background: #081f1a;
    color: #aabdb5;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-shell {
    width: var(--container);
    min-height: 132px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr auto 1fr;
    align-items: center;
    gap: 54px;
    padding: 28px 0
}

.footer-brand>a {
    color: #fff;
    text-decoration: none;
    font: 400 1.55rem/1 var(--serif)
}

.footer-brand p,
.footer-meta p {
    margin: 7px 0 0;
    font-size: .73rem
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px
}

.footer-nav a,
.footer-meta a {
    color: #d8e4df;
    text-decoration: none;
    font-size: .74rem
}

.footer-nav a:hover,
.footer-meta a:hover {
    color: #fff;
    text-decoration: underline
}

.footer-meta {
    text-align: right
}

.footer-meta strong {
    color: #eef5f2;
    font-weight: 600;
    letter-spacing: .04em
}

.lightbox {
    width: min(1180px, 94vw);
    height: min(88vh, 820px);
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
    color: #fff
}

.lightbox::backdrop {
    background: rgba(4, 18, 15, .94);
    backdrop-filter: blur(3px)
}

.lightbox-stage {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.lightbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none
}

.lightbox-close,
.lightbox-nav {
    position: fixed;
    z-index: 3;
    color: #fff;
    background: rgba(5, 28, 23, .55);
    border: 1px solid rgba(255, 255, 255, .22);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s, border-color .2s, transform .2s
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(9, 48, 39, .9);
    border-color: rgba(255, 255, 255, .5)
}

.lightbox-close {
    right: 22px;
    top: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1
}

.lightbox-nav {
    top: 50%;
    width: 54px;
    height: 72px;
    border-radius: 6px;
    transform: translateY(-50%);
    font: 300 3rem/1 var(--sans)
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.04)
}

.lightbox-prev {
    left: 22px
}

.lightbox-next {
    right: 22px
}

.lightbox-counter {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(5, 28, 23, .64);
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: .75rem;
    letter-spacing: .08em;
    color: #eef5f2
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .7s cubic-bezier(.2, .7, .2, 1)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

@media(max-width:980px) {
    :root {
        --container: min(100% - 40px, 760px)
    }

    .nav-shell {
        grid-template-columns: 1fr auto auto;
        gap: 12px
    }

    .brand {
        margin-left: 10px;
        width: 112px
    }

    .menu-toggle {
        display: block;
        order: 3
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: var(--paper);
        padding: 12px 20px 20px;
        box-shadow: 0 18px 30px rgba(0, 0, 0, .13);
        flex-direction: column;
        gap: 0
    }

    .site-nav.is-open {
        display: flex
    }

    .site-nav a {
        padding: 12px 4px;
        border-bottom: 1px solid var(--line)
    }

    .language {
        justify-self: end
    }

    .hero {
        height: calc(84svh - 92px)
    }

    .about {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .about-image {
        order: 2
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .section-heading .eyebrow {
        grid-column: auto;
        margin-bottom: -5px
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact {
        grid-template-columns: .85fr 1.15fr
    }

    .contact-card {
        grid-column: 2
    }
}

@media(max-width:620px) {
    :root {
        --container: calc(100% - 32px)
    }

    html {
        scroll-padding-top: 78px
    }

    .site-header {
        height: 78px
    }

    .nav-shell {
        width: calc(100% - 24px);
        grid-template-columns: 1fr auto auto
    }

    .brand {
        width: 92px;
        margin-left: 8px
    }

    .site-nav {
        top: 78px
    }

    .language-button {
        border: 0;
        padding: 0 4px
    }

    .language-button span,
    .language-button i {
        display: none
    }

    .language-menu {
        position: fixed;
        top: 72px;
        right: 12px;
        left: 12px;
        width: auto;
        grid-template-columns: repeat(4, 1fr);
        max-height: calc(100vh - 90px)
    }

    .hero {
        height: 72svh;
        min-height: 520px
    }

    .hero h1 {
        font-size: 3.9rem
    }

    .hero-content>p:last-child {
        font-size: 1.05rem;
        margin-top: 15px
    }

    .slider-nav {
        right: 16px;
        bottom: 22px
    }

    .section {
        padding: 68px 0
    }

    .about-image img {
        aspect-ratio: 4/3
    }

    .apartment-grid {
        grid-template-columns: 1fr
    }

    .apartment-card>div {
        padding: 22px
    }

    .gallery-grid {
        gap: 8px
    }

    .contact {
        min-height: 650px;
        display: block;
        padding: 60px 16px
    }

    .contact:after {
        background: rgba(6, 35, 28, .58)
    }

    .contact-card {
        width: 100%;
        margin: auto;
        padding: 38px 28px
    }

    .contact-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .contact h2 {
        font-size: 3.5rem
    }

    .footer-shell {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 0
    }

    .footer-nav {
        justify-content: flex-start;
        gap: 12px 18px
    }

    .footer-meta {
        text-align: left
    }

    .lightbox {
        width: 100vw;
        height: 82vh
    }

    .lightbox-nav {
        width: 44px;
        height: 60px;
        font-size: 2.5rem;
        background: rgba(5, 28, 23, .7)
    }

    .lightbox-prev {
        left: 8px
    }

    .lightbox-next {
        right: 8px
    }

    .lightbox-close {
        right: 10px;
        top: 10px;
        width: 44px;
        height: 44px
    }

    .lightbox-counter {
        bottom: 10px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .hero-slide,
    .reveal,
    .gallery-grid img {
        transition: none
    }

    .hero-slide {
        transform: none
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

@media(max-width:620px) {
    .about-image img {
        height: 360px
    }

    .apartment-card img {
        height: 260px
    }
}
.site-footer{
  background:#081f1a;
  color:#aabdb5;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-shell{
  width:var(--container);
  margin:auto;
  padding:34px 0;
  display:grid;
  grid-template-columns:220px 1fr;
  gap:48px;
  align-items:start;
}

.footer-brand a{
  color:#fff;
  text-decoration:none;
  font:400 1.55rem/1 var(--serif);
}

.footer-brand p{
  margin:8px 0 0;
  font-size:.75rem;
  color:#91aaa0;
}

.footer-info{
  max-width:850px;
}

.footer-info p{
  margin:0 0 8px;
  font-size:.72rem;
  line-height:1.6;
}

.footer-info a{
  color:#e3eee9;
  text-decoration:none;
}

.footer-info a:hover{
  text-decoration:underline;
}

.footer-info strong{
  color:#eef5f2;
  font-weight:600;
}

@media(max-width:620px){
  .footer-shell{
    grid-template-columns:1fr;
    gap:20px;
    padding:28px 0;
  }

  .footer-info p{
    font-size:.7rem;
  }
}