/* ==========================================================================
   Olympia Builders - WordPress Theme Main Stylesheet
   Faithfully converted from the React (Vite + Tailwind) front-end.
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --panel: #1a1a1a;
  --accent: #c9b27c;
  --accent-soft: rgba(201, 178, 124, 0.16);
  --text: #f5f5f0;
  --muted: #9a9a8f;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --font-heading: 'Playfair Display', serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-detail: 'Fraunces', ui-serif, Georgia, serif;
}


/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: rgba(201, 178, 124, 0.15);
}

* {
  -webkit-overflow-scrolling: touch;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  background-color: #0a0a0a;
  color: #f5f5f0;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: rgba(201, 178, 124, 0.1);
  touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0;
}

p {
  margin: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
a,
input,
textarea,
select {
  min-height: 44px;
  min-width: 44px;
}

@media (max-width: 640px) {
  button,
  a {
    min-height: 48px;
  }
}


/* ==========================================================================
   3. UTILITY CLASSES
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.text-accent {
  color: #c9b27c;
}


/* ==========================================================================
   4. EYEBROW LABELS (Shared across sections)
   ========================================================================== */

.eyebrow-label,
.eyebrow,
.eyebrow-process,
.instagram-eyebrow,
.projects-eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: #9a9a8f;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow-label::before,
.eyebrow::before,
.eyebrow-process::before,
.instagram-eyebrow::before,
.projects-eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 178, 124, 0.5), transparent);
}

.projects-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
}

.eyebrow-line {
  width: 52px;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 178, 124, 0.5), transparent);
}


/* ==========================================================================
   5. BUTTON PRIMARY (Shared by Projects, Contact, etc.)
   ========================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c9b27c, #e0c890);
  color: #151515;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.8);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary:disabled:hover {
  transform: none;
  filter: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.btn-primary span {
  font-size: 0.78rem;
}

.btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #151515;
  flex-shrink: 0;
}


/* ==========================================================================
   6. HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 0.3s ease-in-out;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.site-header.menu-open {
  z-index: 150;
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: -1;
}

/* --- Desktop Header --- */

.header-display-desktop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  min-height: 90px;
}

@media (max-width: 1023px) {
  .header-display-desktop {
    display: none;
  }
}

.header-title {
  display: flex;
  align-items: center;
}

.header-title-logo img {
  height: 160px;
  width: auto;
  display: block;
}

.header-burger {
  display: flex;
  align-items: center;
}

.header-burger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0.5rem;
  color: #f5f5f0;
  transition: color 0.2s ease;
}

.header-burger-btn:hover {
  color: #c9b27c;
}

/* Burger line styles (CSS fallback - the React SVG animated icon handles this in JS) */
.burger-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #f5f5f0;
  transition: all 0.3s ease;
  margin: 4px 0;
}

.burger-icon.active .burger-line--top {
  transform: rotate(45deg) translateY(6px);
}

.burger-icon.active .burger-line--middle {
  opacity: 0;
}

.burger-icon.active .burger-line--bottom {
  transform: rotate(-45deg) translateY(-6px);
}

.header-burger-btn:hover .burger-line {
  background: #c9b27c;
}

/* Legacy burger inner (from globals.css) */
.burger-inner {
  display: flex;
  flex-direction: column;
  width: 28px;
  height: 20px;
  justify-content: space-between;
}

.top-bun,
.patty,
.bottom-bun {
  height: 2px;
  width: 100%;
  background-color: #f5f5f0;
  transition: background-color 0.2s ease;
}

.header-burger-btn:hover .top-bun,
.header-burger-btn:hover .patty,
.header-burger-btn:hover .bottom-bun {
  background-color: #c9b27c;
}

/* --- Mobile Header --- */

.header-display-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .header-display-mobile {
    display: block;
  }
}

@media (min-width: 1024px) {
  .header-display-mobile {
    display: none;
  }
}

.header-mobile-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
}

.header-mobile-inner .header-title-logo img {
  height: 140px;
  width: auto;
}

.header-mobile-inner.glass-mode {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.375rem 1rem;
  margin: 0.5rem 1rem;
}

.header-mobile-inner.glass-mode .header-title-logo img {
  height: 100px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


/* ==========================================================================
   7. NAVIGATION OVERLAY
   ========================================================================== */

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.nav-overlay-link {
  color: white;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

@media (min-width: 768px) {
  .nav-overlay-link {
    font-size: 1.875rem;
  }
}

.nav-overlay-link:hover {
  color: #d1d5db; /* gray-300 */
}

/* Staggered animation delays */
.nav-overlay-link:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay-link:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay-link:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay-link:nth-child(4) { transition-delay: 0.25s; }

.nav-overlay.active .nav-overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay-social {
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay.active .nav-overlay-social {
  opacity: 1;
}

.nav-social-icon {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: color 0.2s ease;
}

.nav-social-icon:hover {
  color: #d1d5db;
}


/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-swiper,
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  color: #f5f5f0;
}

/* Swiper Custom Variables */
.hero-swiper {
  --swiper-pagination-bottom: 20px;
  --swiper-pagination-bullet-inactive-color: #f5f5f0;
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-pagination-color: #c9b27c;
}


/* ==========================================================================
   9. SCROLLING IMAGES
   ========================================================================== */

.scrolling-images-section {
  padding: 2rem 0;
  background: #0a0a0a;
  overflow: hidden;
}

@media (min-width: 768px) {
  .scrolling-images-section {
    padding: 3rem 0;
  }
}

.scrolling-images-overflow {
  overflow: hidden;
}

.scrolling-images-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

@media (min-width: 768px) {
  .scrolling-images-track {
    gap: 2rem;
  }
}

@keyframes scroll-horizontal {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-scroll-horizontal {
  animation: scroll-horizontal 40s linear infinite;
  will-change: transform;
}

.scrolling-image-item {
  height: 60vh;
  width: 75vw;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .scrolling-image-item {
    height: 70vh;
    width: 50vw;
  }
}

@media (min-width: 1024px) {
  .scrolling-image-item {
    width: 40vw;
  }
}

.scrolling-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   10. PROJECTS OVERVIEW (Home page card)
   ========================================================================== */

.projects-overview-section {
  padding: 4.4rem 1.5rem;
  background: radial-gradient(circle at top, rgba(201, 178, 124, 0.05), transparent 60%);
}

@media (min-width: 640px) {
  .projects-overview-section {
    padding: 5rem 2.25rem;
  }
}

@media (min-width: 1024px) {
  .projects-overview-section {
    padding: 5.6rem 3.5rem;
  }
}

.projects-overview-shell {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.projects-overview-card {
  border-radius: 26px;
  padding: 2.3rem 1.8rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 2.1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.015), rgba(0, 0, 0, 0.82));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .projects-overview-card {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 2.6rem;
    padding: 2.7rem 2.4rem 2.9rem;
  }
}

.projects-overview-copy {
  max-width: 560px;
}

.projects-overview-title {
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  color: #f5f5f0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 2.3rem;
}

.projects-overview-subtitle {
  font-size: 0.96rem;
  max-width: 32rem;
  color: #9a9a8f;
}

@media (min-width: 768px) {
  .projects-overview-subtitle {
    font-size: 1.02rem;
  }
}

.projects-overview-meta {
  border-left: 1px solid rgba(201, 178, 124, 0.28);
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.projects-overview-meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(154, 154, 143, 0.9);
}

.projects-overview-meta-text {
  font-size: 0.9rem;
  color: #9a9a8f;
}

.projects-overview-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 480px) {
  .projects-overview-cta-row {
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
  }
}

.projects-overview-cta-note {
  font-size: 0.76rem;
  color: rgba(154, 154, 143, 0.9);
}

.projects-overview-tagline {
  margin-top: 1.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.projects-overview-tagline--desktop {
  display: none;
}

@media (min-width: 768px) {
  .projects-overview-tagline--desktop {
    display: inline-flex;
  }
}

.projects-overview-tagline--mobile {
  display: inline-flex;
}

@media (min-width: 768px) {
  .projects-overview-tagline--mobile {
    display: none;
  }
}

.tagline-line {
  height: 1px;
  width: 120px;
  background: linear-gradient(to right, rgba(201, 178, 124, 0), rgba(201, 178, 124, 0.85), rgba(201, 178, 124, 0));
}


/* ==========================================================================
   11. LOGO CAROUSEL
   ========================================================================== */

.logo-carousel-section {
  padding: 4rem 1.5rem;
  background: #0a0a0a;
}

@media (min-width: 768px) {
  .logo-carousel-section {
    padding: 5rem 1.5rem;
  }
}

.logo-carousel-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.logo-carousel-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo-marquee {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.85));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: scroll-logos var(--scroll-duration, 80s) linear infinite;
  will-change: transform;
}

@media (min-width: 768px) {
  .logo-track {
    gap: 4.5rem;
  }
}

@media (max-width: 767px) {
  .logo-track {
    --scroll-duration: 40s;
  }
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  opacity: 0.65;
  filter: saturate(0.8) brightness(0.9);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.logo-item:hover {
  opacity: 1;
  filter: saturate(1) brightness(1);
  transform: translateY(-1px);
}

.logo-item-img {
  height: 75px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  opacity: 0.65;
  filter: saturate(0.8) brightness(0.9);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

@media (min-width: 768px) {
  .logo-item-img {
    height: 85px;
  }
}

.logo-item-img:hover {
  opacity: 1;
  filter: saturate(1) brightness(1);
  transform: translateY(-1px);
}

/* Corner Brackets */
.corner-brackets {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

.corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(201, 178, 124, 0.6);
}

.corner-tl {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 8px;
  right: 8px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 8px;
  left: 8px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

/* Logo Highlight Line */
.logo-highlight-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-0.5px);
  background: linear-gradient(
    90deg,
    rgba(201, 178, 124, 0.0),
    rgba(201, 178, 124, 0.8),
    rgba(201, 178, 124, 0.35),
    rgba(201, 178, 124, 0.8),
    rgba(201, 178, 124, 0.0)
  );
  opacity: 0.95;
  pointer-events: none;
}

/* Edge Fades */
.logo-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 1;
}

.logo-fade--left {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, rgba(10, 10, 10, 0.95), transparent);
}

.logo-fade--right {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, rgba(10, 10, 10, 0.95), transparent);
}


/* ==========================================================================
   12. PROCESS SECTION (Direct copy from Process.tsx <style> block)
   ========================================================================== */

.process-section {
  padding: 4.2rem 1.5rem 4.6rem;
  background: radial-gradient(circle at top, rgba(201, 178, 124, 0.06), transparent 55%);
}

@media (min-width: 640px) {
  .process-section {
    padding: 4.8rem 2.25rem 5rem;
  }
}

@media (min-width: 1024px) {
  .process-section {
    padding: 5.4rem 3.5rem 5.6rem;
  }
}

.process-shell {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.process-header {
  max-width: 720px;
  margin: 0 auto 3.2rem;
}

.process-title {
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0.55rem 0 0.7rem;
}

@media (min-width: 768px) {
  .process-title {
    font-size: 2.3rem;
  }
}

.process-subtitle {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 34rem;
}

@media (min-width: 768px) {
  .process-subtitle {
    font-size: 1.02rem;
  }
}

.process-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }
}

.process-card {
  position: relative;
  padding: 1.4rem 1.4rem 1.5rem;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.8));
  border: 1px solid var(--border-subtle);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

@media (min-width: 640px) {
  .process-card {
    padding: 1.6rem 1.6rem 1.7rem;
  }
}

@media (min-width: 768px) {
  .process-card--wide {
    grid-column: 1 / -1;
  }
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 178, 124, 0.18), transparent 55%);
  opacity: 0.55;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: radial-gradient(circle at top left, rgba(201, 178, 124, 0.4), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0.22;
  pointer-events: none;
}

.process-step-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.process-step-number {
  font-size: 1.9rem;
  letter-spacing: 0.14em;
  color: rgba(201, 178, 124, 0.4);
}

.process-step-meta {
  text-align: right;
}

.process-step-title {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.process-step-tag {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(154, 154, 143, 0.9);
}

.process-step-body {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  position: relative;
}

@media (hover: hover) {
  .process-card {
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
  }
  .process-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.78);
    border-color: rgba(201, 178, 124, 0.38);
  }
}

.process-footer-line {
  margin-top: 2.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.process-footer-line-bar {
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 178, 124, 0), rgba(201, 178, 124, 0.85), rgba(201, 178, 124, 0));
}

.process-footer-line-text {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.72);
}


/* ==========================================================================
   13. INSTAGRAM SECTION (Direct copy from Instagram.tsx <style> block)
   ========================================================================== */

.instagram-section {
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at top, rgba(201, 178, 124, 0.04), transparent 50%);
}

@media (min-width: 640px) {
  .instagram-section {
    padding: 4.5rem 2.25rem;
  }
}

@media (min-width: 1024px) {
  .instagram-section {
    padding: 5.5rem 3.5rem;
  }
}

.instagram-container {
  max-width: 1120px;
  margin: 0 auto;
}

.instagram-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.instagram-eyebrow {
  margin-bottom: 0.75rem;
}

.instagram-title {
  font-size: 2.1rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #f5f5f0;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .instagram-title {
    font-size: 2.5rem;
  }
}

.instagram-subtitle {
  font-size: 0.95rem;
  color: #9a9a8f;
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .instagram-subtitle {
    font-size: 1.02rem;
  }
}

.instagram-feed-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.75));
  border-radius: 24px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

@media (min-width: 640px) {
  .instagram-feed-wrapper {
    padding: 2.5rem 2rem;
  }
}

/* Style the EmbedSocial widget branding */
.embedsocial-hashtag .feed-powered-by-es {
  display: none !important;
}

/* Hide the header border */
.es-header-border {
  display: none !important;
}

/* Custom Follow Button */
.instagram-follow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, rgba(201, 178, 124, 0.12), rgba(201, 178, 124, 0.06));
  border: 1px solid #c9b27c;
  border-radius: 2px;
  color: #f5f5f0;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.instagram-follow-button:hover {
  background: linear-gradient(135deg, rgba(201, 178, 124, 0.18), rgba(201, 178, 124, 0.1));
  border-color: #d4c59a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 178, 124, 0.15);
}

.instagram-follow-button svg {
  width: 18px;
  height: 18px;
}


/* ==========================================================================
   14. CONTACT SECTION (Direct copy from Contact.tsx <style> block)
   ========================================================================== */

.contact-section {
  padding: 4rem 1.5rem 5rem;
  background: linear-gradient(to bottom, rgba(201, 178, 124, 0.04), transparent 18%);
}

@media (min-width: 640px) {
  .contact-section {
    padding: 4.5rem 2.25rem 5.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 5.5rem 3.5rem 6rem;
  }
}

.contact-shell {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: radial-gradient(circle at top left, rgba(201, 178, 124, 0.25), transparent 55%);
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}

.contact-title {
  font-size: 2.1rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #9a9a8f;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .contact-subtitle {
    font-size: 1.02rem;
  }
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.15fr);
    gap: 2.75rem;
  }
}

.contact-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.75));
  border-radius: 24px;
  padding: 1.75rem 1.5rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

@media (min-width: 640px) {
  .contact-card {
    padding: 2.1rem 2rem 2.3rem;
  }
}

.contact-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.6rem;
  gap: 1rem;
}

.contact-card-title {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #9a9a8f;
}

.contact-card-subcopy {
  font-size: 0.88rem;
  color: #9a9a8f;
  margin-bottom: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem 1.25rem;
}

@media (min-width: 640px) {
  .form-grid--two-col {
    grid-template-columns: 1.1fr 1.1fr;
  }
}

.contact-section label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #9a9a8f;
}

.field-shell {
  position: relative;
}

.field-shell input,
.field-shell textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 178, 124, 0.26);
  background: rgba(10, 10, 10, 0.75);
  color: #f5f5f0;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.field-shell textarea {
  border-radius: 18px;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  resize: vertical;
  min-height: 132px;
}

.field-shell input::placeholder,
.field-shell textarea::placeholder {
  color: rgba(154, 154, 143, 0.48);
}

.field-shell input:focus,
.field-shell textarea:focus {
  border-color: #c9b27c;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 0 0 1px rgba(201, 178, 124, 0.4);
}

.helper-text {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: rgba(154, 154, 143, 0.8);
}

.error-text {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  color: #e87c7c;
}

.field-shell input.error,
.field-shell textarea.error {
  border-color: #e87c7c;
  background: rgba(232, 124, 124, 0.05);
}

.field-shell input.error:focus,
.field-shell textarea.error:focus {
  border-color: #e87c7c;
  box-shadow: 0 0 0 1px rgba(232, 124, 124, 0.4);
}

.required-asterisk {
  color: #e87c7c;
  margin-left: 0.2rem;
}

.status-message {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-message.success {
  background: rgba(124, 232, 157, 0.1);
  border: 1px solid rgba(124, 232, 157, 0.3);
  color: #7ce89d;
}

.status-message.error {
  background: rgba(232, 124, 124, 0.1);
  border: 1px solid rgba(232, 124, 124, 0.3);
  color: #e87c7c;
}

.status-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.submit-row {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

@media (min-width: 480px) {
  .submit-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.small-print {
  font-size: 0.7rem;
  color: rgba(154, 154, 143, 0.85);
}

.small-print strong {
  font-weight: 500;
  color: #f5f5f0;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-panels {
  display: grid;
  gap: 1rem;
}

.info-panel {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.info-panel-title {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a9a8f;
}

.info-chip {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.55);
}

.info-list {
  display: grid;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: #9a9a8f;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.info-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(201, 178, 124, 0.9), rgba(201, 178, 124, 0.35));
  color: #151515;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.info-text-main {
  color: #f5f5f0;
  font-size: 0.9rem;
}

.info-text-sub {
  color: #9a9a8f;
  font-size: 0.82rem;
}

.divider-line {
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  margin: 0.5rem 0 0.3rem;
}

.info-panel--transparent {
  background: transparent;
  border: none;
  box-shadow: none;
  align-items: center;
  padding: 0.5rem 0;
}

.info-tagline-bar {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 178, 124, 0), rgba(201, 178, 124, 0.8), rgba(201, 178, 124, 0));
  margin: 0 auto 0.6rem;
}

.info-tagline-text {
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.75);
  text-transform: uppercase;
}


/* ==========================================================================
   15. FOOTER (Direct copy from Footer.tsx <style> block)
   ========================================================================== */

.footer-section {
  background: #050505;
  padding: 3.6rem 1.5rem 3rem;
  border-top: 1px solid rgba(201, 178, 124, 0.15);
}

.footer-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* LEFT SIDE (LOGO + COPY) */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  display: block;
}

.footer-blurb {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #9a9a8f;
  max-width: 22rem;
  margin: 0.25rem auto;
}

/* NAV COLUMN */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}

.footer-title {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9a9a8f;
  margin-bottom: 0.4rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2.2rem;
  max-width: 240px;
  margin: 0 auto;
  justify-items: center;
}

.footer-col a {
  position: relative;
  padding-left: 0.4rem;
  font-size: 0.82rem;
  color: #f5f5f0;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #c9b27c;
}

.footer-col a::before {
  content: "\2192";
  position: absolute;
  left: -0.6rem;
  opacity: 0.5;
  color: rgba(201, 178, 124, 0.65);
}

/* INSTAGRAM ICON */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(201, 178, 124, 0.35);
  color: #c9b27c;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: 0.5rem;
}

.social-icon:hover {
  background: #c9b27c;
  color: #111;
}

/* DIVIDER + FOOTER BOTTOM */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 178, 124, 0.5), transparent);
  margin: 2.4rem 0 1.6rem;
}

.footer-bottom {
  font-size: 0.7rem;
  color: #9a9a8f;
  text-align: center;
}


/* ==========================================================================
   16. PROJECTS ARCHIVE PAGE
   ========================================================================== */

.projects-archive-section {
  padding-top: 10rem;
  padding-bottom: 4.8rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: radial-gradient(circle at top, rgba(201, 178, 124, 0.05), transparent 60%);
}

@media (min-width: 640px) {
  .projects-archive-section {
    padding-top: 11rem;
    padding-bottom: 5.4rem;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .projects-archive-section {
    padding-top: 9rem;
    padding-bottom: 6rem;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

.projects-archive-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.projects-archive-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.2rem;
}

.projects-archive-title {
  margin-top: 0.7rem;
  margin-bottom: 0.6rem;
  font-size: 2.1rem;
  letter-spacing: 0.03em;
  color: #f5f5f0;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

@media (min-width: 768px) {
  .projects-archive-title {
    font-size: 2.5rem;
  }
}

.projects-archive-subtitle {
  margin: 0 auto;
  max-width: 34rem;
  color: #9a9a8f;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
  font-size: 1rem;
}

.projects-archive-label {
  margin-top: 1.2rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.78);
  font-family: var(--font-body);
  font-weight: 500;
}

.projects-grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
  border-color: rgba(201, 178, 124, 0.4);
}

.project-card-link {
  display: block;
  color: #f5f5f0;
  text-decoration: none;
}

.project-card-image-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 62%;
}

.project-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 320ms ease;
}

.project-card:hover .project-image {
  transform: scale(1.06);
}

.project-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.12), transparent 55%);
}

.project-card-meta {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 10;
}

.project-card-city {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.78);
  font-family: var(--font-body);
  font-weight: 500;
}

.project-card-title {
  font-size: 1.06rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.project-card-state {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.9);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}


/* ==========================================================================
   17. SINGLE PROJECT DETAIL
   ========================================================================== */

.project-detail {
  min-height: 100vh;
  background: #050506;
  color: #f7f7f8;
  font-family: var(--font-body);
}

.project-back-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 6, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.35);
  color: #f7f7f8;
  transition: all 0.2s ease;
  text-decoration: none;
}

.project-back-btn:hover {
  transform: scale(1.05);
}

.project-hero-container {
  height: 180vh;
  position: relative;
}

.project-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.project-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.project-hero-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #f7f7f8;
  z-index: 10;
}

.project-hero-title {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.project-hero-location {
  font-size: 0.875rem;
  color: rgba(247, 247, 248, 0.76);
}

.project-narrative {
  padding: 1.5rem 1rem;
}

.project-narrative p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(247, 247, 248, 0.76);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0 1rem;
}

.project-gallery-item {
  position: relative;
  padding-bottom: 100%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.project-gallery-item:hover {
  opacity: 0.9;
}

.project-gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.project-details-table {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  margin-top: 1.5rem;
}

.project-details-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 15px;
  cursor: pointer;
}

.project-details-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: rgba(247, 247, 248, 0.76);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.project-footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  padding: 1.5rem 1rem;
}

.project-nav-btn {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.2s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: #f7f7f8;
}

.project-nav-btn--prev {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.35);
}

.project-nav-btn--next {
  background: linear-gradient(135deg, rgba(215, 179, 106, 0.95), rgba(184, 134, 55, 0.95));
  color: #141106;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(215, 179, 106, 0.28), 0 8px 26px rgba(0, 0, 0, 0.45);
}

.project-progress-bar-wrapper {
  padding: 0 1rem 2.5rem;
}

.project-progress-bar-track {
  height: 6px;
  width: 100%;
  overflow: hidden;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.project-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #d7b36a, #f0d39a);
}

.project-progress-text {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgba(247, 247, 248, 0.76);
}


/* ==========================================================================
   18. LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  color: #f7f7f8;
  transition: all 0.2s ease;
}

.lightbox-prev {
  left: 0.875rem;
}

.lightbox-next {
  right: 0.875rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 0.875rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 0.375rem 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 247, 248, 0.76);
  background: rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ==========================================================================
   19. 404 PAGE (Direct copy from NotFound.tsx <style> block)
   Uses completely different colors (light theme).
   ========================================================================== */

.notfound-wrapper {
  --stone: #f7f4ed;
  --charcoal: #2a2621;
  --timber: #8b6f47;
  --bronze: #c29958;
  --shadow: rgba(42, 38, 33, 0.15);
  --overlay: rgba(42, 38, 33, 0.03);
}

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

.notfound-wrapper {
  background: var(--stone);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Architectural grid background */
.notfound-wrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 99px,
      var(--overlay) 99px,
      var(--overlay) 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 99px,
      var(--overlay) 99px,
      var(--overlay) 100px
    );
  pointer-events: none;
  z-index: 0;
}

/* Blueprint accent corner */
.notfound-wrapper::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at top right, rgba(194, 153, 88, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.notfound-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
}

/* Large architectural 404 number */
.notfound-error-code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(160px, 28vw, 380px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(139, 111, 71, 0.12);
  text-stroke: 1.5px rgba(139, 111, 71, 0.12);
  line-height: 0.9;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
  animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.notfound-content {
  position: relative;
  max-width: 580px;
  text-align: center;
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Architectural label */
.notfound-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--timber);
  margin-bottom: 2rem;
  position: relative;
}

.notfound-label::before,
.notfound-label::after {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, var(--bronze), transparent);
}

.notfound-label::after {
  background: linear-gradient(to left, var(--bronze), transparent);
}

.notfound-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.notfound-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(42, 38, 33, 0.7);
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Blueprint-inspired button */
.notfound-btn-home {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 42px;
  background: var(--charcoal);
  color: var(--stone);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px var(--shadow);
}

.notfound-btn-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bronze), var(--timber));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.notfound-btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow);
}

.notfound-btn-home:hover::before {
  opacity: 1;
}

.notfound-btn-home span {
  position: relative;
  z-index: 1;
}

/* Compass icon */
.notfound-compass {
  position: relative;
  width: 20px;
  height: 20px;
  z-index: 1;
}

.notfound-compass::before,
.notfound-compass::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.notfound-compass::before {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.6;
}

.notfound-compass::after {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 10px solid currentColor;
  transform: translate(-50%, -60%);
}

/* Footer details */
.notfound-footer {
  margin-top: 4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(42, 38, 33, 0.5);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.notfound-footer::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(139, 111, 71, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .notfound-error-code {
    font-size: clamp(120px, 35vw, 200px);
  }

  .notfound-label::before,
  .notfound-label::after {
    width: 20px;
  }

  .notfound-h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .notfound-description {
    font-size: 0.95rem;
  }

  .notfound-btn-home {
    padding: 16px 36px;
    font-size: 0.75rem;
  }
}


/* ==========================================================================
   20. CONTACT FORM 7 OVERRIDE STYLES
   ========================================================================== */

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 178, 124, 0.26);
  background: rgba(10, 10, 10, 0.75);
  color: #f5f5f0;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.wpcf7-form textarea {
  border-radius: 18px;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  resize: vertical;
  min-height: 132px;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(154, 154, 143, 0.48);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #c9b27c;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 0 0 1px rgba(201, 178, 124, 0.4);
}

.wpcf7-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #9a9a8f;
}

.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c9b27c, #e0c890);
  color: #151515;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.8);
}

.wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.wpcf7-response-output {
  border-radius: 12px;
  font-size: 0.88rem;
}

.wpcf7-mail-sent-ok {
  background: rgba(124, 232, 157, 0.1);
  border: 1px solid rgba(124, 232, 157, 0.3);
  color: #7ce89d;
}

.wpcf7-validation-errors {
  background: rgba(232, 124, 124, 0.1);
  border: 1px solid rgba(232, 124, 124, 0.3);
  color: #e87c7c;
}

.wpcf7-not-valid-tip {
  font-size: 0.72rem;
  color: #e87c7c;
}

/* CF7 Form Grid Layout (match original 2-column) */
.wpcf7-form .form-grid {
  display: grid;
  gap: 1rem;
}

.wpcf7-form .form-grid--two-col {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .wpcf7-form .form-grid--two-col {
    grid-template-columns: 1fr;
  }
}

.wpcf7-form .form-field {
  display: flex;
  flex-direction: column;
}

.wpcf7-form .form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #9a9a8f;
}

.wpcf7-form .form-field--full {
  margin-top: 1.1rem;
}

.wpcf7-form .required-asterisk {
  color: #e87c7c;
  margin-left: 2px;
}

.wpcf7-form .submit-row {
  margin-top: 1.2rem;
}

.wpcf7-form .form-field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form p {
  margin: 0;
}


/* ==========================================================================
   21. CONTACT PAGE
   ========================================================================== */

.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
}

.contact-page-main {
  flex: 1;
  padding-top: 80px;
}

.contact-page-hero {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: 4rem 2rem 2.5rem;
  }
}

.contact-page-hero h1 {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: #f5f5f0;
}

@media (min-width: 768px) {
  .contact-page-hero h1 {
    font-size: 3rem;
  }
}

.contact-page-hero p {
  font-size: 1rem;
  color: #9a9a8f;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-page-hero p {
    font-size: 1.1rem;
  }
}


/* ==========================================================================
   22. WORDPRESS ADMIN BAR OFFSET
   ========================================================================== */

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}


/* ==========================================================================
   23. PROCESS PAGE (standalone, matches homepage process section)
   ========================================================================== */

.process-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
}

.process-page-main {
  flex: 1;
  padding-top: 80px;
}
