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

:root {
  --black: #080808;
  --black-2: #0f0f0f;
  --black-3: #161616;
  --black-4: #1e1e1e;
  --black-5: #282828;
  --gold: #C9A84C;
  --gold-light: #E8CC7A;
  --gold-pale: #F2E4B8;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #FAFAF8;
  --white-dim: rgba(250,250,248,0.7);
  --white-faint: rgba(250,250,248,0.12);
  --border: rgba(201,168,76,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  color-scheme: dark;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

body {
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

@media (prefers-color-scheme: dark) {
  body { background: var(--black) !important; color: var(--white) !important; }
  input, textarea, select, button { background-color: var(--black-4) !important; color: var(--white) !important; border-color: var(--border) !important; }
  a { color: inherit; }
}

a, button, input, select, textarea, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
a:focus, button:focus { outline: none; }


/* ════════════════════════════════════════════════════════════════
   LOADER
════════════════════════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0;
  transition: opacity 0.9s ease;
  overflow: hidden;
}

/* dark + gold-glow overlay on top of the bg image */
#loader::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 50% 50%,
      rgba(201,168,76,0.08) 0%,
      transparent 65%),
    linear-gradient(
      to bottom,
      rgba(8,8,8,0.72) 0%,
      rgba(8,8,8,0.55) 40%,
      rgba(8,8,8,0.72) 80%,
      rgba(8,8,8,0.92) 100%
    );
  z-index: 0;
}

/* subtle grain texture */
#loader::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

#loader-logo-wrap {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* TASK 1 + 2: Bigger logo, no animation — renders immediately, no jank on desktop */
#loader-logo-img {
  width: 280px;
  height: auto;
  object-fit: contain;
  margin-bottom: 32px;
  display: block;
  /* opacity stays at 1, no animation, no scale/translate jank */
}

#loader-gold-line {
  width: 220px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 24px;
  opacity: 0;
  animation: loaderFade 0.6s ease forwards 0.3s;
}

/* TASK 1: Larger company name in loader */
#loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  animation: loaderFade 0.7s ease forwards 0.5s;
}

/* TASK 1: Larger tagline */
#loader-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  opacity: 0;
  animation: loaderFade 0.6s ease forwards 0.9s;
}

/* TASK 1: Larger sub */
#loader-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(250,250,248,0.65);
  margin-top: 8px;
  opacity: 0;
  animation: loaderFade 0.6s ease forwards 1.1s;
}

/* single reusable fade — opacity only, no reflow, no flicker */
@keyframes loaderFade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* mobile loader sizes */
@media (max-width: 600px) {
  #loader-logo-img { width: 180px; margin-bottom: 22px; }
  #loader-logo { font-size: 24px; letter-spacing: 5px; }
  #loader-tagline { font-size: 12px; letter-spacing: 4px; }
  #loader-sub { font-size: 11px; letter-spacing: 4px; }
  #loader-gold-line { width: 160px; }
}

/* progress bar at bottom of loader */
#loader-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 3;
  animation: loaderBar 2.4s ease forwards 0.1s;
}
@keyframes loaderBar { 0%{width:0%} 100%{width:100%} }

/* shared keyframes */
@keyframes fadeUp   { 0%{opacity:0;transform:translateY(20px)} 100%{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { 0%{opacity:0} 100%{opacity:1} }


/* ════════════════════════════════════════════════════════════════
   PROGRESS BAR (scroll)
════════════════════════════════════════════════════════════════ */
#progress-line {
  position: fixed; top: 0; left: 0; width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9997; transition: width 0.1s linear;
}


/* ════════════════════════════════════════════════════════════════
   TOP BAR  — managed by nav.js
════════════════════════════════════════════════════════════════ */
#top-bar, #ss-top-bar {
  background: var(--black-2);
  border-bottom: 0.5px solid var(--border);
  padding: 10px 60px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; letter-spacing: 1.5px;
  position: relative; z-index: 200;
}
.top-contact, #ss-top-bar .tb-contact { display: flex; gap: 32px; align-items: center; }
.top-contact a, #ss-top-bar .tb-contact a {
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 400; transition: color 0.3s;
}
.top-contact a:hover, #ss-top-bar .tb-contact a:hover { color: var(--gold); }
.top-contact svg, #ss-top-bar .tb-contact svg { width: 17px; height: 17px; fill: var(--gold); flex-shrink: 0; }
.top-social, #ss-top-bar .tb-social { display: flex; gap: 14px; align-items: center; }
.top-social a, #ss-top-bar .tb-social a {
  color: var(--white); display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 0.5px solid var(--border);
  border-radius: 50%; transition: all 0.3s; text-decoration: none;
}
.top-social a:hover, #ss-top-bar .tb-social a:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08);
}
.top-social svg, #ss-top-bar .tb-social svg { width: 15px; height: 15px; fill: currentColor; }


/* ════════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════ */
nav, #ss-navbar {
  position: sticky; top: 0;
  z-index: 190;
  background: rgba(8,8,8,0.97);
  border-bottom: 0.5px solid var(--border);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: height 0.3s ease, background 0.3s ease;
}
nav.scrolled, #ss-navbar.scrolled {
  height: 80px;
  background: rgba(8,8,8,0.99);
}

/* ── Logo ── */
.nav-logo, .ss-nav-logo {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; flex-shrink: 0; transition: opacity 0.3s;
}
.nav-logo:hover, .ss-nav-logo:hover { opacity: 0.88; }

.nav-logo-img, .ss-nav-logo-img {
  height: 72px;
  width: auto; object-fit: contain; flex-shrink: 0; display: block;
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo-img,
#ss-navbar.scrolled .ss-nav-logo-img { height: 58px; }

.nav-logo-text, .ss-nav-logo-text {
  display: flex; flex-direction: column; gap: 3px; line-height: 1;
}
.nav-logo-name, .ss-nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--white); white-space: nowrap; line-height: 1.15;
}
.nav-logo-tagline, .ss-nav-logo-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; opacity: 0.9;
}
.nav-logo-divider, .ss-nav-logo-divider {
  width: 100%; height: 0.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1px 0;
}

/* ── Nav links ── */
.nav-links, .ss-nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links li a, .ss-nav-links li a {
  display: block; padding: 8px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(250,250,248,0.8); text-decoration: none;
  border-radius: 2px; transition: all 0.3s; position: relative;
}
.nav-links li a::after, .ss-nav-links li a::after {
  content: ''; position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 0.5px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links li a:hover,   .ss-nav-links li a:hover   { color: var(--gold); }
.nav-links li a:hover::after, .ss-nav-links li a:hover::after   { transform: scaleX(1); }
.nav-links li a.active,  .ss-nav-links li a.active  { color: var(--gold); }
.nav-links li a.active::after, .ss-nav-links li a.active::after { transform: scaleX(1); }

/* ── Nav CTA ── */
.nav-cta, .ss-nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 11px 28px; background: transparent;
  border: 0.5px solid var(--gold); color: var(--gold);
  cursor: pointer; transition: all 0.35s; border-radius: 2px;
  text-decoration: none; display: inline-block; flex-shrink: 0;
}
.nav-cta:hover, .ss-nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── Hamburger ── */
.hamburger, .ss-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span, .ss-hamburger span {
  width: 24px; height: 1.5px; background: var(--white);
  transition: all 0.3s; display: block;
}
.ss-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ss-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ss-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════════ */
.btn-primary {
  position: relative; padding: 17px 46px;
  background: var(--gold); color: var(--black);
  font-family: 'Outfit', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer; overflow: hidden;
  transition: all 0.4s ease; border-radius: 2px;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}

.btn-secondary {
  padding: 17px 38px;
  background: rgba(8,8,8,0.55);
  border: 1.5px solid rgba(250,250,248,0.85);
  color: var(--white); font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.35s; border-radius: 2px;
  text-decoration: none; display: inline-block;
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(0,0,0,0.7); }

.btn-secondary-white {
  padding: 17px 38px;
  background: rgba(8,8,8,0.55);
  border: 1.5px solid rgba(250,250,248,0.9);
  color: var(--white); font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.35s; border-radius: 2px;
  text-decoration: none; display: inline-block;
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.btn-secondary-white:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(0,0,0,0.7); text-shadow: none;
}


/* ════════════════════════════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════════════════════════════ */
.section-reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16,1,0.3,1);
}
.section-reveal.visible { opacity: 1; transform: translateY(0); }
.section-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.5vw, 54px); font-weight: 400;
  line-height: 1.12; color: var(--white); max-width: 500px;
}
.section-header { margin-bottom: 60px; }
.gold-divider {
  width: 50px; height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px 0;
}


/* ════════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════════ */
.marquee-section {
  padding: 22px 0; background: var(--black-3);
  overflow: hidden; white-space: nowrap;
  border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
}
.marquee-inner { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-item {
  display: inline-block; font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(201,168,76,0.85); padding: 0 44px;
}
.marquee-dot { color: var(--gold); margin: 0 4px; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }


/* ════════════════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--black-2); padding: 56px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 0.5px solid var(--border);
  position: relative;
}
.stats-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat-item {
  text-align: center; padding: 20px;
  border-right: 0.5px solid var(--border);
  opacity: 0; transform: translateY(20px); transition: all 0.7s ease;
}
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px; font-weight: 400;
  color: var(--gold-light); display: block; margin-bottom: 10px;
}
.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}


/* ════════════════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════════════════ */
#gallery-section { padding: 120px 60px; background: var(--black); }


/* ════════════════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════════════════ */
#features-section { padding: 120px 60px; background: var(--black-2); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border);
}
.feature-card {
  padding: 48px 36px; background: var(--black-2);
  position: relative; overflow: hidden; transition: background 0.4s;
}
.feature-card:hover { background: var(--black-3); }
.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 54px; font-weight: 400;
  color: rgba(201,168,76,0.2); line-height: 1;
  position: absolute; top: 20px; right: 28px;
}
.feature-line { width: 28px; height: 0.5px; background: var(--gold); margin-bottom: 22px; }
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 12px;
}
.feature-desc { font-family: 'Outfit', sans-serif; font-size: 15px; line-height: 1.8; color: rgba(250,250,248,0.8); }


/* ════════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════════ */
#cta-section {
  padding: 150px 60px; background: var(--black-3);
  text-align: center; position: relative; overflow: hidden;
}
#cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.cta-logo-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 32px; opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.cta-logo-img {
  width: 180px; height: auto; object-fit: contain;
  filter: brightness(1.1) saturate(1.2);
}
.cta-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  position: relative; z-index: 2;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 68px); font-weight: 400;
  color: var(--white); line-height: 1.1;
  max-width: 660px; margin: 0 auto 40px;
  position: relative; z-index: 2;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 2;
}


/* ════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════════════════════════ */
.page-hero { margin-bottom: 70px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px,4vw,64px); font-weight: 400;
  color: var(--white); line-height: 1.1; margin-bottom: 18px;
}
.page-hero p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; line-height: 1.8;
  color: rgba(250,250,248,0.85); max-width: 560px;
}


/* ════════════════════════════════════════════════════════════════
   PROJECTS PAGE
════════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════
   PROJECTS PAGE — ENHANCED CARDS (larger images + text)
════════════════════════════════════════════════════════════════ */

/* ── Page wrapper padding ── */
.Projects-page-wrap {
  padding: 80px 60px;
  background: var(--black);
  min-height: 80vh;
}

/* ── Card grid with proper spacing from screen edges ── */
.Projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0; /* grid itself doesn't need extra padding */
}

/* ── Individual card ── */
.Projects-card {
  background: var(--black-3);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.Projects-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2);
}

/* ── Image container with internal padding ── */
.Projects-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  /* Adds breathing room so image doesn't touch card edges */
  padding: 12px;
}

/* Inner wrapper for the actual image (optional, if you want rounded inner corners) */
.Projects-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  filter: brightness(0.8);
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease;
}

.Projects-card:hover .Projects-img img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

/* ── Badge positioned inside the padded area ── */
.Projects-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 7px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 2px;
  z-index: 2;
}

/* ── Card body ── */
.Projects-body {
  padding: 32px 28px 30px;
}

.Projects-loc {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.Projects-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.Projects-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250,250,248,0.85);
  margin-bottom: 24px;
}

.Projects-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.Projects-btn {
  width: 100%;
  padding: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.35s;
  border-radius: 2px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.Projects-btn:hover {
  background: var(--gold);
  color: var(--black);
}


/* ════════════════════════════════════════════════════════════════
   CURRENCY SWITCHER — HIGHLIGHT ACTIVE BUTTON
════════════════════════════════════════════════════════════════ */

#currency-switcher {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  align-items: center;
  flex-wrap: wrap;
}

#currency-switcher .currency-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 10px;
}

/* Default currency button */
.currency-btn {
  padding: 10px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  border: 0.5px solid var(--border);
  color: var(--white-dim);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.currency-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ════════════════════════════════════════════════════════════
   ACTIVE CURRENCY BUTTON — HIGHLY VISIBLE
════════════════════════════════════════════════════════════ */
.currency-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  letter-spacing: 3.5px;
}

/* Subtle pulse glow on active button */
.currency-btn.active::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 5px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  animation: currencyGlow 2s ease-in-out infinite;
}

@keyframes currencyGlow {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.7; }
}


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .Projects-page-wrap {
    padding: 60px 28px;
  }

  .Projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .Projects-img {
    height: 240px;
    padding: 10px;
  }

  .Projects-badge {
    top: 22px;
    left: 22px;
    font-size: 9px;
    padding: 5px 12px;
  }

  .Projects-name {
    font-size: 22px;
  }

  .Projects-desc {
    font-size: 14px;
  }

  .Projects-price {
    font-size: 22px;
  }

  .Projects-body {
    padding: 24px 20px 22px;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .Projects-page-wrap {
    padding: 50px 16px;
  }

  .Projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .Projects-img {
    height: 260px;
    padding: 10px;
  }

  .Projects-badge {
    top: 20px;
    left: 20px;
  }

  .Projects-name {
    font-size: 20px;
  }

  .Projects-desc {
    font-size: 14px;
  }

  .Projects-price {
    font-size: 20px;
  }

  .Projects-body {
    padding: 22px 18px 20px;
  }

  .currency-btn {
    padding: 8px 18px;
    font-size: 11px;
  }
}


/* ════════════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════════ */
.about-page-wrap { padding: 80px 60px; background: var(--black); min-height: 80vh; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.about-img-col { position: relative; }
.about-main-img {
  width: 100%; height: 500px; object-fit: cover; border-radius: 3px;
  filter: brightness(0.82) saturate(0.85); box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.about-accent {
  position: absolute; bottom: -30px; right: -30px; width: 55%; height: 220px;
  object-fit: cover; border-radius: 3px; border: 3px solid var(--black);
  filter: brightness(0.9); box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.about-text-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px,3.5vw,52px); font-weight: 400; line-height: 1.12;
  color: var(--white); margin-bottom: 24px;
}
.about-text-col p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; line-height: 1.85; color: rgba(250,250,248,0.85); margin-bottom: 20px;
}
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); margin-top: 60px;
}
.value-card { padding: 36px 28px; background: var(--black-2); }
.value-icon { width: 36px; height: 36px; margin-bottom: 16px; }
.value-icon svg { width: 100%; height: 100%; fill: var(--gold); }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 400; color: var(--white); margin-bottom: 10px;
}
.value-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; line-height: 1.75; color: rgba(250,250,248,0.8);
}
.team-section { margin-top: 100px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.team-card { text-align: center; }
.team-img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 3px;
  filter: grayscale(30%) brightness(0.85); margin-bottom: 18px; transition: filter 0.4s;
}
.team-card:hover .team-img { filter: grayscale(0%) brightness(0.92); }
.team-name { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--white); margin-bottom: 4px; }
.team-role {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}


/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════════ */
.contact-page-wrap { padding: 80px 60px; background: var(--black); min-height: 80vh; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-top: 60px; }
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 29px; font-weight: 400; color: var(--white); margin-bottom: 20px;
}
.contact-info p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; line-height: 1.8; color: rgba(250,250,248,0.85); margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border: 0.5px solid var(--border);
  border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact-item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-item-val { font-family: 'Outfit', sans-serif; font-size: 16px; color: rgba(250,250,248,0.85); }
.contact-form {
  background: var(--black-3); border: 0.5px solid var(--border);
  padding: 48px; border-radius: 3px;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 27px; font-weight: 400; color: var(--white); margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black-4) !important; border: 0.5px solid var(--border);
  color: var(--white) !important; padding: 14px 16px;
  font-family: 'Outfit', sans-serif; font-size: 15px;
  border-radius: 2px; outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(201,168,76,0.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black-4); color: var(--white); }
.form-submit {
  width: 100%; padding: 16px; font-family: 'Outfit', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  background: var(--gold); color: var(--black); border: none;
  cursor: pointer; border-radius: 2px; transition: all 0.3s; font-weight: 600; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.map-placeholder {
  margin-top: 60px; height: 320px; background: var(--black-3);
  border: 0.5px solid var(--border); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
}
.map-placeholder svg { width: 48px; height: 48px; fill: rgba(201,168,76,0.3); }
.map-placeholder p {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.65);
}


/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
footer { background: var(--black-2); border-top: 0.5px solid var(--border); }
.footer-main {
  padding: 70px 60px 50px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; letter-spacing: 5px; color: var(--white);
  font-weight: 600; display: block; margin-bottom: 18px;
}
.footer-brand p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; line-height: 1.75; color: rgba(250,250,248,0.75);
  max-width: 280px; margin-bottom: 28px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border: 0.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,248,0.85); text-decoration: none; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; color: rgba(250,250,248,0.75);
  text-decoration: none; transition: color 0.3s; cursor: pointer;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; color: rgba(250,250,248,0.75);
}
.footer-contact-list svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(250,250,248,0.75); text-decoration: none; transition: color 0.3s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 60px;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}


/* ════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════════════════════════ */
#whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 8888; width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  cursor: pointer; text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}
#whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.55); animation: none; }
#whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes waPulse {
  0%,100%{ box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
}
.wa-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--black-3); color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px; white-space: nowrap; padding: 8px 14px;
  border-radius: 4px; border: 0.5px solid var(--border);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#whatsapp-btn:hover .wa-tooltip { opacity: 1; }


/* ════════════════════════════════════════════════════════════════
   CURRENCY SWITCHER  (Projects page)
════════════════════════════════════════════════════════════════ */
.currency-btn {
  padding: 7px 18px; font-family: 'Outfit', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  background: transparent; border: 0.5px solid var(--border);
  color: var(--white-dim); cursor: pointer; border-radius: 2px;
  transition: all 0.3s;
}
.currency-btn:hover, .currency-btn.active {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (601px – 900px)
════════════════════════════════════════════════════════════════ */
@media (min-width: 601px) and (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .Projects-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 900px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* top bar */
  #top-bar, #ss-top-bar { padding: 10px 16px; }
  .top-contact, #ss-top-bar .tb-contact { gap: 16px; }
  .top-contact a span, #ss-top-bar .tb-contact a span { display: none; }
  .top-social a, #ss-top-bar .tb-social a { width: 30px; height: 30px; }

  /* navbar */
  nav, #ss-navbar { padding: 0 16px; height: 80px; }
  nav.scrolled, #ss-navbar.scrolled { height: 68px; }
  .nav-logo-img, .ss-nav-logo-img { height: 54px; }
  nav.scrolled .nav-logo-img,
  #ss-navbar.scrolled .ss-nav-logo-img { height: 46px; }
  .nav-logo-name, .ss-nav-logo-name { font-size: 14px; letter-spacing: 2.5px; }
  .nav-logo-tagline, .ss-nav-logo-tagline { font-size: 8px; letter-spacing: 2.5px; }

  .hamburger, .ss-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--black-2); border-bottom: 0.5px solid var(--border);
    padding: 16px 0; z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 13px 24px; font-size: 12px; letter-spacing: 2px; }
  .nav-cta { display: none; }

  /* stats */
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 40px 16px; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 10px; }

  /* gallery */
  #gallery-section { padding: 60px 16px; }

  /* features */
  #features-section { padding: 70px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-desc { font-size: 14px; }

  /* cta */
  #cta-section { padding: 90px 16px; }
  .cta-logo-img { width: 120px; }

  /* inner pages */
  .Projects-page-wrap,
  .about-page-wrap,
  .contact-page-wrap { padding: 60px 16px; }
  .Projects-grid      { grid-template-columns: 1fr; }
  .about-grid         { grid-template-columns: 1fr; gap: 40px; }
  .about-accent       { display: none; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-main        { grid-template-columns: 1fr 1fr; gap: 40px; padding: 50px 16px 30px; }
  .footer-bottom      { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
  .about-values       { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr 1fr; }

  /* whatsapp */
  #whatsapp-btn { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  #whatsapp-btn svg { width: 26px; height: 26px; }

  /* buttons */
  .btn-primary,
  .btn-secondary,
  .btn-secondary-white { padding: 14px 28px; font-size: 11px; }
}


/* ════════════════════════════════════════════════════════════════
   EXTRA SMALL  (≤ 480px)
════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-logo-text, .ss-nav-logo-text { display: none; }
  .nav-logo-img, .ss-nav-logo-img { height: 50px; }
  .nav-logo, .ss-nav-logo { gap: 0; }
}