/* ══════════════════════════════════════════════════════════════
   RABEYA REAL ESTATE — LUXURY STYLESHEET
   ══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --obsidian:       #0D0D0C;
  --obsidian-soft:  #141413;
  --obsidian-mid:   #1C1C1B;
  --obsidian-light: #252523;
  --alabaster:      #FDFDFB;
  --alabaster-dim:  #F5F4F0;
  --gold:           #C5A059;
  --gold-light:     #D4B96A;
  --gold-pale:      #E8D5A8;
  --gray-100:       #8A8A85;
  --gray-200:       #6A6A65;
  --gray-300:       #4A4A47;
  --white:          #ffffff;

  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Plus Jakarta Sans', system-ui, sans-serif;

  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
  --ease-snappy:    cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:          72px;
  --section-pad:    clamp(80px, 10vw, 160px);
  --container-max:  1360px;
  --gap:            clamp(16px, 2.5vw, 40px);

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

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

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

body {
  background-color: var(--obsidian);
  color: var(--alabaster);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

/* ── UTILITY ────────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
}

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

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  transition:
    background-color 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    transform 0.25s var(--ease-snappy),
    box-shadow 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.30);
}

.btn--ghost {
  background: transparent;
  color: var(--alabaster);
  border-color: rgba(253, 253, 251, 0.28);
}

.btn--ghost:hover {
  background: rgba(253, 253, 251, 0.06);
  border-color: rgba(253, 253, 251, 0.55);
}

.btn--nav {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 10px 24px;
  font-size: 11px;
}

.btn--nav:hover {
  background: var(--gold);
  color: var(--obsidian);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 12px;
}

.btn--submit.is-loading .btn__text { opacity: 0; }
.btn--submit.is-loading .btn__loader { opacity: 1; }

.btn__loader {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(13, 13, 12, 0.25);
  border-top-color: var(--obsidian);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  opacity: 0;
  transition: opacity 0.2s;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(13, 13, 12, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(197, 160, 89, 0.12);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__brand-mark {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  border: 1px solid var(--gold);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__brand-primary {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 400;
  color: var(--alabaster);
  letter-spacing: 0.04em;
}

.nav__brand-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-100);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 253, 251, 0.72);
  position: relative;
  transition: color 0.3s var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav__link:hover {
  color: var(--alabaster);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--alabaster);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

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

.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(13, 13, 12, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 48px clamp(20px, 5vw, 64px);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}

.nav__mobile.is-open {
  transform: none;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nav__mobile-link {
  font-family: var(--font-serif);
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 300;
  color: rgba(253, 253, 251, 0.85);
  transition: color 0.3s;
}

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

.btn--nav-mobile {
  margin-top: 16px;
  width: fit-content;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: center center;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  33%  { transform: scale(1.06) translate(-1%, 0.5%); }
  66%  { transform: scale(1.08) translate(1%, -1%); }
  100% { transform: scale(1.04) translate(0.5%, 0.5%); }
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 12, 0.78) 0%,
    rgba(13, 13, 12, 0.50) 50%,
    rgba(13, 13, 12, 0.72) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.028;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 96px);
  padding-top: var(--nav-h);
  width: 100%;
}

.hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.3s var(--ease-out) forwards;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(44px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--alabaster);
  margin-bottom: clamp(20px, 3vw, 36px);
}

.hero__headline-line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
}

.hero__headline-line[data-stagger="0"] { animation: fadeUp 1s 0.5s var(--ease-out) forwards; }
.hero__headline-line[data-stagger="1"] { animation: fadeUp 1s 0.65s var(--ease-out) forwards; }
.hero__headline-line[data-stagger="2"] { animation: fadeUp 1s 0.80s var(--ease-out) forwards; }

.hero__headline-em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero__sub {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(253, 253, 251, 0.72);
  letter-spacing: 0.02em;
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.95s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.1s var(--ease-out) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.hero__br { display: none; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 6vw, 96px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1s 1.5s var(--ease-out) forwards;
}

.hero__scroll-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-100);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero__scroll-track {
  width: 1px;
  height: 56px;
  background: rgba(253, 253, 251, 0.15);
  position: relative;
  overflow: hidden;
}

.hero__scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollThumb 2.4s var(--ease-in-out) infinite;
}

@keyframes scrollThumb {
  0%   { top: -50%; }
  100% { top: 150%; }
}

.hero__edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.25) 50%, transparent 100%);
  z-index: 3;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT / FEATURES
   ══════════════════════════════════════════════════════════════ */
.about {
  background: var(--obsidian);
  padding: var(--section-pad) 0 0;
  overflow: hidden;
}

.about__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  padding-bottom: var(--section-pad);
}

.about__editorial { padding-top: 8px; }

.about__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--alabaster);
  margin-bottom: 2rem;
}

.about__headline em {
  font-style: italic;
  color: var(--gold-pale);
}

.about__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
  transform-origin: left;
  transition: width 0.8s var(--ease-out) 0.2s;
}

.is-visible .about__rule { width: 60px; }

.about__body {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  color: rgba(253, 253, 251, 0.60);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  max-width: 520px;
}

.about__body--indent {
  padding-left: 24px;
  border-left: 1px solid var(--obsidian-light);
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 3rem;
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(253, 253, 251, 0.06);
}

.about__pillar:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about__pillar-num {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 3px;
  flex-shrink: 0;
}

.about__pillar-title {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  color: var(--alabaster);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.about__pillar-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-100);
  line-height: 1.65;
}

/* Image composition */
.about__imagery {
  position: relative;
  padding-top: 48px;
}

.about__img-primary-wrap {
  position: relative;
  z-index: 2;
}

.about__img-aspect {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.12);
}

.about__img-aspect--secondary {
  aspect-ratio: 4 / 3;
}

.about__img {
  transition: transform 0.8s var(--ease-out);
}

.about__img-primary-wrap:hover .about__img,
.about__img-secondary-wrap:hover .about__img {
  transform: scale(1.04);
}

.about__img-caption {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-200);
}

.about__img-secondary-wrap {
  position: relative;
  margin-top: 24px;
  margin-left: clamp(20px, 4vw, 60px);
  z-index: 1;
}

.about__img-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--obsidian);
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.about__img-badge-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.about__img-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Stats bar */
.about__stats {
  background: var(--obsidian-mid);
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: clamp(32px, 4vw, 56px) 0;
  flex-wrap: wrap;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
  padding: 16px clamp(16px, 3vw, 48px);
}

.about__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about__stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-100);
  text-align: center;
}

.about__stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(253, 253, 251, 0.08);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery {
  background: var(--obsidian-soft);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.gallery__header {
  max-width: var(--container-max);
  margin: 0 auto 3.5rem;
  padding: 0 clamp(20px, 5vw, 64px);
}

.gallery__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.0;
  color: var(--alabaster);
}

.gallery__headline em {
  font-style: italic;
  color: var(--gold-pale);
}

.gallery__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.gallery__tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
}

.gallery__tile:focus-visible {
  outline: 1px solid var(--gold);
}

.gallery__tile--large {
  aspect-ratio: 4 / 3;
}

.gallery__tile-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery__tile-img {
  transition: transform 0.7s var(--ease-out);
}

.gallery__tile:hover .gallery__tile-img {
  transform: scale(1.06);
}

.gallery__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    transparent 30%,
    rgba(13, 13, 12, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: clamp(20px, 3vw, 36px);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.gallery__tile:hover .gallery__tile-overlay,
.gallery__tile:focus-visible .gallery__tile-overlay {
  opacity: 1;
}

.gallery__tile-content {
  transform: translateY(12px);
  transition: transform 0.45s var(--ease-out);
}

.gallery__tile:hover .gallery__tile-content,
.gallery__tile:focus-visible .gallery__tile-content {
  transform: none;
}

.gallery__tile-tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.gallery__tile-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--alabaster);
  line-height: 1.1;
  margin-bottom: 10px;
}

.gallery__tile-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253, 253, 251, 0.72);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 340px;
}

.gallery__tile-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* Right column */
.gallery__col-right {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.gallery__tile--tall {
  flex: 1;
  min-height: 200px;
}

.gallery__quote-tile {
  background: var(--obsidian-mid);
  border: 1px solid rgba(197, 160, 89, 0.14);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  align-items: center;
}

.gallery__quote blockquote {
  font-style: normal;
}

.gallery__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  color: var(--alabaster-dim);
  line-height: 1.4;
  margin-bottom: 16px;
}

.gallery__quote cite {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact {
  position: relative;
  background: var(--obsidian);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 80%, rgba(197, 160, 89, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.contact__intro { padding-top: 12px; }

.contact__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  color: var(--alabaster);
  margin-bottom: 1.6rem;
}

.contact__headline em {
  font-style: italic;
  color: var(--gold-pale);
}

.contact__sub {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  color: rgba(253, 253, 251, 0.55);
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 400px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact__detail-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__detail-val {
  font-size: 14px;
  font-weight: 300;
  color: rgba(253, 253, 251, 0.70);
}

/* Form card */
.contact__card {
  background: var(--obsidian-mid);
  border: 1px solid rgba(197, 160, 89, 0.12);
  padding: clamp(28px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}

.contact__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact__form {
  transition: opacity 0.5s var(--ease-out);
}

.contact__form.is-hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.contact__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 20px);
}

.contact__field {
  margin-bottom: clamp(18px, 2vw, 24px);
}

.contact__label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-100);
  margin-bottom: 10px;
}

.contact__label-opt {
  font-size: 9px;
  font-weight: 300;
  color: var(--gray-200);
  letter-spacing: 0.05em;
  text-transform: none;
  margin-left: 4px;
}

.contact__input {
  display: block;
  width: 100%;
  background: var(--obsidian-light);
  border: 1px solid rgba(253, 253, 251, 0.08);
  color: var(--alabaster);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background-color 0.3s var(--ease-out);
  -webkit-appearance: none;
  border-radius: 0;
}

.contact__input::placeholder {
  color: var(--gray-200);
  opacity: 0.6;
}

.contact__input:focus {
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.07);
  background: var(--obsidian-mid);
}

.contact__input.has-error {
  border-color: rgba(220, 80, 80, 0.5);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

.contact__select-wrap {
  position: relative;
}

.contact__select {
  cursor: pointer;
  padding-right: 40px;
}

.contact__select option {
  background: var(--obsidian-mid);
  color: var(--alabaster);
}

.contact__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gray-200);
  pointer-events: none;
  line-height: 1;
}

/* Uploadcare — luxury re-skin */
.contact__upload-wrap {
  position: relative;
}

.contact__uploader {
  --lr-primary-color: var(--gold);
  --lr-secondary-color: var(--obsidian-light);
  --lr-border-color: rgba(253, 253, 251, 0.08);
  --lr-text-color: var(--alabaster);
  --lr-background: var(--obsidian-light);
  --lr-on-background: var(--alabaster);
  display: block;
  width: 100%;
}

.contact__upload-hint {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-200);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.contact__privacy {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1.65;
  margin-top: 16px;
  text-align: center;
}

.contact__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
}

/* Success state */
.contact__success {
  display: none;
  padding: clamp(28px, 4vw, 52px);
}

.contact__success.is-visible {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.7s var(--ease-out) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.contact__success-inner {
  text-align: center;
  max-width: 360px;
}

.contact__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.contact__success-icon svg {
  width: 100%;
  height: 100%;
}

.contact__success-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--alabaster);
  margin-bottom: 12px;
}

.contact__success-msg {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  color: rgba(253, 253, 251, 0.60);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact__success-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.contact__success-ref {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-200);
}

.contact__success-ref span {
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--obsidian-soft);
  border-top: 1px solid rgba(197, 160, 89, 0.10);
  padding: clamp(36px, 4vw, 56px) 0;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand-mark {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  border: 1px solid rgba(197, 160, 89, 0.4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__brand-primary {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--alabaster);
  letter-spacing: 0.02em;
}

.footer__brand-sub {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gray-200);
  margin-top: 2px;
}

.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-100);
  transition: color 0.3s var(--ease-out);
}

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

.footer__copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-200);
  letter-spacing: 0.04em;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(253, 253, 251, 0.05);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about__imagery {
    padding-top: 0;
  }

  .about__img-secondary-wrap {
    margin-left: clamp(40px, 8vw, 80px);
  }

  .about__img-badge {
    right: clamp(12px, 3vw, 24px);
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact__intro { padding-top: 0; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .btn--nav:not(.btn--nav-mobile) { display: none; }
  .nav__toggle {
    display: flex;
    margin-left: auto;
  }
  .nav__mobile { display: block; }

  .hero__br { display: block; }

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

  .gallery__tile--large {
    aspect-ratio: 4 / 3;
  }

  .about__stats {
    gap: 0;
  }

  .about__stat-divider {
    height: 1px;
    width: 100%;
    max-width: 200px;
    display: none;
  }

  .about__stat {
    min-width: 50%;
    flex: 0 0 50%;
    padding: 20px 16px;
  }

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

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__copy {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn { width: 100%; justify-content: center; }
  .btn--nav { width: auto; }

  .about__img-badge {
    right: 0;
    bottom: 16px;
  }
}

/* ── CUSTOM CURSOR (desktop) ──────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }

  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
    mix-blend-mode: difference;
  }

  .cursor__dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--alabaster);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease-out), width 0.3s, height 0.3s;
  }

  .cursor__ring {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(253, 253, 251, 0.55);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.35s var(--ease-out), width 0.35s, height 0.35s, opacity 0.3s;
  }

  .cursor.is-hover .cursor__ring {
    width: 52px;
    height: 52px;
    border-color: var(--gold);
    opacity: 0.8;
  }

  a, button, [tabindex="0"] { cursor: none; }
}