/* ===================== RESET & ROOT ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1d3053;
  --black: #0f0e0d;
  --white: #ffffff;
  --cream: #f7f4ef;
  --cream2: #efe9e0;
  --gold: #b8975a;
  --gold2: #d4b483;
  --gold3: #f0d9b0;
  --gray-light: #f0ede8;
  --gray-mid: #c8c2b8;
  --gray-dark: #6b6560;
  --text: #1e1c1a;
  --border: #e0d9d0;
  --nav-h: 84px;
  --topbar-h: 42px;
  --radius: 2px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  font-weight: 400;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Inter", sans-serif;
}
input,
select,
textarea {
  font-family: "Inter", sans-serif;
}
.serif {
  font-family: "Cormorant Garamond", serif;
}
ul {
  list-style: none;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f0ede8;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ===================== PAGE LOADER ===================== */
/* ===================== LOADER ===================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  grid-template-columns: 1fr 120px;
  transition: opacity 0.7s var(--ease);
}
#loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* LEFT PANEL */
.loader-left {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal texture */
.loader-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

.loader-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.loader-brand {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.loader-brand em {
  color: var(--gold2);
  font-style: italic;
}

.loader-service {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 52px;
}

/* PROGRESS */
.loader-progress {
  display: flex;
  align-items: center;
  gap: 16px;
}

.loader-bar {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: left;
  animation: lbar 1.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes lbar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.loader-pct {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
}

/* RIGHT ACCENT PANEL */
.loader-right {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-right-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  #loader           { grid-template-columns: 1fr 56px; }
  .loader-left      { padding: 0 8vw; }
  .loader-brand     { font-size: 36px; }
}

/* ===================== TOPBAR ===================== */
.topbar {
  height: var(--topbar-h);
  background: transparent;
  display: flex;
  align-items: center;
  transition:
    background 0.4s var(--ease),
    border 0.4s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-unit.visible .topbar,
.header-unit.scrolled .topbar {
  background: var(--cream);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.4s;
}
.header-unit.visible .topbar-left,
.header-unit.scrolled .topbar-left {
  color: var(--text);
}
.topbar-left svg {
  flex-shrink: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0;
}
.topbar-right a {
  font-size: 12.5px;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.4s,
    border 0.4s;
  white-space: nowrap;
}
.header-unit.visible .topbar-right a,
.header-unit.scrolled .topbar-right a {
  color: var(--text);
  border-right-color: var(--border);
}
.topbar-right a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.header-unit.visible .topbar-right a:first-child,
.header-unit.scrolled .topbar-right a:first-child {
  border-left-color: var(--border);
}
.topbar-right a:hover {
  color: var(--gold);
}

/* ===================== NAVBAR ===================== */
.header-unit {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s var(--ease);
}
.header-top {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.4s var(--ease),
    border 0.4s var(--ease);
}
.header-unit.visible .header-top,
.header-unit.scrolled .header-top {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  margin-right: 48px;
  height: 100%;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-logo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% + 1px);
  width: 2000px;
  background-color: var(--primary);
}
.nav-logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% + 1px);
  width: 30px;
  background-color: var(--primary);
  transform: translateX(calc(100% - 1px));
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}

.nav-logo img {
  height: 56px;
  width: auto;
  position: static;
  z-index: 9999;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  height: var(--nav-h);
  padding: 0 16px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition:
    color 0.3s,
    text-shadow 0.3s;
}
.header-unit.visible .nav-link,
.header-unit.scrolled .nav-link {
  color: var(--black);
  text-shadow: none;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-item:hover .nav-link {
  color: var(--gold);
}
.nav-item:hover .nav-link::after {
  transform: scaleX(1);
}
.nav-link .arr {
  font-size: 8px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.nav-item:hover .arr {
  transform: rotate(180deg);
}

/* Compact dropdown */
.has-dropdown {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(var(--nav-h) - 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: dropIn 0.18s var(--ease);
  z-index: 200;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.has-dropdown:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-icon-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--nav-h);
  padding: 0 14px;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s;
}
.header-unit.visible .nav-icon-btn,
.header-unit.scrolled .nav-icon-btn {
  color: var(--black);
}
.nav-icon-btn:hover {
  color: var(--gold);
}
.nav-cta-btn {
  background: var(--black);
  color: var(--white);
  padding: 13px 26px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--gold);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: 0.3s;
}
.header-unit.visible .nav-hamburger span,
.header-unit.scrolled .nav-hamburger span {
  background: var(--black);
}

/* ===================== HERO VIDEO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.3) 0%,
    rgba(10, 8, 6, 0.55) 60%,
    rgba(10, 8, 6, 0.8) 100%
  );
}
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 40px;
  width: 100%;
  max-width: 1320px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--ease) forwards;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 8vw, 90px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s var(--ease) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold3);
}
.hero-sub {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease) forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* KF Style Search Bar */
/* ===================== HERO SEARCH ===================== */
.hero-search {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--ease) forwards;
}

/* CARD - CLEAN WHITE THEME */
.hsearch-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  height: 80px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

/* FIELD */
.hsearch-field {
  display: flex;
  align-items: flex-end;
  padding: 0 24px 18px;
  min-width: 0;
  gap: 14px;
}

.hsearch-field--location { flex: 2; }
.hsearch-field--beds     { flex: 0.8; }
.hsearch-field--type     { flex: 1; }
.hsearch-field--price    { flex: 1.2; }

.hsearch-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-bottom: 2px;
}

.hsearch-field-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
}

.hsearch-field-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
  pointer-events: none;
  line-height: 1;
  font-weight: 600;
}

.hsearch-input {
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--text);
  outline: none;
  width: 100%;
  font-family: inherit;
}

.hsearch-input::placeholder { color: #bbb; }

.hsearch-select {
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23bbb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}

/* DIVIDER */
.hsearch-divider {
  width: 1px;
  background: #f0f0f0;
  align-self: stretch;
  margin: 20px 0;
  flex-shrink: 0;
}

/* SEARCH BUTTON */
.hsearch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 200px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0 4px 4px 0;
}

.hsearch-btn:hover {
  background: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-search { max-width: 900px; padding: 0 20px; }
  .hsearch-card { height: 72px; }
  .hsearch-field { padding: 0 18px 14px; }
}

@media (max-width: 880px) {
  .hsearch-card {
    flex-wrap: wrap;
    height: auto;
  }
  .hsearch-field,
  .hsearch-field--location,
  .hsearch-field--beds,
  .hsearch-field--type,
  .hsearch-field--price {
    flex: 1 1 calc(50% - 1px);
    height: 64px;
    border-bottom: 1px solid #f5f5f5;
  }
  .hsearch-divider { display: none; }
  .hsearch-btn {
    flex: 1 1 100%;
    height: 56px;
    border-radius: 0 0 4px 4px;
    width: auto;
  }
}

@media (max-width: 580px) {
  .hsearch-field,
  .hsearch-field--location,
  .hsearch-field--beds,
  .hsearch-field--type,
  .hsearch-field--price {
    flex: 1 1 100%;
  }
}

/* Hero scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
.scroll-hint svg {
  opacity: 0.5;
}

/* ===================== STATS BAND ===================== */
.stats-band {
  background: var(--gold);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
}
.stat-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.stat-cell:last-child {
  border-right: none;
}
.stat-cell:hover {
  background: rgba(0, 0, 0, 0.06);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
  display: block;
}

/* ===================== SECTION BASE ===================== */
section {
  padding: 90px 0;
}
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.sec-head {
  text-align: center;
  margin-bottom: 54px;
}
.sec-eye {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
}
.sec-sub {
  font-size: 13.5px;
  color: var(--gray-dark);
  margin-top: 14px;
  line-height: 1.75;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.sec-dark .sec-title {
  color: var(--white);
}
.sec-dark .sec-sub {
  color: rgba(255, 255, 255, 0.5);
}
.sec-cream {
  background: var(--cream);
}
.sec-dark {
  background: var(--black);
}

/* ===================== PROPERTY CARDS ===================== */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prop-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.prop-thumb {
  display: block;
  position: relative;
  height: 248px;
  overflow: hidden;
}
.prop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.prop-card:hover .prop-thumb img {
  transform: scale(1.06);
}
.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  font-weight: 500;
}
.prop-fav {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.prop-fav:hover {
  background: var(--white);
}
.prop-fav.on svg path {
  fill: var(--gold);
  stroke: var(--gold);
}
.prop-body {
  padding: 20px 22px 22px;
}
.prop-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.prop-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 3px;
}
.prop-loc {
  font-size: 12px;
  color: var(--gray-dark);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.prop-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--gray-dark);
  border-top: 1px solid var(--border);
  padding-top: 13px;
}
.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===================== SPLIT SECTIONS ===================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split-media {
  overflow: hidden;
  min-height: 520px;
  position: relative;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}
.split-eye {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.split-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
}
.split-body {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 28px;
}
.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 12px 30px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s;
  cursor: pointer;
}
.btn-dark:hover {
  background: var(--gold);
}
.btn-outline {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 11px 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-outline.light {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline.light:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 12px 30px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s;
  cursor: pointer;
}
.btn-gold:hover {
  background: #a07a3e;
}
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.svc-card {
  background: var(--white);
  padding: 38px 32px;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}
.svc-card:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.svc-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.svc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 11px;
  color: var(--black);
}
.svc-text {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 18px;
}
.svc-link {
  font-size: 12px;
  letter-spacing: 0.07em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.svc-card:hover .svc-link {
  gap: 12px;
}

/* ===================== IMAGE GALLERY ===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item:first-child {
  grid-column: 1/3;
  grid-row: 1/3;
}
.gallery-caption {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-caption {
  background: rgba(0, 0, 0, 0.3);
}
.gallery-caption span {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-caption span {
  opacity: 1;
  transform: translateY(0);
}


/* ===================== INSIGHTS ===================== */

/* ===================== INSIGHTS ===================== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.insight-card {
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.insight-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
}
.insight-thumb {
  height: 208px;
  overflow: hidden;
}
.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.insight-card:hover .insight-thumb img {
  transform: scale(1.05);
}
.insight-body {
  padding: 20px 20px 22px;
}
.insight-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.insight-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--black);
}
.insight-meta {
  font-size: 12px;
  color: var(--gray-dark);
}

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  cursor: pointer;
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-avatar img {
  transform: scale(1.05);
}
.team-name {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 3px;
}
.team-role {
  font-size: 12px;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
}
.team-email {
  font-size: 11.5px;
  color: var(--gold);
  margin-top: 6px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-slider {
  position: relative;
}
.tes-slide {
  padding: 0 60px;
  text-align: center;
}
.tes-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 28px;
}
.tes-author {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.tes-controls {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.tes-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tes-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.tes-dots .tns-nav-active {
  background: var(--gold);
}
.tes-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.tes-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.tes-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===================== OFFICES ===================== */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.office-cell {
  padding: 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}
.office-cell:hover {
  background: var(--cream);
}
.office-cell:nth-child(4n) {
  border-right: none;
}
.office-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.office-addr {
  font-size: 12px;
  color: var(--gray-dark);
  line-height: 1.55;
}
.office-ph {
  font-size: 12px;
  color: var(--gold);
  margin-top: 8px;
}

/* ===================== MAP SECTION ===================== */
.map-section {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.02);
}
.map-overlay {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  padding: 32px;
  max-width: 280px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.map-overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  margin-bottom: 10px;
}
.map-overlay p {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.7;
}
.map-overlay a {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================== NEWSLETTER ===================== */
.newsletter-wrap {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-form {
  display: flex;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  padding: 14px 18px;
  color: var(--white);
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form button {
  background: var(--gold);
  color: var(--white);
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #a07a3e;
}

/* ===================== CONTACT FORM ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  transition: border 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 24px;
}
.contact-detail {
  margin-bottom: 24px;
}
.contact-detail h5 {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.contact-detail p {
  font-size: 13.5px;
  color: var(--gray-dark);
  line-height: 1.7;
}
.contact-info-box {
  background: var(--cream);
  padding: 28px;
  margin-top: 28px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.footer-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-wrap {
  max-width: 400px;
}

.footer-logo {
  font-size: 38px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--gold);
  font-weight: 300;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.footer-newsletter {
  max-width: 440px;
  width: 100%;
}

.footer-newsletter h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--gold2);
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h5 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-column address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-column address a {
  color: inherit;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 151, 90, 0.05);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  color: inherit;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: var(--white);
}

/* ===================== PAGE SYSTEM ===================== */
.page {
  display: block;
}
.page-hero {
  padding: calc(var(--topbar-h) + var(--nav-h) + 36px) 0 74px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image:
    linear-gradient(
      to bottom,
      rgba(10, 8, 6, 0.22) 0%,
      rgba(10, 8, 6, 0.5) 60%,
      rgba(10, 8, 6, 0.72) 100%
    ),
    var(--bg, url('https://images.unsplash.com/photo-1448630360428-65456885c650?w=1800&q=70'));
  background-size: cover;
  background-position: center;
  filter: blur(0);
  transform: scale(1.03);
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.08);
  opacity: 1;
  -webkit-backdrop-filter: blur(18px) saturate(140%) contrast(105%);
  backdrop-filter: blur(18px) saturate(140%) contrast(105%);
  z-index: 0;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .page-hero::before {
    filter: blur(7px);
    transform: scale(1.06);
  }

  .page-hero::after {
    background-color: rgba(255, 255, 255, 0.12);
  }
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
}

.filter-bar {
  background: var(--primary);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: calc(var(--nav-h) + var(--topbar-h));
  z-index: 80;
}

.filter-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 52px;
  overflow: hidden;
}

.filter-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  padding: 0 24px 0 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  margin-right: 4px;
  flex-shrink: 0;
}

.filter-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.filter-field:hover {
  background: rgba(255, 255, 255, 0.04);
}

.filter-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.filter-field:focus-within::after {
  transform: scaleX(1);
}

.filter-field-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
  pointer-events: none;
}

.filter-sel {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 13px;
  font-family: "Inter", sans-serif;
  outline: none;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
  min-width: 100px;
  padding: 0;
}

.filter-sel option {
  background: var(--primary);
  color: var(--white);
}

.filter-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  white-space: nowrap;
}

.filter-count span {
  color: var(--gold2);
  font-weight: 500;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .filter-bar {
    position: static;
  }
  .filter-row {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
    gap: 0;
  }
  .filter-label,
  .filter-divider {
    display: none;
  }
  .filter-field {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
  }
  .filter-count {
    flex: 1 1 100%;
    justify-content: center;
    padding: 10px 0 0;
    margin-left: 0;
  }
}

/* ===================== MOBILE ===================== */
/* ===================== FLOATING CTA ===================== */
.floating-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  background-color: rgba(11, 46, 89, 0.4); /* Transparent Navy Blue */
  color: var(--white);
  padding: 24px 14px;
  font-size: 13.5px;
  letter-spacing: 0.15em;
  font-weight: 500;
  cursor: pointer;
  z-index: 9999;
  text-transform: uppercase;
  transition:
    background-color 0.3s,
    padding 0.3s,
    opacity 0.3s;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.floating-cta:hover {
  background-color: rgba(11, 46, 89, 1); /* Solid Navy Blue */
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
  padding: 28px 14px;
}

@media (max-width: 1024px) {
  .props-grid,
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-h: 70px;
    --topbar-h: 0px;
  }
  .header-unit {
    position: fixed;
  }
  .topbar {
    display: none;
  }
  .nav-menu,
  .nav-right .nav-icon-btn,
  .nav-cta-btn {
    display: none;
  }
  .nav-hamburger {
    display: flex;
    padding: 12px;
  }
  .nav-logo img {
    height: 48px;
  }
  .nav-wrap {
    padding: 0 24px;
    justify-content: space-between;
    height: var(--nav-h);
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-title {
    font-size: 38px;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 13px;
    margin-bottom: 32px;
  }
  .hero-search-kf {
    align-items: center;
    margin-top: 30px !important;
  }
  .search-bar-kf {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 15px !important;
    background: transparent !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .search-input-kf {
    height: 60px !important;
    width: 100% !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    flex: none !important; /* Prevent it from being crushed */
    display: flex !important;
    align-items: center !important;
  }
  .search-input-kf input {
    font-size: 17px !important;
    height: 100% !important;
    padding: 0 15px !important;
  }
  .btn-kf {
    height: 60px !important;
    width: 100% !important;
    font-size: 16px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(219, 50, 61, 0.2) !important;
    flex: none !important;
  }
  .scope-toggles {
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    gap: 30px;
  }
  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 70px 0;
  }
  .props-grid,
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-content {
    padding: 48px 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cell {
    padding: 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-cell:nth-child(even) {
    border-right: none;
  }
  .stat-num {
    font-size: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .tes-slide {
    padding: 0 24px;
  }
  .footer-hero {
    flex-direction: column;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-legal {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .cookie-dialog {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 20px;
  }
  .cookie-footer {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-main-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .floating-cta {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(32px, 10vw, 40px);
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 13px;
    margin-bottom: 32px;
  }
  .sec-title {
    font-size: 30px;
  }
  .nav-logo img {
    height: 40px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* Extreme small phones */
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }
  .sec-title {
    font-size: 26px;
  }
  .scope-radio {
    font-size: 13px;
    gap: 6px;
  }
  .btn-kf {
    padding: 0 20px;
  }
}

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-l.in {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-r.in {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===================== MOBILE MENU ===================== */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
#mobile-menu.on {
  transform: translateX(0);
  visibility: visible;
}
.mob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mob-logo {
  display: flex;
  align-items: center;
}
.mob-logo img {
  height: 48px;
  width: auto;
}
.mob-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.mob-close:hover {
  background: var(--border);
}
.mob-nav {
  padding: 24px 0;
}
.mob-nav-item {
  border-bottom: 1px solid var(--border-light);
}
.mob-nav-item:last-child {
  border-bottom: none;
}
.mob-nav-link-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-nav a {
  display: block;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
  transition: all 0.3s;
  flex: 1;
}
.mob-drop-trigger {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--gray-dark);
  transition: transform 0.3s var(--ease);
}
.mob-nav-item.open .mob-drop-trigger {
  transform: rotate(180deg);
  color: var(--gold);
}
.mob-dropdown {
  max-height: 0;
  overflow: hidden;
  background: var(--gray-light);
  transition: max-height 0.4s var(--ease);
}
.mob-nav-item.open .mob-dropdown {
  max-height: 500px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.mob-dropdown a {
  padding: 14px 44px;
  font-size: 16px;
  opacity: 0.8;
  border-bottom: 1px solid var(--border-light);
}
.mob-dropdown a:last-child {
  border-bottom: none;
}
.mob-nav a:hover {
  color: var(--gold);
}

/* ===================== COOKIE DIALOG ===================== */
.cookie-dialog {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
  pointer-events: none;
  border-radius: 4px;
}

.cookie-dialog.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-content {
  padding: 24px;
}

.cookie-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin-bottom: 16px;
}

.cookie-header h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--black);
  letter-spacing: 0.02em;
}

.cookie-header p {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cookie-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-footer button {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

#cookie-accept {
  background: var(--gold);
  color: var(--white);
}

#cookie-accept:hover {
  background: #a07a3e;
}

#cookie-decline {
  background: var(--border);
  color: var(--gray-dark);
}

#cookie-decline:hover {
  background: #e0e0e0;
}

/* ===================== BACK TO TOP ===================== */
#btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 42px;
  height: 42px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.3s,
    background 0.2s;
  pointer-events: none;
}
#btt.show {
  opacity: 1;
  pointer-events: all;
}
#btt:hover {
  background: var(--gold);
}

/* notification toast */
#toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 9999;
  border-left: 3px solid var(--gold);
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
