:root {
  --bg-900: #140b0e;
  --bg-800: #1b1014;
  --bg-700: #23161b;
  --gold-200: #ead9b2;
  --gold-400: #cbb27a;
  --gold-500: #bda26b;
  --gold-600: #8c6a3b;
  --text-100: #f7f1e9;
  --text-200: #d7cfc3;
  --text-300: #b7ac9e;
  --text-400: #9d8f7d;
  --shadow-soft: 0 30px 60px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 45px 90px rgba(0, 0, 0, 0.55);
  --transition: 0.6s ease;
  --transition-fast: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(80, 35, 40, 0.75), transparent 52%),
    radial-gradient(circle at 75% 10%, rgba(120, 70, 35, 0.35), transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(60, 20, 30, 0.6), transparent 55%),
    linear-gradient(135deg, var(--bg-900), var(--bg-800));
  color: var(--text-100);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.25'/></svg>");
  opacity: 0.05;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 30%, rgba(203, 178, 122, 0.18), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(203, 178, 122, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(5, 3, 4, 0.4), rgba(5, 3, 4, 0.9));
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.page-glow {
  position: fixed;
  inset: -40% 0 auto -20%;
  height: 60%;
  background: radial-gradient(circle, rgba(203, 178, 122, 0.25), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: glow-shift 16s ease-in-out infinite alternate;
}

.ambient-shape {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite;
}

.ambient-shape--one {
  top: 10%;
  left: -80px;
  background: radial-gradient(circle, rgba(203, 178, 122, 0.35), transparent 65%);
}

.ambient-shape--two {
  top: 55%;
  right: -120px;
  background: radial-gradient(circle, rgba(99, 48, 32, 0.4), transparent 70%);
  animation-delay: -4s;
}

.ambient-shape--three {
  bottom: -120px;
  left: 35%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(44, 18, 24, 0.5), transparent 70%);
  animation-delay: -8s;
}

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

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

main {
  position: relative;
  z-index: 2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.top-banner {
  position: relative;
  width: 100%;
  min-height: 38px;
  padding: 8px 15px;
  background: var(--gold-400);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 101;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.top-banner__offer {
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.top-banner__featured {
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.top-banner__divider {
  opacity: 0.55;
}

.top-banner a {
  color: #1a1a1a;
  margin-left: 6px;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 40px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: rgba(10, 6, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
}

.brand {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition-fast);
}

.brand:hover .brand-logo {
  transform: scale(1.08) rotate(-3deg);
}

.nav {
  display: flex;
  gap: 2.2rem;
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  color: var(--text-200);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--text-100);
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.btn-small {
  min-width: auto;
  padding: 0.75rem 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
}

.btn-gold {
  background: linear-gradient(120deg, #e2d0a2, var(--gold-400));
  color: #2b1a10;
  box-shadow: 0 15px 30px rgba(203, 178, 122, 0.35);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  transform: translateX(-120%);
  transition: transform 0.9s ease;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(203, 178, 122, 0.45);
}

.btn-gold:hover::after,
.btn-gold:focus-visible::after {
  transform: translateX(120%);
}

.btn-ghost {
  border-color: rgba(247, 241, 233, 0.2);
  color: var(--text-100);
  background: rgba(16, 10, 12, 0.45);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(203, 178, 122, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8vw;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(203, 178, 122, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 12% 6% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 178, 122, 0.35), transparent);
  opacity: 0.7;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 8, 0.4), rgba(10, 6, 8, 0.85));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-top: 90px;
}



.eyebrow {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.45rem;
  text-transform: uppercase;
  color: var(--text-300);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  margin: 1.2rem 0 2.2rem;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
  color: var(--text-100);
  background-image: linear-gradient(120deg, #f9f3e5 0%, var(--gold-200) 45%, #fdf9f0 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 10s ease infinite;
}

.hero-title::after {
  content: "";
  display: block;
  width: min(320px, 50%);
  height: 1px;
  margin: 1.6rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(203, 178, 122, 0.7), transparent);
}

.hero-actions {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.promo-badge {
  display: inline-block;
  margin: 0 auto 1.8rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(203, 178, 122, 0.55);
  border-radius: 999px;
  background: rgba(203, 178, 122, 0.12);
  color: var(--gold-200);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.cta-offer {
  display: inline-block;
  margin-bottom: 1.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(203, 178, 122, 0.14);
  border: 1px solid rgba(203, 178, 122, 0.35);
  color: var(--gold-200);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.hero-discover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.45rem;
  font-size: 0.7rem;
  color: var(--text-300);
}

.hero--inner {
  min-height: 70vh;
}

.hero--inner .hero-content {
  padding-top: 160px;
}

.hero--inner .hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.hero-lead {
  max-width: 640px;
  margin: -1rem auto 2rem;
  color: var(--text-200);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 1px solid rgba(247, 241, 233, 0.4);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator::after {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 999px;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

.section {
  padding: clamp(60px, 10vw, 110px) clamp(20px, 5vw, 8vw);
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8vw;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(203, 178, 122, 0.35), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--text-300);
  justify-content: center;
  padding: 50px 8vw 0;
}

.divider span {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(203, 178, 122, 0.2);
  border-radius: 999px;
  background: rgba(12, 8, 10, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.divider-line {
  height: 1px;
  width: 140px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.section-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid rgba(203, 178, 122, 0.16);
}

.section-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(203, 178, 122, 0.3), transparent 60%);
  mix-blend-mode: screen;
}

.section-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(203, 178, 122, 0.3);
  z-index: 1;
  pointer-events: none;
}

.section-media img {
  position: relative;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 1.2s ease, filter 1.2s ease;
}

.section-media:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.section-copy h2,
.section-heading h2,
.cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  margin: 1.2rem 0 1.4rem;
}

.section-copy p {
  color: var(--text-200);
  margin-bottom: 1.2rem;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: min(240px, 40%);
  height: 1px;
  margin: 1.6rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(203, 178, 122, 0.5), transparent);
}

.section-heading .subtext {
  color: var(--text-200);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
}

.services--menu .service-grid {
  max-width: 1280px;
  margin-inline: auto;
}

@media (min-width: 1100px) {
  .services--menu .service-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .services--menu .service-card {
    grid-column: span 2;
  }

  .services--menu .service-card--hero {
    grid-column: span 3;
  }

  .services--menu .service-card--hero .service-image {
    height: clamp(240px, 24vw, 300px);
  }
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(203, 178, 122, 0.14);
  padding: 0;
  border-radius: 28px;
  background:
    linear-gradient(165deg, rgba(38, 24, 30, 0.92) 0%, rgba(18, 11, 14, 0.88) 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(203, 178, 122, 0.16), transparent 52%),
    radial-gradient(circle at 100% 100%, rgba(203, 178, 122, 0.08), transparent 45%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(203, 178, 122, 0.55);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(203, 178, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__media {
  position: relative;
  overflow: hidden;
}

.service-image {
  position: relative;
  height: clamp(190px, 22vw, 230px);
  overflow: hidden;
  background-color: var(--bg-800);
}

.service-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 6, 8, 0.05) 0%, rgba(10, 6, 8, 0.35) 55%, rgba(14, 9, 11, 0.95) 100%);
  pointer-events: none;
}

.service-card:hover .service-image::before {
  transform: scale(1.1);
}

.service-image--royal-jacuzzi::before {
  background-image: url("salon-images/10d7860f-f601-49bc-a874-552504545c44.jpeg");
}

.service-image--turkish-hammam::before {
  background-image: url("salon-images/49b3373a-5234-46ea-9317-3b326d0d70a8.jpeg");
}

.service-image--royal-vip::before {
  background-image: url("salon-images/55afabae-3760-4a9a-8133-e81485e72c24.jpeg");
}

.service-image--thai-body::before {
  background-image: url("salon-images/577a9dc7-fe00-4d15-a58a-000fe25b829d.jpeg");
}

.service-image--swedish::before {
  background-image: url("salon-images/8f44c256-31f6-4bd2-a116-a3bb5816a60f.jpeg");
}

.service-image--body-polishing::before {
  background-image: url("salon-images/8f714161-87b7-4b02-82e8-c4531eb98756.jpeg");
}

.service-image--aroma::before {
  background-image: url("salon-images/c690242f-ebc1-44d1-bfd4-e7fa87e27988.jpeg");
}

.service-image--balinese::before {
  background-image: url("https://images.unsplash.com/photo-1587017539504-67cfbddac569?auto=format&fit=crop&w=1200&q=80");
}

.service-image--candle::before {
  background-image: url("https://images.unsplash.com/photo-1608571423902-eed4a5ad8108?auto=format&fit=crop&w=1200&q=80");
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: rgba(203, 178, 122, 0.92);
  color: #1a120e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(1.25rem, 2.2vw, 1.65rem) clamp(1.35rem, 2.4vw, 1.75rem);
  margin-top: -1.4rem;
}

.service-card__index,
.service-body .roman {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  border: 1px solid rgba(203, 178, 122, 0.45);
  background:
    linear-gradient(145deg, rgba(203, 178, 122, 0.22), rgba(20, 11, 14, 0.92));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  color: var(--gold-200);
  letter-spacing: 0.06rem;
}

.service-card__actions {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(203, 178, 122, 0.14);
}

.service-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  letter-spacing: 0.12rem;
}

.service-card h3 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.35;
  color: var(--text-100);
}

.service-card h3::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

.service-card p {
  flex: 1;
  color: var(--text-200);
  font-size: 0.92rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services--menu .service-card--hero p {
  -webkit-line-clamp: 5;
}

.service-card--hero .service-card__badge {
  top: 1.15rem;
  left: 1.15rem;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
}

.roman {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--gold-400);
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.cta {
  text-align: center;
  background: radial-gradient(circle at top, rgba(203, 178, 122, 0.2), transparent 60%);
  overflow: hidden;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -20% 10% auto 10%;
  height: 60%;
  background: radial-gradient(circle, rgba(203, 178, 122, 0.2), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta p {
  color: var(--text-200);
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: stretch;
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.contact-card {
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(160deg, rgba(30, 20, 24, 0.6), rgba(15, 10, 12, 0.4));
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(203, 178, 122, 0.2), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.contact-card h3 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  color: var(--text-200);
}

.contact-list span {
  color: var(--text-400);
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(203, 178, 122, 0.25);
  background: rgba(10, 7, 9, 0.6);
  color: var(--text-100);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(203, 178, 122, 0.65);
  box-shadow: 0 0 0 3px rgba(203, 178, 122, 0.18);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.floating-actions {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 9;
}

.site-footer {
  padding: 90px 8vw 40px;
  background: linear-gradient(180deg, rgba(10, 6, 8, 0.95), rgba(8, 5, 7, 1));
  border-top: 1px solid rgba(203, 178, 122, 0.12);
  position: relative;
  z-index: 2;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(203, 178, 122, 0.18), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 2.6rem;
  position: relative;
  z-index: 1;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-200);
  max-width: 320px;
}

.footer-address {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-200);
  line-height: 1.6;
}

.footer-address a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-address strong {
  color: var(--gold-400);
}

.footer-phone {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-200);
  line-height: 1.6;
}

.footer-phone a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-phone a:hover {
  color: var(--gold-400);
}

.footer-phone strong {
  color: var(--gold-400);
}

.footer-col h4 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 0.22rem;
  font-size: 0.78rem;
  margin-bottom: 1.4rem;
  color: var(--text-300);
}

.footer-col p {
  color: var(--text-200);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
  color: var(--text-200);
}

.footer-links a {
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-200);
}

.footer-rows {
  display: grid;
  gap: 0.9rem;
  color: var(--text-200);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.footer-row span {
  color: var(--text-300);
}

.footer-row strong {
  color: var(--text-100);
  font-weight: 500;
}

.footer-form {
  display: grid;
  gap: 1rem;
}

.footer-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(203, 178, 122, 0.25);
  background: rgba(10, 7, 9, 0.6);
  color: var(--text-100);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  color: var(--text-300);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.footer-social {
  display: flex;
  gap: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.72rem;
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #e2d0a2, var(--gold-400));
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: float 6s ease-in-out infinite;
}

.fab:hover,
.fab:focus-visible {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
}

.fab svg {
  width: 24px;
  height: 24px;
  fill: #2b1a10;
}

.fab-green {
  background: linear-gradient(160deg, #35d07f, #1fa463);
  animation-delay: -2s;
}

.fab-call {
  background: linear-gradient(160deg, #f0b96b, #c98a38);
  animation-delay: -4s;
}

.fab-call svg {
  fill: #2b1a10;
}

.fab-green svg {
  fill: #0b2c1e;
}

.float {
  animation: float 8s ease-in-out infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes glow-shift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(40px, -20px) scale(1.05);
    opacity: 0.9;
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -30px);
  }
  100% {
    transform: translate(-10px, 10px);
  }
}

@keyframes text-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes scroll-pulse {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 12px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
}

@keyframes slow-pan {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.05) translateY(-10px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .site-header {
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
    padding: 15px 25px;
    gap: 0;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 15px;
  }

  .site-header .btn {
    display: none;
  }

  .site-header.is-open .nav,
  .site-header.is-open .btn {
    display: flex;
  }

  .site-header.is-open .btn {
    width: 100%;
    margin-top: 1.5rem;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav a {
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
  }

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

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

@media (max-width: 640px) {
  .brand {
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
    gap: 0.4rem;
    max-width: calc(100% - 40px);
    white-space: nowrap;
  }
  
  .brand-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .site-header {
    padding: 8px 15px;
  }

  .top-banner {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .hero-content {
    padding-top: 140px;
  }

  .btn {
    width: 100%;
  }

  .floating-actions {
    right: 1.2rem;
    bottom: 85px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
