@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --green: #1a5c3a;
  /* primary — deep forest green */
  --green-dark: #0d3b22;
  /* primary hover — rich dark emerald */
  --green-mid: #2d7a52;
  /* primary-container */
  --green-light: #d4ede0;
  /* soft mint tint */
  --gold: #b8955a;
  /* luxury gold accent */
  --gold-light: #e8d5a3;
  /* champagne / light gold */
  --gold-dark: #8a6c38;
  /* deep gold hover */
  --cream: #f5f0e8;
  /* warm cream surface */
  --cream-dark: #d6c9b0;
  /* warm outline */
  --off-white: #faf7f2;
  /* warm background */
  --white: #ffffff;
  --text-dark: #1a1c18;
  /* deep warm charcoal */
  --text-mid: #3d4a3e;
  /* forest-toned mid text */
  --text-light: #6b7c6c;
  /* muted forest text */
  --footer-bg: #f0ece3;
  /* warm footer */
  --serif: 'Playfair Display', serif;
  --sans: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 12px 40px rgba(26, 92, 58, 0.10);
  --shadow-gold: 0 8px 32px rgba(184, 149, 90, 0.18);
  --radius: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1360px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 76px;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 149, 90, 0.20);
  border-radius: 50px;
  box-shadow: 0 4px 28px rgba(26, 92, 58, 0.10), 0 1px 0 rgba(184, 149, 90, 0.15) inset;
  transition: var(--transition);
}

.navbar.scrolled {
  height: 64px;
  box-shadow: 0 6px 32px rgba(26, 92, 58, 0.14);
  top: 8px;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 2px 6px rgba(12, 12, 12, 0.12));
}

.navbar.scrolled .nav-logo-img {
  height: 68px;
}

.nav-logo-text {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo-text {
  font-size: 0.95rem;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  padding-bottom: 3px;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

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

.btn-book {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(184, 149, 90, 0.35);
}

.btn-book:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(184, 149, 90, 0.45);
}

/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  width: 100%;
  height: 580px;
  margin-top: 100px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.015);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: line ar-gradient(to top, rgba(10, 35, 20, 0.78) 0%, rgba(10, 35, 20, 0.25) 55%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 48px;
  max-width: 640px;
  animation: fadeUp 1s 0.3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero card overlay (Stitch style) */
.hero-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(244, 241, 235, 0.92);
  backdrop-filter: blur(8px);
  padding: 48px 56px;
  text-align: center;
  z-index: 2;
  max-width: 500px;
  width: 90%;
  animation: fadeUp 1s 0.2s both;
}

.hero-card-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.hero-card-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--green);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
}

.hero-card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
}

/* Stats panel (right side) */
.hero-stats {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(249, 249, 247, 0.95);
  backdrop-filter: blur(8px);
  padding: 32px 28px;
  z-index: 3;
  min-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--green);
  font-weight: 700;
  display: block;
}

.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
  border: 2px solid var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--green);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ---- SECTIONS ---- */
section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-underline {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 28px;
  border-radius: var(--radius);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.85;
}

/* ---- LIVING ARCHITECTURE ---- */
.living-arch .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.living-arch-img {
  position: relative;
  overflow: hidden;
}

.living-arch-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.living-arch-img:hover img {
  transform: scale(1.04);
}

.img-stat {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(250, 247, 242, 0.97);
  padding: 16px 22px;
  border: 1px solid rgba(184, 149, 90, 0.30);
  border-left: 3px solid var(--gold);
}

.img-stat strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--green);
  display: block;
}

.img-stat span {
  font-size: 0.72rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.living-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.living-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.living-features li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
  font-weight: 600;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--green);
  padding: 64px 0;
}

.stats-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  text-align: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
}

.cta-band .btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-cream {
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(184, 149, 90, 0.4);
}

.btn-cream:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ---- AMENITIES ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.amenity-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 92, 58, 0.12);
}

.amenity-card img {
  width: 100%;
  height: 300px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-card:hover img {
  transform: scale(1.08);
}

.amenity-card-body {
  padding: 24px 28px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}

.amenity-card:hover .amenity-card-body {
  border-top-color: var(--gold);
}

.amenity-card-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 8px;
}

.amenity-card-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.amenity-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item.large img {
  height: 380px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 92, 58, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26, 92, 58, 0.35);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 12px 16px;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--radius);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---- GARDEN PHOTO GRID ---- */
.garden-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 48px;
}

.garden-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.garden-photo-grid .main-img {
  grid-row: span 2;
  height: 500px;
}

.garden-photo-grid .side-img {
  height: 240px;
}

.garden-feat-card {
  background: var(--cream);
  padding: 32px;
  border-left: 3px solid var(--green);
  transition: transform var(--transition);
}

.garden-feat-card:hover {
  transform: translateY(-4px);
}

.garden-feat-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.garden-feat-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.garden-feat-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}

.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.c-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon svg {
  fill: white;
  width: 18px;
  height: 18px;
}

.c-text span {
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}

.c-text strong {
  font-size: 0.88rem;
  color: var(--text-dark);
}

.contact-form {
  background: var(--cream);
  padding: 44px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid var(--cream-dark);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

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

.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  padding: 16px;
  border: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--green-dark);
}

/* ---- PAGE HERO ---- */
.page-hero {
  height: 55vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 35, 20, 0.52);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s both;
}

.page-hero-content .eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
}

/* ---- FOOTER ---- */
footer {
  background: var(--footer-bg);
  padding: 32px 0 20px;
  border-top: 1px solid var(--cream-dark);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.footer-brand .logo-wrap img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.footer-brand .logo-text {
  display: none;
}

.footer-brand .footer-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-brand .footer-address svg {
  fill: var(--text-dark);
  flex-shrink: 0;
}

.footer-brand .footer-address p {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
  max-width: 100%;
  margin: 0;
}

.footer-contact-connect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.footer-contact-connect .footer-phone,
.footer-contact-connect .footer-social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-connect .footer-label {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-contact-connect .footer-phone a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-connect .footer-phone a:hover {
  color: var(--gold);
}

.footer-contact-connect .footer-connect-sep {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition);
}

.footer-social a:hover {
  transform: translateY(-2px);
}

.footer-social a svg {
  fill: var(--text-dark);
  width: 20px;
  height: 20px;
  transition: fill var(--transition);
}

.footer-social a:hover svg {
  fill: var(--gold);
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0;
  margin-top: 10px;
}

footer ul li a {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.03em;
}

footer ul li a:hover {
  color: var(--gold);
}

.footer-privacy-sep {
  display: none;
}

.footer-bottom {
  padding-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 600;
}

.footer-bottom .sep {
  color: var(--gold);
  font-size: 1rem;
}

.footer-divider {
  border: none;
  border-top: 1.5px solid var(--gold);
  margin: 0;
  width: 100%;
  opacity: 0.8;
}

.footer-credit {
  display: none;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- TAGS ---- */
.tag {
  background: var(--green-light);
  color: var(--green);
  padding: 5px 14px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .navbar {
    top: 8px;
    width: calc(100% - 24px);
    padding: 0 20px;
    height: 58px;
    border-radius: 40px;
  }

  .navbar.scrolled {
    height: 50px;
    top: 6px;
  }

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

  .navbar.scrolled .nav-logo-img {
    height: 44px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 78px;
    left: 12px;
    width: calc(100% - 24px);
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    border: 1px solid rgba(0, 71, 50, 0.08);
  }

  .navbar.scrolled .nav-links {
    top: 66px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    padding: 12px 28px;
  }

  .hamburger {
    display: flex;
  }

  .btn-book {
    display: none;
  }

  .hero {
    margin-top: 78px;
    height: 440px;
    display: flex;
    align-items: flex-end;
  }

  .hero-content {
    padding: 0 28px 36px;
  }

  .hero-card {
    display: none;
  }

  .hero-stats {
    display: none;
  }

  .living-arch .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .gallery-item.large {
    grid-column: span 1;
  }

  .gallery-item.large img {
    height: 280px;
  }

  .garden-photo-grid {
    grid-template-columns: 1fr;
  }

  .garden-photo-grid .main-img {
    height: 300px;
    grid-row: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    gap: 16px;
  }

  .container {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 380px;
  }

  .hero-content {
    padding: 0 20px 24px;
  }

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

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

  .gallery-item.large img {
    height: 240px;
  }

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

  .cta-band .btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .footer-contact-connect {
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-connect .footer-connect-sep {
    display: none;
  }
}