/* ============================================================
   KADEN KOPPERS — LUXURY ARCHITECTURE DESIGN SYSTEM
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --cream:       #F2EDE4;
  --beige:       #E8DFD0;
  --gold:        #C9A96E;
  --gold-light:  #E4C992;
  --gold-dark:   #A07840;
  --black:       #0A0A0A;
  --charcoal:    #1A1A1A;
  --dark-grey:   #2D2D2D;
  --mid-grey:    #6B6B6B;
  --light-grey:  #B8B8B8;
  --border:      rgba(201,169,110,0.2);

  --font-display: 'Playfair Display', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --ease-luxury:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-sharp:   cubic-bezier(0.77, 0, 0.175, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height: 80px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

body {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }

/* ─── Custom Cursor ─────────────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-luxury),
              width 0.3s var(--ease-luxury),
              height 0.3s var(--ease-luxury);
}

.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-luxury),
              width 0.4s var(--ease-luxury),
              height 0.4s var(--ease-luxury),
              opacity 0.3s;
  opacity: 0.6;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 60px; height: 60px;
  opacity: 1;
  background: rgba(201,169,110,0.05);
}

/* ─── Loader ────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  overflow: hidden;
}

.loader-logo span {
  display: inline-block;
  transform: translateY(100%);
  animation: loaderReveal 0.8s var(--ease-sharp) forwards;
}

.loader-logo span:nth-child(2) { animation-delay: 0.15s; }
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loaderBar 1.8s var(--ease-sharp) forwards 0.3s;
}
.loader-counter {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--mid-grey);
  text-transform: uppercase;
}

@keyframes loaderReveal { to { transform: translateY(0); } }
@keyframes loaderBar    { to { left: 0; } }

/* ─── Navigation ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  transition: background 0.5s var(--ease-luxury),
              backdrop-filter 0.5s,
              border-color 0.5s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

/* Interior pages (anything without a full-bleed dark hero directly behind
   the fixed nav) get this permanently instead of waiting for scroll.
   Prevents white nav-link text from disappearing over light backgrounds. */
#navbar.solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
#navbar.solid .nav-logo-img { filter: brightness(0.8); }
#navbar.solid .nav-link { color: var(--dark-grey); }
#navbar.solid .nav-link:hover { color: var(--gold-dark); }
#navbar.solid .nav-cta { color: var(--gold-dark); }
#navbar.solid .nav-hamburger span { background: var(--black); }

.nav-logo {
  display: flex;
  align-items: center;
  height: 60px;
  transition: all 0.4s;
}

.nav-logo-img {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.4s;
}

#navbar.scrolled .nav-logo-img {
  filter: brightness(0.8);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-luxury);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

#navbar.scrolled .nav-link { color: var(--dark-grey); }
#navbar.scrolled .nav-link:hover { color: var(--gold-dark); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
  z-index: -1;
}
.nav-cta:hover {
  color: var(--black);
}
.nav-cta:hover::before { transform: scaleX(1); }
#navbar.scrolled .nav-cta { color: var(--gold-dark); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease-luxury);
}
#navbar.scrolled .nav-hamburger span { background: var(--black); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-sharp);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link {
  font-size: 28px;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 400;
}
.mobile-menu .nav-link:hover { color: var(--gold); }
.mobile-menu .nav-link::after { background: var(--gold); }

/* ─── Hero ──────────────────────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video Background Container */
.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-poster,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-poster {
  z-index: 0;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-video.is-loaded {
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
  mix-blend-mode: multiply;
}

/* Centered Content */
.hero-centered-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 clamp(24px, 6vw, 80px);
  animation: fadeIn 1s var(--ease-luxury) forwards;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-luxury) forwards 0.3s;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8.5vw, 128px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  overflow: hidden;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 30px rgba(0,0,0,0.7);
}

.hero-title-line {
  display: block;
  transform: translateY(100%);
  animation: revealLine 0.9s var(--ease-sharp) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.5s; }
.hero-title-line:nth-child(2) { animation-delay: 0.65s; color: #FF69B4; font-style: italic; }
.hero-title-line:nth-child(3) { animation-delay: 0.8s; }

@keyframes revealLine { to { transform: translateY(0); } }

.hero-subtitle {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-luxury) forwards 1s;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-luxury) forwards 1.2s;
  flex-wrap: wrap;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-luxury);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
  border-radius: 2px;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 2px solid var(--gold-dark);
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-luxury);
  background: var(--white);
  backdrop-filter: blur(4px);
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}

.btn-arrow {
  width: 20px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease-luxury);
}
.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow { width: 32px; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-luxury) forwards 1.5s;
}
.hero-scroll-text {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite 3s;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-stats {
  position: absolute;
  bottom: 60px; right: clamp(24px, 6vw, 100px);
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-luxury) forwards 2.4s;
}
.hero-stat-item {
  text-align: center;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* ─── Section Commons ───────────────────────────────────── */
.section-pad {
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.section-label-line {
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-label-text {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
  color: var(--mid-grey);
  font-weight: 300;
  max-width: 520px;
  margin-top: 20px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-luxury),
              transform 0.9s var(--ease-luxury);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-luxury),
              transform 0.9s var(--ease-luxury);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-luxury),
              transform 0.9s var(--ease-luxury);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ─── About Section ─────────────────────────────────────── */
#about {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.about-image-wrap:hover img { transform: scale(1.03); }

.about-image-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* Creative Image Gallery */
.about-image-gallery {
  position: relative;
  height: 550px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
  width: 100%;
}

.image-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--light-grey);
  cursor: pointer;
  transition: all 0.6s var(--ease-luxury);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-luxury);
}

.image-item:hover {
  transform: translateY(-8px);
}

.image-item:hover img {
  transform: scale(1.08);
}

.image-item:hover .image-overlay {
  opacity: 1;
}

/* Grid positioning for creative layout */
.image-item-1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

.image-item-2 {
  grid-column: 2;
  grid-row: 1;
}

.image-item-3 {
  grid-column: 2;
  grid-row: 2;
}

.image-item-4 {
  display: none;
}

.about-image-tag {
  position: absolute;
  bottom: 32px; left: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}

.about-content { padding: 40px 0; }

.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid-grey);
  font-weight: 300;
  margin-bottom: 24px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
  border: 1px solid var(--border);
}
.about-pillar {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.3s;
}
.about-pillar:hover { background: var(--cream); }
.about-pillar-icon {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--gold);
}
.about-pillar-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

/* ─── Projects Section ──────────────────────────────────── */
#projects {
  background: var(--off-white);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
  gap: 32px;
}

.projects-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 400;
  transition: all 0.3s var(--ease-luxury);
  cursor: none;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--gold-dark);
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}

.projects-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.project-card:nth-child(1)  { grid-column: span 7; grid-row: span 2; aspect-ratio: 4/3; }
.project-card:nth-child(2)  { grid-column: span 5; aspect-ratio: 5/4; }
.project-card:nth-child(3)  { grid-column: span 5; aspect-ratio: 5/4; }
.project-card:nth-child(4)  { grid-column: span 4; aspect-ratio: 3/4; }
.project-card:nth-child(5)  { grid-column: span 4; aspect-ratio: 3/4; }
.project-card:nth-child(6)  { grid-column: span 4; aspect-ratio: 3/4; }

.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.project-card:hover img { transform: scale(1.08); }

.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}
.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-luxury);
}
.project-card:hover .project-card-info { transform: translateY(0); }

.project-card-category {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury) 0.1s;
}
.project-card:hover .project-card-category { opacity: 1; }

.project-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.project-card-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury) 0.15s;
}
.project-card:hover .project-card-meta { opacity: 1; }

.project-view-all {
  text-align: center;
  margin-top: 60px;
}

/* ─── What We Build ─────────────────────────────────────── */
#what-we-build {
  background: var(--cream);
  overflow: hidden;
}

#what-we-build .section-title { color: var(--charcoal); }
#what-we-build .section-label-text { color: var(--gold-dark); }
#what-we-build .section-label-line { background: var(--gold-dark); }

.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.build-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--ease-luxury);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.build-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.build-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--light-grey);
  position: relative;
}

.build-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}

.build-card:hover .build-card-image img {
  transform: scale(1.1);
}

.build-card-content {
  padding: 32px 28px;
  position: relative;
}

.build-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-luxury);
  z-index: 1;
}

.build-card:hover::before {
  transform: scaleX(1);
}

.build-card-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

.build-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.build-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid-grey);
  font-weight: 300;
  margin-bottom: 20px;
}

.build-card-arrow {
  position: relative;
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-luxury);
  color: var(--gold);
  font-size: 16px;
  opacity: 0.6;
}

.build-card:hover .build-card-arrow {
  opacity: 1;
  transform: translateX(6px);
}

/* ─── Capabilities ──────────────────────────────────────── */
#capabilities {
  background: var(--white);
}

.capabilities-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.capabilities-list {
  margin-top: 40px;
}

.capability-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: all 0.3s var(--ease-luxury);
}
.capability-item:first-child { border-top: 1px solid var(--border); }
.capability-item:hover { padding-left: 16px; }

.capability-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.3s;
}
.capability-item:hover .capability-name { color: var(--gold-dark); }

.capability-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  background: var(--cream);
  padding: 4px 12px;
  transition: all 0.3s;
}
.capability-item:hover .capability-tag {
  background: var(--gold);
  color: var(--black);
}

.capabilities-visual {
  position: relative;
}

.capabilities-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.capabilities-accent-img {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--white);
  z-index: 2;
}

.capabilities-badge {
  position: absolute;
  top: 40px; left: -40px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: rotateBadge 12s linear infinite;
}
.capabilities-badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.capabilities-badge-txt {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-grey);
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── Process Section ───────────────────────────────────── */
#process {
  background: var(--cream);
  overflow: hidden;
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.process-header .section-label { justify-content: center; }
.process-header .section-subtitle { margin: 20px auto 0; }

.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.process-cards-grid::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.process-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease-luxury);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(201,169,110,0.1);
  transform: translateY(0);
}

.process-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 16px 40px rgba(201,169,110,0.2);
  border-color: rgba(201,169,110,0.3);
}

.process-card-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  opacity: 0.8;
}

.process-card-icon {
  width: 56px;
  height: 56px;
  margin: 16px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease-luxury);
  color: var(--gold);
}

.process-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  transition: all 0.5s var(--ease-luxury);
}

.process-card:hover .process-card-icon {
  transform: scale(1.15);
  color: var(--gold-dark);
}

.process-card:hover .process-card-icon svg {
  stroke-width: 1.8;
}

.process-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.4;
}

.process-card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid-grey);
  font-weight: 300;
  margin-bottom: 0;
}

.process-card-line {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

.process-card:last-child .process-card-line {
  display: none;
}

@media (max-width: 1024px) {
  .process-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .process-cards-grid::before {
    display: none;
  }
  
  .process-card {
    padding: 40px 24px;
  }
  
  .process-card-number {
    font-size: 36px;
  }
  
  .process-card-icon {
    font-size: 40px;
  }
  
  .process-card-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .process-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .process-card {
    padding: 32px 24px;
  }
  
  .process-card-icon {
    font-size: 32px;
    margin: 12px 0 16px;
  }
  
  .process-card-number {
    font-size: 32px;
  }
  
  .process-card-title {
    font-size: 16px;
  }
  
  .process-card-desc {
    font-size: 13px;
  }
}

/* ─── Stats Section ─────────────────────────────────────── */
#stats {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 7vw, 100px);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-box {
  background: var(--white);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxury);
  border-radius: 16px;
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.stat-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(201,169,110,0.15);
  border-color: rgba(201,169,110,0.3);
}

.stat-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.stat-box:hover::before { opacity: 1; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.stat-suffix {
  font-size: 0.5em;
  color: var(--gold);
  vertical-align: super;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 16px;
  font-weight: 600;
}

.stat-desc {
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-box {
    padding: 40px 32px;
  }
  
  .stat-number {
    font-size: 48px;
  }
}

/* ─── Testimonials ──────────────────────────────────────── */
#testimonials {
  background: var(--off-white);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.testimonials-header .section-label { justify-content: center; }

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: slideIn 0.6s var(--ease-luxury);
}
.testimonial-slide.active { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.testimonial-content {
  background: var(--white);
  padding: 60px 64px;
  border-left: 3px solid var(--gold);
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 24px; left: 40px;
  font-style: italic;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author-info {}
.testimonial-author-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}
.testimonial-author-title {
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-luxury);
  cursor: none;
  color: var(--mid-grey);
  font-size: 18px;
}
.testimonial-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--beige);
  transition: all 0.3s;
  cursor: none;
}
.testimonial-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ─── CTA Section ───────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--beige) 100%);
  text-align: center;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0.5;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 32px;
}
.cta-title em { color: var(--gold-dark); font-style: italic; }

.cta-subtitle {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 48px;
  opacity: 0.85;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ────────────────────────────────────────────── */
#footer {
  background: var(--cream);
  color: var(--charcoal);
  padding: 80px clamp(24px, 7vw, 100px) 40px;
  border-top: 1px solid rgba(201,169,110,0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  opacity: 0.9;
}

.footer-brand .nav-logo-main {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
  color: var(--charcoal);
  font-weight: 600;
}
.footer-brand .nav-logo-sub { 
  color: var(--gold-dark); 
  margin-bottom: 20px; 
  display: block; 
  font-weight: 500;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid-grey);
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s var(--ease-luxury);
  color: var(--gold-dark);
  background: var(--white);
  border-radius: 6px;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 13px;
  color: var(--mid-grey);
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover { 
  color: var(--gold-dark);
  margin-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 12px;
}
.footer-contact-icon {
  width: 18px;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid-grey);
}

.footer-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mid-grey);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { 
  transition: color 0.3s; 
  color: var(--mid-grey);
}
.footer-bottom a:hover { color: var(--gold-dark); }

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.88), rgba(10,10,10,0.18));
  pointer-events: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.6);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-pill {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 18px;
}
.page-hero-subtitle {
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.page-hero-copy {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 36px;
}
.page-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ─── About Page: Media Hero + Intro (title moved below hero) ── */
.about-media-hero {
  position: relative;
  height: clamp(320px, 55vh, 620px);
  overflow: hidden;
}
.about-media-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.72);
}
.about-media-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.45) 100%);
  pointer-events: none;
}
.about-intro-section {
  background: var(--cream);
  padding: clamp(56px, 8vw, 100px) clamp(24px, 7vw, 100px);
}
.about-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-intro-inner .section-label {
  justify-content: center;
}
.about-intro-subtitle {
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 22px;
}
.about-intro-copy {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--mid-grey);
  line-height: 1.8;
  margin: 0 auto 36px;
  max-width: 640px;
}
.about-intro-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .about-media-hero { height: clamp(260px, 42vh, 420px); }
  .about-intro-section { padding: clamp(40px, 8vw, 64px) 24px; }
}
@media (max-width: 600px) {
  .about-media-hero { height: 260px; }
  .about-intro-section { padding: clamp(32px, 10vw, 48px) 18px; }
  .about-intro-actions { flex-direction: column; align-items: stretch; }
}

/* ─── Services Highlight Grid ───────────────────────────── */
.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 7vw, 100px);
}
.highlight-card {
  background: var(--black);
  color: var(--white);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 32px 80px rgba(10,10,10,0.12);
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 42px 90px rgba(10,10,10,0.18);
}
.highlight-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.highlight-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.8;
}

/* ─── Projects Page ─────────────────────────────────────── */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-page-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: none;
}
.project-page-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.project-page-card:hover img { transform: scale(1.06); }

.project-page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.project-page-cat {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.project-page-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
}
.project-page-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ─── Services Page ─────────────────────────────────────── */
.section-intro {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 7vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-intro-copy p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 760px;
  line-height: 1.7;
}
.section-intro-actions {
  display: flex;
  align-items: center;
}

.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 620px;
  max-width: 1600px;
  margin: 0 auto 2px;
  padding: 0 clamp(24px, 7vw, 100px);
}
.service-section--reverse { direction: rtl; }
.service-section--reverse > * { direction: ltr; }

.service-img-wrap {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 36px 90px rgba(10,10,10,0.08);
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.service-img-wrap:hover img { transform: scale(1.05); }

.service-content {
  padding: clamp(60px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: 0 36px 90px rgba(10,10,10,0.08);
}
.service-section--reverse .service-content { background: rgba(248,246,241,0.98); }

.service-number {
  font-family: var(--font-display);
  font-size: clamp(68px, 8vw, 92px);
  font-weight: 400;
  color: var(--gold);
  opacity: 0.14;
  line-height: 1;
  margin-bottom: -24px;
}
.service-title-lg {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.05;
}
.service-desc-lg {
  font-size: 16px;
  line-height: 1.9;
  color: var(--dark-grey);
  font-weight: 300;
  margin-bottom: 24px;
}

.service-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--dark-grey);
  font-weight: 300;
  line-height: 1.6;
}
.service-list-item::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.sub-services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  background: var(--cream);
  padding: clamp(60px, 7vw, 100px) clamp(24px, 7vw, 100px);
}

.sub-service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(10,10,10,0.06);
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury), border-color 0.3s;
  border: 1px solid rgba(201, 169, 110, 0.12);
}
.sub-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 36px 80px rgba(10,10,10,0.08);
}
.sub-service-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}
.sub-service-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 400;
}
.sub-service-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid-grey);
  font-weight: 300;
}

.process-strip {
  background: var(--black);
  padding: 60px clamp(24px, 7vw, 100px);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.process-strip-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-strip-item::after {
  content: '→';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0.35;
  font-size: 18px;
}
.process-strip-item:last-child::after { display: none; }
.process-strip-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 10px;
}
.process-strip-name {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
}
.process-strip-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .section-intro { padding: clamp(32px, 8vw, 60px) 24px; }
  .service-section { grid-template-columns: 1fr; min-height: auto; }
  .service-img-wrap { min-height: 320px; }
  .service-highlight-grid { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
  .process-strip { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .section-intro { padding: clamp(24px, 10vw, 45px) 18px; }
  .service-content { padding: clamp(40px, 8vw, 60px); }
  .sub-services-row { grid-template-columns: 1fr; }
  .process-strip { padding: 32px 18px; }
}

/* ─── Contact Page ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  padding: clamp(60px, 6vw, 100px);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-info-item {}
.contact-info-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-form-wrap {
  padding: clamp(60px, 6vw, 100px);
  background: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  resize: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }

.form-textarea { min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 44px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-luxury);
  align-self: flex-start;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}
.form-submit:hover::before { transform: scaleX(1); }
.form-submit:hover { color: var(--black); }
.form-submit span { position: relative; z-index: 1; }

/* ─── Admin ─────────────────────────────────────────────── */
.admin-body {
  background: #F0F0EE;
  min-height: 100vh;
  cursor: auto;
}

.admin-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 260px;
  background: var(--charcoal);
  padding: 32px 24px;
  overflow-y: auto;
  z-index: 100;
}

.admin-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.admin-logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.admin-nav-section {
  margin-bottom: 32px;
}
.admin-nav-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
  padding-left: 12px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 4px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s;
  cursor: pointer;
  margin-bottom: 2px;
}
.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(201,169,110,0.12);
  color: var(--gold-light);
}
.admin-nav-icon { font-size: 16px; }

.admin-main {
  margin-left: 260px;
  padding: 40px;
  min-height: 100vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.admin-page-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SHOWCASE STYLES
═══════════════════════════════════════════════════════════ */

.services-showcase-section {
  background: var(--white);
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
}

.services-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  background: var(--white);
}

.service-card-header {
  margin-bottom: 24px;
}

.service-card-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.service-card-features li {
  font-size: 13px;
  color: var(--mid-grey);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.service-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.3s var(--ease-luxury);
  text-decoration: none;
  margin-top: auto;
}

.service-card-link:hover {
  gap: 12px;
  color: var(--gold-dark);
}

.arrow-icon {
  display: inline-block;
  transition: transform 0.3s var(--ease-luxury);
}

.service-card-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* ─── Sub-Services Section ──────────────────────────────── */
.sub-services-section {
  background: var(--cream);
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
}

.section-subtitle {
  font-size: 16px;
  color: var(--mid-grey);
  text-align: center;
  margin-bottom: 48px;
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sub-service-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s var(--ease-luxury);
  text-decoration: none;
  color: inherit;
}

.sub-service-card:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.sub-service-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.sub-service-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-weight: 400;
}

.sub-service-desc {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sub-service-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease-luxury);
}

.sub-service-link:hover {
  gap: 4px;
  color: var(--gold-dark);
}

/* ─── Responsive Services ──────────────────────────────────– */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-card-title {
    font-size: 20px;
  }

  .sub-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sub-service-card {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BUILDS SHOWCASE STYLES
═══════════════════════════════════════════════════════════ */

.builds-showcase-section {
  background: var(--white);
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
}

.builds-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
}

.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.build-showcase-card {
  background: var(--off-white);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.build-showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  background: var(--white);
}

.build-showcase-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--light-grey);
}

.build-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-luxury);
}

.build-showcase-card:hover .build-showcase-image img {
  transform: scale(1.08);
}

.build-showcase-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.build-showcase-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(201,169,110,0.15);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}

.build-showcase-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}

.build-showcase-desc {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.build-showcase-link {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.3s var(--ease-luxury);
}

.build-showcase-card:hover .build-showcase-link {
  gap: 4px;
  letter-spacing: 0.15em;
}

/* ─── Build Highlights ────────────────────────────────────── */
.build-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: var(--section-pad) auto;
  padding: 0 clamp(24px, 7vw, 100px);
}

.build-highlight-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s var(--ease-luxury);
}

.build-highlight-card:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.build-highlight-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-weight: 500;
}

.build-highlight-card p {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ─── Builds Services Section ──────────────────────────────– */
.builds-services-section {
  background: var(--cream);
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 16px;
  color: var(--mid-grey);
  text-align: center;
  margin-bottom: 48px;
}

.builds-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.builds-service-item {
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s var(--ease-luxury);
  text-align: left;
}

.builds-service-item:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.builds-service-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.builds-service-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 500;
}

.builds-service-item p {
  font-size: 13px;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ─── Responsive Builds ────────────────────────────────────– */
@media (max-width: 768px) {
  .builds-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .build-showcase-card {
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .build-showcase-image {
    height: 140px;
  }

  .build-showcase-content {
    padding: 20px;
  }

  .build-showcase-number {
    font-size: 32px;
  }

  .build-showcase-title {
    font-size: 18px;
  }

  .build-showcase-desc {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .build-highlight-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .builds-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.admin-stat-card {
  background: var(--white);
  padding: 24px;
  border-left: 3px solid var(--gold);
}
.admin-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}
.admin-stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.admin-card {
  background: var(--white);
  padding: 32px;
  margin-bottom: 24px;
}
.admin-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.admin-btn:hover { background: var(--gold-dark); color: var(--white); }

.admin-btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--mid-grey);
}
.admin-btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); background: transparent; }

.admin-btn-danger {
  background: #c0392b;
  color: var(--white);
}
.admin-btn-danger:hover { background: #a93226; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-weight: 500;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }

.admin-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.admin-badge-gold  { background: rgba(201,169,110,0.15); color: var(--gold-dark); }
.admin-badge-green { background: rgba(39,174,96,0.1); color: #27ae60; }
.admin-badge-red   { background: rgba(231,76,60,0.1); color: #c0392b; }

.admin-form-group { margin-bottom: 20px; }
.admin-form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 8px;
  font-weight: 500;
}
.admin-input,
.admin-select,
.admin-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.admin-input:focus,
.admin-select:focus,
.admin-textarea:focus { border-color: var(--gold); }

.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.admin-image-upload {
  border: 2px dashed var(--border);
  padding: 40px;
  text-align: center;
  transition: border-color 0.3s;
  cursor: pointer;
}
.admin-image-upload:hover { border-color: var(--gold); }
.admin-image-upload-icon { font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.admin-image-upload-text { font-size: 13px; color: var(--mid-grey); }

/* ─── Map ───────────────────────────────────────────────── */
.contact-map {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(0.5) contrast(1.1);
}

/* ─── Smooth Scroll Progress ─────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ─── Magnetic Button ────────────────────────────────────── */
.magnetic { display: inline-block; transition: transform 0.3s var(--ease-luxury); }

/* ─── Section Divider ────────────────────────────────────── */
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .build-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-top > *:last-child { grid-column: span 3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { aspect-ratio: 16/9; max-height: 500px; }
  .capabilities-layout { grid-template-columns: 1fr; gap: 60px; }
  .capabilities-visual { display: none; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline::before { display: none; }
  .process-step:nth-child(4),
  .process-step:nth-child(5) { grid-column: span 1; }
  .projects-page-grid { grid-template-columns: repeat(2, 1fr); }
  .service-section { grid-template-columns: 1fr; min-height: auto; }
  .service-img-wrap { aspect-ratio: 16/9; }
  .contact-layout { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-image-container { display: none; }
  .hero-content { max-width: 100%; }
  .hero-stats { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .projects-masonry {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .project-card { aspect-ratio: 4/3; grid-column: span 1 !important; grid-row: span 1 !important; }
  .build-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-top > *:last-child { grid-column: span 1; }
  .projects-page-grid { grid-template-columns: 1fr; }
  .admin-main { margin-left: 0; padding: 20px; }
  .admin-sidebar { display: none; }
  .admin-form-row { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
  .testimonial-content { padding: 32px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .admin-stats-row { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(44px, 14vw, 56px); }
  .cta-title { font-size: clamp(32px, 10vw, 48px); }
}

/* ─── About Page — Story ────────────────────────────────── */
.story-section {
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
  background: var(--off-white);
}
.story-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.story-header .section-label { justify-content: center; }

.story-timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.story-timeline::before {
  content: '';
  position: absolute;
  left: 29px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border);
}
.story-timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding-bottom: 56px;
  position: relative;
}
.story-timeline-item:last-child { padding-bottom: 0; }
.story-timeline-year {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: background 0.4s var(--ease-luxury);
}
.story-timeline-item:hover .story-timeline-year { background: var(--gold-dark); }
.story-timeline-content { padding-top: 8px; }
.story-timeline-content h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 10px;
}
.story-timeline-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid-grey);
  font-weight: 300;
  max-width: 600px;
}

/* ─── About Page — Founders ─────────────────────────────── */
.founders-section {
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
  background: var(--white);
}
.founders-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.founders-header .section-label { justify-content: center; }
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.founder-card {
  background: var(--off-white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.12);
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
}
.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(10,10,10,0.1);
}
.founder-photo { aspect-ratio: 4/3; overflow: hidden; }
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}
.founder-card:hover .founder-photo img { transform: scale(1.06); }
.founder-info { padding: 32px 32px 36px; }
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 26px);
  color: var(--charcoal);
  font-weight: 400;
}
.founder-role {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 10px 0 16px;
  font-weight: 600;
}
.founder-bio {
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid-grey);
  font-weight: 300;
}

/* ─── About Page — Team ─────────────────────────────────── */
.team-section {
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
  background: var(--off-white);
}
.team-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.team-header .section-label { justify-content: center; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  max-width: 1360px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 20px 50px rgba(10,10,10,0.1);
  border: 3px solid var(--white);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-luxury);
}
.team-card:hover .team-photo img { transform: scale(1.1); }
.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--charcoal);
  font-weight: 400;
}
.team-role {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 6px;
  font-weight: 600;
}

/* ─── About Page — Why Choose Us ────────────────────────── */
.why-section {
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
  background: var(--black);
}
.why-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.why-header .section-label { justify-content: center; }
.why-header .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 22px;
  padding: 40px 34px;
  transition: all 0.4s var(--ease-luxury);
}
.why-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
  transform: translateY(-6px);
}
.why-card-icon { font-size: 24px; color: var(--gold); margin-bottom: 18px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  font-weight: 300;
}

/* ─── About Page — Vision & Mission ─────────────────────── */
.vm-section {
  padding: var(--section-pad) clamp(24px, 7vw, 100px);
  background: var(--white);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}
.vm-card {
  background: var(--cream);
  border-radius: 32px;
  padding: clamp(40px, 5vw, 60px);
}
.vm-card-icon { font-size: 30px; color: var(--gold-dark); margin-bottom: 22px; }
.vm-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 18px;
}
.vm-card p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--dark-grey);
  font-weight: 300;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr; max-width: 480px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .story-timeline-item { grid-template-columns: 44px 1fr; gap: 20px; }
  .story-timeline-year { width: 44px; height: 44px; font-size: 12px; }
  .story-timeline::before { left: 21px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .team-photo { width: 120px; height: 120px; }
}
