@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500;600&display=swap');

/* ═════════════════════════════════════════════════════
   DESIGN TOKENS
   ═════════════════════════════════════════════════════ */
:root {
  /* ── Neutrals ── */
  --color-white:          #FFFFFF;
  --color-ivory:          #FAF8F5;
  --color-warm-bg:        #F6F4F0;
  --color-cream:          #F2ECE1;
  --color-gray-100:       #EDEBE7;
  --color-gray-200:       #E2E0DA;
  --color-gray-300:       #C9C5BE;
  --color-text-secondary: #6B6860;
  --color-text-primary:   #2C2B29;
  --color-charcoal:       #2C2A27;
  --color-dark:           #1A1916;

  /* ── Golds ── */
  --color-gold-light:     #E8D5A0;
  --color-gold-saturated: #B8933C;
  --color-gold-deep:      #9C7A32;
  --color-gold-rich:      #B8965C;
  --color-gold-muted:     rgba(184, 150, 92, 0.10);
  --color-gold-border:    rgba(184, 150, 92, 0.25);

  /* ── Typography ── */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  /* ── Motion ── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.4s var(--ease-out);
  --transition-fast: all 0.25s var(--ease-out);

  /* ── Spacing ── */
  --section-pad: clamp(3rem, 8vh, 6rem);
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--color-ivory);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* ═════════════════════════════════════════════════════
   AMBIENT BACKGROUND
   ═════════════════════════════════════════════════════ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 45%, rgba(250, 248, 245, 1) 0%, rgba(242, 236, 225, 0.85) 100%),
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(184, 150, 92, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(184, 150, 92, 0.05) 0%, transparent 55%);
  animation: ambient-shift 12s ease-in-out infinite alternate;
}

@keyframes ambient-shift {
  0%   { opacity: 0.85; }
  100% { opacity: 1; }
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 85% at 50% 50%, transparent 30%, rgba(44, 42, 39, 0.04) 100%);
}

.bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  mix-blend-mode: multiply;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
}

.bg-shape--1 {
  top: -5%;
  left: -3%;
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  border: 1.5px solid var(--color-gold-saturated);
  animation: float-rotate 20s linear infinite;
}

.bg-shape--2 {
  top: 10%;
  right: -5%;
  width: clamp(200px, 25vw, 400px);
  height: clamp(200px, 25vw, 400px);
  border: 1.5px solid var(--color-gold-deep);
  animation: float-rotate 25s linear infinite reverse;
}

.bg-shape--3 {
  bottom: 10%;
  right: -4%;
  width: clamp(350px, 45vw, 700px);
  height: clamp(350px, 45vw, 700px);
  border: 1.5px solid var(--color-gold-saturated);
  animation: float-rotate 22s linear infinite;
}

.bg-shape--4 {
  bottom: -4%;
  left: 5%;
  width: clamp(220px, 28vw, 450px);
  height: clamp(220px, 28vw, 450px);
  border: 1.5px solid var(--color-gold-deep);
  animation: float-rotate 28s linear infinite reverse;
}

@keyframes float-rotate {
  0%   { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(10px, -15px) rotate(120deg); }
  66%  { transform: translate(-8px, 10px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

.bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 5s ease-in-out infinite;
}
.particle:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; }
.particle:nth-child(2) { top: 22%; left: 82%; animation-delay: 0.7s; width: 2px; height: 2px; }
.particle:nth-child(3) { top: 45%; left: 5%;  animation-delay: 1.4s; width: 4px; height: 4px; }
.particle:nth-child(4) { top: 65%; left: 78%; animation-delay: 2.1s; width: 2px; height: 2px; }
.particle:nth-child(5) { top: 35%; left: 90%; animation-delay: 2.8s; }
.particle:nth-child(6) { top: 78%; left: 18%; animation-delay: 3.5s; width: 4px; height: 4px; }
.particle:nth-child(7) { top: 55%; left: 60%; animation-delay: 4.2s; width: 2px; height: 2px; }
.particle:nth-child(8) { top: 88%; left: 45%; animation-delay: 4.9s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
  25%      { opacity: 0.5; transform: scale(1) translateY(-20px); }
  50%      { opacity: 0; transform: scale(0.5) translateY(-40px); }
}

/* ── Corner Decorations ── */
.bg-corner {
  position: fixed;
  width: 50px;
  height: 50px;
  opacity: 0.14;
  z-index: 9999;
  pointer-events: none;
}
.bg-corner--tl { top: 1.5rem; left: 1.5rem; border-top: 1px solid var(--color-gold-saturated); border-left: 1px solid var(--color-gold-saturated); }
.bg-corner--tr { top: 1.5rem; right: 1.5rem; border-top: 1px solid var(--color-gold-saturated); border-right: 1px solid var(--color-gold-saturated); }
.bg-corner--bl { bottom: 1.5rem; left: 1.5rem; border-bottom: 1px solid var(--color-gold-saturated); border-left: 1px solid var(--color-gold-saturated); }
.bg-corner--br { bottom: 1.5rem; right: 1.5rem; border-bottom: 1px solid var(--color-gold-saturated); border-right: 1px solid var(--color-gold-saturated); }

/* ═════════════════════════════════════════════════════
   HEADER
   ═════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem var(--container-pad);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.site-header--scrolled {
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(184, 150, 92, 0.1);
  padding: 0.6rem var(--container-pad);
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo-img {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  transition: var(--transition);
}

.site-header__logo:hover .site-header__logo-img {
  filter: drop-shadow(0 2px 12px rgba(184, 150, 92, 0.2));
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-header__nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.site-header__nav-dot {
  width: 5px;
  height: 5px;
  background: var(--color-gold-saturated);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(0.6); }
}

.site-header__nav-link {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--color-gold-border);
  border-radius: 100px;
  transition: var(--transition);
}

.site-header__nav-link:hover {
  background: var(--color-gold-saturated);
  border-color: var(--color-gold-saturated);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(184, 150, 92, 0.25);
}

/* ═════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + 2rem) var(--container-pad) 2rem;
}

.hero__content {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 3rem 4rem;
}

/* ── Text Column ── */
.hero__text {
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.35rem 1rem 0.35rem 0.7rem;
  background: var(--color-gold-muted);
  border: 1px solid var(--color-gold-border);
  border-radius: 100px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold-saturated);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(184, 150, 92, 0.4);
}

.hero__badge-text {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 1vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 0.8rem;
}

.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.hero__heading em {
  font-style: italic;
  color: var(--color-gold-deep);
  font-weight: 400;
  position: relative;
}

.hero__heading em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold-saturated), transparent);
  opacity: 0.3;
}

.hero__description {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__contact-line {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

/* ── Primary Button ── */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-gold-saturated) 0%, var(--color-gold-deep) 100%);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.8rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(184, 150, 92, 0.25);
}

.btn-primary-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-saturated) 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 150, 92, 0.4);
  color: var(--color-white);
}

.btn-primary-gold:hover::before { opacity: 1; }

.btn-primary-gold span,
.btn-primary-gold svg { position: relative; z-index: 1; }

.btn-primary-gold svg { transition: transform 0.3s ease; }
.btn-primary-gold:hover svg { transform: translateX(3px); }

/* ── Secondary Button ── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  padding: 0.72rem 1.6rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--color-gold-saturated);
  color: var(--color-gold-deep);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(184, 150, 92, 0.1);
}

/* ═════════════════════════════════════════════════════
   HERO VISUAL — Image Gallery
   ═════════════════════════════════════════════════════ */
.hero__visual {
  position: relative;
}

.hero__gallery {
  position: relative;
}

.hero__gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 24px 80px rgba(44, 42, 39, 0.12),
    0 8px 32px rgba(184, 150, 92, 0.08);
  border: 1px solid rgba(184, 150, 92, 0.15);
}

.hero__gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero__gallery-img--active {
  opacity: 1;
  transform: scale(1);
}

.hero__gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(26, 25, 22, 0.35) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero__gallery-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 60%
  );
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── Gallery Dots ── */
.hero__gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero__gallery-dot {
  width: 28px;
  height: 3px;
  border-radius: 100px;
  background: var(--color-gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero__gallery-dot--active {
  width: 44px;
  background: var(--color-gold-saturated);
}

.hero__gallery-dot:hover {
  background: var(--color-gold-deep);
}

/* ── Floating Cards on Hero Image ── */
.hero__float-card {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 150, 92, 0.2);
  box-shadow: 0 8px 32px rgba(44, 42, 39, 0.1);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-primary);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero__float-card-icon {
  color: var(--color-gold-saturated);
  flex-shrink: 0;
}

.hero__float-card--1 {
  top: 3%;
  right: 8%;
  animation: float-1 7s ease-in-out infinite;
}

.hero__float-card--2 {
  bottom: 18%;
  left: -6%;
  animation: float-2 8s ease-in-out infinite;
}

.hero__float-card--3 {
  bottom: -4%;
  right: 12%;
  animation: float-3 6.5s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-6px, -10px) rotate(-1deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(8px, -6px) rotate(1deg); }
}

@keyframes float-3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-4px, 5px); }
}

/* ═════════════════════════════════════════════════════
   STATS BAR
   ═════════════════════════════════════════════════════ */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 2.5rem var(--container-pad);
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stats-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.stat-item__value {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--color-gold-deep);
  line-height: 1.1;
  display: inline;
}

.stat-item__plus {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--color-gold-saturated);
  line-height: 1;
  display: inline;
}

.stat-item__label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  text-align: center;
}

.stat-item__divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--color-gray-300), transparent);
}

/* ═════════════════════════════════════════════════════
   SERVICES SECTION
   ═════════════════════════════════════════════════════ */
.services {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--container-pad);
}

.services__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 0.75rem;
}

.services__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.services__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  padding: 2rem 1.5rem 2.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 150, 92, 0.12);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-saturated), var(--color-gold-light));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(184, 150, 92, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(184, 150, 92, 0.1), 0 4px 16px rgba(44, 42, 39, 0.06);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-gold-muted);
  border: 1px solid var(--color-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon-wrap {
  background: linear-gradient(135deg, var(--color-gold-saturated), var(--color-gold-deep));
  border-color: transparent;
}

.service-card__icon {
  color: var(--color-gold-saturated);
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  color: var(--color-white);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.service-card__desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.service-card__number {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-gold-saturated);
  opacity: 0.08;
  line-height: 1;
  transition: var(--transition);
}

.service-card:hover .service-card__number {
  opacity: 0.15;
}

/* ═════════════════════════════════════════════════════
   MARQUEE
   ═════════════════════════════════════════════════════ */
.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  background: rgba(255, 255, 255, 0.3);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-secondary);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.marquee__sep {
  color: var(--color-gold-saturated);
  font-size: 0.5rem;
  opacity: 0.5;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═════════════════════════════════════════════════════
   CTA / NEWSLETTER SECTION
   ═════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--container-pad);
}

.cta-section__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 150, 92, 0.15);
  box-shadow: 0 16px 64px rgba(184, 150, 92, 0.06);
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 92, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0%   { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.cta-section__label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-section__desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  position: relative;
}

.cta-section__form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}

.cta-section__input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text-primary);
  outline: none;
  transition: var(--transition);
}

.cta-section__input::placeholder {
  color: var(--color-gray-300);
}

.cta-section__input:focus {
  border-color: var(--color-gold-saturated);
  box-shadow: 0 0 0 3px var(--color-gold-muted);
}

.btn-primary-gold--form {
  border-radius: 8px;
  padding: 0.75rem 1.4rem;
  font-size: 0.68rem;
}

/* ═════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-gray-200);
  padding: 2.5rem var(--container-pad) 1.5rem;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-footer__brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.site-footer__logo {
  width: 100px;
  height: auto;
}

.site-footer__tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  transition: var(--transition);
}

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

.site-footer__sep {
  color: var(--color-gray-300);
  font-size: 0.6rem;
}

.site-footer__copy {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
}

.site-footer__copy-brand {
  color: var(--color-gold-deep);
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   ═════════════════════════════════════════════════════ */
.js .entrance {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.js .entrance.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .entrance--scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.js .entrance--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.entrance--d1 { transition-delay: 0.08s; }
.entrance--d2 { transition-delay: 0.18s; }
.entrance--d3 { transition-delay: 0.28s; }
.entrance--d4 { transition-delay: 0.38s; }
.entrance--d5 { transition-delay: 0.5s; }
.entrance--d6 { transition-delay: 0.6s; }

/* ── Scroll Reveal ── */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* ═════════════════════════════════════════════════════
   SELECTION & FOCUS
   ═════════════════════════════════════════════════════ */
::selection {
  background: rgba(184, 150, 92, 0.18);
  color: var(--color-dark);
}

:focus-visible {
  outline: 2px solid var(--color-gold-saturated);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 860px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero__text { text-align: center; }
  .hero__description { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__badge { justify-content: center; }

  .hero__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__float-card--2 { left: 0; }

  .stats-bar__inner {
    gap: 1.5rem;
  }

  .stat-item__value { font-size: clamp(1.3rem, 3vw, 1.8rem); }

  .hero__contact-line { text-align: center; }
}

@media (max-width: 600px) {
  .hero {
    padding-top: calc(70px + 1.5rem);
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .hero__content { gap: 1.5rem; }

  .hero__heading {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero__description {
    font-size: 0.85rem;
  }

  .hero__float-card { display: none; }

  .stats-bar__inner {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }

  .stat-item__divider {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem 1.25rem 2rem;
  }

  .cta-section__inner {
    padding: 2.5rem 1.5rem;
  }

  .cta-section__form {
    flex-direction: column;
  }

  .site-header__nav-item { display: none; }

  .bg-corner { width: 30px; height: 30px; }
  .bg-corner--tl, .bg-corner--bl { left: 0.75rem; }
  .bg-corner--tr, .bg-corner--br { right: 0.75rem; }
  .bg-corner--tl, .bg-corner--tr { top: 0.75rem; }
  .bg-corner--bl, .bg-corner--br { bottom: 0.75rem; }
}

@media (max-width: 400px) {
  .hero__heading {
    font-size: 1.5rem;
  }

  .hero__gallery-main {
    border-radius: 12px;
  }

  .btn-primary-gold {
    padding: 0.65rem 1.4rem;
    font-size: 0.65rem;
  }

  .btn-secondary {
    padding: 0.65rem 1.2rem;
    font-size: 0.65rem;
  }
}
