*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #b8965a;
  --gold-lt: #d4b47a;
  --off: #f5f2ec;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.58);
  --line: rgba(17, 17, 17, 0.13);
  --line-lt: rgba(255, 255, 255, 0.2);
  --nav-h: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ΓöÇΓöÇΓöÇ HONEYPOT (anti-spam trap) ΓöÇΓöÇΓöÇ */
.hp-trap {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ΓöÇΓöÇΓöÇ FORM ERROR ΓöÇΓöÇΓöÇ */
.form-error-msg {
  display: none;
  padding: 14px 20px;
  background: #fff3f3;
  border: 1px solid rgba(180, 50, 50, .22);
  color: #b43232;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  margin-top: -1px;
}

.form-error-msg.show {
  display: block;
}

/* ΓöÇΓöÇΓöÇ CURSOR ΓöÇΓöÇΓöÇ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 150, 90, .45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .4s cubic-bezier(.16, 1, .3, 1),
    height .4s cubic-bezier(.16, 1, .3, 1),
    border-color .3s;
}

.cursor.large {
  width: 12px;
  height: 12px;
}

.cursor-ring.large {
  width: 48px;
  height: 48px;
  border-color: rgba(184, 150, 90, .75);
}

/* ΓöÇΓöÇΓöÇ NAV ΓöÇΓöÇΓöÇ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .55s ease, border-color .55s ease, backdrop-filter .55s ease;
}

/* on hero: fully transparent */
nav.on-hero {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* scrolled off hero: glassmorphism */
nav.scrolled {
  background: rgba(245, 242, 236, 0.72);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom-color: rgba(184, 150, 90, 0.2);
  box-shadow: 
    0 2px 24px rgba(17, 17, 17, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.55s cubic-bezier(.16, 1, .3, 1);
}

/* Navbar Dark Theme (Pass-through for Dark Sections) */
nav.nav-dark-theme {
  background: rgba(11, 10, 8, 0.9) !important;
  backdrop-filter: blur(28px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.8) !important;
  border-bottom-color: rgba(212, 175, 55, 0.15) !important;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4) !important;
}

nav.nav-dark-theme .nav-links a {
  color: rgba(255, 255, 255, 0.65) !important;
}

nav.nav-dark-theme .nav-links a:hover {
  color: var(--gold-lt) !important;
}

nav.nav-dark-theme .nav-logo-img-white { opacity: 1 !important; }
nav.nav-dark-theme .nav-logo-img-dark { opacity: 0 !important; }

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}

/* Both logos stacked, fade between them */
.nav-logo-img-white,
.nav-logo-img-dark {
  height: 14px;
  width: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .5s ease;
}

/* On hero: show white, hide dark */
nav.on-hero .nav-logo-img-white {
  opacity: 1;
}

nav.on-hero .nav-logo-img-dark {
  opacity: 0;
}

/* Scrolled down: hide white, show dark */
nav:not(.on-hero) .nav-logo-img-white {
  opacity: 0;
}

nav:not(.on-hero) .nav-logo-img-dark {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .3s, letter-spacing .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

.nav-links a:hover {
  color: var(--ink);
  letter-spacing: .22em; /* Breathing effect */
}

.nav-links a:hover::after {
  width: 100%;
}

nav.on-hero .nav-links a {
  color: rgba(255, 255, 255, .72);
}

nav.on-hero .nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: #1a1510;
  color: #fff;
  border: none;
  padding: 12px 34px;
  border-radius: 9999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  /* Premium Claymorphism */
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -4px -4px 12px rgba(255, 255, 255, 0.03),
    inset 3px 3px 6px rgba(255, 255, 255, 0.08),
    inset -3px -3px 6px rgba(0, 0, 0, 0.4);
}

nav.on-hero .nav-cta {
  background: rgba(20, 15, 10, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-cta:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 15px 35px rgba(184, 150, 90, 0.4),
    0 0 20px rgba(184, 150, 90, 0.2),
    inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}

nav.on-hero .nav-cta:hover {
  background: var(--gold-lt);
  box-shadow:
    0 0 40px rgba(212, 180, 122, 0.5),
    inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}

@media(max-width:768px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }
}

/* ΓöÇΓöÇΓöÇ HERO ΓöÇΓöÇΓöÇ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-viewport {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: var(--nav-h) 52px 80px 52px;
  gap: 120px;
  overflow: visible;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 2rem;
}

.hero-inquiry-module {
  flex: 0 0 350px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  align-self: center;
  margin-top: 100px;
  margin-bottom: 80px;
  margin-left: auto;
  transform: translateY(0);
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

@media(max-width: 1180px) {
  .hero-viewport {
    gap: 40px;
  }

  .hero-inquiry-module {
    flex: 0 0 360px;
    padding: 2rem;
  }
}

@media(max-width: 1100px) {
  .hero {
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
  }

  .hero-viewport {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--nav-h) + 60px) 40px 80px 40px;
    gap: 40px;
  }

  .hero-content {
    flex: none;
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }

  .hero-title {
    font-size: clamp(48px, 8vw, 80px);
  }

  .hero-actions {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-inquiry-module {
    flex: none;
    width: 100%;
    max-width: 500px;
    align-self: center;
    margin-top: 2rem;
  }
}

@media(max-width: 768px) {
  .hero-viewport {
    padding: calc(var(--nav-h) + 30px) 24px 40px 24px;
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 50px);
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-inquiry-module {
    padding: 1.5rem;
    border-radius: 0;
    background: rgba(10, 10, 10, 0.75);
    margin-top: 1rem;
  }
}

.f-field-glass {
  position: relative;
  margin-bottom: 0.75rem;
}

.eyebrow-hero {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  color: var(--gold-lt);
  font-size: 0.5rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.1),
    inset -1px -1px 2px rgba(0, 0, 0, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.4);
}

.form-title-hero {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.form-title-hero em {
  font-style: italic;
  color: var(--gold-lt);
}

.form-desc-hero {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.f-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 0.3rem;
}

@media(max-width:600px) {
  .f-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .f-grid-2 .f-field-glass {
    margin-bottom: 1.5rem;
  }
}

.f-label-hero {
  display: block;
  font-size: 0.5rem;
  color: var(--gold-lt);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 0.25rem;
  font-weight: 800;
  opacity: 0.8;
}

.f-input-hero {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.f-input-hero::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.f-input-hero:focus {
  border-bottom-color: var(--gold-lt);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 
    inset 0 -10px 10px -10px rgba(184, 150, 90, 0.2),
    0 10px 20px -15px rgba(255, 255, 255, 0.1);
}

.f-area-hero {
  font-family: inherit;
  resize: none;
}

.btn-submit-hero {
  background: var(--gold);
  border: none;
  color: black;
  padding: 0.65rem 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 0.75rem;
  width: 100%;
  border-radius: 9999px;
}

.btn-submit-hero:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.success-title-hero {
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  text-align: center;
}

.success-desc-hero {
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 0.75rem;
  opacity: 0.8;
}

.hero-inquiry-module .form-success {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 40px 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1;
}

.hero-inquiry-module .form-success.show {
  display: flex;
}

/* Rest of hero styles... */

.f-field-glass input,
.f-field-glass textarea {
  transition: border-color 0.4s ease, border-width 0.4s ease;
}

.f-field-glass input:focus,
.f-field-glass textarea:focus {
  border-bottom-color: var(--gold-lt) !important;
}

/* Rest of hero styles... */

/* SLIDE BG */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.2s cubic-bezier(.4, 0, .2, 1), transform 9s ease;
  transform: scale(1.06);
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide:nth-child(1) {
  background-image: url('../assets/imgs/i-x7qk9a1.webp');
}

.slide:nth-child(2) {
  background-image: url('../assets/imgs/i-m4tz8b2.webp');
}

.slide:nth-child(3) {
  background-image: url('../assets/imgs/i-r9p2vd3.webp');
}

.slide:nth-child(4) {
  background-image: url('../assets/imgs/i-k6w3nx4.webp');
}

.slide:nth-child(5) {
  background-image: url('../assets/imgs/i-j8c5qy5.webp');
}

/* overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .18) 0%,
      rgba(0, 0, 0, .08) 40%,
      rgba(0, 0, 0, .62) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, .45) 100%);
}

/* hero decorators */
.hero-tag {
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  left: 52px;
  z-index: 10;
  font-size: 8px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
  opacity: 0;
  animation: fadeIn .8s .2s forwards;
}

.hero-index {
  position: absolute;
  top: calc(var(--nav-h) + 36px);
  right: 52px;
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .45);
  opacity: 0;
  animation: fadeIn .8s .3s forwards;
}

.slide-dots {
  position: absolute;
  bottom: 88px;
  right: 52px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.sdot {
  width: 20px;
  height: 0px;
  background: rgba(255, 255, 255, .3);
  transition: width .5s, background .5s;
}

.sdot.active {
  width: 40px;
  background: var(--gold-lt);
}

/* hero content */
.hero-content {
  position: relative;
  z-index: 10;
  will-change: transform, opacity;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.03em;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1s .4s forwards cubic-bezier(.16, 1, .3, 1);
  max-width: 800px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
  font-weight: 300;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 24px;
  gap: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .9s .7s forwards cubic-bezier(.16, 1, .3, 1);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .9);
  max-width: 420px;
  font-weight: 400;
  letter-spacing: .02em;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 17px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background .3s, transform .3s;
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-ghost-hero {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  padding: 17px 44px;
  border-radius: 9999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.btn-ghost-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
}

@media(max-width:600px) {
  .hero {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 60px;
  }

  .hero-tag {
    left: 24px;
  }

  .hero-index {
    right: 24px;
  }

  .slide-dots {
    right: 24px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ΓöÇΓöÇΓöÇ ANIMATIONS ΓöÇΓöÇΓöÇ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ΓöÇΓöÇΓöÇ REVEAL ΓöÇΓöÇΓöÇ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.16, 1, .3, 1),
    transform .85s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ΓöÇΓöÇΓöÇ LAYOUT HELPERS ΓöÇΓöÇΓöÇ */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}

@media(max-width:600px) {
  .section-wrap {
    padding: 0 24px;
  }
}

.eyebrow {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(184, 150, 90, 0.05);
  border-radius: 9999px;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* light-section buttons */
.btn-dark {
  background: var(--ink);
  color: var(--off);
  border: none;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: background .3s, transform .3s;
}

.btn-dark:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: border-color .3s, color .3s, transform .3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ΓöÇΓöÇΓöÇ STATS ΓöÇΓöÇΓöÇ */
.stats-bar {
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--line);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

@media(max-width:700px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 28px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ΓöÇΓöÇΓöÇ PROPERTIES CAROUSEL ΓöÇΓöÇΓöÇ */
.property-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.prop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 52px;
}

@media(max-width:600px) {
  .prop-header {
    padding: 0 24px;
  }
}

.prop-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  max-width: 480px;
}

.prop-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.prop-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.prop-header-right p {
  font-size: 15px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.85;
  text-align: right;
}

/* carousel nav arrows */
.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .3s, background .3s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.carousel-btn:hover svg {
  stroke: #fff;
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s;
}

/* track wrapper */
.carousel-outer {
  position: relative;
  padding: 0 52px;
  overflow: hidden;
}

@media(max-width:600px) {
  .carousel-outer {
    padding: 0 24px;
  }
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
  user-select: none;
}

/* progress bar */
.carousel-progress {
  margin: 32px 52px 0;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

@media(max-width:600px) {
  .carousel-progress {
    margin-left: 24px;
    margin-right: 24px;
  }
}

.carousel-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  transition: width .7s cubic-bezier(.16, 1, .3, 1);
}

/* ΓöÇΓöÇ CARD ΓöÇΓöÇ */
.prop-card {
  flex: 0 0 380px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color .45s, box-shadow .45s, transform .45s cubic-bezier(.16, 1, .3, 1);
  cursor: none;
}

.prop-card:hover {
  border-color: rgba(184, 150, 90, .5);
  box-shadow: 0 20px 60px rgba(14, 14, 14, .13);
  transform: translateY(-6px);
  z-index: 2;
}

@media(max-width:600px) {
  .prop-card {
    flex: 0 0 300px;
  }
}

/* image */
.pc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.prop-card:hover .pc-img {
  transform: scale(1.09);
  filter: brightness(.96) saturate(1.1);
}

/* hover reveal overlay */
.pc-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, .55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .5s ease;
}

.prop-card:hover .pc-hover-overlay {
  opacity: 1;
}

/* quick-view link on hover */
.pc-quick {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s .05s, transform .4s .05s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-quick::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold-lt);
}

.prop-card:hover .pc-quick {
  opacity: 1;
  transform: translateY(0);
}

/* status badges */
.pc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 7px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 900;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 
    inset 2px 2px 4px rgba(255, 255, 255, 0.3),
    inset -2px -2px 4px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.15);
}

.pc-badge.status-available {
  color: #fff;
  background: rgba(34, 197, 94, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    0 8px 15px rgba(34, 197, 94, 0.3);
}

.pc-badge.status-sold {
  color: #fff;
  background: rgba(239, 68, 68, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    0 8px 15px rgba(239, 68, 68, 0.3);
}

.pc-badge.status-muted {
  color: #fff;
  background: rgba(184, 150, 90, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.2),
    0 8px 15px rgba(184, 150, 90, 0.3);
}

.prop-card:hover .pc-badge {
  transform: translateY(-2px);
}

/* lot number */
.pc-lot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 56px 22px 18px;
  background: linear-gradient(to top, rgba(14, 14, 14, .65) 0%, transparent 100%);
}

.pc-lot-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.prop-card:hover .pc-lot-num {
  transform: translateY(-4px);
}

/* card body */
.pc-body {
  padding: 26px 26px 28px;
}

.pc-meta-row {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.pc-meta {
  flex: 1;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 14px;
  border-right: 1px solid var(--line);
}

.pc-meta:first-child {
  padding-left: 0;
}

.pc-meta:last-child {
  border-right: none;
}

.pc-meta strong {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  margin-top: 6px;
  font-family: 'Cormorant Garamond', serif;
  transition: color .3s;
}

.prop-card:hover .pc-meta strong {
  color: var(--ink);
}

.pc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 400;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.pc-price small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.btn-pc-inquire {
  background: var(--ink);
  color: var(--off);
  border: none;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}

.btn-pc-inquire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.btn-pc-inquire span {
  position: relative;
  z-index: 1;
}

.btn-pc-inquire:hover {
  transform: translateY(-1px);
}

.btn-pc-inquire:hover::before {
  transform: translateX(0);
}

/* ΓöÇΓöÇΓöÇ SOVEREIGN LUXURY ABOUT ΓöÇΓöÇΓöÇ */
.about-section {
  padding: 180px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.section-label-vertical {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 10px;
  letter-spacing: 0.6em;
  color: rgba(212, 175, 55, 0.3);
  white-space: nowrap;
  font-weight: 700;
  z-index: 2;
}

.section-wrap-magazine {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 3;
}

.about-magazine-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

@media(max-width: 1280px) {
  .about-magazine-grid {
    gap: 60px;
    grid-template-columns: 1fr 1.2fr 1fr;
  }

  .section-wrap-magazine {
    padding: 0 40px;
  }
}

@media(max-width: 1100px) {
  .about-magazine-grid {
    grid-template-columns: 1fr 1fr;
  }

  .col-prestige {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
  }
}

@media(max-width: 768px) {
  .about-magazine-grid {
    grid-template-columns: 1fr;
  }

  .col-prestige {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding-top: 40px;
  }

  .section-label-vertical {
    display: none;
  }
}

/* COL 1: Portrait */
.portrait-container {
  position: relative;
  width: 100%;
  aspect-ratio: 0.75;
}

.agent-photo {
  width: 100%;
  height: 100%;
  background: url('../assets/imgs/ap-x9k4bz007.webp') center/cover no-repeat;
  filter: sepia(0.2) contrast(1.1) brightness(0.9);
  position: relative;
  z-index: 5;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.glimmer-border {
  position: absolute;
  inset: -20px;
  border: 0.5px solid rgba(212, 175, 55, 0.2);
  z-index: 1;
  transition: all 1.2s cubic-bezier(.16, 1, .3, 1);
}

.glimmer-border.secondary {
  inset: -40px;
  border-color: rgba(212, 175, 55, 0.08);
  transition-delay: 0.1s;
}

.portrait-container:hover .glimmer-border {
  inset: -10px;
  border-color: rgba(212, 175, 55, 0.5);
}

/* COL 2: Narrative */
.mag-col {
  position: relative;
}

.mag-bio-text {
  margin: 3rem 0;
}

.mag-bio-lead {
  font-size: 22px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.mag-bio-text p:not(.mag-bio-lead) {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  font-weight: 300;
}

.manuscript-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 42px;
  color: var(--gold-lt);
  margin: 4rem 0 0.5rem;
  opacity: 0.9;
  letter-spacing: -0.01em;
}

.agent-title-mag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

/* COL 3: Prestige Stats */
.prestige-stats-magazine {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.mag-stat-item {
  display: flex;
  flex-direction: column;
}

.mag-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 300;
}

.mag-stat-val span {
  color: var(--gold-lt);
}

.mag-stat-lab {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.6);
  font-weight: 700;
}

.mag-creds-list {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.m-cred {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.m-cred::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-lt);
  border-radius: 50%;
  opacity: 0.5;
}

.mag-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-mag-primary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 36px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-mag-primary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-lt);
  transform: translateY(-4px) scale(1.02);
  color: #fff;
  box-shadow: 
    0 0 35px rgba(212, 175, 55, 0.35),
    0 10px 40px rgba(0, 0, 0, 0.3);
}

.link-mag-call {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.link-mag-call:hover {
  color: #fff;
  border-bottom-color: var(--gold-lt);
}

.mag-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-lt), transparent);
  margin: 2rem 0;
}

/* ΓöÇΓöÇΓöÇ LOCATION ΓöÇΓöÇΓöÇ */
.location-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media(max-width:900px) {
  .location-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.location-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.location-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.location-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.map-frame {
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
  filter: grayscale(.1);
}

.btn-wa-loc {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 150, 90, 0.15);
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  font-weight: 400;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
  margin-top: 8px;
}

.btn-wa-loc:hover {
  background: rgba(184, 150, 90, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(184, 150, 90, 0.25);
}

.btn-wa-loc svg {
  width: 14px;
  height: 14px;
  fill: #25D366;
  flex-shrink: 0;
}

/* ΓöÇΓöÇΓöÇ FORM ΓöÇΓöÇΓöÇ */

.form-section {
  padding: 120px 0 140px;
  background: linear-gradient(180deg, var(--off) 0%, #efe9df 100%);
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .35;
}

.form-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-header {
  margin-bottom: 1rem;
}

.form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 18px;
}

.form-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.form-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
  max-width: 420px;
}

/* ΓöÇΓöÇ form wrapper card ΓöÇΓöÇ */
.inquiry-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(184, 150, 90, .18);
  box-shadow: 0 8px 64px rgba(17, 17, 17, .07), 0 2px 12px rgba(184, 150, 90, .06);
  animation: formReveal 1s .3s both cubic-bezier(.16, 1, .3, 1);
}

@keyframes formReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ΓöÇΓöÇ field grid rows ΓöÇΓöÇ */
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media(max-width:600px) {
  .f-row {
    grid-template-columns: 1fr;
  }
}

/* ΓöÇΓöÇ each field ΓöÇΓöÇ */
.f-field {
  position: relative;
  border: 1px solid rgba(17, 17, 17, .1);
  margin: -1px 0 0 -1px;
  transition: border-color .35s, background .35s;
  background: transparent;
  overflow: hidden;
}

/* gold shimmer line at bottom on focus */
.f-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
  z-index: 2;
}

.f-field:focus-within {
  border-color: rgba(184, 150, 90, .35);
  background: rgba(255, 255, 255, .6);
  z-index: 1;
}

.f-field:focus-within::after {
  transform: scaleX(1);
}

.f-field label {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, .38);
  pointer-events: none;
  transition: top .28s cubic-bezier(.16, 1, .3, 1), font-size .28s cubic-bezier(.16, 1, .3, 1), color .28s, letter-spacing .28s;
}

.f-field input,
.f-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 42px 24px 18px;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .02em;
  resize: none;
}

.f-field textarea {
  min-height: 148px;
}

.f-field input:focus+label,
.f-field input:not(:placeholder-shown)+label,
.f-field textarea:focus+label,
.f-field textarea:not(:placeholder-shown)+label {
  top: 12px;
  font-size: 7px;
  color: var(--gold);
  letter-spacing: .28em;
}

.f-field input::placeholder,
.f-field textarea::placeholder {
  color: transparent;
}

/* ΓöÇΓöÇ phone hint ΓöÇΓöÇ */
.field-hint {
  font-size: 10px;
  color: rgba(17, 17, 17, .36);
  padding: 7px 24px 10px;
  letter-spacing: .06em;
  border-left: 1px solid rgba(17, 17, 17, .1);
  border-right: 1px solid rgba(17, 17, 17, .1);
  border-top: none;
  margin-top: -1px;
  background: rgba(248, 245, 240, .5);
}

/* ΓöÇΓöÇ consent row ΓöÇΓöÇ */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 11.5px;
  color: rgba(17, 17, 17, .45);
  padding: 22px 24px 0;
  cursor: pointer;
  line-height: 1.7;
  letter-spacing: .02em;
}

.consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid rgba(184, 150, 90, .45);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background .2s, border-color .2s;
}

.consent-label input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: 1.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* ΓöÇΓöÇ submit button ΓöÇΓöÇ */
.btn-submit {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--off);
  border: none;
  padding: 26px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
  margin-top: 24px;
  transition: color .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

.btn-submit-arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
  vertical-align: middle;
  margin-bottom: 1px;
}

.btn-submit-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn-submit:hover::before {
  transform: translateX(0);
}

.btn-submit:hover .btn-submit-arrow {
  width: 40px;
}

/* ΓöÇΓöÇ form note ΓöÇΓöÇ */
.form-note {
  font-size: 10.5px;
  color: rgba(17, 17, 17, .32);
  margin-top: 16px;
  padding: 0 4px;
  text-align: center;
  letter-spacing: .04em;
  line-height: 1.85;
}

.form-note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 150, 90, .3);
  transition: border-color .2s;
}

.form-note a:hover {
  border-color: var(--gold);
}

/* ΓöÇΓöÇ form error ΓöÇΓöÇ (override position) */
#formErrMsg {
  margin: 0;
  border-left: 2px solid #b43232;
  border-top: none;
}

/* ΓöÇΓöÇ success state ΓöÇΓöÇ */
.form-success {
  display: none;
  text-align: center;
  padding: 96px 48px;
  background: #fff;
  border: 1px solid rgba(184, 150, 90, .18);
  box-shadow: 0 8px 64px rgba(17, 17, 17, .06);
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 6px;
  color: var(--gold);
  letter-spacing: -.01em;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 2.1;
}

/* ΓöÇΓöÇΓöÇ FOOTER ΓöÇΓöÇΓöÇ */
footer {
  background: var(--ink);
  color: var(--off);
  padding: 72px 52px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

@media(max-width:768px) {
  footer {
    padding: 60px 24px 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 14px;
  width: auto;
  display: block;
  opacity: .9;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.9;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
}

.footer-social-btn svg {
  width: 15px;
  height: 15px;
}

.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 150, 90, .08);
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 22px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 12px;
  cursor: pointer;
  transition: color .25s;
  letter-spacing: .02em;
}

.footer-col li:hover {
  color: var(--off);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
  letter-spacing: .06em;
}

/* ΓöÇΓöÇΓöÇ WHATSAPP FLOAT ΓöÇΓöÇΓöÇ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 52px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 14px;
  z-index: 9000;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
  transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
  white-space: nowrap;
}

.wa-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  flex-shrink: 0;
}

.wa-text {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
}

.wa-float:hover {
  width: 180px;
  box-shadow: 0 15px 45px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.3);
  background: #2ae16f;
}

.wa-float:hover .wa-text {
  opacity: 1;
  transform: translateX(0);
}

@media(max-width:600px) {
  .wa-float {
    right: 24px;
    bottom: 24px;
  }

  .wa-float:hover {
    width: 52px;
  }

  .wa-text {
    display: none;
  }
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

/* Hide reCAPTCHA badge ΓÇö not in use */
.grecaptcha-badge {
  visibility: hidden !important;
  display: none !important;
}
