*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #1c1a18;
  --cream: #f7f4f0;
  --surface: #fcfbf9;
  --gold: #c9a96e;
  --gold-lt: #e2c98a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
select, input, textarea { font-family: var(--font-sans); }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: #fff; padding: 12px 20px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.5s, box-shadow 0.5s, border-color 0.5s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,26,24,0.05);
  box-shadow: 0 1px 8px rgba(28,26,24,0.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 48px; max-width: 1440px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-circle {
  width: 40px; height: 40px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s;
}
.logo:hover .logo-circle { transform: rotate(180deg); }
.logo-text {
  font-family: var(--font-serif); font-size: 18px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
}
.logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(28,26,24,0.6); transition: color 0.3s;
  position: relative; padding: 8px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-phone { font-size: 12px; letter-spacing: 0.05em; color: var(--gold); font-weight: 500; transition: color 0.3s; }
.nav-phone:hover { color: var(--gold-lt); }
.btn-contact {
  border: 1px solid var(--gold); color: var(--gold); background: transparent;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 20px; transition: all 0.3s;
}
.btn-contact:hover { background: var(--gold); color: #fff; }
.nav-hamburger { display: none; padding: 8px; color: var(--ink); }
.nav-hamburger svg { width: 24px; height: 24px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 60; background: #fff;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 64px; border-bottom: 1px solid rgba(28,26,24,0.05);
}
.mobile-menu nav {
  flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 24px; gap: 4px;
}
.mobile-menu nav a {
  font-family: var(--font-serif); font-size: 40px; font-weight: 300;
  color: var(--ink); transition: color 0.3s; padding: 8px 0; display: block;
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu-footer { padding: 24px; border-top: 1px solid rgba(28,26,24,0.05); display: flex; flex-direction: column; gap: 12px; }
.mobile-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  padding: 16px; width: 100%;
}
.mobile-contact-btn {
  background: var(--gold); color: #fff;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px; width: 100%; font-weight: 500;
}

/* ── HERO ── */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  transition: opacity 1.2s ease-in-out;
  opacity: 0;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 7s ease-out;
}
.hero-slide.active img { transform: scale(1.04); }
.hero-slide:not(.active) img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(to top, #f7f4f0 0%, rgba(247,244,240,0.20) 40%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 20;
  padding: 0 48px 96px; max-width: 1440px; margin: 0 auto; width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 600;
}
.hero-tag-line { width: 32px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 20px; max-width: 760px;
}
.hero-title .italic-gold { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-desc {
  color: rgba(28,26,24,0.75); font-size: 15px; font-weight: 300;
  max-width: 480px; line-height: 1.7; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: #fff;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 18px 28px; border: none; transition: background 0.3s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(28,26,24,0.25); color: var(--ink);
  background: rgba(255,255,255,0.25); backdrop-filter: blur(8px);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 18px 28px; transition: background 0.3s; cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.5); }
.hero-controls {
  position: absolute; bottom: 32px; left: 48px; z-index: 20;
  display: flex; align-items: center; gap: 8px;
}
.ctrl-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(28,26,24,0.15);
  background: rgba(255,255,255,0.3); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all 0.3s; cursor: pointer;
}
.ctrl-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.ctrl-btn svg { width: 16px; height: 16px; }
.hero-counter {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(28,26,24,0.55); font-weight: 600; margin-left: 4px;
}
.hero-stats {
  position: absolute; bottom: 0; right: 0; z-index: 20;
  display: flex;
  border-top: 1px solid rgba(28,26,24,0.1);
  border-left: 1px solid rgba(28,26,24,0.1);
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px);
}
.hero-stat {
  padding: 24px 40px; text-align: center;
  border-right: 1px solid rgba(28,26,24,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-val { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--gold); }
.hero-stat-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(28,26,24,0.5); margin-top: 4px; font-weight: 600; }

/* ── SEARCH BAR ── */
.search-bar { background: #fff; border-bottom: 1px solid rgba(28,26,24,0.05); position: relative; z-index: 30; box-shadow: 0 1px 6px rgba(28,26,24,0.04); }
.search-tabs { display: flex; border-bottom: 1px solid rgba(28,26,24,0.05); }
.search-tab {
  padding: 14px 32px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: rgba(28,26,24,0.4); cursor: pointer;
  border-bottom: 2px solid transparent; transition: all 0.3s;
}
.search-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.search-tab:hover:not(.active) { color: rgba(28,26,24,0.7); }
.search-fields { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; }
.search-field {
  padding: 20px 24px; border-right: 1px solid rgba(28,26,24,0.05);
  border-bottom: 1px solid rgba(28,26,24,0.05); display: flex; flex-direction: column;
}
.search-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.search-field select, .search-field input {
  background: transparent; border: none; color: var(--ink); font-size: 14px;
  outline: none; appearance: none; cursor: pointer; width: 100%;
}
.search-field select option { background: #fff; }
.search-field input::placeholder { color: rgba(28,26,24,0.2); }
.search-btn {
  background: var(--gold); color: #fff;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  padding: 0 32px; display: flex; align-items: center; gap: 8px;
  transition: background 0.3s; cursor: pointer;
}
.search-btn:hover { background: var(--gold-lt); }
.search-btn svg { width: 16px; height: 16px; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.section-label-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 300; line-height: 1.1; color: var(--ink);
}
.section-title .italic-gold { font-style: italic; color: var(--gold); font-weight: 400; }
.section-divider { width: 40px; height: 1px; background: var(--gold); margin: 28px 0; }

/* ── ABOUT ── */
.about { background: #fff; border-bottom: 1px solid rgba(28,26,24,0.05); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; }
.about-text {
  padding: 96px 96px 96px 80px;
  display: flex; flex-direction: column; justify-content: center; order: 1;
}
.about-body { color: rgba(28,26,24,0.65); font-size: 14px; font-weight: 300; line-height: 1.8; }
.about-body p + p { margin-top: 16px; }
.about-body strong { color: var(--ink); font-weight: 400; }
.btn-outline-dark {
  border: 1px solid rgba(28,26,24,0.2); color: var(--ink); background: transparent;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 28px; margin-top: 32px; align-self: flex-start;
  transition: background 0.3s; cursor: pointer; display: inline-block;
}
.btn-outline-dark:hover { background: rgba(28,26,24,0.05); }
.about-img { position: relative; min-height: 500px; overflow: hidden; order: 2; }
.about-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s;
}
.about-img:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; bottom: 40px; left: 0;
  background: var(--gold); color: #fff;
  padding: 12px 28px; font-family: var(--font-serif); font-size: 18px;
}
.about-badge span { display: block; font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 2px; }

/* ── DESTINATIONS ── */
.destinations { padding: 112px 48px; background: var(--cream); border-bottom: 1px solid rgba(28,26,24,0.05); }
.destinations-inner { max-width: 1440px; margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 20px; }
.see-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); transition: color 0.3s;
  border-bottom: 1px solid transparent; padding-bottom: 4px; flex-shrink: 0;
}
.see-all-link:hover { color: var(--gold-lt); border-bottom-color: var(--gold); }
.see-all-link svg { width: 14px; height: 14px; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; box-shadow: 0 1px 4px rgba(28,26,24,0.08);
  transition: box-shadow 0.5s;
}
.dest-card:hover { box-shadow: 0 8px 32px rgba(28,26,24,0.15); }
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 2s ease-out; filter: brightness(0.85);
}
.dest-card:hover img { transform: scale(1.05); filter: brightness(0.9); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); }
.dest-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
.dest-name { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: #fff; }
.dest-avail {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-lt); margin-top: 6px; opacity: 0; transition: opacity 0.5s;
}
.dest-card:hover .dest-avail { opacity: 1; }
.dest-arrow {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.5s;
}
.dest-card:hover .dest-arrow { opacity: 1; }
.dest-arrow svg { width: 16px; height: 16px; color: #fff; }

/* ── PROPERTIES ── */
.properties { padding: 112px 48px; background: #fff; border-bottom: 1px solid rgba(28,26,24,0.05); }
.properties-inner { max-width: 1440px; margin: 0 auto; }
.prop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.prop-card {
  background: var(--cream); display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(28,26,24,0.06);
  border: 1px solid rgba(28,26,24,0.05); transition: box-shadow 0.5s, transform 0.3s;
}
.prop-card:hover { box-shadow: 0 6px 24px rgba(28,26,24,0.1); transform: translateY(-4px); }
.prop-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prop-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.prop-card:hover .prop-img img { transform: scale(1.05); }
.prop-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #fff;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 10px; font-weight: 500;
}
.fav-btn {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: color 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  cursor: pointer; border: none;
}
.fav-btn:hover { color: var(--gold); }
.fav-btn.active { color: var(--gold); }
.fav-btn svg { width: 14px; height: 14px; }
.fav-btn.active svg { fill: var(--gold); }
.prop-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.prop-ref { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.prop-title {
  font-family: var(--font-serif); font-size: 17px; color: var(--ink);
  margin-bottom: 8px; line-height: 1.3; transition: color 0.3s;
}
.prop-card:hover .prop-title { color: var(--gold); }
.prop-desc { font-size: 12px; color: rgba(28,26,24,0.55); font-weight: 300; line-height: 1.6; margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.prop-meta { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(28,26,24,0.08); margin-bottom: 12px; flex-wrap: wrap; }
.prop-meta-item { font-size: 11px; color: rgba(28,26,24,0.55); }
.prop-meta-item span { color: var(--gold); font-weight: 600; }
.prop-price { font-family: var(--font-serif); font-size: 22px; font-weight: 300; color: var(--ink); }
.prop-price-label { font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(28,26,24,0.35); margin-top: 2px; }
.prop-cta { text-align: center; margin-top: 48px; }

/* ── WHY US ── */
.why { background: var(--cream); border-bottom: 1px solid rgba(28,26,24,0.05); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; }
.why-img { position: relative; min-height: 500px; overflow: hidden; }
.why-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.why-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--cream) 100%);
}
.why-text { padding: 96px 96px 96px 80px; display: flex; flex-direction: column; justify-content: center; }
.why-items { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(28,26,24,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.why-item:hover .why-icon { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.why-icon svg { width: 20px; height: 20px; color: var(--gold); }
.why-item-title { font-family: var(--font-serif); font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.why-item-desc { font-size: 12px; color: rgba(28,26,24,0.55); font-weight: 300; line-height: 1.7; }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--gold); color: #fff;
  padding: 96px 32px; text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-serif); font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 300; font-style: italic; max-width: 900px; margin: 0 auto;
  line-height: 1.5;
}
.testimonial cite {
  display: block; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-top: 32px; font-style: normal; font-weight: 500;
}

/* ── CONTACT ── */
.contact { background: #fff; border-bottom: 1px solid rgba(28,26,24,0.05); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-info { padding: 96px 80px; border-right: 1px solid rgba(28,26,24,0.05); }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(28,26,24,0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-item-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 600; }
.contact-item-val { font-size: 14px; color: rgba(28,26,24,0.75); font-weight: 300; }
.contact-item-val a:hover { color: var(--gold); }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  padding: 14px 20px; transition: background 0.3s; margin-bottom: 32px;
}
.whatsapp-btn:hover { background: #22c55e; }
.whatsapp-btn svg { width: 16px; height: 16px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px; border: 1px solid rgba(28,26,24,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(28,26,24,0.5); transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }
.contact-form { padding: 96px 80px; background: var(--surface); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-grid .form-group { margin-bottom: 0; }
.form-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: #fff; border: 1px solid rgba(28,26,24,0.1);
  padding: 14px 16px; font-size: 14px; color: var(--ink);
  outline: none; transition: border-color 0.3s; font-family: var(--font-sans);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(28,26,24,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: none; }
.btn-submit {
  width: 100%; background: var(--gold); color: #fff; border: none;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  padding: 20px; transition: background 0.3s; cursor: pointer; margin-top: 4px;
}
.btn-submit:hover { background: var(--gold-lt); }

/* ── FOOTER ── */
.footer { background: var(--ink); color: #fff; padding: 96px 48px 56px; }
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-circle {
  width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-circle svg { width: 14px; height: 14px; color: var(--gold); }
.footer-logo-text { font-family: var(--font-serif); font-size: 15px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-logo-text span { color: var(--gold); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.7; max-width: 260px; }
.footer-col-title { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 10px; color: rgba(255,255,255,0.2); transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.4); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  background: var(--ink); color: #fff; padding: 14px 20px;
  font-size: 13px; min-width: 280px; display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25); border-left: 3px solid var(--gold);
}
.toast.show { display: block; animation: toastIn 0.3s ease; }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.toast-title { font-weight: 500; margin-bottom: 2px; }
.toast-desc { font-size: 11px; color: rgba(255,255,255,0.6); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 32px; left: 32px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; height: 64px; }
  .hero-content { padding: 0 20px 96px; }
  .hero-controls { left: 20px; bottom: 56px; }
  .hero-stats { display: none; }
  .hero-stats-mobile { display: flex !important; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-text { order: 2; padding: 48px 24px; }
  .about-img { order: 1; min-height: 300px; }
  .why-img { min-height: 280px; }
  .why-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--cream) 100%); }
  .why-text { padding: 48px 24px; }
  .contact-info { padding: 48px 24px; border-right: none; border-bottom: 1px solid rgba(28,26,24,0.05); }
  .contact-form { padding: 48px 24px; }
  .destinations, .properties { padding: 64px 20px; }
  .footer { padding: 64px 20px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-btn { grid-column: 1 / -1; padding: 18px; justify-content: center; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 0 16px; }
  .hero-content { padding: 0 16px 80px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .dest-grid { grid-template-columns: 1fr; }
  .prop-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .search-tabs .search-tab { flex: 1; padding: 14px 8px; font-size: 9px; }
  .back-to-top { width: 40px; height: 40px; bottom: 20px; left: 20px; }
}

/* Hero stats mobile strip */
.hero-stats-mobile {
  display: none;
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(28,26,24,0.08);
}
.hero-stat-mobile {
  flex: 1; padding: 12px 0; text-align: center;
  border-right: 1px solid rgba(28,26,24,0.08);
}
.hero-stat-mobile:last-child { border-right: none; }
.hero-stat-mobile .val { font-family: var(--font-serif); font-size: 20px; font-weight: 300; color: var(--gold); }
.hero-stat-mobile .lbl { font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(28,26,24,0.45); margin-top: 2px; font-weight: 600; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
