/* ===========================
   WILEY DE' BRIGHT DECOR
   Premium Luxury Design v2
   =========================== */

:root {
  --primary: #0A0424;
  --primary-mid: #120833;
  --gold: #E69A0C;
  --gold-light: #f0b429;
  --gold-pale: rgba(230,154,12,0.08);
  --white: #ffffff;
  --off-white: #FAF8F4;
  --cream: #F4EFE6;
  --text: #1a1628;
  --text-muted: #7a7490;
  --border: rgba(10,4,36,0.09);
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 12px rgba(10,4,36,0.07);
  --shadow-md: 0 8px 32px rgba(10,4,36,0.11);
  --shadow-lg: 0 20px 60px rgba(10,4,36,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
  position: fixed; inset: 0;
  background: var(--primary);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-ring {
  width: 90px; height: 90px;
  border: 1px solid rgba(230,154,12,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 2rem;
  animation: spin 1.4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 600;
  color: var(--white); letter-spacing: 3px; display: block;
}
.loader-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 8px;
  color: var(--gold); text-transform: uppercase;
  display: block; margin-top: 6px;
}
.loader-track {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 2rem auto 1rem; overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: trackFill 1.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes trackFill { from { width:0; } to { width:100%; } }
.loader-pct {
  font-size: 0.68rem; letter-spacing: 3px;
  color: rgba(255,255,255,0.25); font-weight: 300;
}

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1.5rem 0;
  transition: var(--transition);
}
#main-header.scrolled {
  background: rgba(10,4,36,0.97);
  backdrop-filter: blur(16px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(230,154,12,0.1);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-link { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.logo-img { width: 44px; height: 44px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px;
}
.logo-sub {
  font-size: 0.58rem; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase; margin-top: 4px;
}
#main-nav { display: flex; align-items: center; gap: 2.5rem; }
#main-nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
#main-nav a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s;
}
#main-nav a:hover, #main-nav a.active { color: var(--white); }
#main-nav a:hover::after, #main-nav a.active::after { width: 100%; }
.nav-cta {
  border: 1px solid rgba(230,154,12,0.4) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 0 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--primary) !important; }
.nav-admin { color: var(--gold) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 1001; position: relative;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2.2rem;
  font-family: 'Jost', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-arrow { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-gold {
  background: var(--gold); color: var(--primary);
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,154,12,0.3); }

.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--primary); transform: translateY(-2px); }

/* ============================================================
   SECTION LABELS / TITLES
   ============================================================ */
.label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.label::before {
  content: ''; display: inline-block; width: 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 600; color: var(--primary); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 0.97rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.9; max-width: 580px;
}
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .label { justify-content: center; }
.section-header.centered .label::before { display: none; }
.section-header.centered .section-body { margin: 0 auto; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 58vh; position: relative;
  display: flex; align-items: flex-end; overflow: hidden; padding-bottom: 5rem;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,4,36,0.93) 0%, rgba(10,4,36,0.5) 60%, rgba(10,4,36,0.25) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .label { margin-bottom: 1rem; }
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600;
  color: var(--white); line-height: 1.1; margin-bottom: 1.2rem;
}
.page-hero-content p { color: rgba(255,255,255,0.55); font-size: 1rem; font-weight: 300; max-width: 480px; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 2rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; }
.breadcrumb .sep { color: var(--gold); font-size: 0.6rem; }
.breadcrumb span:last-child { color: var(--gold); }

/* ============================================================
   HERO — HOME
   ============================================================ */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/pic1.jpg') center/cover no-repeat;
  transform: scale(1.06); transition: transform 10s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,4,36,0.94) 0%, rgba(10,4,36,0.65) 50%, rgba(10,4,36,0.1) 100%),
    linear-gradient(to top, rgba(10,4,36,0.4) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.6s forwards;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 600;
  line-height: 1.08; color: var(--white); margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(35px); animation: fadeUp 1s 0.85s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-tagline {
  font-size: 1rem; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.6); margin-bottom: 3rem; max-width: 500px;
  opacity: 0; transform: translateY(30px); animation: fadeUp 1s 1.05s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px); animation: fadeUp 1s 1.25s forwards;
}

/* Circular year badge */
.hero-badge {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  z-index: 2; opacity: 0; animation: fadeIn 1s 2s forwards;
}
.hero-badge-ring {
  width: 155px; height: 155px;
  border: 1px solid rgba(230,154,12,0.22);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  position: relative;
}
.hero-badge-ring::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(230,154,12,0.1); border-radius: 50%;
}
.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.hero-badge-text { font-size: 0.6rem; letter-spacing: 2.5px; color: rgba(255,255,255,0.45); text-transform: uppercase; text-align: center; line-height: 1.4; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.scroll-label {
  writing-mode: vertical-rl; font-size: 0.62rem; letter-spacing: 3px;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
}
.scroll-track { width: 1px; height: 60px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.scroll-fill {
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollFill 2s ease-in-out infinite;
}
@keyframes scrollFill { 0% { top: -100%; } 100% { top: 100%; } }

/* ============================================================
   FEATURED SERVICES — HOME
   ============================================================ */
#featured-services { padding: 8rem 0; background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5px; background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white); position: relative; overflow: hidden; transition: var(--transition);
}
.service-card-img { height: 250px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 2.2rem 2rem 1.8rem; position: relative; }
.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300;
  color: rgba(10,4,36,0.04); position: absolute; top: 0.5rem; right: 1.5rem;
  line-height: 1; pointer-events: none; user-select: none;
}
.service-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--primary); margin-bottom: 0.8rem; line-height: 1.2;
}
.service-card-body p {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 300; line-height: 1.8; margin-bottom: 1.8rem;
}
.service-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.2rem; border-top: 1px solid var(--border);
}
.service-card-link {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary); text-decoration: none; transition: color 0.3s;
}
.service-card-link:hover { color: var(--gold); }
.card-arrow {
  width: 32px; height: 32px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.service-card:hover .card-arrow { background: var(--gold); border-color: var(--gold); }
.card-arrow svg { width: 13px; height: 13px; stroke: var(--text); transition: stroke 0.3s; }
.service-card:hover .card-arrow svg { stroke: var(--primary); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s;
}
.service-card:hover::after { width: 100%; }

/* ============================================================
   PARALLAX STATS
   ============================================================ */
.parallax-section {
  position: relative; height: 480px;
  display: flex; align-items: center; overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -20%;
  background-attachment: fixed; background-size: cover; background-position: center;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(10,4,36,0.83); }
.parallax-content { position: relative; z-index: 2; width: 100%; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 3rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 600; color: var(--gold); line-height: 1; display: block; margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.68rem; letter-spacing: 3px; color: rgba(255,255,255,0.35); text-transform: uppercase; font-weight: 500; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); }
.why-card {
  padding: 3rem 2rem; border-right: 1px solid var(--border);
  position: relative; transition: var(--transition);
}
.why-card:last-child { border-right: none; }
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.5s;
}
.why-card:hover::after { width: 100%; }
.why-icon { width: 44px; height: 44px; margin-bottom: 1.8rem; color: var(--gold); display: block; }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; color: var(--primary); margin-bottom: 0.8rem;
}
.why-card p { font-size: 0.88rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--primary); padding: 6rem 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-band-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 600;
  color: var(--white); line-height: 1.2; margin-bottom: 0.7rem;
}
.cta-band-text p { color: rgba(255,255,255,0.45); font-size: 0.95rem; font-weight: 300; }
.cta-band-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-story { padding: 7rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 570px; object-fit: cover; display: block; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 175px; height: 175px; background: var(--primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.about-img-accent .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.about-img-accent .lbl {
  font-size: 0.62rem; letter-spacing: 3px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; text-align: center; line-height: 1.4;
}
.about-img-border {
  position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  border: 1px solid rgba(230,154,12,0.18); pointer-events: none;
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 600;
  color: var(--primary); margin-bottom: 0.5rem; line-height: 1.2;
}
.about-text p { font-size: 0.95rem; font-weight: 300; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2rem; }

.about-values-strip { padding: 5rem 0; background: var(--off-white); }
.values-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); }
.value-item { padding: 2.8rem 2rem; text-align: center; border-right: 1px solid var(--border); }
.value-item:last-child { border-right: none; }
.value-icon { width: 38px; height: 38px; color: var(--gold); margin: 0 auto 1.2rem; display: block; }
.value-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; }

.mv-section { padding: 7rem 0; background: var(--primary); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.mv-card { padding: 3.5rem; border: 1px solid rgba(230,154,12,0.12); position: relative; }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }
.mv-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--white); margin-bottom: 1.2rem; }
.mv-card p { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.9; }
.mv-card ul { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mv-card ul li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.5); }
.mv-card ul li::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { padding: 5rem 0 7rem; }
.services-layout { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
.services-sidenav { position: sticky; top: 100px; background: var(--primary); }
.sidenav-title { padding: 1rem 1.5rem; font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; color: var(--gold); border-bottom: 1px solid rgba(230,154,12,0.12); }
.services-sidenav a {
  display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.5rem;
  color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; font-weight: 400;
  border-left: 2px solid transparent; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.services-sidenav a .sn {
  font-size: 0.6rem; color: rgba(255,255,255,0.2); font-weight: 600;
  letter-spacing: 1px; flex-shrink: 0; width: 18px;
}
.services-sidenav a:hover, .services-sidenav a.active {
  color: var(--white); border-left-color: var(--gold);
  background: rgba(230,154,12,0.06); padding-left: 2rem;
}
.services-sidenav a.active .sn { color: var(--gold); }

.service-section { margin-bottom: 5rem; scroll-margin-top: 100px; }
.service-detail-card { background: var(--white); border: 1px solid var(--border); }
.service-detail-img { height: 320px; overflow: hidden; position: relative; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; display: block; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-header {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,4,36,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem;
}
.service-detail-header .label { margin-bottom: 0.5rem; }
.service-detail-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--white); }
.service-detail-body { padding: 2.8rem; }
.service-detail-body p { font-size: 0.95rem; font-weight: 300; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2rem; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.service-feature { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; font-weight: 400; color: var(--text); }
.feat-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-page { padding: 5rem 0 7rem; }
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.project-card { position: relative; overflow: hidden; background: var(--primary); cursor: pointer; }
.project-card-img { height: 310px; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; filter: brightness(0.88); }
.project-card:hover .project-card-img img { transform: scale(1.1); filter: brightness(0.65); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,4,36,0.95) 0%, rgba(10,4,36,0.05) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.project-tag { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 0.4rem; opacity: 0; transform: translateY(6px); transition: opacity 0.4s, transform 0.4s; }
.project-card:hover .project-tag { opacity: 1; transform: translateY(0); }
.project-overlay h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.project-overlay p { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.6; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s, opacity 0.4s; }
.project-card:hover .project-overlay p { max-height: 80px; opacity: 1; }
.project-divider { width: 28px; height: 1px; background: var(--gold); margin-bottom: 0.7rem; transition: width 0.4s; }
.project-card:hover .project-divider { width: 56px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 6rem 0 7rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 600; color: var(--primary); margin-bottom: 1rem; line-height: 1.2; }
.contact-info > p { font-size: 0.95rem; font-weight: 300; color: var(--text-muted); line-height: 1.85; margin-bottom: 3rem; }
.contact-items { display: flex; flex-direction: column; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-ico { width: 38px; height: 38px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-text strong { display: block; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.contact-text span { font-size: 0.93rem; font-weight: 300; color: var(--text-muted); }
.map-placeholder { margin-top: 2.5rem; height: 190px; background: var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.map-placeholder svg { width: 30px; height: 30px; color: var(--gold); }
.map-placeholder span { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); }

.contact-form-wrap { background: var(--off-white); padding: 3.5rem; border: 1px solid var(--border); }
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--primary); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--primary); margin-bottom: 0.6rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--border);
  background: var(--white); font-family: 'Jost', sans-serif;
  font-size: 0.93rem; font-weight: 300; color: var(--text); outline: none;
  transition: border-color 0.3s; border-radius: 0; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(230,154,12,0.07);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success { background: rgba(230,154,12,0.07); border-left: 2px solid var(--gold); padding: 1rem 1.2rem; font-size: 0.9rem; color: var(--primary); margin-bottom: 1.5rem; }
.form-error { background: rgba(220,38,38,0.06); border-left: 2px solid #dc2626; padding: 1rem 1.2rem; font-size: 0.9rem; color: #991b1b; margin-bottom: 1.5rem; }

/* ============================================================
   LOGIN
   ============================================================ */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--primary); position: relative; overflow: hidden;
}
.auth-page::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(230,154,12,0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(230,154,12,0.05) 0%, transparent 50%);
}
.auth-card { position: relative; z-index: 2; background: var(--white); width: 100%; max-width: 420px; padding: 3.5rem; border-top: 2px solid var(--gold); }
.auth-logo { text-align: center; margin-bottom: 2.5rem; }
.auth-logo img { width: 52px; height: 52px; object-fit: contain; display: block; margin: 0 auto 1rem; }
.auth-logo .logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--primary); display: block; }
.auth-logo .logo-sub { font-size: 0.58rem; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; display: block; margin-top: 5px; }
.auth-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--primary); margin-bottom: 2rem; }
.auth-error { background: rgba(220,38,38,0.06); border-left: 2px solid #dc2626; padding: 0.9rem 1rem; font-size: 0.88rem; color: #991b1b; margin-bottom: 1.5rem; }
.auth-hint { margin-top: 1.5rem; padding: 1rem; background: var(--off-white); font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.auth-hint code { color: var(--gold); }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-page { padding: 7rem 0 5rem; background: var(--off-white); min-height: 100vh; }
.admin-topbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; gap: 2rem; }
.admin-topbar h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--primary); }
.admin-topbar p { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.3rem; font-weight: 300; }
.admin-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 3rem; }
.admin-stat { background: var(--white); padding: 2rem; border-left: 2px solid transparent; transition: border-color 0.3s; }
.admin-stat:hover { border-left-color: var(--gold); }
.admin-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); font-weight: 600; }
.admin-stat-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; font-weight: 500; }
.admin-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: start; }
.admin-card { background: var(--white); border: 1px solid var(--border); padding: 2.5rem; }
.admin-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--primary); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.admin-project-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.admin-project-item:last-child { border-bottom: none; }
.admin-project-item img { width: 75px; height: 60px; object-fit: cover; flex-shrink: 0; }
.admin-project-info { flex: 1; }
.admin-project-info h4 { font-weight: 600; color: var(--primary); font-size: 0.95rem; margin-bottom: 0.3rem; }
.admin-project-info p { font-size: 0.82rem; font-weight: 300; color: var(--text-muted); line-height: 1.5; }
.admin-project-info small { font-size: 0.7rem; color: var(--gold); letter-spacing: 1px; display: block; margin-top: 0.4rem; }
.delete-btn { background: none; border: 1px solid rgba(220,38,38,0.2); color: #dc2626; padding: 0.4rem 0.9rem; font-size: 0.75rem; font-weight: 500; font-family: 'Jost', sans-serif; cursor: pointer; transition: background 0.3s, color 0.3s; white-space: nowrap; }
.delete-btn:hover { background: #dc2626; color: var(--white); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer { background: var(--primary); }
.footer-top { padding: 5rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.footer-logo img { width: 38px; height: 38px; object-fit: contain; }
.footer-col p { font-size: 0.87rem; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.9; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.87rem; font-weight: 300; transition: color 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a::before { content: ''; width: 12px; height: 1px; background: rgba(230,154,12,0.3); flex-shrink: 0; transition: background 0.3s, width 0.3s; }
.footer-col ul li a:hover::before { background: var(--gold); width: 18px; }
.footer-contact-item { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1rem; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.5; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.77rem; font-weight: 300; color: rgba(255,255,255,0.22); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; }
  .services-sidenav { display: grid; grid-template-columns: repeat(4,1fr); position: static; }
  .sidenav-title { display: none; }
  .services-sidenav a { border-left: none; border-bottom: 2px solid transparent; padding: 0.75rem 1rem; }
  .services-sidenav a.active, .services-sidenav a:hover { border-bottom-color: var(--gold); border-left: none; padding-left: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .mv-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  #main-nav { display: none; position: fixed; inset: 0; background: var(--primary); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; z-index: 999; }
  #main-nav.open { display: flex; }
  #main-nav a { font-size: 1rem; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid var(--border); }
  .why-card:last-child { border-bottom: none; }
  .values-row { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }
  .auth-card { padding: 2.5rem 1.8rem; }
  .about-img-accent { right: 0; bottom: 0; width: 140px; height: 140px; }
  .about-img-border { display: none; }
  .admin-stats { grid-template-columns: 1fr; }
  .services-sidenav { display: flex; flex-direction: column; }
  .hero-ctas { flex-direction: column; }
}
