:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e6c0;
  --black: #0a0a0a;
  --black-soft: #111111;
  --white: #faf8f4;
  --white-dim: #e8e4dc;
  --gray: #888880;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}

/* ── AMBIENT iOS 18 BACKGROUND ── */
.global-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background: var(--black);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: floatOrbs 20s ease-in-out infinite alternate;
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: rgba(201, 168, 76, 0.15);
  animation-delay: 0s;
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: rgba(201, 168, 76, 0.1);
  animation-delay: -5s;
}

.orb-3 {
  top: 40%;
  left: 60%;
  width: 40vw;
  height: 40vw;
  background: rgba(255, 255, 255, 0.04);
  animation-delay: -10s;
}

.golden-dust {
  position: fixed;
  inset: 0;
  z-index: -8;
  pointer-events: none;
  background-image: 
    radial-gradient(2px 2px at 10% 20%, rgba(201,168,76,0.8) 100%, transparent),
    radial-gradient(1px 1px at 40% 50%, rgba(201,168,76,0.5) 100%, transparent),
    radial-gradient(1.5px 1.5px at 80% 10%, rgba(255,255,255,0.6) 100%, transparent),
    radial-gradient(2.5px 2.5px at 70% 80%, rgba(201,168,76,0.9) 100%, transparent),
    radial-gradient(1px 1px at 30% 90%, rgba(201,168,76,0.6) 100%, transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(255,255,255,0.5) 100%, transparent),
    radial-gradient(1.5px 1.5px at 50% 30%, rgba(201,168,76,0.7) 100%, transparent),
    radial-gradient(2px 2px at 20% 70%, rgba(255,255,255,0.4) 100%, transparent);
  background-size: 150px 150px;
  animation: drift 60s linear infinite, dustTwinkle 5s ease-in-out infinite alternate;
  opacity: 0.6;
}

.golden-dust::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2.5px 2.5px at 25% 15%, rgba(201,168,76,0.7) 100%, transparent),
    radial-gradient(1.5px 1.5px at 65% 45%, rgba(255,255,255,0.5) 100%, transparent),
    radial-gradient(2px 2px at 85% 75%, rgba(201,168,76,0.8) 100%, transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.6) 100%, transparent);
  background-size: 200px 200px;
  animation: driftReverse 45s linear infinite, dustTwinkle 4s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  0% { background-position: 0px 0px; }
  100% { background-position: 300px -300px; }
}

@keyframes driftReverse {
  0% { background-position: 0px 0px; }
  100% { background-position: -200px 200px; }
}

@keyframes dustTwinkle {
  0% { 
    opacity: 0.3; 
    transform: scale(1); 
    filter: brightness(0.8) drop-shadow(0 0 2px rgba(201, 168, 76, 0.2)); 
  }
  50% { 
    opacity: 0.9; 
    transform: scale(1.02); 
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(201, 168, 76, 0.9)) drop-shadow(0 0 20px rgba(201, 168, 76, 0.4)); 
  }
  100% { 
    opacity: 0.4; 
    transform: scale(0.98); 
    filter: brightness(0.9) drop-shadow(0 0 5px rgba(201, 168, 76, 0.5)); 
  }
}

/* ── FLOATING GLASS NAV ── */
nav {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1200px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.75rem 0.75rem 1.75rem;
  border-radius: 100px;
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.3s, filter 0.3s;
}

.nav-logo-img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg);
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

/* CTA-style last link (Enquire) — consistent pill hover */
.nav-links li:last-child a {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.55rem 1.4rem;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.nav-links li:last-child a:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.mobile-menu-btn {
  display: none;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.5);
}

/* Mobile nav overlay backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nav-backdrop.show {
  display: block;
}

/* ── HERO & SLIDESHOW ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 6s linear;
}

.hero-slide.active {
  opacity: 0.45;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.3) 40%, rgba(10, 10, 10, 0.9) 100%);
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  z-index: -1;
}

.hero-ornament {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  animation: fadeDown 1.2s ease forwards;
  opacity: 0;
}

.hero-tag {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.5s forwards;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
  max-width: 420px;
  line-height: 2;
  margin: 0 auto 3rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  animation: fadeUp 1s ease 0.7s forwards;
  opacity: 0;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s;
  cursor: pointer;
}

.btn-glass:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

/* ── SERVICES ── */
.section {
  padding: 7rem 4rem;
  position: relative;
  z-index: 10;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 4rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(25, 25, 25, 0.4);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 3rem;
  transition: transform 0.4s, border-color 0.4s, background 0.4s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(35, 35, 35, 0.5);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.3);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* ── DIVIDER ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 4rem;
  margin: 2rem 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2));
}

.gold-divider::after {
  background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.2));
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: rgba(201, 168, 76, 0.5);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.8);
}

/* ── PORTFOLIO SLIDER (COVERFLOW) ── */
#portfolio {
  padding: 7rem 0;
  overflow: hidden;
  position: relative;
}

.portfolio-header {
  padding: 0 4rem;
  text-align: center;
  margin-bottom: 4rem;
}

.coverflow-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
  perspective: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.coverflow-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.coverflow-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, filter 0.5s ease;
  will-change: transform, opacity, filter;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: translate(-50%, -50%);
}

.coverflow-item.active {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
  transition: transform 0.6s;
}

.coverflow-item.active:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.coverflow-item.active .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-category {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.portfolio-description {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
}

.coverflow-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.coverflow-controls {
  display: flex;
  gap: 1.5rem;
}

.control-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.control-btn:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  color: var(--white);
}

.indicators {
  display: flex;
  gap: 0.8rem;
}

.indicator {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(201, 168, 76, 0.5);
}

.indicator.active {
  background: var(--gold);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.6);
}

/* ── STATS ── */
.stats {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  background: rgba(25, 25, 25, 0.4);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.75rem;
}

/* ── FOOTER ── */
.footer-new {
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 5rem 4rem 3rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
  }
}

.footer-col-desc .footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer-col-desc p {
  color: var(--gray);
  font-size: 0.75rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  display: inline-block;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white-dim);
}

.footer-glass-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-glass-card .footer-heading-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-glass-card p {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.footer-contact-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 0.25rem;
  text-decoration: none;
  transition: border-color 0.3s;
}

.footer-contact-link:hover {
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.6rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrbs {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.05);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    top: 1rem;
    width: calc(100% - 2rem);
    padding: 0.85rem 1.25rem;
    border-radius: 100px;
    position: fixed;
    z-index: 99;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Slide-down mobile menu panel */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.92);
    backdrop-filter: blur(32px) saturate(220%);
    -webkit-backdrop-filter: blur(32px) saturate(220%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 0 0 28px 28px;
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
    z-index: 99;
    list-style: none;
  }

  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--white-dim);
  }

  .nav-links a::after {
    content: '→';
    font-size: 0.9rem;
    color: rgba(201, 168, 76, 0.4);
    transition: color 0.3s, transform 0.3s;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-links a:hover::after {
    color: var(--gold);
    transform: translateX(4px);
  }

  .section {
    padding: 5rem 2rem;
  }

  .portfolio-header {
    padding: 0 2rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 2rem;
    gap: 1.5rem;
  }

  .gold-divider {
    padding: 0 2rem;
  }

  .coverflow-item {
    width: 260px;
    height: 380px;
  }

  .coverflow-wrapper {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }

  .service-num {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .service-name {
    font-size: 1.1rem;
  }

  .service-desc {
    font-size: 0.65rem;
    line-height: 1.5;
  }

  .stats {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .coverflow-item {
    width: 220px;
    height: 320px;
  }

  .coverflow-wrapper {
    height: 360px;
  }

  .portfolio-title {
    font-size: 1.5rem;
  }

  .portfolio-overlay {
    padding: 1.5rem;
    border-radius: 0 0 24px 24px;
  }

  .footer-new {
    padding: 4rem 1.5rem 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .footer-col-desc {
    grid-column: span 2;
  }

  .footer-glass-card {
    grid-column: span 2;
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    text-align: center;
  }
}