

:root {
  --background: #ffffff;
  --text: #171717;
  --muted: #686868;
  --line: #e6e6e6;
  --soft: #f5f6f4;
  --green: #245842;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
}

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

main {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 40px;
}

.header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr auto auto;
  min-height: 76px;
}

.logo {
  font-size: 16px;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--muted);
  font-size: 13px;
  transition: color 160ms ease;
}

nav a:hover {
  color: var(--text);
}

.header-call {
  background: var(--text);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 12px 18px;
}

.hero {
  display: grid;
  gap: 64px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 80px 0;
}

.hero-copy {
  align-self: center;
  max-width: 570px;
}

.label {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: -0.04em;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 750;
  line-height: 1.02;
}

h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.08;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 28px 0 32px;
  max-width: 530px;
}

.price {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding-top: 24px;
}

.price span {
  color: var(--muted);
  font-size: 12px;
}

.price strong {
  font-size: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid var(--text);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: background 160ms ease, color 160ms ease;
}

.button.primary {
  background: var(--text);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--green);
  border-color: var(--green);
}

.button.secondary:hover {
  background: var(--soft);
}

.hero-video-wrap {
  background: #171717;
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.hero-video {
  background: #171717;
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  min-height: 540px;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.facts {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts div {
  display: grid;
  gap: 6px;
  padding: 30px 24px;
}

.facts div + div {
  border-left: 1px solid var(--line);
}

.facts strong {
  font-size: 19px;
}

.facts span {
  color: var(--muted);
  font-size: 12px;
}

.gallery-section {
  border-bottom: 1px solid var(--line);
  padding: 110px 0;
}

.gallery-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 0.7fr;
  margin-bottom: 42px;
}

.gallery-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

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

.gallery-item {
  margin: 0;
  min-width: 0;
}

.gallery-open {
  aspect-ratio: 4 / 3;
  background: var(--soft);
  border: 0;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.gallery-open img,
.gallery-thumbnail {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
}

.gallery-open:hover img,
.gallery-open:focus-visible img,
.gallery-open:hover .gallery-thumbnail,
.gallery-open:focus-visible .gallery-thumbnail {
  transform: scale(1.02);
}

.gallery-play {
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  font-size: 22px;
  height: 64px;
  justify-content: center;
  left: 50%;
  padding-left: 4px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
}

.lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 44px 88px;
  position: fixed;
  z-index: 100;
}

.lightbox-content {
  display: grid;
  max-height: calc(100vh - 88px);
  max-width: min(1200px, calc(100vw - 220px));
}

.lightbox-content img,
.lightbox-content video {
  display: block;
  max-height: calc(100vh - 150px);
  max-width: 100%;
  object-fit: contain;
}

.lightbox-content video {
  background: #000000;
  width: 80vw;
}

.lightbox-close,
.lightbox-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: fixed;
}

.lightbox-close {
  font-size: 28px;
  height: 48px;
  right: 24px;
  top: 24px;
  width: 48px;
}

.lightbox-nav {
  border-radius: 50%;
  font-size: 22px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
}

.lightbox-previous {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.section {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 110px 0;
}

.section-title > p:last-child,
.location-info p,
.contact > div:first-child > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 22px 0 0;
  max-width: 480px;
}

.detail-list {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  gap: 12px;
  min-height: 54px;
}

.detail-list li:nth-child(odd) {
  margin-right: 24px;
}

.detail-list span {
  color: var(--green);
  font-weight: 800;
}

.location-section {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 64px;
  grid-template-columns: 0.55fr 1.45fr;
  padding: 110px 0;
}

.location-heading {
  align-self: center;
}

.location-heading > p:not(.label) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 24px 0 0;
  max-width: 440px;
}

.map-embed {
  background: var(--soft);
  min-height: 480px;
  overflow: hidden;
}

.map-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 480px;
  width: 100%;
}

.text-link {
  border-bottom: 1px solid var(--text);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
  padding-bottom: 5px;
}

.contact {
  background: var(--soft);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
  margin: 0 -40px;
  padding: 100px 40px;
}

.contact-actions {
  width: 100%;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
  padding: 30px;
}

.form-heading h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
  margin: 0 0 7px;
}

.form-heading p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 12px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  padding: 13px 14px;
  width: 100%;
}

.contact-form input {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(36, 88, 66, 0.12);
}

.form-footer {
  align-items: center;
  display: flex;
  gap: 18px;
}

.submit-button {
  background: var(--text);
  border: 1px solid var(--text);
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  min-height: 48px;
  padding: 0 22px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #a62b2b;
}

.honeypot {
  left: -10000px;
  position: absolute;
}

footer {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  min-height: 90px;
}

footer span:last-child {
  color: var(--muted);
}

@media (max-width: 900px) {
  main {
    padding: 0 24px;
  }

  .hero,
  .section,
  .location-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 48px;
    padding: 60px 0;
  }

  .hero-video-wrap,
  .hero-video {
    min-height: 420px;
  }

  .section {
    gap: 48px;
    padding: 80px 0;
  }

  .location-section {
    gap: 42px;
    padding: 80px 0;
  }

  .gallery-heading {
    align-items: start;
    gap: 20px;
    grid-template-columns: 1fr;
  }

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

  .lightbox {
    padding: 70px 66px 30px;
  }

  .lightbox-content {
    max-width: calc(100vw - 132px);
  }

  .contact {
    gap: 48px;
    margin: 0 -24px;
    padding: 80px 24px;
  }
}

@media (max-width: 620px) {
  .header {
    gap: 12px;
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .header-call {
    padding: 10px 13px;
  }

  h1 {
    font-size: 46px;
  }

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

  .facts div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .facts div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 24px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-section {
    padding: 80px 0;
  }

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

  .lightbox {
    padding: 70px 16px 90px;
  }

  .lightbox-content {
    max-width: calc(100vw - 32px);
  }

  .lightbox-nav {
    bottom: 22px;
    top: auto;
    transform: none;
  }

  .lightbox-previous {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }

  .detail-list li:nth-child(odd) {
    margin-right: 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

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

.lightbox[hidden] { display: none; }
