:root {
  --bg-dark: #053d44;
  --bg-darker: #032e33;
  --brand-green: #cfe3b2;
  --brand-teal: #2b9b95;
  --brand-orange: #d57a3d;
  --text-dark: #153039;
  --text-light: #f0f6f2;
  --surface: #ffffff;
  --surface-alt: #f4f8f8;
  --shadow: 0 12px 30px rgba(2, 25, 29, 0.15);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  line-height: 1.55;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 46, 51, 0.94);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text-light);
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 58px;
  height: 58px;
}

.logo-mark {
  border: 0;
  border-radius: 0;
  mix-blend-mode: normal;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(3, 46, 51, 0.97) 10%,
      rgba(3, 46, 51, 0.86) 45%,
      rgba(3, 46, 51, 0.74) 100%
    );
}

.hero-content {
  position: relative;
  color: var(--text-light);
  padding: 5.6rem 0 4.6rem;
  max-width: 680px;
  background: rgba(3, 46, 51, 0.42);
  border: 1px solid rgba(207, 227, 178, 0.2);
  border-radius: 12px;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.kicker {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--brand-green);
  margin: 0 0 0.55rem;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--bg-dark);
  margin-bottom: 0.4rem;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
  color: #f7fbf7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.42);
}

.price-pill {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(213, 122, 61, 0.95);
  color: #fff;
  text-shadow: none;
}

.hero-content > p:not(.kicker):not(.price-pill) {
  margin-top: 0.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.btn {
  text-decoration: none;
  padding: 0.78rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #c86d31;
}

.btn-secondary {
  background: var(--brand-green);
  color: var(--bg-darker);
  border-color: rgba(3, 46, 51, 0.25);
  box-shadow: 0 8px 20px rgba(3, 46, 51, 0.2);
}

.btn-outline {
  border-color: #e8f6da;
  background: rgba(232, 246, 218, 0.16);
  color: #f6ffea;
  box-shadow: 0 8px 20px rgba(1, 17, 20, 0.25);
}

.btn-outline:hover {
  background: #e8f6da;
  color: #0f3b43;
}

.btn-outline-dark {
  border-color: #0f4e58;
  color: #0f4e58;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(3, 46, 51, 0.12);
}

.btn-outline-dark:hover {
  background: rgba(5, 61, 68, 0.06);
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-intro {
  margin-top: 0.5rem;
  margin-bottom: 1.7rem;
  color: #49626b;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #dce8ea;
  box-shadow: 0 6px 16px rgba(1, 20, 25, 0.06);
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.04rem;
  color: var(--bg-dark);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
}

.gallery-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.3rem;
  align-items: center;
}

.gallery-copy p {
  margin-top: 0.35rem;
  margin-bottom: 1.3rem;
}

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

.gallery-grid img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-height: 230px;
  object-fit: cover;
}

.interior-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.interior-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-height: 220px;
  object-fit: cover;
}

.location-section {
  background: #f9fcfb;
}

.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.2rem;
  align-items: stretch;
}

.location-copy p {
  margin: 0.35rem 0;
}

.location-copy .btn {
  display: inline-flex;
  align-items: center;
  margin-top: 0.8rem;
}

.map-embed iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.tour-embed iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-section {
  background: linear-gradient(180deg, var(--surface) 0%, #e9f2ef 100%);
}

.contact-card {
  text-align: center;
  background: #fff;
  border: 1px solid #d9e7e5;
  border-radius: 14px;
  padding: 2rem 1.2rem;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0.8rem auto 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d8d6;
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--text-dark);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-teal);
  outline: 2px solid rgba(43, 155, 149, 0.16);
  outline-offset: 1px;
}

.contact-form button {
  justify-self: center;
}

.contact-status {
  margin: 0.8rem 0 0;
  color: #1f5a63;
  font-size: 0.92rem;
}

.site-footer {
  background: var(--bg-darker);
  color: #c7d8d6;
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-wrap p {
  margin: 0;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .location-wrap {
    grid-template-columns: 1fr;
  }

  .tour-embed iframe {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .nav-wrap {
    flex-wrap: nowrap;
    gap: 0.45rem;
  }

  .nav-actions {
    width: auto;
    gap: 0.35rem;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-actions .btn {
    padding: 0.45rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .hero-content {
    max-width: 94%;
    padding-top: 2.55rem;
    padding-bottom: 1.75rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .hero-content h1 {
    margin-bottom: 0.5rem;
    line-height: 1.06;
  }

  .hero-content .price-pill {
    margin-bottom: 0.5rem;
  }

  .hero-content > p:not(.kicker):not(.price-pill) {
    margin-top: 0.2rem;
  }

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

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

  .footer-wrap {
    justify-content: center;
    text-align: center;
  }
}
