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

:root {
  --ink: #17211d;
  --muted: #657069;
  --cream: #f7f3eb;
  --white: #fff;
  --green: #194d3d;
  --green-bright: #2f765d;
  --line: #dcded8;
  --gold: #d7aa58;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; width: 100%; }
a { color: inherit; }
button { font: inherit; }

.site-header {
  height: 78px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 700; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--green); font-family: Manrope, sans-serif; }
nav { display: flex; gap: 28px; }
nav a { text-decoration: none; color: #435049; font-size: .94rem; }
nav a:hover, nav a:focus-visible { color: var(--green); }

main { overflow: hidden; }
.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, .85fr);
  background: var(--white);
}
.hero-photo { position: relative; min-height: 660px; overflow: hidden; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.22)); pointer-events: none; }
.hero-photo img { height: 100%; object-fit: cover; }
.status { position: absolute; z-index: 1; top: 28px; left: 28px; padding: 8px 13px; color: white; background: var(--green); border-radius: 999px; font-weight: 600; font-size: .83rem; letter-spacing: .03em; }
.photo-count { position: absolute; z-index: 1; right: 28px; bottom: 28px; border: 0; padding: 10px 14px; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.92); cursor: pointer; box-shadow: 0 5px 25px rgba(0,0,0,.14); }
.hero-copy { padding: clamp(56px, 8vw, 120px) clamp(34px, 6vw, 94px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow { margin: 0 0 18px; color: var(--green-bright); font-weight: 700; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { font-family: Manrope, sans-serif; }
h1 { max-width: 680px; margin: 0; font-size: clamp(2.6rem, 4.5vw, 5rem); line-height: .99; letter-spacing: -.055em; }
.intro { max-width: 570px; margin: 28px 0 32px; color: var(--muted); font-size: 1.1rem; }
.price-block { width: 100%; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.price-block > div { display: flex; flex-direction: column; }
.price, .media { font-family: Manrope, sans-serif; font-size: clamp(1.55rem, 2.5vw, 2.2rem); font-weight: 700; letter-spacing: -.04em; }
.price-label { color: var(--muted); font-size: .83rem; }
.per-room-note { width: 100%; margin: 14px 0 0; padding: 11px 14px; color: var(--green); background: #edf4f0; border-left: 4px solid var(--green-bright); border-radius: 0 4px 4px 0; font-size: .92rem; }
.plus { color: var(--gold); font-size: 1.8rem; }
.primary-button { margin-top: 32px; padding: 14px 20px; display: inline-flex; align-items: center; gap: 32px; border-radius: 4px; text-decoration: none; color: white; background: var(--green); font-weight: 600; transition: transform .2s, background .2s; }
.primary-button:hover { background: #113c30; transform: translateY(-2px); }

.summary, .gallery-section, .additional-info { max-width: 1240px; margin: 0 auto; padding: 110px 32px; }
.section-heading { max-width: 720px; margin-bottom: 52px; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.08; letter-spacing: -.045em; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.feature { padding: 32px 36px 12px 0; }
.feature + .feature { padding-left: 36px; border-left: 1px solid var(--line); }
.feature-icon { width: 46px; height: 46px; margin-bottom: 38px; display: grid; place-items: center; border: 1px solid #bfc9c2; border-radius: 50%; color: var(--green); font-weight: 700; }
.feature h3 { margin: 0 0 10px; font-size: 1.2rem; }
.feature p { margin: 0; color: var(--muted); }

.gallery-section { padding-top: 50px; }
.split-heading { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.split-heading > p { max-width: 420px; margin: 0; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; gap: 16px; }
.gallery-item { position: relative; height: 360px; padding: 0; overflow: hidden; border: 0; background: #e6e5df; cursor: zoom-in; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item span { position: absolute; left: 18px; bottom: 18px; padding: 7px 11px; background: rgba(255,255,255,.94); border-radius: 3px; font-weight: 600; font-size: .84rem; }
.gallery-featured { grid-column: span 2; grid-row: span 2; height: 736px; }
.gallery-landscape { grid-column: span 2; }

.additional-info { padding-top: 54px; }
.additional-info .section-heading { max-width: 850px; }
.info-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; padding-top: 42px; border-top: 1px solid var(--line); }
.info-lead { margin: 0; color: var(--green); font-family: Manrope, sans-serif; font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; line-height: 1.45; letter-spacing: -.025em; }
.info-details { display: grid; gap: 20px; }
.info-details p { margin: 0; color: var(--muted); }

.terms { padding: 96px max(32px, calc((100vw - 1176px)/2)); color: white; background: var(--green); display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px 110px; }
.light { color: #a8d0c0; }
.terms-list { margin: 0; border-top: 1px solid rgba(255,255,255,.25); }
.terms-list div { padding: 18px 0; display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.18); }
.terms-list dt { color: #cbd9d4; }
.terms-list dd { margin: 0; font-weight: 600; text-align: right; }
.terms-list .total { padding: 23px 0; }
.terms-list .total dd { color: #f0c979; font-size: 1.25rem; }
.terms-note { grid-column: 2; max-width: 690px; margin: -48px 0 0; color: #b8cbc3; font-size: .9rem; }
.contact-card { grid-column: 1 / -1; padding-top: 42px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px 110px; border-top: 1px solid rgba(255,255,255,.25); }
.contact-card .eyebrow { margin-bottom: 8px; }
.contact-card h3 { margin: 0; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.contact-intro > p:not(.eyebrow) { max-width: 420px; margin: 18px 0 24px; color: #b8cbc3; }
.contact-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.contact-links a { color: white; font-size: 1.05rem; font-weight: 600; text-underline-offset: 4px; }
.contact-links a:hover, .contact-links a:focus-visible { color: #f0c979; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; color: #d9e4df; font-size: .86rem; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.28); border-radius: 4px; padding: 12px 14px; color: white; background: rgba(255,255,255,.07); font: inherit; outline: none; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #f0c979; box-shadow: 0 0 0 3px rgba(240,201,121,.13); }
.contact-form textarea::placeholder { color: #91aaa0; }
.contact-form button { justify-self: start; border: 0; border-radius: 4px; padding: 13px 18px; color: var(--green); background: #f0c979; font-weight: 700; cursor: pointer; }
.contact-form button:hover, .contact-form button:focus-visible { background: white; }

footer { max-width: 1240px; margin: 0 auto; padding: 38px 32px; display: flex; justify-content: space-between; color: var(--muted); font-size: .9rem; }
footer p { margin: 0; }
footer a { text-decoration: none; }

.lightbox { width: min(1100px, 94vw); max-width: none; padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(7,13,10,.91); backdrop-filter: blur(7px); }
.lightbox figure { margin: 0; }
.lightbox img { max-height: 78vh; object-fit: contain; background: #111; }
.lightbox figcaption { padding: 12px; color: white; text-align: center; }
.close, .gallery-nav { position: absolute; z-index: 2; border: 0; color: white; background: rgba(0,0,0,.45); cursor: pointer; }
.close { top: -48px; right: 0; width: 42px; height: 42px; border-radius: 50%; font-size: 1.7rem; }
.gallery-nav { top: 45%; width: 46px; height: 58px; font-size: 2rem; }
.prev { left: -58px; }
.next { right: -58px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 58vh; }
  .hero-copy { padding: 64px 7vw; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { padding: 28px 0; }
  .feature + .feature { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .feature-icon { margin-bottom: 18px; }
  .terms { grid-template-columns: 1fr; gap: 45px; }
  .info-layout { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-featured { grid-column: span 2; grid-row: auto; height: 500px; }
  .terms-note { grid-column: 1; margin: -18px 0 0; }
  .contact-card { grid-template-columns: 1fr; gap: 38px; }
  .prev { left: 8px; } .next { right: 8px; }
}

@media (max-width: 640px) {
  .site-header { height: 68px; padding: 0 20px; }
  .brand span:last-child { font-size: .9rem; }
  nav { display: none; }
  .hero-photo { min-height: 420px; }
  .hero-copy { padding: 48px 24px 56px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .price-block { grid-template-columns: 1fr; gap: 14px; }
  .plus { display: none; }
  .summary, .gallery-section, .additional-info { padding: 76px 20px; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-featured { grid-column: auto; height: 360px; }
  .terms { padding: 72px 24px; }
  .terms-list div { flex-direction: column; gap: 4px; }
  .terms-list dd { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 30px 20px; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
