/* =============================================
   OLA'KEY CONCIERGERIE — Main Stylesheet
   Colors: #0d0d0d (bg), #C9A227 (gold), #f0ede8 (text)
   ============================================= */

:root {
  --gold:        #C9A227;
  --gold-light:  #e2c060;
  --gold-dim:    rgba(201, 162, 39, 0.15);
  --gold-border: rgba(201, 162, 39, 0.25);
  --bg:          #0d0d0d;
  --bg-dark:     #080808;
  --bg-card:     #141414;
  --bg-card2:    #1a1a1a;
  --text:        #f0ede8;
  --text-muted:  #9a9590;
  --radius:      4px;
  --transition:  0.3s ease;
}

/* ==============================================
   KEYFRAME ANIMATIONS
   ============================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  from { width: 0; }
  to   { width: 48px; }
}

@keyframes bgZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

@keyframes iconPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}

@keyframes borderSweep {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(250%) skewX(-15deg); }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ---- Container ---- */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ---- Sections ---- */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); }

#about, #services, #how-it-works, #estimation {
  scroll-margin-top: 80px;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: #0d0d0d;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  border: 1px solid rgba(240, 237, 232, 0.3);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text); }

.btn-outline-gold {
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.btn-outline-gold:hover { border-color: var(--gold); background: var(--gold-dim); }

.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 0.95rem; }

/* ==============================================
   HEADER
   ============================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: padding var(--transition), background var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  padding: 6px 0;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
}

.header-inner {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-apos {
  color: var(--gold);
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

.logo-img { max-height: 150px; width: auto; transition: max-height var(--transition); }

.site-header.scrolled .logo-img { max-height: 48px; }
.site-header.scrolled .logo-text { font-size: 1.25rem; }
.site-header.scrolled .logo-sub  { display: none; }
.footer-logo-img { max-height: 180px; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: #0d0d0d !important;
  padding: 10px 22px;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-light) !important; color: #0d0d0d !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #141008 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,162,39,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,162,39,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 92%;
  padding: 0;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  margin-bottom: 0;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-apos {
  color: var(--gold);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-top: 4px;
  margin-bottom: 28px;
  line-height: 1.15;
  position: relative;
  display: inline-block;
}

.hero-tagline em {
  font-style: italic;
  color: var(--gold);
  position: relative;
  display: inline-block;
  font-style: normal;
}

.hero-tagline em::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: -4%;
  width: 108%;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9C30 5 80 2 150 3C220 4 270 7 298 10' stroke='%23C9A227' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(240, 237, 232, 0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  border-radius: 50px;
  padding: 15px 36px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==============================================
   ABOUT
   ============================================== */
/* ==============================================
   ABOUT
   ============================================== */
.about { background: var(--bg); }

/* ---- Top panel: full-bleed background ---- */
.about-top {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48% 1fr;
}

.about-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.6) 45%, rgba(10,10,10,0.15) 75%, rgba(10,10,10,0.05) 100%);
}

.about-left {
  position: relative;
  z-index: 2;
  padding: 80px 48px 64px max(4vw, calc((100vw - 1200px) / 2 + 24px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 10px 0 28px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 28px;
}
.about-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
  font-size: 1.25em;
  line-height: 1.1;
  margin-top: 4px;
}

.about-key-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.about-key-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-border), transparent);
}
.about-key-line:first-child {
  background: linear-gradient(to left, var(--gold-border), transparent);
}
.about-key-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.about-intro {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.95;
  max-width: 500px;
  margin-bottom: 36px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-feature {
  border-left: 2px solid var(--gold-border);
  padding-left: 20px;
  transition: border-color var(--transition);
}
.about-feature:hover { border-color: var(--gold); }

.about-feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-feature p {
  font-size: 0.875rem;
  color: rgba(240, 237, 232, 0.6);
  line-height: 1.8;
}


.about-photo-logo {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 14px 20px;
}
.about-logo-img  { max-height: 70px; width: auto; }
.about-logo-text { font-size: 1.3rem; }

/* ---- Cards row ---- */
.about-cards-wrap {
  padding: 48px max(4vw, calc((100vw - 1200px) / 2 + 24px)) 80px;
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -1px;
}

.about-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 40px 28px 32px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-card:hover { border-color: var(--gold); transform: translateY(-5px); }

.about-card--featured {
  background: linear-gradient(160deg, #1c1506 0%, #141414 70%);
  border-color: var(--gold);
}

.about-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Jost', sans-serif;
}

.about-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(201,162,39,0.07);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.about-icon-wrap svg { width: 28px; height: 28px; }

.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.about-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.card-arrow {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 24px;
  transition: transform var(--transition);
}
.about-card:hover .card-arrow { transform: translateX(5px); }

/* ==============================================
   SERVICES
   ============================================== */
.services {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 80px 0;
}

.services-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  animation: bgZoom 14s ease-in-out infinite alternate;
  transform-origin: center right;
}

.services-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.88) 40%, rgba(8,8,8,0.6) 70%, rgba(8,8,8,0.4) 100%);
}

.services-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* Header */
.services-header {
  margin-bottom: 56px;
  text-align: center;
}

.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin: 12px 0 16px;
  text-transform: none;
}

.services-title-line {
  width: 0;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
  transition: width 0.8s ease 0.3s;
}
.services-header.in-view .services-title-line {
  width: 48px;
}

.services-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Entrance animation — triggered by JS adding .in-view */
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Photo slot */
.service-card-photo {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 12px 12px 0 0;
}

.service-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.service-card:hover .service-photo-img {
  transform: scale(1.07);
}

/* Per-card photo adjustments */
.services-grid .service-card:nth-child(2) .service-photo-img {
  object-fit: cover;
  object-position: center center;
}
.services-grid .service-card:nth-child(3) .service-photo-img {
  object-position: center top;
}

.service-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1505 50%, #0f0f0f 100%);
  border-bottom: 1px solid var(--gold-border);
}
.service-photo-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--gold-border);
}
.service-photo-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(201,162,39,0.3);
  font-family: 'Jost', sans-serif;
}

/* Card body */
.service-card-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.service-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Animated gradient border on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, var(--gold));
  background-size: 200% 200%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease;
}
.service-card.in-view:hover::before {
  opacity: 1;
  animation: borderSweep 2s linear infinite;
}

/* Shimmer light sweep on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.04), transparent);
  opacity: 0;
  pointer-events: none;
}
.service-card.in-view:hover::after {
  opacity: 1;
  animation: shimmer 0.8s ease forwards;
}

/* Inner content sits above pseudo-elements */
.service-card > * { position: relative; z-index: 1; }
.service-card-body > * { position: relative; z-index: 1; }

.service-card.in-view:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201,162,39,0.08);
}

/* Icon */
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,162,39,0.07);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s ease;
}
.service-card.in-view:hover .service-icon-wrap {
  background: rgba(201,162,39,0.14);
  border-color: var(--gold);
  transform: scale(1.1);
  animation: iconPulse 1s ease;
}
.service-icon-wrap svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.service-card.in-view:hover h3 { color: var(--gold-light); }

.service-card p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ==============================================
   HOW IT WORKS
   ============================================== */
.how-it-works {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.hiw-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hiw-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.80) 40%,
    rgba(8,8,8,0.88) 100%
  );
}

.hiw-container {
  position: relative;
  z-index: 2;
}

.hiw-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.hiw-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hiw-title em {
  font-style: italic;
  color: var(--gold);
}

.hiw-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Steps row */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 24px;
}

.hiw-step { text-align: center; }

.hiw-step-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hiw-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hiw-icon-circle svg { width: 20px; height: 20px; }
.hiw-step:hover .hiw-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(201,162,39,0.12);
}

.hiw-step-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--gold-border);
  padding: 5px 14px;
  border-radius: 20px;
}

.hiw-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.hiw-step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin: 0 auto;
}

/* Dashed connector arrow */
.hiw-connector {
  display: flex;
  align-items: center;
  height: 46px;
  width: 80px;
}
.hiw-connector::before {
  content: '';
  display: block;
  flex: 1;
  border-top: 2px dashed rgba(201,162,39,0.35);
}
.hiw-connector::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid rgba(201,162,39,0.35);
}

/* ==============================================
   PRICING
   ============================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-grid--single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin-inline: auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); }

.pricing-card--featured {
  background: linear-gradient(160deg, #1c1506 0%, #141414 60%);
  border-color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}
.pricing-icon svg { width: 100%; height: 100%; }

.pack-name {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 8px;
}

.pack-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pack-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-border);
}
.pack-price span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
}
.pack-price small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pack-features {
  margin-bottom: 32px;
}
.pack-features li {
  padding: 8px 0;
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pack-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ==============================================
   PRICING + ESTIMATION COMBINED
   ============================================== */
.pricing-estimation { background: var(--bg); }

.pricing-est-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.estimation-col-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin: 12px 0 10px;
  line-height: 1.2;
}

.estimation-col-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.estimation-col .estimation-form {
  max-width: 100%;
}

.estimation-form--simple {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.estimation-form--simple .form-submit {
  margin-top: 8px;
}

/* ==============================================
   PROPERTIES SLIDER
   ============================================== */
.properties-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.property-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.property-card:hover { border-color: var(--gold); }

.property-img {
  height: 220px;
  overflow: hidden;
}
.property-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-card:hover .property-img img { transform: scale(1.05); }

.property-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card2);
  color: var(--text-muted);
}
.property-img--placeholder svg { width: 48px; height: 48px; opacity: 0.3; }

.property-info { padding: 24px; }
.property-info h3 { font-size: 1.2rem; margin-bottom: 6px; }

.prop-city { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 10px; }

.prop-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.prop-price { color: var(--gold); }

.prop-excerpt { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); }
.slider-btn svg { width: 18px; height: 18px; }

.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--gold); opacity: 1; width: 20px; border-radius: 3px; }

.properties-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.properties-empty p { margin-bottom: 24px; font-size: 1rem; }

/* ==============================================
   ESTIMATION FORM
   ============================================== */
.estimation-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full { margin-bottom: 20px; }

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,149,144,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { text-align: center; margin-top: 32px; }

.form-feedback {
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-align: center;
}
.form-feedback.success { background: rgba(201,162,39,0.1); border: 1px solid var(--gold-border); color: var(--gold); }
.form-feedback.error   { background: rgba(200,50,50,0.1);  border: 1px solid rgba(200,50,50,0.3); color: #e07070; }

/* ==============================================
   NEWSLETTER
   ============================================== */
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
}

.newsletter-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}
.newsletter-text p { color: var(--text-muted); font-size: 0.95rem; }

.newsletter-input-wrap {
  display: flex;
  gap: 0;
}
.newsletter-input-wrap input {
  flex: 1;
  background: var(--bg-card2);
  border: 1px solid var(--gold-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
}
.newsletter-input-wrap input::placeholder { color: rgba(154,149,144,0.5); }
.newsletter-input-wrap input:focus { outline: none; border-color: var(--gold); }
.newsletter-input-wrap .btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  white-space: nowrap;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--gold-border);
}

.footer-inner {
  width: min(1200px, 92%);
  margin-inline: auto;
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo-text { font-size: 2rem; }
.footer-tagline { margin-top: 12px; color: var(--text-muted); font-size: 0.875rem; }

.footer-links h4,
.footer-contact h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-links ul li { margin-bottom: 10px; }
.footer-links a,
.footer-contact a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }

.footer-contact p { margin-bottom: 10px; }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom p {
  width: min(1200px, 92%);
  margin-inline: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==============================================
   ANIMATIONS / REVEAL
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
  .about-top        { grid-template-columns: 55% 1fr; }
  .about-cards      { grid-template-columns: 1fr 1fr; }
  .services-grid  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hiw-connector  { width: 48px; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .property-card  { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* header */
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .site-nav.open { opacity: 1; pointer-events: all; }
  .site-nav ul { flex-direction: column; gap: 32px; text-align: center; }
  .site-nav a { font-size: 1rem; }

  /* about */
  .about-top        { grid-template-columns: 1fr; min-height: 460px; }
  .about-left       { padding: 80px 7vw 64px; }
  .about-bg-overlay { background: rgba(10,10,10,0.94); }
  .about-cards-wrap { padding: 48px 6vw 60px; }
  .about-cards      { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  /* services */
  .services-grid  { grid-template-columns: 1fr; }

  /* how it works */
  .hiw-steps      { grid-template-columns: 1fr; gap: 48px 0; }
  .hiw-connector  { display: none; }

  /* properties */
  .property-card  { min-width: 85%; }

  /* pricing + estimation */
  .pricing-est-grid { grid-template-columns: 1fr; }

  /* form */
  .form-row { grid-template-columns: 1fr; }

  /* newsletter */
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
  }
  .newsletter-input-wrap { flex-direction: column; gap: 12px; }
  .newsletter-input-wrap input { border-right: 1px solid var(--gold-border); border-radius: var(--radius); }
  .newsletter-input-wrap .btn { border-radius: var(--radius); }

  /* footer */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-title { font-size: 3.5rem; }
  .property-card { min-width: 90%; }
}
