/* =============================================
   Wildflower Way — Main Stylesheet v3
   Brand palette: Cream / Sage / Moss / Clay / Terracotta / Gold / Charcoal
   Typefaces: EB Garamond (display) · Lato (body) · Allura (script accent)
   ============================================= */

/* --- Custom Properties --- */
:root {
  --cream:        #F8F5EE;
  --cream-dark:   #EDE9DF;
  --sage:         #A6B89B;
  --moss:         #6D8063;
  --moss-dark:    #4f5e49;
  --clay:         #C98E6A;
  --terra:        #B96A50;
  --terra-dark:   #9d5741;
  --gold:         #E5C768;
  --charcoal:     #3E403F;
  --charcoal-mid: #555755;
  --charcoal-faint:#8a8c89;
  --white:        #ffffff;

  --font-display: 'EB Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-script:  'Allura', cursive;

  --max-width: 1140px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Stripe bands (signature palette element) --- */
.stripe-divider,
.hero-stripe-bar,
.about-stripe-accent {
  display: flex;
}
.stripe-divider { height: 5px; }
.hero-stripe-bar { height: 6px; }
.about-stripe-accent { height: 5px; }
.stripe { flex: 1; }
.s-sage  { background: var(--sage); }
.s-moss  { background: var(--moss); }
.s-clay  { background: var(--clay); }
.s-terra { background: var(--terra); }
.s-gold  { background: var(--gold); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--terra);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-arrow { width: 18px; height: 18px; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--terra);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--terra);
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: var(--terra); color: var(--white); }

/* --- Section eyebrow --- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--moss);
  margin-bottom: 24px;
}
.section-title.light { color: var(--cream); }

/* =============================================
   NAV
   ============================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(62,64,63,0.1);
}
.site-nav.scrolled .nav-logo-text { color: var(--moss); }
.site-nav.scrolled .nav-links a { color: var(--charcoal-mid); }
.site-nav.scrolled .nav-links a:hover { color: var(--moss); }
.site-nav.scrolled .nav-cta { background: var(--terra); color: var(--white); border-color: var(--terra); }
.site-nav.scrolled .nav-hamburger span { background: var(--charcoal); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid rgba(109,128,99,0.5);
  background: var(--cream);
  padding: 3px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.35s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.45) !important;
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: var(--radius-md);
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta:hover { background: var(--terra) !important; border-color: var(--terra) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}

/* Mobile menu: hidden everywhere by default */
.mobile-menu {
  display: none;
  background: var(--cream);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(62,64,63,0.08);
}
.mobile-menu a {
  font-size: 16px;
  color: var(--charcoal-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(62,64,63,0.07);
}
.mobile-cta {
  margin-top: 12px;
  background: var(--terra);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius-md);
  font-weight: 700;
  border: none !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(62,64,63,0.68) 0%,
    rgba(109,128,99,0.38) 55%,
    rgba(62,64,63,0.55) 100%
  );
}
.hero-stripe-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 0;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 32px;
  max-width: 620px;
}
/* hero-tagline removed per design update */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 24px;
}
.badge-icon { width: 14px; height: 14px; color: var(--gold); }
.hero-btn { font-size: 16px; padding: 16px 32px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-hint svg { width: 18px; height: 18px; animation: bounce 2.2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* =============================================
   WHY STRIP
   ============================================= */
.why-strip {
  background: var(--white);
  padding: 68px 0;
  border-bottom: 1px solid rgba(62,64,63,0.07);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.why-item { text-align: center; }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-icon.sage  { background: rgba(166,184,155,0.2); }
.why-icon.sage svg  { stroke: var(--moss); }
.why-icon.gold  { background: rgba(229,199,104,0.2); }
.why-icon.gold svg  { stroke: var(--clay); }
.why-icon.terra { background: rgba(185,106,80,0.14); }
.why-icon.terra svg { stroke: var(--terra); }
.why-icon.clay  { background: rgba(201,142,106,0.16); }
.why-icon.clay svg  { stroke: var(--clay); }
.why-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--moss);
  margin-bottom: 8px;
}
.why-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal-faint);
  line-height: 1.65;
  max-width: 210px;
  margin: 0 auto;
}

/* =============================================
   PROPERTY SECTION
   ============================================= */
.property-section {
  padding: 80px 0;
  background: var(--cream);
}
.section-label-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}
.section-label-row .stripe-divider { width: 110px; }

/* Gallery */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 28px rgba(62,64,63,0.08);
}
.property-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.gallery-main { grid-row: 1 / 3; position: relative; }
.gallery-main .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
  display: block;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.gallery-btn {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-btn:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: -3px;
  z-index: 1;
}
.gallery-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}
.gallery-btn:hover img { transform: scale(1.03); opacity: 0.9; }

.gallery-expand-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(62,64,63,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  flex-shrink: 0;
}
.gallery-expand-hint svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  stroke: var(--white);
  display: block;
}
.gallery-btn:hover .gallery-expand-hint { opacity: 1; }

.thumb-img { max-height: 180px; }

.gallery-more-btn {
  background: rgba(62,64,63,0.5) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 180px;
  min-height: 80px;
  transition: background 0.2s ease !important;
}
.gallery-more-btn:hover { background: rgba(62,64,63,0.68) !important; }
.gallery-more-btn img { display: none; }
.gallery-more-label {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Property info */
.property-content { padding: 36px 40px 40px; }
.property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}
.property-badge {
  display: inline-block;
  background: var(--gold);
  color: #5a3e00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.property-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  color: var(--moss);
  line-height: 1.15;
  margin-bottom: 8px;
}
.property-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--charcoal-faint);
}
.loc-icon { width: 14px; height: 14px; color: var(--terra); flex-shrink: 0; }

.property-rating { text-align: right; flex-shrink: 0; }
.stars { display: flex; gap: 2px; justify-content: flex-end; margin-bottom: 4px; }
.stars svg { width: 16px; height: 16px; color: var(--gold); }
.rating-text { font-size: 13px; color: var(--charcoal-faint); }
.rating-link {
  display: inline-block;
  font-size: 13px;
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.rating-link:hover { color: var(--terra-dark); }

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.spec-chip {
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal-mid);
  background: var(--cream);
  border: 1px solid rgba(62,64,63,0.12);
  padding: 4px 12px;
  border-radius: 24px;
}

.property-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 680px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal-mid);
}
.amenity svg { width: 18px; height: 18px; stroke: var(--moss); flex-shrink: 0; }

.property-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,10,10,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox[hidden] { display: none; }
.lightbox-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 72px 80px 48px;
  overflow: hidden;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 3px;
  user-select: none;
  transition: opacity 0.18s ease;
}
.lightbox-img.loading { opacity: 0.3; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; }
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-prev,
.lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-caption {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-align: center;
  padding: 0 80px 6px;
  min-height: 22px;
}
.lightbox-counter {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-bottom: 20px;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section {
  background: var(--cream-dark);
  padding: 88px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-text p a { color: var(--terra); font-weight: 400; }
.about-text p a:hover { text-decoration: underline; text-underline-offset: 3px; }
.about-script {
  font-family: var(--font-script) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: var(--clay) !important;
  line-height: 1.4 !important;
  margin-top: 8px;
  border-left: 2px solid var(--sage);
  padding-left: 16px;
}

.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-stripe-accent {
  position: absolute;
  bottom: -5px;
  left: 16px;
  right: -16px;
  border-radius: 0 0 3px 3px;
}

/* =============================================
   BRAND PROMISE
   ============================================= */
.promise-section {
  background: var(--moss);
  padding: 72px 24px;
  text-align: center;
}
.promise-inner {
  max-width: 680px;
  margin: 0 auto;
}
.promise-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,245,238,0.55);
  margin-bottom: 20px;
}
.promise-text {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.8vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
  quotes: "\201C" "\201D";
}
.promise-text::before { content: open-quote; }
.promise-text::after  { content: close-quote; }
.promise-script {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--gold);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.contact-inner { text-align: center; }
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: left;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  min-width: 300px;
}
.contact-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(229,199,104,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.contact-icon.clay { background: rgba(201,142,106,0.15); }
.contact-icon.clay svg { stroke: var(--clay); }
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 300;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #2a2b2a;
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  border: 1px solid rgba(166,184,155,0.3);
  background-color: #F8F5EE;
  padding: 5px;
  margin: 0 auto;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  max-width: 300px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .property-gallery { grid-template-columns: 1fr; }
  .gallery-main { grid-row: auto; }
  .gallery-main .main-img { max-height: 320px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; }
  .thumb-img, .gallery-more-btn { max-height: 100px; min-height: 80px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 300px; }
  .property-content { padding: 24px 20px 28px; }
  .property-header { flex-direction: column; }
  .property-rating { text-align: left; }
  .stars { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu:not([hidden]) { display: flex; }
  .hero-title { font-size: clamp(34px, 9vw, 52px); }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .contact-card { min-width: unset; width: 100%; }
  .property-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .lightbox-img-wrap { padding: 60px 16px 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-caption { padding: 0 16px 6px; font-size: 13px; }
}

@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-thumbs { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
