/* =====================================================
   NIVETHA CONSTRUCTION — Premium Design System
   (HYBRID THEME: hero / stats / footer / cta-band / page-hero
    stay NAVY for impact. Body content sections — service
    cards, contact card — lightened per client request.)
   ===================================================== */

:root {
  /* Colors */
  --navy: #0A1830;
  --navy-2: #0F2647;
  --navy-3: #142d54;
  --gold: #C9A24B;
  --gold-light: #E9CE87;
  --gold-dark: #9c7c34;
  --off-white: #F8F6F0;
  --white: #FFFFFF;
  --text-dark: #1A2233;
  --text-muted: #5C6478;
  --line: rgba(201, 162, 75, 0.25);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Poppins', sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
  font-weight: 700;
}

p { margin: 0 0 16px; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* EYEBROW / SECTION LABELS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }

.on-dark .eyebrow { color: var(--gold-light); }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark p { color: rgba(255,255,255,0.72); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 11px; }

/* NAVBAR — stays navy-on-scroll (standard pattern, not a "dark theme" complaint) */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.is-scrolled,
.navbar.is-solid {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 68px; width: auto; transition: var(--transition); }
.navbar.is-scrolled .nav-logo img,
.navbar.is-solid .nav-logo img { height: 56px; }

.nav-menu { display: flex; align-items: center; gap: 38px; }
.nav-menu a {
  position: relative;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  padding: 6px 0;
  transition: var(--transition);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--gold-light); }

.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: var(--transition); }

/* HOME PAGE ONLY: hero is light, so transparent (un-scrolled) navbar
   needs dark text. Add class="home" on the <body> tag of index.html only —
   every other page keeps navy .page-hero, so it keeps the default white nav text above. */
body.home .navbar:not(.is-scrolled):not(.is-solid) .nav-menu a { color: var(--navy); }
body.home .navbar:not(.is-scrolled):not(.is-solid) .nav-menu a.active { color: var(--gold-dark); }
body.home .navbar:not(.is-scrolled):not(.is-solid) .nav-toggle span { background: var(--navy); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 100px 24px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  max-height: 100vh;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

body.menu-open { overflow: hidden; }

/* HERO — LIGHT IVORY THEME (per client color spec) */
.hero {
  position: relative;
  background: #F8F6F0;
  padding: 190px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,162,75,0.07) 0, rgba(201,162,75,0.07) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(201,162,75,0.07) 0, rgba(201,162,75,0.07) 1px, transparent 1px, transparent 60px);
  opacity: 0.6;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag { font-family: var(--font-display); font-size: 20px; color: #9c7c34; margin-bottom: 18px; font-style: italic; }
.hero h1 { color: #172033; font-size: clamp(34px, 5vw, 58px); margin-bottom: 22px; }
.hero h1 .accent { color: #C9A24B; }
.hero-desc { color: #5C6478; max-width: 480px; font-size: 17px; }
.hero-actions { display: flex; gap: 18px; margin-top: 34px; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-frame { border: 1px solid var(--gold); border-radius: 6px; padding: 14px; background: rgba(255,255,255,0.02); position: relative; }
.hero-frame img { border-radius: 3px; width: 100%; height: 520px; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--gold); color: var(--navy);
  padding: 20px 26px; border-radius: 4px; text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 28px; line-height: 1; }
.hero-badge span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }

/* PAGE (INNER) HERO — kept NAVY, same reasoning as main hero */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 170px 0 90px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,162,75,0.05) 0, rgba(201,162,75,0.05) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 14px; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* SERVICE QUICK ACCESS CARDS — LIGHTENED (was navy card on off-white section) */
.services-strip { padding: 90px 0; background: var(--off-white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10,24,48,0.06);
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,162,75,0.10), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 22px 40px rgba(10,24,48,0.14); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 62px; height: 62px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 50%;
  color: var(--gold); font-size: 24px; position: relative; z-index: 2;
}
.service-card h4 { color: var(--navy); font-size: 17px; position: relative; z-index: 2; }
.service-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 0; position: relative; z-index: 2; }

/* STATS — kept NAVY (impact band) */
.stats { background: var(--navy); padding: 70px 0; }
.stats .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  color: var(--gold);
  display: flex; justify-content: center; align-items: baseline; gap: 4px;
}
.stat-item .label { color: var(--white); letter-spacing: 2px; text-transform: uppercase; font-size: 13px; margin-top: 8px; }

/* ABOUT SECTION */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 6px; width: 100%; height: 460px; object-fit: cover; }
.about-media .frame-line { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: 6px; z-index: -1; }
.feature-list { display: grid; gap: 14px; margin: 28px 0 32px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--navy); }
.feature-list li i { color: var(--gold); font-size: 16px; }

/* CARDS */
.section { padding: 100px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); }

.svc-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10,24,48,0.08);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(10,24,48,0.16); }
.svc-card .svc-img { height: 220px; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.svc-card:hover .svc-img img { transform: scale(1.08); }
.svc-card .svc-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.svc-card .svc-icon { color: var(--gold); font-size: 26px; margin-bottom: 14px; }
.svc-card h3 { font-size: 20px; }
.svc-card p { flex: 1; }
.svc-card .btn { margin-top: auto; align-self: flex-start; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Filters */
.filter-bar { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.filter-btn {
  background: transparent; border: 1px solid var(--navy); color: var(--navy);
  padding: 10px 26px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 30px; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Project cards (image-based — dark overlay kept for text legibility over photos) */
.project-card { position: relative; border-radius: 6px; overflow: hidden; height: 340px; display: block; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.project-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,24,48,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
}
.project-card .cat-tag {
  align-self: flex-start; background: var(--gold); color: var(--navy);
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: auto;
}
.project-card h4 { color: var(--white); margin-bottom: 4px; }
.project-card .loc { color: var(--gold-light); font-size: 13px; margin-bottom: 10px; }
.project-card:hover img { transform: scale(1.1); }
.project-card .view-link { color: var(--white); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }

.hidden-item { display: none !important; }

/* Gallery masonry (hover overlay kept dark for legibility over photos) */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 18px; }
.gallery-grid .g-item:nth-child(1) { grid-row: span 2; }
.gallery-grid .g-item:nth-child(4) { grid-row: span 2; }
.g-item { position: relative; border-radius: 6px; overflow: hidden; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.g-item .g-overlay {
  position: absolute; inset: 0; background: rgba(10,24,48,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); color: var(--white); font-size: 24px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-item:hover img { transform: scale(1.1); }

/* Lightbox (fullscreen modal — dark backdrop is standard UX, not "site theme") */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,10,20,0.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 6px; border: 1px solid var(--gold); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid var(--gold);
  color: var(--white); width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* Before/After */
.compare-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-panel { position: relative; border-radius: 6px; overflow: hidden; }
.compare-panel img { height: 380px; width: 100%; object-fit: cover; }
.compare-tag {
  position: absolute; top: 18px; left: 18px; background: var(--navy); color: var(--gold-light);
  padding: 8px 18px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; border: 1px solid var(--gold);
}

/* Video */
.video-hero { position: relative; border-radius: 8px; overflow: hidden; }
.video-hero img { width: 100%; height: 520px; object-fit: cover; }
.video-hero .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(201,162,75,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 30px; border: 2px solid var(--white);
  transition: var(--transition);
}
.video-hero .play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }

.video-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,10,20,0.94);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.video-modal.open { display: flex; }
.video-modal .modal-box { width: 100%; max-width: 900px; position: relative; }
.video-modal video, .video-modal iframe { width: 100%; aspect-ratio: 16/9; border-radius: 6px; border: 1px solid var(--gold); }
.video-modal .lightbox-close { top: -50px; right: 0; }

/* CTA — kept NAVY (impact band, same tier as hero/footer) */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,162,75,0.05) 0, rgba(201,162,75,0.05) 1px, transparent 1px, transparent 60px);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 24px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* CONTACT PAGE — info card LIGHTENED (was navy, now matches light form card) */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; min-width: 0; }
.contact-grid > * { min-width: 0; }
.contact-info-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: 6px;
  padding: 46px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(10,24,48,0.06);
}
.contact-info-card h3 { color: var(--navy); }
.contact-line { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-line i { color: var(--gold-dark); font-size: 18px; margin-top: 3px; flex-shrink: 0; }
.contact-line span { color: var(--text-muted); min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.contact-info-card { min-width: 0; }
.contact-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.form-card { background: var(--white); border-radius: 6px; padding: 46px; box-shadow: 0 20px 50px rgba(10,24,48,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #dcd8cd; border-radius: 4px;
  font-family: var(--font-body); font-size: 15px; background: var(--off-white); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; background: var(--white); }
.map-embed { border-radius: 6px; overflow: hidden; margin-top: 50px; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* FOOTER — kept NAVY (impact section, matches hero for brand bookending) */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { height: 64px; }
.footer-brand-name { font-family: var(--font-display); color: var(--white); font-size: 20px; }
.footer-tag { color: var(--gold-light); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer h5 { color: var(--white); font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 16px; align-items: flex-start; min-width: 0; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact li span { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.footer-grid > div { min-width: 0; }
.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icons a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-icons a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 13px; }
.footer-bottom a { color: var(--gold-light); }

/* FLOATING BUTTONS */
.float-actions { position: fixed; right: 26px; bottom: 26px; z-index: 900; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white); box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  transition: var(--transition); position: relative;
}
.float-btn.whatsapp { background: #22c35e; }
.float-btn.call { background: var(--gold); color: var(--navy); }
.float-btn:hover { transform: scale(1.1); }
.float-btn .tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white); padding: 8px 14px; border-radius: 4px;
  font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
}
.float-btn:hover .tooltip { opacity: 1; }

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* Project details page */
.pd-meta { display: flex; gap: 40px; margin: 20px 0 30px; flex-wrap: wrap; }
.pd-meta div span { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.pd-meta div strong { color: var(--navy); font-size: 16px; }
.pd-nav { display: flex; justify-content: space-between; padding: 30px 0; border-top: 1px solid var(--line); margin-top: 40px; }
.pd-nav a { color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.pd-nav a:hover { color: var(--gold-dark); }