:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --accent-gold: #c9a96e;
  --accent-light: #e8d5b7;
  --text-primary: #f5f0e8;
  --text-muted: #9a8f82;
  --border-gold: rgba(201, 169, 110, 0.2);
}

::selection {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.section-padding {
  padding: 100px 0;
}

.gold-text {
  color: var(--accent-gold);
}

/* SHARED SECTION HEADER */
.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--accent-gold);
}

.section-title {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
}

.section-line {
  display: block;
  width: 60px;
  height: 2px;
  margin: 0.95rem auto 1.1rem;
  background: var(--accent-gold);
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.btn-primary:focus,
.btn-outline:focus {
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3);
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}

/* TOP BAR */
.top-bar {
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 13px;
  padding: 0.75rem 0;
  font-family: "Inter", sans-serif;
}

.top-bar .container {
  padding-inline: 1rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.top-bar-left {
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-right a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.3s ease;
}

.top-bar-right a:hover {
  opacity: 0.8;
}

.divider {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 10px;
    padding: 0.35rem 0;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar-content {
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }

  .top-bar-right {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    justify-content: space-between;
  }

  .top-bar-right a {
    gap: 0.25rem;
    font-size: 10px;
    min-width: 0;
    flex: 1;
  }

  .top-bar-right a:first-child {
    justify-content: flex-start;
  }

  .top-bar-right a:last-child {
    justify-content: flex-end;
  }

  .top-bar-right .divider {
    display: none;
  }
}

/* STICKY NAVIGATION */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 0;
}

.navbar .container {
  padding-inline: 1rem;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.logo-sub {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text-muted);
  line-height: 1.4;
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-gold);
}

.nav-link.active::after {
  width: 100%;
}

.navbar .btn-primary {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
  font-size: 12px;
  white-space: nowrap;
}

.hamburger {
  display: none;
  background: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  font-size: 22px;
  color: var(--bg-primary);
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  transition: all 0.3s ease;
  z-index: 1001;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  color: var(--bg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.hamburger:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.hamburger:hover .hamburger-icon {
  color: var(--bg-primary);
}

.hamburger:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.55rem 0;
  }

  .navbar .container {
    padding-inline: 0.85rem;
  }

  .navbar-nav {
    display: none;
  }

  .navbar .btn-primary {
    display: none;
  }

  .navbar-content {
    gap: 0.75rem;
  }

  .logo-main {
    font-size: 16px;
  }

  .logo-sub {
    font-size: 8px;
    letter-spacing: 2.5px;
  }
}

@media (max-width: 420px) {
  .navbar .container {
    padding-inline: 0.6rem;
  }

  .logo-main {
    font-size: 13px;
  }

  .logo-sub {
    font-size: 6.5px;
    letter-spacing: 1.5px;
  }

  .hamburger {
    padding: 0.4rem 0.5rem;
    min-width: 40px;
    min-height: 40px;
  }

  .hamburger-icon {
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
  }

  .top-bar {
    font-size: 10px;
    padding: 0.35rem 0;
  }

  .top-bar-right a {
    font-size: 9px;
  }

  .top-bar-right a i {
    font-size: 0.7rem;
  }
}

/* MOBILE DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

.nav-drawer.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-drawer-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 1rem 1.5rem;
  min-height: 100%;
}

.nav-drawer-link {
  padding: 1rem 0.85rem;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}

.nav-drawer-link:hover,
.nav-drawer-link:active {
  background: var(--bg-card);
  color: var(--accent-gold);
  padding-left: 1.5rem;
}

.nav-drawer-link:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-drawer {
    display: block;
  }
}

@media (max-width: 480px) {
  .nav-drawer-content {
    padding: 0.8rem 0.75rem 1.2rem;
  }

  .nav-drawer-link {
    padding: 0.9rem 0.75rem;
    font-size: 14px;
  }

  .nav-drawer-link:hover,
  .nav-drawer-link:active {
    padding-left: 1.2rem;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(232, 213, 183, 0.08) 0 1px,
      transparent 1px 48px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(232, 213, 183, 0.08) 0 1px,
      transparent 1px 48px
    );
  background-size: 48px 48px, 48px 48px;
  animation: gridDrift 8s linear infinite;
  pointer-events: none;
}

.hero-pattern::before,
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.hero-pattern::before {
  background:
    radial-gradient(circle at 15% 25%, rgba(201, 169, 110, 0.18), transparent 38%),
    radial-gradient(circle at 85% 70%, rgba(201, 169, 110, 0.14), transparent 42%),
    radial-gradient(circle at 45% 85%, rgba(201, 169, 110, 0.12), transparent 36%);
  filter: blur(2px);
  opacity: 0.6;
  animation: ambientFloat 6s ease-in-out infinite alternate;
}

.hero-pattern::after {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 34%,
    rgba(232, 213, 183, 0.14) 50%,
    rgba(255, 255, 255, 0) 66%
  );
  opacity: 0.5;
  transform: translateX(-120%);
  animation: softSweep 5s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 45%, rgba(10, 10, 10, 0.68) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.hero-label::before,
.hero-label::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--accent-gold);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
}

.hero-subtitle {
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--text-muted);
}

.hero-description {
  max-width: 580px;
  margin-top: 1rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.scroll-indicator i {
  font-size: 13px;
  color: var(--accent-gold);
  animation: bounceDown 1.6s ease-in-out infinite;
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 48px -48px, -48px 48px;
  }
}

@keyframes ambientFloat {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 2%, 0) scale(1.05);
  }
}

@keyframes softSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-reveal {
  opacity: 0;
  animation: heroFadeInUp 0.9s ease forwards;
  animation-delay: var(--reveal-delay, 0s);
}

.delay-1 {
  --reveal-delay: 0.05s;
}

.delay-2 {
  --reveal-delay: 0.2s;
}

.delay-3 {
  --reveal-delay: 0.35s;
}

.delay-4 {
  --reveal-delay: 0.5s;
}

.delay-5 {
  --reveal-delay: 0.65s;
}

.delay-6 {
  --reveal-delay: 0.8s;
}

/* STATS BAR */
.stats-bar {
  width: 100%;
  padding: 50px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

/* WHY CHOOSE US */
.about-section {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-title {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.about-intro {
  margin-top: 1.2rem;
  max-width: 560px;
  color: var(--text-muted);
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.about-feature i {
  margin-top: 0.15rem;
  color: var(--accent-gold);
  font-size: 1.05rem;
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}

.about-feature-text h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.about-feature-text p {
  margin-top: 0.2rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.about-mosaic-shell {
  border: 1px solid var(--border-gold);
  padding: 10px;
  border-radius: 6px;
  transform: rotate(-2deg);
  background: rgba(201, 169, 110, 0.03);
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  aspect-ratio: 1 / 1;
}

.mosaic-tile {
  background: #1f1f1f;
}

.mosaic-tile:nth-child(3n) {
  background: #2a2a2a;
}

.mosaic-tile:nth-child(5n) {
  background: #2e2e2e;
}

.mosaic-tile:nth-child(7n) {
  background: #333333;
}

.mosaic-tile.gold-1 {
  background: rgba(201, 169, 110, 0.08);
}

.mosaic-tile.gold-2 {
  background: rgba(201, 169, 110, 0.12);
}

.mosaic-tile.gold-3 {
  background: rgba(201, 169, 110, 0.15);
}

/* SERVICES SECTION */
.services-section {
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(201, 169, 110, 0.1);
}

.service-image-wrap {
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: #151515;
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-image {
  transform: scale(1.06);
}

.service-icon {
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--accent-gold);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

.service-description {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-link {
  margin-top: auto;
  padding-top: 1.3rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-gold);
}

/* WHAT WE DO SECTION */
.what-section {
  background: var(--bg-secondary);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.what-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 44px 36px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.what-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(201, 169, 110, 0.1);
}

.what-number {
  position: absolute;
  top: 2px;
  right: 16px;
  font-family: "Playfair Display", serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.04;
  pointer-events: none;
}

.what-card-content {
  position: relative;
  z-index: 1;
}

.what-icon {
  font-size: 28px;
  color: var(--accent-gold);
}

.what-title {
  margin: 16px 0 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.what-body {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
}

.what-list {
  margin-top: 1rem;
  list-style: none;
}

.what-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.what-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* GALLERY SECTION */
.gallery-section {
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 24px;
}

.gallery-tile {
  position: relative;
  min-height: 220px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: brightness(0.88) saturate(0.92);
}

.gallery-tile.tall {
  grid-row: span 2;
}

.tile-1 {
  background: linear-gradient(135deg, #1a1612 0%, #2d2520 50%, #1a1612 100%);
}

.tile-2 {
  background: linear-gradient(135deg, #12181a 0%, #1e2d30 50%, #12181a 100%);
}

.tile-3 {
  background: linear-gradient(135deg, #1a1a14 0%, #2a2a1e 50%, #1a1a14 100%);
}

.tile-4 {
  background: linear-gradient(135deg, #1a1217 0%, #2a1e26 50%, #1a1217 100%);
}

.tile-5 {
  background: linear-gradient(135deg, #141a12 0%, #202e1e 50%, #141a12 100%);
}

.tile-6 {
  background: linear-gradient(135deg, #1a1614 0%, #2e2420 50%, #1a1614 100%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.gallery-tile:hover .gallery-image {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.gallery-tile:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-label {
  max-width: 90%;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

.gallery-view {
  color: var(--accent-gold);
  font-size: 0.86rem;
  font-weight: 500;
}

.gallery-cta {
  margin-top: 2rem;
  text-align: center;
}

.gallery-btn {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: "\"";
  position: absolute;
  top: 6px;
  left: 12px;
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.15;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.45), 0 14px 32px rgba(201, 169, 110, 0.08);
}

.testimonial-stars {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-primary);
}

.testimonial-divider {
  width: 40px;
  height: 1px;
  margin: 24px 0;
  background: var(--accent-gold);
}

.testimonial-name {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-role {
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.trust-badges {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.trust-pill {
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* CONTACT SECTION */
.contact-section {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-company-name {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-row .contact-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-top: 0.2rem;
  min-width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
  display: inline-block;
}

.contact-row-text {
  flex: 1;
}

.contact-row-main {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-row-main a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.contact-row-main a:hover {
  color: var(--accent-gold);
}

.contact-row-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-row-sub a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-row-sub a:hover {
  color: var(--accent-gold);
}

.contact-divider {
  width: 60px;
  height: 1px;
  background: rgba(201, 169, 110, 0.3);
  margin: 2rem 0;
}

.social-media {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.05);
  color: var(--accent-gold);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.social-svg {
  width: 18px;
  height: 18px;
  display: block;
  color: inherit;
}

.social-icon:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

.social-icon:hover .social-svg {
  color: var(--bg-primary);
}

.trust-badges-contact {
  display: none;
}

.trust-badge {
  display: inline-block;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(201, 169, 110, 0.03);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* CONTACT FORM */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 40px;
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: var(--bg-primary);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 3px;
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(154, 143, 130, 0.6);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
  background: rgba(201, 169, 110, 0.02);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a96e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: auto;
  font-family: inherit;
}

.form-submit {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 3px;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--accent-light);
  transform: scale(1.01);
}

.form-submit:active {
  transform: scale(0.99);
}

.success-message {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.95);
  border-radius: 4px;
  backdrop-filter: blur(4px);
  padding: 2rem;
  text-align: center;
  animation: fadeInUp 0.5s ease forwards;
}

.success-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.success-message p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin: 0;
}

.success-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem !important;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .contact-company-name {
    font-size: 1.5rem;
  }

  .contact-rows {
    gap: 1.2rem;
  }

  .social-media {
    gap: 1rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 20px;
  }

  .contact-form {
    gap: 1.2rem;
  }

  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .form-submit {
    padding: 13px;
    font-size: 0.85rem;
  }

  .trust-badges-contact {
    gap: 0.6rem;
  }

  .trust-badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
  }
}
.process-section {
  background: var(--bg-primary);
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.process-step {
  flex: 1;
  text-align: center;
}

.process-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  display: grid;
  place-items: center;
  color: var(--accent-gold);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.process-step h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.process-step p {
  margin-top: 0.6rem;
  max-width: 240px;
  margin-inline: auto;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.process-connector {
  flex: 0 0 52px;
  border-top: 1px dashed rgba(201, 169, 110, 0.5);
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .what-card {
    padding: 40px 30px;
  }
}

.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 1.5rem;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-gold);
}

.stat-label {
  margin-top: 0.75rem;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3.25rem;
    min-height: 100vh;
    align-items: center;
  }

  .hero-content {
    gap: 0.35rem;
  }

  .hero-label {
    gap: 0.6rem;
    letter-spacing: 2px;
    font-size: 10px;
  }

  .hero-label::before,
  .hero-label::after {
    width: 28px;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  }

  .hero-description {
    margin-top: 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-top: 1.35rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.75rem 1.2rem;
  }

  .scroll-indicator {
    display: none;
  }

  .section-header {
    margin-bottom: 2.35rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .about-feature {
    gap: 0.75rem;
  }

  .about-mosaic-shell {
    max-width: 520px;
    margin: 0 auto;
    transform: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 24px;
  }

  .what-grid {
    grid-template-columns: 1fr;
  }

  .what-card {
    padding: 34px 24px;
  }

  .what-number {
    font-size: 6.2rem;
    top: 8px;
    right: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    text-align: left;
  }

  .process-number {
    margin: 0 0 0.8rem;
  }

  .process-step p {
    max-width: none;
  }

  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1rem;
  }

  .stat-item {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .stat-number {
    font-size: 2.6rem;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .service-card,
  .what-card {
    padding: 24px 16px;
  }

  .service-title {
    font-size: 1rem;
  }

  .what-number {
    font-size: 4.5rem;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .stat-item {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .section-padding {
    padding: 40px 0;
  }

  .nav-drawer-link {
    padding: 0.8rem 0.6rem;
    font-size: 13px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .stat-item {
    flex: 1;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* FOOTER */
.footer {
  background: #060606;
  border-top: 2px solid rgba(201, 169, 110, 0.4);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}

.footer-logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.footer-logo-sub {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-tagline {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.05);
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 12px;
}

.footer-link:hover::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.footer-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: left;
}

.footer-contact-row .contact-icon {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--accent-gold);
  min-width: 1rem;
  text-align: center;
  visibility: visible;
  opacity: 1;
}

.contact-icon {
  display: inline-block;
  font-size: 1.2rem;
  min-width: 1rem;
  text-align: center;
  margin-right: 0.2rem;
  color: var(--accent-gold);
}

.footer-contact-row a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-contact-row a:hover {
  color: var(--accent-gold);
}

.footer-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--accent-gold);
  border-radius: 999px;
  color: var(--accent-gold);
  background: transparent;
  transition: all 0.3s ease;
}

.footer-quote-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright,
.footer-license {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(201, 169, 110, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-logo-main {
    font-size: 1.2rem;
  }

  .footer-logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-copyright,
  .footer-license {
    font-size: 0.75rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* DEVELOPER BAR */
.developer-bar {
  background: var(--accent-gold);
  padding: 0.6rem 0;
  text-align: center;
}

.developer-text {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bg-primary);
  margin: 0;
}

.developer-text a {
  color: var(--bg-primary);
  text-decoration: underline;
  transition: opacity 0.3s ease;
  font-weight: 600;
}

.developer-text a:hover {
  opacity: 0.8;
}


. d e v e l o p e r - b a r   {   b a c k g r o u n d :   v a r ( - - a c c e n t - g o l d ) ;   p a d d i n g :   0 . 7 5 r e m   0 ;   t e x t - a l i g n :   c e n t e r ;   }   . d e v e l o p e r - t e x t   {   f o n t - f a m i l y :   " I n t e r " ,   s a n s - s e r i f ;   f o n t - s i z e :   0 . 8 5 r e m ;   f o n t - w e i g h t :   5 0 0 ;   c o l o r :   v a r ( - - b g - p r i m a r y ) ;   m a r g i n :   0 ;   }   . d e v e l o p e r - t e x t   a   {   c o l o r :   v a r ( - - b g - p r i m a r y ) ;   t e x t - d e c o r a t i o n :   u n d e r l i n e ;   t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ;   }   . d e v e l o p e r - t e x t   a : h o v e r   {   o p a c i t y :   0 . 8 ;   }   
 
 





