/* ─── Design Tokens ──────────────────────── */
:root {
  /* Palette — refined ivory, champagne gold, soft black, coral accent */
  --ivory: #f6f1e8;
  --ivory-soft: #fbf8f2;
  --cream: #ede4d3;
  --gold: #c9a961;
  --gold-light: #e3c98a;
  --gold-dark: #a08240;
  --ink: #1a1714;
  --ink-soft: #2c2622;
  --ink-mid: #5a4f47;
  --muted: #8a7d72;
  --line: #d9ccb8;
  --coral: #c1453a;
  --coral-soft: #d8675c;

  /* Type */
  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Type scale */
  --text-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  --text-2xl: clamp(2rem, 1.5rem + 2.2vw, 3.2rem);
  --text-hero: clamp(2.8rem, 2rem + 5vw, 6rem);

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Effects */
  --radius-sm: 4px;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(26,23,20,0.06), 0 1px 2px rgba(26,23,20,0.04);
  --shadow-md: 0 8px 24px rgba(26,23,20,0.08), 0 2px 6px rgba(26,23,20,0.05);
  --shadow-lg: 0 20px 60px rgba(26,23,20,0.15), 0 6px 18px rgba(26,23,20,0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Utilities ────────────────────────── */
.container {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}
.section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}
.section--dark {
  background: var(--ink);
  color: var(--ivory);
}
.section--cream {
  background: var(--cream);
}
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-4);
}
.section--dark .eyebrow { color: var(--gold-light); }

.display-title {
  font-family: var(--display);
  font-size: var(--text-2xl);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--space-6);
}
.display-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
.section--dark .display-title { color: var(--ivory); }
.section--dark .display-title em { color: var(--gold-light); }

.lead {
  font-size: var(--text-lg);
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}
.section--dark .lead { color: rgba(246,241,232,0.78); }

.section__head {
  margin-bottom: var(--space-16);
  max-width: 60ch;
}
.section__head--center {
  text-align: center;
  margin-inline: auto;
}
.section__sub {
  font-size: var(--text-base);
  color: var(--ink-mid);
  max-width: 55ch;
  margin-inline: auto;
  margin-top: var(--space-4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 1.85rem;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  letter-spacing: 0.12em;
}
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(246,241,232,0.4);
}
.btn--ghost:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--ivory);
}
.btn--block { width: 100%; }

.link-arrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.3s var(--ease);
}
.link-arrow:hover { color: var(--ink); border-color: var(--ink); }
.section--dark .link-arrow { color: var(--gold-light); border-color: var(--gold); }
.section--dark .link-arrow:hover { color: var(--ivory); border-color: var(--ivory); }

/* ─── Header ───────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(246,241,232,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217,204,184,0.4);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  width: min(100% - 2.5rem, 1400px);
  margin-inline: auto;
  padding: var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink);
}
.logo svg { color: var(--gold-dark); flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.logo__sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav a {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: width 0.4s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--ink);
  padding: 0.5rem 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--ink);
  color: var(--ivory);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--muted);
}
.lang-toggle button {
  font-size: inherit;
  letter-spacing: inherit;
  color: var(--muted);
  padding: 4px 6px;
  transition: color 0.3s var(--ease);
}
.lang-toggle button.active { color: var(--ink); font-weight: 600; }
.lang-toggle button:hover { color: var(--ink); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

/* ─── Hero ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.05);
  z-index: 0;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(26,23,20,0.78) 0%, rgba(26,23,20,0.45) 50%, rgba(26,23,20,0.65) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  color: var(--ivory);
}
.hero__text { max-width: 640px; }
.hero__text .eyebrow {
  color: var(--gold-light);
}
.hero__title {
  font-family: var(--display);
  font-weight: 300;
  line-height: 0.98;
  margin-bottom: var(--space-6);
}
.hero__title-script {
  display: block;
  font-style: italic;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}
.hero__title-display {
  display: block;
  font-size: var(--text-hero);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.hero__title-sub {
  display: block;
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(246,241,232,0.85);
  margin-top: var(--space-2);
}
.hero__lede {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(246,241,232,0.85);
  margin-bottom: var(--space-8);
  max-width: 52ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(246,241,232,0.2);
}
.hero__meta div:not(.divider) {
  display: flex;
  flex-direction: column;
}
.hero__meta strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.hero__meta span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.7);
  margin-top: 6px;
}
.hero__meta .divider {
  width: 1px;
  height: 36px;
  background: rgba(246,241,232,0.2);
}

.hero__portrait {
  position: relative;
  border: 1px solid rgba(227,201,138,0.4);
  padding: 12px;
  background: rgba(26,23,20,0.3);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  transform: rotate(0.5deg);
}
.hero__portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.hero__portrait figcaption {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: var(--space-4) 0 var(--space-2);
}
.hero__portrait-name {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-style: italic;
}
.hero__portrait-role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.7);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(246,241,232,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ─── About ────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__image {
  position: relative;
}
.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--ivory);
  border: 1px solid var(--gold);
  padding: var(--space-6) var(--space-8);
  max-width: 220px;
  box-shadow: var(--shadow-md);
}
.about__badge .eyebrow {
  margin-bottom: var(--space-2);
}
.about__badge p:last-child {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
}
.about__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  list-style: none;
  margin: var(--space-8) 0;
}
.about__pillars li {
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
}
.pillar__num {
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}
.about__pillars h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: var(--space-2) 0;
  color: var(--ink);
}
.about__pillars p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* ─── Services ─────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: rgba(246,241,232,0.08);
  border: 1px solid rgba(246,241,232,0.08);
}
.service-card {
  background: var(--ink);
  padding: var(--space-12) var(--space-8);
  transition: background 0.5s var(--ease);
  position: relative;
}
.service-card:hover {
  background: var(--ink-soft);
}
.service-card__num {
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(227,201,138,0.25);
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--space-4);
  color: var(--ivory);
  line-height: 1.2;
}
.service-card p {
  font-size: 0.95rem;
  color: rgba(246,241,232,0.7);
  line-height: 1.6;
}

/* ─── Listings ─────────────────────────── */
.listings__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-8);
}
.listing {
  background: var(--ivory-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid var(--line);
}
.listing:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.listing--feature {
  grid-row: span 1;
}
.listing__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.listing--feature .listing__image {
  aspect-ratio: 16/11;
}
.listing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.listing:hover .listing__image img {
  transform: scale(1.04);
}
.listing__tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--ivory);
  font-weight: 500;
}
.listing__tag--gold {
  background: var(--gold-dark);
  color: var(--ivory);
}
.listing__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.listing__body h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  margin: var(--space-2) 0 var(--space-2);
  line-height: 1.2;
}
.listing__address {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
  font-style: italic;
}
.listing__specs {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  margin: var(--space-4) 0;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.listing__specs li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.listing__specs strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.listing__specs span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.listing__desc {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: var(--space-6);
  flex: 1;
}
.listing__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.listing__price {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-dark);
}
.listings__cta {
  margin-top: var(--space-16);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.listings__cta p {
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink-mid);
  max-width: 50ch;
}

/* ─── Lifestyle ────────────────────────── */
.lifestyle {
  padding-block: 0;
}
.lifestyle__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 70vh;
}
.lifestyle__image {
  position: relative;
  overflow: hidden;
}
.lifestyle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifestyle__copy {
  background: var(--ivory-soft);
  padding: clamp(var(--space-12), 6vw, var(--space-32));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lifestyle__copy p {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  max-width: 50ch;
}
.lifestyle__strip {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.lifestyle__strip figure { height: 100%; position: relative; }
.lifestyle__strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifestyle__strip figcaption {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-12);
  font-family: var(--display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* ─── Reviews ──────────────────────────── */
.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.stars {
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
}
.stars--sm {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}
.reviews__rating p {
  font-size: var(--text-sm);
  color: var(--ink-mid);
  letter-spacing: 0.05em;
}
.reviews__rating strong {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.review {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  padding: var(--space-8);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review--feature {
  grid-row: span 2;
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.review--feature .stars--sm { color: var(--gold-light); }
.review p {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: var(--space-6);
}
.review--feature p {
  color: var(--ivory);
  font-size: 1.4rem;
}
.review footer {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
}
.review--feature footer {
  color: rgba(246,241,232,0.6);
  border-color: rgba(246,241,232,0.15);
}
.review cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.review--feature cite { color: var(--gold-light); }

/* ─── Contact ──────────────────────────── */
.contact {
  background: var(--ink);
  color: var(--ivory);
}
.contact .display-title { color: var(--ivory); }
.contact .display-title em { color: var(--gold-light); }
.contact .eyebrow { color: var(--gold-light); }
.contact .lead { color: rgba(246,241,232,0.78); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(246,241,232,0.15);
}
.contact__detail {
  display: flex;
  flex-direction: column;
  color: var(--ivory);
  transition: color 0.3s var(--ease);
}
a.contact__detail:hover { color: var(--gold-light); }
.contact__detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-2);
}
.contact__detail-value {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(246,241,232,0.15);
}
.contact__social a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(246,241,232,0.85);
  font-size: var(--text-sm);
  transition: color 0.3s var(--ease);
}
.contact__social a:hover { color: var(--gold-light); }
.contact__social svg { color: var(--gold-light); }

.contact__form {
  background: var(--ink-soft);
  border: 1px solid rgba(246,241,232,0.1);
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.form-row { display: flex; flex-direction: column; gap: var(--space-2); }
.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.form-row label {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-row span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(246,241,232,0.25);
  color: var(--ivory);
  font-family: var(--body);
  font-size: var(--text-base);
  padding: var(--space-2) 0;
  transition: border-color 0.3s var(--ease);
}
.form-row textarea {
  border: 1px solid rgba(246,241,232,0.25);
  padding: var(--space-3);
  resize: vertical;
  font-family: var(--body);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}
.form-row select option { background: var(--ink); color: var(--ivory); }
.form-note {
  font-size: 0.75rem;
  color: rgba(246,241,232,0.5);
  text-align: center;
  letter-spacing: 0.05em;
}

.contact__form .btn--primary {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--ivory);
}
.contact__form .btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ─── Footer ───────────────────────────── */
.footer {
  background: #100e0c;
  color: rgba(246,241,232,0.65);
  padding: var(--space-16) 0 var(--space-6);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(246,241,232,0.1);
}
.footer__name {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: var(--space-2);
}
.footer__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.footer__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-3);
}
.footer__cols p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer__cols a:hover { color: var(--gold-light); }
.footer__bottom {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.75rem;
  color: rgba(246,241,232,0.4);
  letter-spacing: 0.05em;
}

/* ─── Reveal animations ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ───────────────────────── */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--line);
  }
  .nav.is-open a { padding: var(--space-2) 0; }
  .nav.is-open .lang-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    margin-top: var(--space-2);
    border-top: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .lang-toggle-mobile button {
    font: inherit;
    letter-spacing: inherit;
    color: var(--muted);
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
  }
  .lang-toggle-mobile button.active {
    color: var(--gold-dark);
    border-color: var(--gold);
    font-weight: 600;
  }
  .lang-toggle-mobile button:hover { color: var(--ink); }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__portrait {
    max-width: 400px;
    margin-inline: auto;
    transform: none;
  }

  .about__grid,
  .contact__grid,
  .lifestyle__split {
    grid-template-columns: 1fr;
  }
  .about__image { max-width: 500px; margin-inline: auto; }
  .about__badge { right: 0; bottom: -20px; }

  .listings__grid,
  .reviews__grid {
    grid-template-columns: 1fr 1fr;
  }
  .listing--feature,
  .review--feature {
    grid-column: span 2;
    grid-row: span 1;
  }

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

@media (max-width: 640px) {
  .hero { padding-top: 5rem; min-height: auto; padding-bottom: 5rem; }
  .hero__title-display { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__meta { flex-wrap: wrap; gap: var(--space-4); }
  .hero__meta .divider { display: none; }
  .hero__scroll { display: none; }

  .about__pillars { grid-template-columns: 1fr; gap: var(--space-4); }

  .listings__grid,
  .reviews__grid { grid-template-columns: 1fr; }
  .listing--feature, .review--feature { grid-column: auto; }

  .contact__details { grid-template-columns: 1fr; }
  .contact__form { padding: var(--space-6); }
  .form-row--two { grid-template-columns: 1fr; }

  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .lifestyle__strip figcaption {
    left: var(--space-6);
    bottom: var(--space-4);
  }

  /* Hide the desktop lang toggle on phone, the in-menu one takes over */
  .lang-toggle { display: none; }
}

/* The mobile lang toggle is only visible when injected inside the open nav */
.lang-toggle-mobile { display: none; }

/* ─── Property Search (RealScout) ────────── */
.search {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
}
.search__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(1.05);
  z-index: 0;
  transform: scale(1.02);
}
.search__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.78) 0%, rgba(26,23,20,0.55) 50%, rgba(26,23,20,0.88) 100%);
  z-index: 1;
}
.search__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}
.eyebrow--light {
  color: var(--gold-light) !important;
}
.search__title {
  color: var(--ivory);
  margin-bottom: var(--space-6);
}
.search__title em {
  color: var(--gold-light);
  font-style: italic;
}
.search__sub {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(246,241,232,0.82);
  max-width: 64ch;
  margin: 0 auto var(--space-12);
}
.search__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  text-align: left;
}
.search__features li {
  position: relative;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(201,169,97,0.35);
}
.search__feature-num {
  display: block;
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}
.search__features h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: var(--space-3);
  letter-spacing: -0.005em;
}
.search__features p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(246,241,232,0.72);
  margin: 0;
}
.search__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.btn--large {
  padding: 1.1rem 2.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}
.link-arrow--light {
  color: var(--gold-light);
  border-bottom-color: rgba(201,169,97,0.45);
}
.link-arrow--light:hover {
  color: var(--ivory);
  border-bottom-color: var(--ivory);
}

@media (max-width: 860px) {
  .search { padding: clamp(4rem, 12vw, 6rem) 0; }
  .search__features {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .search__features li {
    padding-top: var(--space-5);
  }
  .search__sub { margin-bottom: var(--space-10); }
  .btn--large { width: 100%; }
}
