/* ============================================================
   FONTS
   ============================================================ */

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-LightItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-Italic.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-MediumItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-SemiBoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url('../FONTS/Cormorant_Garamond/CormorantGaramond-BoldItalic.ttf') format('truetype');
}


/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --color-bg:          #F3F9ED;
  --color-surface-1:   #E8F3DB;
  --color-surface-2:   #DCEDC9;
  --color-accent:      #C5E1A5;
  --color-green-dark:  #2D5016;
  --color-green-deep:  #1A3A0A;
  --color-text:        #1A2E0A;
  --color-text-muted:  #4A6B2A;
  --color-white:       #ffffff;

  --font: 'Cormorant Garamond', Garamond, Georgia, serif;

  --nav-height: 72px;

  --container-max: 1200px;
  --container-pad: clamp(24px, 5vw, 64px);

  --section-pad: clamp(64px, 10vw, 120px);

  --radius: 2px;
  --transition: 0.3s ease;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.1875rem;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}


/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

h1 {
  font-weight: 700;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  font-weight: 600;
  font-size: clamp(1.875rem, 3.75vw, 3.25rem);
  letter-spacing: 0.06em;
}

h3 {
  font-weight: 600;
  font-size: clamp(1.25rem, 2.25vw, 1.75rem);
  letter-spacing: 0.04em;
}

h4 {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

p {
  font-weight: 500;
  max-width: 65ch;
}


/* ============================================================
   CENTRED TEXT HELPERS
   ============================================================ */

/* p blocks inside known centred containers need auto margins so the
   max-width: 65ch block itself centres rather than sitting left. */
.hero p,
.section--dark p,
.section--alt .container > p,
.intro-centred p {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

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

.section--dark {
  background-color: var(--color-green-dark);
  color: var(--color-white);
}

.section-label {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-header p {
  margin-top: 20px;
  color: var(--color-text-muted);
  font-size: 1.1875rem;
}

.divider {
  width: 48px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 20px 0;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background-color: var(--color-bg);
  box-shadow: 0 1px 0 rgba(45, 80, 22, 0.1);
}

.nav.nav--solid {
  background-color: var(--color-bg);
  box-shadow: 0 1px 0 rgba(45, 80, 22, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--container-pad);
  max-width: calc(var(--container-max) + var(--container-pad) * 2);
  margin: 0 auto;
}

.nav-logo {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--transition);
}

.nav.scrolled .nav-logo,
.nav.nav--solid .nav-logo {
  color: var(--color-green-dark);
}

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

.nav-links a {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition);
  position: relative;
}

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

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

.nav.scrolled .nav-links a,
.nav.nav--solid .nav-links a {
  color: var(--color-text-muted);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  color: var(--color-white);
  transition: color var(--transition);
}

.nav.scrolled .nav-toggle,
.nav.nav--solid .nav-toggle {
  color: var(--color-green-dark);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-surface-2);
  padding: 32px var(--container-pad) 40px;
  z-index: 99;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green-dark);
  border-bottom: 1px solid var(--color-surface-2);
}

.nav-mobile a:first-of-type {
  border-top: 1px solid var(--color-surface-2);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a3a0a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://res.cloudinary.com/duiws4bun/image/upload/v1777374959/GARDENAERIAL_irbpvk.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 4, 0.42);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4.5vw, 48px) clamp(24px, 5vw, 56px);
  max-width: 560px;
  width: calc(100% - 48px);
  background: rgba(8, 18, 4, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.hero-content h1 {
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  text-indent: 0.1em;
}

.hero-tagline {
  margin-top: 14px;
  font-size: clamp(0.6875rem, 1.1vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
}

.hero-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.1); }
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-green-dark);
  border-color: var(--color-white);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-green-dark);
  border-color: var(--color-green-dark);
}

.btn-outline:hover {
  background-color: var(--color-green-dark);
  color: var(--color-white);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

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


/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */

.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder--dark {
  background: linear-gradient(135deg, #2a4d12 0%, #3d6b20 100%);
}

.img-placeholder--hero {
  background: linear-gradient(165deg, #1a3a0a 0%, #2d5016 55%, #3a6b1c 100%);
}


/* ============================================================
   PROPERTY CARDS
   ============================================================ */

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

.property-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 58, 10, 0.12);
}

.property-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.property-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-card-body h3 {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.property-card-desc {
  margin-top: 10px;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  flex: 1;
}

.property-card-meta {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-surface-2);
}

.meta-item {
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.meta-item strong {
  display: block;
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.0625rem;
}

.property-card-link {
  margin-top: 24px;
}


/* ============================================================
   AREA TEASER / INFO BLOCKS
   ============================================================ */

.area-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.area-teaser-text h2 {
  margin-bottom: 20px;
}

.area-teaser-text p {
  margin-bottom: 32px;
  color: var(--color-text-muted);
}

.area-teaser-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.highlight-card {
  padding: 36px 28px;
  background-color: var(--color-surface-1);
  border-top: 2px solid var(--color-accent);
}

.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: none;
}


/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */

.page-hero {
  padding-top: var(--nav-height);
  padding-bottom: 0;
  background: linear-gradient(165deg, #1a3a0a 0%, #2d5016 55%, #3a6b1c 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 70% 50%, rgba(90, 140, 40, 0.15) 0%, transparent 65%);
}

.page-hero--golf .page-hero-bg {
  background-image: linear-gradient(rgba(8, 12, 6, 0.32), rgba(8, 12, 6, 0.32)), url('https://res.cloudinary.com/duiws4bun/image/upload/v1789644707/scotland-golf_p7fnvj.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero--getting-here {
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.page-hero--getting-here .page-hero-content {
  width: 100%;
}

.page-hero--getting-here .page-hero-bg {
  background-image: linear-gradient(rgba(8, 12, 6, 0.32), rgba(8, 12, 6, 0.32)), url('https://res.cloudinary.com/duiws4bun/image/upload/v1777374936/AERIAL1_dedjay.jpg');
  background-size: cover;
  background-position: center 75%;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 8vw, 100px) var(--container-pad);
  max-width: calc(var(--container-max) + var(--container-pad) * 2);
  margin: 0 auto;
}

.page-hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.page-hero-content p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1875rem;
  max-width: 52ch;
}


/* ============================================================
   PROPERTY DETAIL PAGE
   ============================================================ */

.property-detail-hero {
  padding-top: var(--nav-height);
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .property-detail-hero { aspect-ratio: 4 / 3; }
}

.property-detail-hero .img-placeholder {
  position: absolute;
  inset: 0;
}

.property-overview {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.property-overview-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 24px;
}

.property-overview-text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  max-width: none;
}

.property-stats {
  background-color: var(--color-surface-1);
  padding: 36px;
  border-top: 2px solid var(--color-accent);
}

.property-stats h4 {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-surface-2);
  font-size: 1rem;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-label {
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.stat-value {
  font-weight: 500;
  color: var(--color-text);
}

.booking-placeholder {
  margin-top: 36px;
  padding: 28px;
  border: 1px dashed var(--color-surface-2);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}


/* ============================================================
   GALLERY
   ============================================================ */

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

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item .img-placeholder {
  transition: transform 0.4s ease;
}

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

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

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0, 0, 0, 0.18);
}

.gallery-item-icon {
  opacity: 0;
  color: white;
  font-size: 1.5rem;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-icon {
  opacity: 1;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 28, 4, 0.94);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: transparent;
}

.lightbox-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 75vh;
  background: linear-gradient(135deg, #2a4d12 0%, #3d6b20 100%);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.75rem;
  line-height: 1;
  padding: 8px 12px;
  transition: color var(--transition);
}

.lightbox-close:hover { color: white; }

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  padding: 16px 12px;
  transition: color var(--transition);
}

.lightbox-btn:hover { color: white; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

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

.contact-block {
  padding: 40px;
  background-color: var(--color-surface-1);
  border-top: 2px solid var(--color-accent);
}

.contact-block h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  font-style: italic;
}

.contact-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ============================================================
   GETTING HERE
   ============================================================ */

.address-block {
  padding: 32px 36px;
  background-color: var(--color-surface-1);
  border-left: 3px solid var(--color-accent);
  margin-bottom: 40px;
}

.address-block p {
  font-size: 1.0625rem;
  color: var(--color-text);
  max-width: none;
  line-height: 2;
}

.map-embed {
  width: 100%;
  height: 420px;
  margin-top: 48px;
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background-color: var(--color-green-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
}

.footer-logo {
  font-weight: 600;
  font-size: 1.3125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-tagline {
  margin-top: 8px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

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

.footer-nav a {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-copy {
  text-align: right;
  font-size: 0.8125rem;
  opacity: 0.4;
  max-width: none;
  align-self: end;
}

.footer-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .property-overview { grid-template-columns: 1fr; gap: 40px; }
  .property-stats { max-width: 480px; }
  .area-teaser { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .properties-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .area-teaser { grid-template-columns: 1fr; }
  .area-teaser-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-nav { align-items: center; }
  .footer-copy { text-align: center; }

  .lightbox-inner { padding: 0 48px; }

  .property-stats { max-width: 100%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .lightbox-inner { padding: 0 40px; }
}
