/* ========================================
   ENHABIT — Global Styles (Hinter-Inspired)
   ======================================== */

@font-face {
  font-family: 'Simplifica';
  src: url('fonts/Simplifica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-light: #dededc;
  --color-dark: #28302c;
  --color-bg: #dededc;
  --color-text: #28302c;
  --color-text-light: #4a5650;
  --color-text-on-dark: #dededc;
  --color-text-muted-on-dark: rgba(222, 222, 220, 0.6);
  --color-accent: #28302c;
  --color-border: #c4c4c2;
  --font-heading: 'Simplifica', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --max-width: 1400px;
  --nav-height: 80px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.0625rem;
  font-weight: 400;
  text-align: center;
  text-transform: lowercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Fade-in animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Navigation — Transparent → Light on scroll
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled,
.navbar.navbar-dark {
  background: var(--color-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  max-width: none;
  margin: 0;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.navbar.scrolled .nav-logo-img,
.navbar.navbar-dark .nav-logo-img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: var(--color-light);
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.navbar.scrolled .nav-links a,
.navbar.navbar-dark .nav-links a {
  color: var(--color-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* ---- Mobile Hamburger Toggle ---- */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-light);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ========================================
   Hero — Static Full Viewport
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.hero-logo {
  height: 188px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero-overlay .hero-welcome {
  font-family: var(--font-body);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--color-light);
  line-height: 1.05;
  margin-bottom: 0;
  letter-spacing: 1px;
  max-width: none;
}

.hero-overlay h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--color-light);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hero-overlay p {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(222, 222, 220, 0.85);
  max-width: 440px;
  letter-spacing: 0.5px;
}

/* ========================================
   Mission Statement — LIGHT section (#dededc)
   ======================================== */

.mission {
  padding: 48px 0;
  background: var(--color-light);
  color: var(--color-dark);
}

.mission-content {
  text-align: left;
}

.mission-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  text-transform: lowercase;
  text-align: center;
  margin-bottom: 11px;
  color: var(--color-dark);
  letter-spacing: 1px;
}

.mission-divider {
  display: none;
}

.mission-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 9px;
  letter-spacing: 0.5px;
}

.mission-text:last-child {
  margin-bottom: 0;
}

/* ========================================
   Property Tiles — DARK section (#28302c)
   ======================================== */

.properties {
  padding: 34px 0;
  background: var(--color-light);
  color: var(--color-dark);
}

.properties .section-title {
  margin-bottom: 8px;
  color: var(--color-dark);
}

.properties-dark {
  background: var(--color-dark);
  color: var(--color-light);
}

.properties-dark .section-title {
  color: var(--color-light);
}

.properties-dark .gallery-link {
  color: var(--color-light);
}

.gallery-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.gallery-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  padding-bottom: 2px;
}

.gallery-link:hover {
  border-bottom: 1px solid var(--color-dark);
}

/* Horizontal Scrolling Gallery */
.gallery-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.gallery-scroll {
  display: flex;
  gap: 4px;
  height: 70vh;
  min-height: 450px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.75);
  transition: filter 0.3s ease;
  cursor: pointer;
}

.gallery-scroll img:hover {
  filter: brightness(0.65);
}

/* Gallery Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(40, 48, 44, 0.3);
  border: none;
  color: rgba(222, 222, 220, 0.7);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  z-index: 10;
  opacity: 0.6;
}

.gallery-arrow:hover {
  background: rgba(40, 48, 44, 0.55);
  color: rgba(222, 222, 220, 0.95);
  opacity: 1;
}

.gallery-arrow-left {
  left: 16px;
}

.gallery-arrow-right {
  right: 16px;
}

/* ========================================
   Reviews — Shared text styles
   ======================================== */

.review-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-dark);
  margin-bottom: 32px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.review-author {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-dark);
  text-transform: lowercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.review-date {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
}

/* ========================================
   Instagram Feed — DARK section (#28302c)
   ======================================== */

.instagram {
  padding: 28px 0 34px;
  background: var(--color-light);
  color: var(--color-dark);
}

.instagram .section-title {
  margin-bottom: 8px;
  color: var(--color-dark);
}

.instagram-handle {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.instagram-handle a {
  transition: opacity 0.3s ease;
}

.instagram-handle a:hover {
  opacity: 0.5;
}

.instagram-grid {
  display: flex;
  gap: 3px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.instagram-item {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  min-width: 0;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-item:hover img {
  transform: scale(1.06);
}

.instagram-overlay {
  display: none;
}

.instagram-overlay-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  pointer-events: none;
}

/* ========================================
   Footer — DARK section (#28302c)
   ======================================== */

.footer {
  padding: 48px 0 0;
  background: var(--color-dark);
  color: var(--color-text-muted-on-dark);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: var(--color-light);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-location {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-muted-on-dark);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.footer-social-centered {
  display: flex;
  justify-content: center;
  padding: 0;
}

.footer-social-centered a {
  color: rgba(222, 222, 220, 0.5);
  transition: color 0.2s ease;
}

.footer-social-centered a:hover {
  color: var(--color-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ========================================
   Property Page Styles
   ======================================== */

/* Property Hero — Airbnb-style 5-image grid */
.property-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.property-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr;
  gap: 0;
  height: 42vw;
  max-height: 620px;
  overflow: hidden;
}

.property-hero-grid .hero-main {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.property-hero-grid .hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero-grid .hero-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  min-height: 0;
  height: 100%;
}

.property-hero-grid .hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 0;
}

.property-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 40px 48px;
  pointer-events: none;
  z-index: 2;
}

.property-hero-overlay h1 {
  font-family: var(--font-heading);
  font-size: 3.375rem;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--color-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.property-hero-overlay p {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(222, 222, 220, 0.85);
  max-width: 500px;
  margin-bottom: 20px;
}

.property-hero-overlay .btn-book {
  pointer-events: auto;
}

.btn-book {
  display: inline-block;
  background: transparent;
  color: var(--color-light);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
  padding: 14px 36px;
  border: 1px solid rgba(222, 222, 220, 0.6);
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-book:hover {
  background: var(--color-light);
  color: var(--color-dark);
}

/* Property Details — DARK section */
.property-details {
  padding: 34px 0;
  background: var(--color-dark);
  color: var(--color-light);
}

.property-details-content {
  text-align: left;
}

.property-details-content h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: lowercase;
  text-align: center;
  margin-bottom: 24px;
  color: var(--color-light);
  letter-spacing: 0.5px;
}

.property-launch {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: var(--color-text-muted-on-dark);
  margin-bottom: 24px;
}

.property-details-content p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-text-muted-on-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Property Amenities — DARK section */
/* Property Amenities — Info Grid (Hinter-inspired) */
.property-amenities {
  padding: 80px 0;
  background: var(--color-bg);
  color: var(--color-text);
}

.property-amenities.dark {
  background: var(--color-dark);
  color: var(--color-light);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.amenity-item {
  text-align: left;
  padding: 40px 32px;
}

.amenity-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: var(--color-text);
}

.property-amenities.dark .amenity-item h4 {
  color: var(--color-light);
}

.amenity-item p {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-light);
}

.property-amenities.dark .amenity-item p {
  color: var(--color-text-muted-on-dark);
}

/* Property Reviews — LIGHT section */
.property-reviews {
  padding: 42px 0;
  background: var(--color-light);
  color: var(--color-dark);
}

.property-reviews .section-title {
  margin-bottom: 21px;
  color: var(--color-dark);
}

.property-reviews .reviews-coming-soon {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: var(--color-text-light);
}

.reviews-scroll-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.reviews-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.review-scroll-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  text-align: center;
  padding: 0 20px;
}

.review-scroll-card .review-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  font-style: italic;
}

.review-scroll-card .review-author {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-dark);
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.review-scroll-card .review-date {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(40, 48, 44, 0.15);
  border: none;
  color: rgba(40, 48, 44, 0.5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  z-index: 10;
  opacity: 0.6;
}

.reviews-arrow:hover {
  background: rgba(40, 48, 44, 0.3);
  color: rgba(40, 48, 44, 0.8);
  opacity: 1;
}

.reviews-arrow-left {
  left: -40px;
}

.reviews-arrow-right {
  right: -40px;
}

/* Property Book CTA — DARK section */
.property-book-cta {
  padding: 34px 0;
  background: var(--color-dark);
  color: var(--color-light);
  text-align: center;
}

.property-book-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: lowercase;
  margin-bottom: 16px;
  color: var(--color-light);
  letter-spacing: 0.5px;
}

.property-book-cta p {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted-on-dark);
  margin-bottom: 40px;
}

/* ========================================
   Contact Page
   ======================================== */

.contact {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background: var(--color-light);
  color: var(--color-dark);
  min-height: 100vh;
}

.contact-inner {
  max-width: 500px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--color-dark);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-email {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.contact-email a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email a:hover {
  color: var(--color-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(40, 48, 44, 0.2);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
  line-height: 1.7;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: rgba(40, 48, 44, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  align-self: flex-start;
  background: transparent;
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
  padding: 14px 36px;
  border: 1px solid rgba(40, 48, 44, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 12px;
}

.contact-submit:hover {
  background: var(--color-dark);
  color: var(--color-light);
}

/* ========================================
   Placeholder image backgrounds
   ======================================== */

.carousel-slide img,
.property-image img,
.instagram-item img,
.property-hero img {
  background: var(--color-border);
}

/* ========================================
   Modal / Popup
   ======================================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--color-dark);
  color: var(--color-light);
  max-width: 450px;
  width: 90%;
  padding: 48px 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  opacity: 1;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  text-transform: lowercase;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-light);
  letter-spacing: 1px;
}

.modal-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  text-align: center;
  color: var(--color-text-muted-on-dark);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.modal-form .form-group label {
  color: rgba(222, 222, 220, 0.6);
}

.modal-form .form-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(222, 222, 220, 0.3);
  color: var(--color-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  padding: 8px 0;
  width: 100%;
  outline: none;
  transition: border-bottom-color 0.3s ease;
}

.modal-form .form-group input:focus {
  border-bottom-color: rgba(222, 222, 220, 0.6);
}

.modal-submit {
  background: transparent;
  color: var(--color-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
  padding: 14px 36px;
  border: 1px solid rgba(222, 222, 220, 0.6);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  margin-top: 4px;
}

.modal-submit:hover {
  background: rgba(222, 222, 220, 0.1);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 968px) {
  .container {
    padding: 0 28px;
  }

  .hero-overlay {
    padding: 60px 40px;
  }

  .hero-overlay .hero-welcome {
    font-size: 3.5rem;
  }

  .hero-overlay h1 {
    font-size: 1.75rem;
  }

  .mission {
    padding: 34px 0;
  }

  .mission-content h2 {
    font-size: 1.875rem;
  }

  .properties {
    padding: 28px 0;
  }

  .gallery-scroll {
    height: 55vh;
    min-height: 350px;
  }

  .reviews {
    padding: 28px 0;
  }

  /* Instagram stays as horizontal strip at all sizes */

  /* Instagram items stay flex at all sizes */

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

  .amenity-item {
    padding: 32px 24px;
  }

  .property-hero-overlay {
    padding: 60px 40px;
  }

  .property-hero-overlay h1 {
    font-size: 2.25rem;
  }

}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 24px;
  }

  .nav-logo-img {
    height: 36px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 28px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }

  .hero {
    height: 85vh;
    min-height: 500px;
  }

  .hero-overlay {
    padding: 40px 24px;
  }

  .hero-overlay .hero-welcome {
    font-size: 2.75rem;
  }

  .hero-overlay h1 {
    font-size: 1.375rem;
  }

  .mission {
    padding: 28px 0;
  }

  .mission-content h2 {
    font-size: 1.6875rem;
  }

  .properties,
  .reviews {
    padding: 21px 0;
  }

  .properties .section-title {
    margin-bottom: 17px;
  }

  .section-title {
    font-size: 1.6875rem;
  }

  .review-text {
    font-size: 0.75rem;
  }

  .property-hero-grid {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .property-hero-grid .hero-main {
    height: 70vh;
    min-height: 400px;
  }

  .property-hero-grid .hero-side {
    display: none;
  }

  .property-hero-overlay h1 {
    font-size: 1.875rem;
  }

  .property-hero-overlay {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
    height: 60px;
  }

  .property-hero {
    margin-top: 60px;
  }

  .hero {
    margin-top: 0;
  }

  .nav-logo-img {
    height: 30px;
  }

  .hero-overlay .hero-welcome {
    font-size: 2.25rem;
  }

  .hero-overlay h1 {
    font-size: 1.125rem;
  }

  .hero-overlay p {
    font-size: 0.75rem;
  }

  .gallery-scroll {
    height: 45vh;
    min-height: 280px;
  }

  /* Instagram stays as horizontal strip on mobile */

  .instagram {
    padding: 21px 0;
  }

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

  .amenity-item {
    padding: 24px 20px;
  }

  .mission {
    padding: 21px 0;
  }

  .mission-content h2 {
    font-size: 1.5rem;
  }
}
