@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;700;900&display=swap');

:root {
  --color-black: #050505;
  --color-deep-black: #0a0a0a;
  --color-rose-gold: #c68c85;
  --color-rose-gold-light: #e3b5b0;
  --color-warm-bronze: #b08d57;
  --color-soft-gold: #f2e3c6;
  --color-white: #ffffff;
  --color-light-grey: #a1a1aa;
  --color-dark-grey: #1a1a1a;
  --color-border: #262626;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Utilities */
.text-rose-gold { color: var(--color-rose-gold); }
.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-rose-gold) 0%, var(--color-soft-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass-panel {
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

::selection {
  background: var(--color-rose-gold);
  color: var(--color-black);
}

/* ------------------- Custom Cursor ------------------- */
.cursor-ring {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 140, 133, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background-color: var(--color-rose-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
}

.cursor-ring.active {
  transform: scale(1.5);
  background-color: rgba(198, 140, 133, 0.1);
  border-color: rgba(198, 140, 133, 0.8);
}

/* ------------------- Navbar ------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}
.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  display: flex;
  align-items: center;
  max-width: 200px;
}
.navbar .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-menu { display: none; align-items: center; gap: 3rem; }
@media (min-width: 768px) { .desktop-menu { display: flex; } }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-light-grey);
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: var(--color-rose-gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--color-white); }
.nav-link:hover::after { width: 100%; }

.cta-button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-rose-gold);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--color-rose-gold);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.cta-button:hover::before { transform: translateY(0); }
.cta-button:hover {
  color: var(--color-black);
  box-shadow: 0 0 20px rgba(198, 140, 133, 0.4);
}

.mobile-menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  z-index: 101;
}
@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--color-deep-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 99;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-links { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-links a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-light-grey);
  transition: color 0.3s ease;
}
.mobile-links a:hover { color: var(--color-rose-gold); }

/* ------------------- Footer ------------------- */
.footer {
  background-color: var(--color-deep-black);
  border-top: 1px solid rgba(198, 140, 133, 0.1);
  padding: 6rem 0 2rem;
  color: var(--color-light-grey);
}
.footer .top-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) { .footer .top-section { grid-template-columns: 1fr 2fr; } }
.footer .logo {
  display: inline-block;
  margin-bottom: 1rem;
  max-width: 250px;
}
.footer .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer .description { font-size: 0.95rem; line-height: 1.6; }
.footer .links-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}
.footer .link-column h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.footer .link-column a, .footer .link-column p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}
.footer .link-column a:hover { color: var(--color-rose-gold); }
.footer .bottom-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}
@media (min-width: 768px) { .footer .bottom-section { flex-direction: row; } }
.footer .socials { display: flex; gap: 1.5rem; }
.footer .socials a { transition: all 0.3s ease; }
.footer .socials a:hover { color: var(--color-rose-gold); transform: translateY(-3px); }

/* ------------------- Home Hero ------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
.hero-slider {
  position: absolute;
  top: -10%; left: 0; width: 100%; height: 120%;
  z-index: -2;
}
.hero-slider .slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slider .slide.active {
  opacity: 1;
}
.hero-slider .slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}
.slider-arrow {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background: var(--color-rose-gold);
  border-color: var(--color-rose-gold);
  color: var(--color-black);
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dots .dot.active {
  background: var(--color-rose-gold);
  transform: scale(1.5);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-top: 5rem;
}
.hero-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.hero-title-wrapper h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  color: var(--color-white);
  will-change: transform, opacity;
}
.hero-glow-text {
  color: var(--color-rose-gold) !important;
  text-shadow: 0 0 40px rgba(198, 140, 133, 0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-light-grey);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.primary-btn, .secondary-btn {
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}
.primary-btn {
  background: var(--color-rose-gold);
  color: var(--color-black);
  border: 1px solid var(--color-rose-gold);
}
.primary-btn:hover {
  background: transparent;
  color: var(--color-rose-gold);
  box-shadow: 0 0 30px rgba(198, 140, 133, 0.3);
}
.secondary-btn {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.secondary-btn:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.7;
}
.scroll-indicator span { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--color-light-grey); }
.mouse {
  width: 26px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  position: relative;
}
.wheel {
  width: 4px; height: 6px;
  background: var(--color-rose-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}
@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* ------------------- Home About ------------------- */
.about-section { padding: 8rem 0; background-color: var(--color-black); position: relative; }
.about-section .container {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .about-section .container { grid-template-columns: 1fr 1fr; gap: 8rem; } }
.about-image-col { position: relative; }
.about-image-wrapper {
  position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px;
}
.about-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.experience-badge {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--color-dark-grey);
  border: 1px solid rgba(198, 140, 133, 0.3);
  padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 2px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 2; backdrop-filter: blur(10px);
}
.experience-badge .number {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--color-rose-gold); line-height: 1; margin-bottom: 0.5rem;
}
.experience-badge .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; color: var(--color-white); }
@media (max-width: 768px) { .experience-badge { bottom: -1rem; right: 1rem; padding: 1.5rem; } }
.about-text-col { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text-col h4 { font-size: 0.85rem; letter-spacing: 0.2em; font-weight: 600; }
.about-text-col h2 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1rem; color: var(--color-white); }
.about-text-col p { color: var(--color-light-grey); font-size: 1.1rem; line-height: 1.8; max-width: 550px; }
.learn-more-btn {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-white); transition: color 0.3s ease; align-self: flex-start; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.2);
}
.learn-more-btn:hover { color: var(--color-rose-gold); border-color: var(--color-rose-gold); }

/* ------------------- Shared Section Headings ------------------- */
.section-header { margin-bottom: 4rem; text-align: center; }
.section-header h4 { font-size: 0.85rem; letter-spacing: 0.2em; font-weight: 600; margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--color-white); line-height: 1.1; }

/* ------------------- Home Services ------------------- */
.services-section { padding: 8rem 0; background-color: var(--color-deep-black); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(12, 1fr); }
  .services-grid > a:nth-child(1) { grid-column: span 8; }
  .services-grid > a:nth-child(2) { grid-column: span 4; }
  .services-grid > a:nth-child(3) { grid-column: span 4; }
  .services-grid > a:nth-child(4) { grid-column: span 4; }
  .services-grid > a:nth-child(5) { grid-column: span 4; }
}
.service-card {
  position: relative; border-radius: 4px; overflow: hidden; height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); background: var(--color-black);
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(198, 140, 133, 0.5); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
.card-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .card-image img { transform: scale(1.05); }
.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%); transition: opacity 0.5s ease; }
.service-card:hover .card-overlay { opacity: 0.8; background: linear-gradient(180deg, rgba(198,140,133,0.1) 0%, rgba(10,10,10,0.95) 100%); }
.card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; z-index: 2; transform: translateY(20px); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .card-content { transform: translateY(0); }
.card-header-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.card-header-inner h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); }
.card-icon { color: var(--color-rose-gold); opacity: 0; transform: translate(-10px, 10px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .card-icon { opacity: 1; transform: translate(0, 0); }
.card-content p { color: var(--color-light-grey); font-size: 0.95rem; opacity: 0; transition: opacity 0.5s ease; transition-delay: 0.1s; }
.service-card:hover .card-content p { opacity: 1; }

/* ------------------- Home Projects ------------------- */
.projects-section { padding: 8rem 0; background-color: var(--color-black); }
.projects-header-flex { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; margin-bottom: 4rem; gap: 2rem; }
@media (min-width: 768px) { .projects-header-flex { flex-direction: row; align-items: flex-end; } }
.view-all-btn { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-white); border: 1px solid rgba(255, 255, 255, 0.2); padding: 1rem 2rem; border-radius: 2px; transition: all 0.3s ease; }
.view-all-btn:hover { background: var(--color-rose-gold); color: var(--color-black); border-color: var(--color-rose-gold); }
.project-card { position: relative; overflow: hidden; border-radius: 2px; aspect-ratio: 4/3; display: block; }
.project-image-wrapper { width: 100%; height: 100%; position: relative; overflow: hidden; }
.project-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.project-card:hover .project-image-wrapper img { transform: scale(1.05); }
.project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,10,10,0.9) 100%); opacity: 0.8; transition: opacity 0.5s ease; }
.project-card:hover .project-overlay { opacity: 1; }
.project-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2.5rem; z-index: 2; transform: translateY(10px); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.project-card:hover .project-info { transform: translateY(0); }
.project-category { font-family: var(--font-heading); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-rose-gold); display: block; margin-bottom: 0.5rem; }
.project-info h3 { font-size: 1.75rem; color: var(--color-white); margin: 0; }

/* ------------------- Home Why Us ------------------- */
.why-section { padding: 8rem 0; background-color: var(--color-black); position: relative; overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.reasons-list { display: flex; flex-direction: column; gap: 1.5rem; }
.reason-card { display: flex; align-items: flex-start; gap: 1.5rem; padding: 2rem; border-radius: 4px; transition: transform 0.3s ease, border-color 0.3s ease; }
.reason-card:hover { transform: translateX(10px); border-color: rgba(198, 140, 133, 0.4); }
.reason-icon { color: var(--color-rose-gold); flex-shrink: 0; width: 28px; height: 28px; }
.reason-card h3 { font-size: 1.25rem; color: var(--color-white); margin-bottom: 0.5rem; }
.reason-card p { color: var(--color-light-grey); font-size: 0.95rem; line-height: 1.6; }
.stats-panel { position: relative; border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; min-height: 500px; }
.stats-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(5px); }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 3rem; width: 100%; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-item { text-align: center; }
.stat-value-wrapper { display: flex; justify-content: center; align-items: baseline; margin-bottom: 0.5rem; color: var(--color-rose-gold); }
.stat-value { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; line-height: 1; }
.stat-suffix { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; }
.stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-white); font-weight: 500; }

/* ------------------- Subpages Hero ------------------- */
.page-hero { height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--color-deep-black); padding-top: 5rem; position: relative; overflow: hidden;}
.page-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.7); }
.page-hero-content { position: relative; z-index: 1; padding: 0 2rem; }
.page-hero-content h4 { font-size: 1rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.page-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--color-white); line-height: 1; }

/* ------------------- About Page ------------------- */
.about-split { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .about-split { grid-template-columns: 1fr 1fr; gap: 8rem; } }
.timeline { display: flex; flex-direction: column; gap: 3rem; max-width: 800px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 1fr; gap: 1rem; padding-left: 2rem; border-left: 2px solid rgba(198, 140, 133, 0.3); position: relative; }
@media (min-width: 768px) { .timeline-item { grid-template-columns: 150px 1fr; gap: 2rem; } }
.timeline-item::before { content: ""; position: absolute; top: 0; left: -6px; width: 10px; height: 10px; background-color: var(--color-rose-gold); border-radius: 50%; }
.timeline-year { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-rose-gold); }
.timeline-content h3 { font-size: 1.5rem; color: var(--color-white); margin-bottom: 0.5rem; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-member { text-align: center; }
.member-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; margin-bottom: 1.5rem; }
.member-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-member:hover .member-img img { transform: scale(1.05); }

/* ------------------- Services Page ------------------- */
.service-section { padding: 8rem 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.service-section:nth-child(even) { background-color: var(--color-deep-black); }
.service-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) {
  .service-layout { grid-template-columns: 1fr 1fr; gap: 8rem; }
  .service-layout.reversed .service-img-col { order: 2; }
  .service-layout.reversed .service-content-col { order: 1; }
}
.service-img-col { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.service-img-col img { width: 100%; height: 100%; object-fit: cover; }
.service-img-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(10,10,10,0.5) 100%); }
.service-content-col h2 { font-size: 3rem; color: var(--color-white); margin-bottom: 1.5rem; }
.service-desc { color: var(--color-light-grey); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2.5rem; }
.benefits h4 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--color-rose-gold); margin-bottom: 1rem; }
.benefits ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .benefits ul { grid-template-columns: 1fr 1fr; } }
.benefits li { position: relative; padding-left: 1.5rem; color: var(--color-white); font-size: 0.95rem; }
.benefits li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background-color: var(--color-rose-gold); border-radius: 50%; }

/* ------------------- Gallery Page ------------------- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 4rem; }
.filter-btn { background: transparent; border: none; color: var(--color-light-grey); font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; padding-bottom: 0.5rem; border-bottom: 2px solid transparent; transition: all 0.3s ease; }
.filter-btn:hover, .filter-btn.active { color: var(--color-white); border-bottom-color: var(--color-rose-gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; grid-auto-flow: dense; }
.gallery-card { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; aspect-ratio: 4/3; }
.gallery-card:nth-child(3n) { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-card:nth-child(5n) { grid-column: span 2; aspect-ratio: 16/9; }
@media (max-width: 768px) { .gallery-card:nth-child(3n), .gallery-card:nth-child(5n) { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; } }

/* Lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.active { display: flex; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: var(--color-white); cursor: pointer; z-index: 1001; transition: color 0.3s ease; }
.lightbox-content { max-width: 1200px; width: 100%; max-height: 90vh; background: var(--color-deep-black); border: 1px solid rgba(255, 255, 255, 0.05); display: grid; grid-template-columns: 1fr; overflow: hidden; border-radius: 4px; }
@media (min-width: 768px) { .lightbox-content { grid-template-columns: 2fr 1fr; } }
.lightbox-img { width: 100%; height: 400px; }
@media (min-width: 768px) { .lightbox-img { height: 600px; } }
.lightbox-img img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-info { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }

/* ------------------- Contact Page ------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 3fr 2fr; gap: 6rem; } }
.form-wrapper { padding: 3rem; border-radius: 4px; }
.form-wrapper h2 { font-size: 2rem; color: var(--color-white); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.input-group { display: flex; flex-direction: column; gap: 0.5rem; }
.input-group label { font-family: var(--font-heading); font-size: 0.85rem; color: var(--color-light-grey); letter-spacing: 0.1em; text-transform: uppercase; }
.input-group input, .input-group select, .input-group textarea { background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); padding: 1rem; color: var(--color-white); font-family: var(--font-body); font-size: 1rem; border-radius: 2px; outline: none; transition: all 0.3s ease; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { border-color: var(--color-rose-gold); background: rgba(0, 0, 0, 0.8); }
.submit-btn { margin-top: 1rem; background: var(--color-rose-gold); color: var(--color-black); border: none; padding: 1rem 2rem; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; border-radius: 2px; }
.submit-btn:hover { background: var(--color-soft-gold); box-shadow: 0 0 20px rgba(198, 140, 133, 0.4); }
.info-wrapper { display: flex; flex-direction: column; gap: 2rem; justify-content: center; }
.info-card { display: flex; align-items: flex-start; gap: 1.5rem; }
.info-card h3 { font-size: 1.25rem; color: var(--color-white); margin-bottom: 0.5rem; }
.info-card p { color: var(--color-light-grey); line-height: 1.6; font-size: 1rem; }

/* Utilities */
.pt-8 { padding-top: 8rem; }
.pb-8 { padding-bottom: 8rem; }
.bg-deep-black { background-color: var(--color-deep-black); }
