:root {
  --gold: #b8952a;
  --gold-light: #d4af5a;
  --gold-pale: #e8d08a;
  --black: #0a0b09;
  --dark: #111209;
  --surface: #161710;
  --surface2: #1e1f14;
  --muted: #5a5c4a;
  --text: #c8c9b4;
  --white: #f0f0e8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

.dala-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-frame {
  position: relative;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(184, 149, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(184, 149, 42, 0.15);
  animation: fillFrame 1.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.loader-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(15px);
  animation: revealText 1.2s 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.loader-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

@keyframes fillFrame {
  0% { height: 0%; }
  100% { height: 100%; }
}

@keyframes revealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
  opacity: 0.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  background: linear-gradient(
    to bottom,
    rgba(10, 11, 9, 0.95) 0%,
    transparent 100%
  );
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(10, 11, 9, 0.97);
  border-bottom: 1px solid rgba(184, 149, 42, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: brightness(1.1);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}
.nav-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--gold-light);
}
.nav-links a.active::after {
  width: 100%;
}
.mobile-menu a.active {
  color: var(--gold-light);
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 10px 24px;
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 102;
  position: relative;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 11, 9, 0.98);
  backdrop-filter: blur(10px); /* Premium glass effect */
  z-index: 101; /* Sits just below the hamburger */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  
  /* Use opacity and visibility instead of display:none for smooth animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: color 0.3s, transform 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold-light);
  transform: scale(1.05);
}
.mobile-close {
  position: absolute;
  top: 28px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO */
#hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 50%,
      rgba(184, 149, 42, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 30% 40% at 20% 80%,
      rgba(184, 149, 42, 0.04) 0%,
      transparent 60%
    ),
    var(--black);
}
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.07;
}
.hero-lines svg {
  width: 100%;
  height: 100%;
}
.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
  max-width: 700px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-desc {
  max-width: 420px;
  margin-top: 32px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-ghost:hover {
  color: var(--gold-light);
}
.btn-ghost::after {
  content: "→";
  font-size: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
.hero-img-frame {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 500px;
  border: 1px solid rgba(184, 149, 42, 0.3);
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}
.hero-img-frame::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: -12px;
  border: 1px solid rgba(184, 149, 42, 0.12);
}
.hero-img-inner {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(184, 149, 42, 0.08) 0%, transparent 50%),
    var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.room-art {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(180deg, #1a1b10 0%, #0f1009 60%, #1a1509 100%);
}
.room-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, #1e1c0e 0%, #252210 100%);
}
.room-wall-accent {
  position: absolute;
  top: 10%;
  left: 15%;
  right: 15%;
  height: 55%;
  border: 1px solid rgba(184, 149, 42, 0.2);
}
.room-lamp {
  position: absolute;
  top: 15%;
  right: 25%;
  width: 2px;
  height: 35%;
  background: rgba(184, 149, 42, 0.4);
}
.room-lamp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 30px;
  height: 20px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid rgba(184, 149, 42, 0.3);
}
.room-lamp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -25px;
  width: 50px;
  height: 60px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(184, 149, 42, 0.15) 0%,
    transparent 70%
  );
}
.room-sofa {
  position: absolute;
  bottom: 42%;
  left: 10%;
  right: 10%;
  height: 12%;
  background: linear-gradient(180deg, #2a2716 0%, #1e1c0f 100%);
  border-top: 2px solid rgba(184, 149, 42, 0.35);
}
.room-sofa::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, #2e2b18 0%, #2a2716 100%);
}
.room-art-piece {
  position: absolute;
  top: 20%;
  left: 30%;
  right: 30%;
  height: 25%;
  border: 1px solid rgba(184, 149, 42, 0.3);
  background: linear-gradient(135deg, rgba(184, 149, 42, 0.05), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-art-piece::after {
  content: "";
  width: 40%;
  height: 40%;
  border: 1px solid rgba(184, 149, 42, 0.25);
  transform: rotate(45deg);
}

/* STATS */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid rgba(184, 149, 42, 0.15);
  border-bottom: 1px solid rgba(184, 149, 42, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 80px;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(184, 149, 42, 0.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}

/* SECTIONS */
section {
  padding: 120px 80px;
}
.section-tag {
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* SERVICES */
#services {
  background: var(--surface);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.services-intro {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 440px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--surface2);
  padding: 48px 36px;
  border: 1px solid rgba(184, 149, 42, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  background: #1c1d12;
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(184, 149, 42, 0.12);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}
.service-card:hover .service-num {
  color: rgba(184, 149, 42, 0.25);
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--muted);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}
.service-link:hover {
  gap: 14px;
}

/* ABOUT */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 78%;
  background: var(--surface2);
  border: 1px solid rgba(184, 149, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 45%;
  background: var(--surface);
  border: 1px solid rgba(184, 149, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gold-badge {
  position: absolute;
  top: 52%;
  left: 58%;
  width: 90px;
  height: 90px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gold-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.gold-badge-text {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
}
.about-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 28px;
  margin-bottom: 16px;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.pillar {
  border-left: 2px solid rgba(184, 149, 42, 0.35);
  padding-left: 16px;
}
.pillar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.pillar-text {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted);
}

/* PORTFOLIO */
#portfolio {
  background: var(--surface);
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface2);
}
.portfolio-item:first-child {
  grid-row: 1 / 3;
}
.portfolio-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-item-inner {
  transform: scale(1.05);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 11, 9, 0.85) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-cat {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.portfolio-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--white);
}
.room-living {
  background: linear-gradient(135deg, #1a1c10 0%, #141508 100%);
}
.room-bedroom {
  background: linear-gradient(135deg, #151610 0%, #0f100a 100%);
}
.room-kitchen {
  background: linear-gradient(135deg, #181a0e 0%, #121308 100%);
}
.room-office {
  background: linear-gradient(135deg, #161810 0%, #101108 100%);
}
.room-exterior {
  background: linear-gradient(135deg, #131505 0%, #0c0d05 100%);
}
.room-decor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PROCESS */
#process {
  position: relative;
}
.process-line {
  position: absolute;
  top: 50%;
  left: 80px;
  right: 80px;
  height: 1px;
  background: rgba(184, 149, 42, 0.15);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.process-step {
  text-align: center;
}
.step-circle {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184, 149, 42, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  background: var(--black);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}

/* TESTIMONIALS */
#testimonials {
  background: var(--surface);
  overflow: hidden;
}
.testimonials-carousel {
  position: relative;
  width: 100%;
  height: 380px; 
  margin-top: 60px;
}
.testimonial-card {
  background: var(--surface2);
  border: 1px solid rgba(184, 149, 42, 0.12);
  padding: 40px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.carousel-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 90%;
  max-width: 450px;
  animation: carousel-slide 24s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: -8s; }
.delay-3 { animation-delay: -16s; }

@keyframes carousel-slide {
  0%, 20% { 
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 30;
  }
  30%, 50% { 
    transform: translateX(-120%) scale(0.85);
    opacity: 0.3;
    z-index: 20;
  }
  55% { 
    transform: translateX(-120%) scale(0.85);
    opacity: 0;
    z-index: 10;
  }
  60% { 
    transform: translateX(20%) scale(0.85);
    opacity: 0;
    z-index: 10;
  }
  65%, 85% { 
    transform: translateX(20%) scale(0.85);
    opacity: 0.3;
    z-index: 20;
  }
  100% { 
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 30;
  }
}

@media (max-width: 768px) {
  .testimonials-carousel {
    height: 420px
  }
  @keyframes carousel-slide {
    0%, 20% { transform: translateX(-50%) scale(1); opacity: 1; z-index: 30; }
    30%, 50% { transform: translateX(-150%) scale(0.85); opacity: 0; z-index: 20; }
    55% { transform: translateX(-150%) scale(0.85); opacity: 0; z-index: 10; }
    60% { transform: translateX(50%) scale(0.85); opacity: 0; z-index: 10; }
    65%, 85% { transform: translateX(50%) scale(0.85); opacity: 0; z-index: 20; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; z-index: 30; }
  }
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  gap: 14px;
  align-items: center;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid rgba(184, 149, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 3px;
}
.author-loc {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star {
  color: var(--gold);
  font-size: 0.75rem;
}

/* CONTACT */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info {
  padding-top: 20px;
}
.contact-detail {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(184, 149, 42, 0.12);
}
.contact-detail:first-of-type {
  margin-top: 50px;
  padding-top: 0;
  border-top: none;
}
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 149, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--white);
}
.contact-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-value a:hover {
  color: var(--gold-light);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--surface);
  border: 1px solid rgba(184, 149, 42, 0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(184, 149, 42, 0.5);
}
.form-select {
  appearance: none;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 18px 40px;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* SOCIAL BUTTONS */
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(184, 149, 42, 0.25);
  color: var(--text);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.social-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(184, 149, 42, 0.15);
  padding: 60px 80px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(184, 149, 42, 0.1);
  margin-bottom: 40px;
}
.footer-brand-text {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 20px;
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 149, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 149, 42, 0.05);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav {
    padding: 20px 32px;
  }
  .nav-links {
    gap: 24px;
  }
  section {
    padding: 100px 40px;
  }
  .stats-bar {
    padding: 40px 40px;
  }
  footer {
    padding: 60px 40px 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
  #hero {
    padding: 100px 24px 60px;
    height: auto;
    min-height: 100vh;
  }
  .hero-img-frame {
    display: none;
  }
  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }
  .hero-scroll {
    display: none;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 24px;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  section {
    padding: 80px 24px;
  }
  .services-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  #about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    height: 280px;
  }
  .about-img-main {
    width: 78%;
    height: 82%;
  }
  .about-img-accent {
    width: 48%;
    height: 42%;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .portfolio-item:first-child {
    grid-row: auto;
  }
  .portfolio-item {
    height: 220px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .process-line {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  #contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .form-submit {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 50px 24px 30px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .about-pillars {
    grid-template-columns: 1fr;
  }
  .social-btn-row {
    flex-direction: column;
  }
}
