/* =============================================
   AQUIITY GROUP — MAIN STYLESHEET
   Luxury dark-mode theme
   ============================================= */

/* ─── Brand Fonts: AvertaStd (self-hosted) ─── */
@font-face {
  font-family: 'AvertaStd';
  src: url('../fonts/AvertaStd-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvertaStd';
  src: url('../fonts/AvertaStd-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ─── Accent Font: Cormorant Garamond (Google Fonts) ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --bg:              #080808;
  --surface:         #111111;
  --surface-raised:  #181818;
  --surface-hover:   #1e1e1e;
  --border:          #222222;
  --border-subtle:   #181818;

  --gold:            #C9A84C;
  --gold-light:      #E2C97E;
  --gold-muted:      #8B6F3E;
  --gold-dim:        #3D2E12;

  --text:            #F0EDE8;
  --text-muted:      #888888;
  --text-subtle:     #484848;

  --font-heading:    'AvertaStd', 'Inter', -apple-system, sans-serif;   /* Semibold 600 */
  --font-accent:     'Cormorant Garamond', Georgia, serif;             /* italic decorative */
  --font-body:       'AvertaStd', 'Inter', -apple-system, sans-serif;  /* Light 300 */

  --ease-smooth:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:     cubic-bezier(0.45, 0, 0.55, 1);

  --radius-sm:       4px;
  --radius:          8px;
  --radius-lg:       16px;

  --nav-height:      80px;
  --section-pad:     clamp(80px, 10vw, 140px);
  --container:       1280px;
  --container-sm:    960px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;          /* AvertaStd-Light */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;          /* AvertaStd-Semibold */
  line-height: 1.18;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem);    letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem);    letter-spacing: -0.025em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); letter-spacing: -0.01em; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); letter-spacing: -0.01em; }
h5 { font-size: 1rem;     font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
h6 { font-size: 0.875rem; font-weight: 300; color: var(--text-muted); letter-spacing: 0.04em; }

p { color: var(--text-muted); line-height: 1.8; }
p + p { margin-top: 1.2em; }

.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.display-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container--sm { max-width: var(--container-sm); }

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

.section--dark { background-color: var(--bg); }
.section--surface { background-color: var(--surface); }
.section--raised { background-color: var(--surface-raised); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ─── Dividers ─── */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

.divider--center { margin: 1.5rem auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--lg { padding: 18px 40px; font-size: 0.875rem; }
.btn--sm { padding: 10px 22px; font-size: 0.75rem; }

/* ─── Navigation ─── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s var(--ease-smooth), box-shadow 0.4s;
}

#site-header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  /* slight brightness boost so white logo pops on very dark nav */
  filter: brightness(1.05);
  transition: opacity 0.25s;
}
.nav-logo:hover img { opacity: 0.85; }

.nav-logo__wordmark {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-logo__wordmark span { color: var(--gold); }

.nav-logo__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav-menu a:hover,
.nav-menu a.current-menu-item { color: var(--text); }
.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  text-align: center;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-align: center;
}

@media (max-width: 900px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.75) 50%,
    rgba(8, 8, 8, 0.6) 100%
  );
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-subtle);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s;
}

.hero__scroll:hover { color: var(--gold); }

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  display: block;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Section Headers ─── */
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header--center { text-align: center; }
.section-header--center .divider { margin: 1.5rem auto; }

.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 520px; }
.section-header--center p { margin: 0 auto; }

/* ─── About / Split Layout ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.split--reverse .split__media { order: 1; }
.split--reverse .split__content { order: 0; }

.split__media {
  position: relative;
}

.split__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.split__image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--gold-dim), transparent 60%);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.split__image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.split__accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.split__accent-box .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.split__accent-box .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media,
  .split--reverse .split__content { order: unset; }
  .split__accent-box { bottom: -16px; right: -8px; }
}

/* ─── Services ─── */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.04));
  transition: height 0.35s;
}

.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.service-card:hover::before { height: 100%; }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.service-card:hover .service-card__icon { background: rgba(201, 168, 76, 0.15); }

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border-subtle);
  line-height: 1;
  user-select: none;
  opacity: 0.5;
}

.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; line-height: 1.75; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
}

.service-card__link:hover { gap: 0.7rem; }

/* ─── Property Cards ─── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) { .properties-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .properties-grid { grid-template-columns: 1fr; } }

.property-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  border-color: var(--gold-muted);
}

.property-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.property-card:hover .property-card__image img { transform: scale(1.06); }

.property-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.property-card__price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
}

.property-card__body { padding: 1.5rem; }

.property-card__location {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.property-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.3;
}

.property-card__specs {
  display: flex;
  gap: 1.2rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.property-spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.property-spec svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ─── Testimonials ─── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--gold-dim);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-card__text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-muted);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-card__stars {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

/* ─── Process / Steps ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), var(--gold-muted), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 64px;
  height: 64px;
  background: var(--surface);
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

.process-step h4 { font-size: 0.95rem; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.85rem; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
}

/* ─── Contact Section ─── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.25s;
}

a.contact-info__value:hover { color: var(--gold); }

/* ─── Forms ─── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9375rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}

.form-control::placeholder { color: var(--text-subtle); }

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

textarea.form-control { resize: vertical; min-height: 140px; line-height: 1.6; }

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

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

@media (max-width: 860px) {
  .contact-wrapper { grid-template-columns: 1fr; }
}

/* ─── Footer ─── */
#site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: clamp(3rem, 6vw, 5rem) 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand__logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.footer-social a svg { width: 16px; height: 16px; stroke: var(--text-muted); fill: none; stroke-width: 1.5; }
.footer-social a:hover { border-color: var(--gold); background: var(--gold-dim); }
.footer-social a:hover svg { stroke: var(--gold); }

.footer-nav h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

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

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin: 0;
}

@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Page Hero (Inner Pages) ─── */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.breadcrumbs a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--text-subtle); }

/* ─── Single Property ─── */
.property-single__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}

.property-single__gallery .main-image { grid-row: span 2; }
.property-single__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: unset;
}

.property-single__gallery .main-image img { aspect-ratio: 4/3; }
.property-single__gallery .thumb img { aspect-ratio: 16/9; }

.property-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

/* ─── 404 ─── */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-404__number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── WordPress Alignment Classes ─── */
.wp-block-image.alignwide,
.alignwide { max-width: 1200px; }
.alignfull { width: 100vw; max-width: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-muted); }

/* ─── Selection ─── */
::selection { background: rgba(201, 168, 76, 0.25); color: var(--text); }
