/* ========= RESET & BASE ========= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0F0F0F;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ========= CSS VARIABLES ========= */
:root {
  --gold: #C1A368;
  --gold-light: #D4B97A;
  --gold-dim: rgba(193,163,104,0.6);
  --gold-faint: rgba(193,163,104,0.15);
  --dark: #0F0F0F;
  --darker: #0A0A0A;
  --text-primary: #fff;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: rgba(255,255,255,0.5);
  --text-faint: rgba(255,255,255,0.35);
  --border-subtle: rgba(255,255,255,0.06);
  --border-gold: rgba(193,163,104,0.12);
  --section-pad: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 64px);
	--section-block-half:clamp(40px, 5vw, 70px);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

/* ========= ACCESSIBILITY ========= */
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ========= ANIMATIONS ========= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.anim-fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-fade-up.visible {
  opacity: 1; transform: translateY(0);
}

/* ========= SCROLLBAR ========= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: rgba(193,163,104,0.3); border-radius: 3px; }

/* ========= NAVIGATION ========= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(24px, 4vw, 64px);
  transition: all 0.4s ease;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 70%, transparent 100%);
}
.site-nav.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-faint);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; transition: height 0.4s;
}
.site-nav.scrolled .nav-inner { height: 64px; }

img.logo {
    max-width: 280px;
    width: 100%;
}

.nav-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-secondary); text-decoration: none;
  padding: 4px 0; border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); border-bottom-color: var(--gold);
}

/* Mobile hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px; z-index: 110;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--gold);
  display: block; transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7px) translateX(3px)}
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px) translateX(2px) }

.mobile-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.98);
  /* z-index: 105;*/ display: none; flex-direction: column; 
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: rgba(255,255,255,0.8); letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; transition: color 0.3s;
}
.mobile-overlay a:hover, .mobile-overlay a.active { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ========= HERO ========= */
.hero {
  position: relative; height: 100vh; min-height: 600px; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.55) 30%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.75) 70%, rgba(15,15,15,1) 100%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding: 0 24px;
}
.hero-label {
  font-family: var(--sans); font-size: 16px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
  font-weight: 500; animation: fadeUp 0.8s ease both 0.3s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400; color: var(--text-primary); line-height: 1.15;
  max-width: 900px; margin: 0 auto 20px;
  animation: fadeUp 0.8s ease both 0.5s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-family: var(--sans); font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-secondary); max-width: 640px; line-height: 1.7;
  margin-bottom: 40px; animation: fadeUp 0.8s ease both 0.7s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.8s ease both 0.9s;
}
.btn-primary, .btn-outline {
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 40px; cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-block;
}
.btn-primary {
  background: var(--gold); color: var(--dark); border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(193,163,104,0.5);
}
.btn-outline:hover { border-color: var(--gold); transform: translateY(-2px); }

.hero-indicators {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 3px; background: rgba(255,255,255,0.3);
  border: none; cursor: pointer; transition: all 0.4s; border-radius: 2px;
}
.hero-dot.active { width: 32px; background: var(--gold); }

/* ========= SECTION HEADERS ========= */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-family: var(--sans); font-size: 16px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.section-title {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 48px);
  font-weight: 400; color: var(--text-primary); line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle {
  font-family: var(--sans); font-size: 17px; color: var(--text-muted);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ========= SERVICES — REDESIGNED ========= */
.services { padding: var(--section-pad); background: var(--dark); }
.services-inner { max-width: 1100px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--border-gold);
  min-height: 420px;
}

/* Left column: phase tabs */
.services-tabs {
  border-right: 1px solid var(--border-gold);
  display: flex; flex-direction: column;
}
.service-tab {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 24px;
  background: transparent; border: none;
  border-bottom: 1px solid var(--border-gold);
  cursor: pointer; transition: all 0.3s;
  text-align: left; width: 100%;
}
.service-tab:last-child { border-bottom: none; }
.service-tab:hover { background: rgba(255,255,255,0.02); }
.service-tab.active {
  background: rgba(193,163,104,0.08);
  border-right: 3px solid var(--gold);
  margin-right: -1px;
}
.service-tab-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 4px; transition: all 0.3s;
}
.service-tab.active .service-tab-icon {
  border-color: rgba(193,163,104,0.3);
  background: rgba(193,163,104,0.08);
}
.service-tab-label {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--text-muted); transition: color 0.3s;
}
.service-tab.active .service-tab-label { color: var(--text-primary); }

/* Right column: service detail */
.services-detail {
  padding: 48px 48px 48px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.services-detail-phase {
  font-family: var(--sans); font-size: 16px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  font-weight: 500;
}
.services-detail-title {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--text-primary); margin-bottom: 32px; line-height: 1.3;
}
.services-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
}
.services-list li {
  font-family: var(--sans); font-size: 16px; color: var(--text-secondary);
  padding: 14px 0; border-bottom: 1px solid var(--border-subtle);
  line-height: 1.5; display: flex; align-items: center; gap: 12px;
}
.services-list li:last-child { border-bottom: none; }
.services-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-dim); flex-shrink: 0;
}

/* Services additional note */
.services-note {
  margin-top: 48px; text-align: center;
  font-family: var(--sans); font-size: 16px; color: var(--text-faint);
  line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* Services mobile layout */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .services-tabs {
    border-right: none;
    border-bottom: 1px solid var(--border-gold);
    flex-direction: row; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .service-tab {
    flex-direction: column; gap: 8px; align-items: center;
    padding: 16px 20px; min-width: 120px;
    border-bottom: none; border-right: 1px solid var(--border-gold);
    text-align: center;
  }
  .service-tab:last-child { border-right: none; }
  .service-tab.active {
    border-right-width: 1px;
    border-right-color: var(--border-gold);
    margin-right: 0;
    border-bottom: 3px solid var(--gold);
    margin-bottom: -1px;
  }
  .service-tab-label { font-size: 17px; }
  .services-detail { padding: 32px 24px; }
  .services-detail-title { font-size: 26px; }
}

/* ========= PROJECTS ========= */

.portfolio-inner {
    max-width: 1200px!important;
    width: 100%;
    margin-inline: auto;
}
.projects {
  padding: var(--section-pad);
	background:var(--darker);
  /* background: linear-gradient(180deg, var(--dark) 0%, #141210 100%); */
}
.projects-inner { max-width: 1200px; margin: 0 auto; }
.portfolio-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 44px;
}
.portfolio-filter {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-width: 112px; white-space: nowrap; flex-shrink: 0;
  text-decoration: none; cursor: pointer;
}
.portfolio-filter.active,
.portfolio-filter[aria-pressed="true"] {
  color: var(--dark); background: var(--gold); border-color: var(--gold);
}
/* .portfolio-filter[aria-pressed="true"]::before {
  content: "✓"; font-size: 14px;
} */
.portfolio-loading,
.portfolio-error {
  grid-column: 1 / -1; padding: 48px 24px; text-align: center;
  color: var(--text-secondary); font-size: 18px; line-height: 1.6;
}
.portfolio-error { border: 1px solid var(--border-gold); }

.portfolio-load-more-wrap {
  display: flex; justify-content: center; margin-top: 48px;
}
.portfolio-load-more[hidden] { display: none; }
.portfolio-load-more { flex-shrink: 0; white-space: nowrap; }
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

/* Portfolio archive masonry; the homepage keeps the grid above. */
/* .projects-page .projects-grid {
  display: block;
  column-count: 3;
  column-gap: 16px;
} */

/* ========================================
   PORTFOLIO MASONRY
   Keeps DOM/JSON order left → right
======================================== */

.projects-page .projects-grid {
  position: relative;
  display: block;
  width: 100%;
}

.project-card {
  position: absolute;
  overflow: hidden;
  cursor: pointer;

  /* Remove old fixed 4/3 ratio */
  aspect-ratio: auto;
}

.project-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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


/* Tablet */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Mobile */
@media (max-width: 768px) {
  .projects-grid {
    display: block;
  }

  .project-card {
    margin-bottom: 16px;
    grid-row-end: auto !important;
  }
}
.projects-page .project-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  aspect-ratio: auto;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.project-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}

.project-overlay,
.project-mobile-label{
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}

.project-image-button {
  display: block; width: 100%; height: 100%; padding: 0;
  border: 0; background: transparent; color: inherit; cursor: zoom-in;
}
.project-image-button:focus-visible {
  outline: 3px solid var(--gold-light); outline-offset: -3px;
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease; display: block;
}
.projects-page .project-card img,
.projects-page .project-image-button {
  height: auto;
}
.projects-page .project-card img {
  object-fit: contain;
}
.project-card:hover img { transform: scale(1.06); }
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h2,
.project-overlay h3,
.project-mobile-label h2, .project-mobile-label h3{
   font-size: 20px; color: #fff;
  font-weight: 500; margin-bottom: 4px;
}
.project-overlay .project-loc,
.project-mobile-label .project-loc{
  font-family: var(--sans); font-size: 16px; color: var(--gold);
  margin-bottom: 4px; letter-spacing: 1px;
}
.project-overlay .project-designer,
.project-mobile-label p{
  font-family: var(--sans); font-size: 16px; color: var(--text-muted);
}
/* Always-visible mobile label */
.project-mobile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 100%);
}


@media (min-width: 769px) { 
	.project-mobile-label { display: none; } 

}

.portfolio-lightbox {
  width: min(1100px, calc(100vw - 32px)); max-width: none; max-height: calc(100vh - 32px);
  padding: 0; border: 1px solid rgba(193,163,104,.45); background: var(--darker);
  color: var(--text-primary); overflow: visible;
	margin:auto;
}
.portfolio-lightbox__caption {
    display:none;
}
.portfolio-lightbox::backdrop { background: rgba(0,0,0,.88); }
.portfolio-lightbox__panel { position: relative; display: flex; flex-direction: column; max-height: calc(100vh - 34px); }
.portfolio-lightbox__media { min-height: 0; display: grid; place-items: center; overflow: hidden; background: #050505; }
.portfolio-lightbox__media img { display: block; width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 170px); object-fit: contain; }
.portfolio-lightbox__details { flex: 0 0 auto; padding: 18px 24px 20px; }
.portfolio-lightbox__details h2 { margin: 0 0 4px; color: #fff; font: 500 clamp(21px, 3vw, 28px)/1.2 var(--serif); }
.portfolio-lightbox__location { margin: 0 0 4px; color: var(--gold); font: 16px/1.5 var(--sans); letter-spacing: 1px; }
.portfolio-lightbox__designer { margin: 0; color: var(--text-muted); font: 16px/1.5 var(--sans); }
.portfolio-lightbox__close {
  position: absolute; z-index: 2; top: 10px; right: 10px; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(10,10,10,.78);
  color: #fff; font: 32px/1 var(--sans); cursor: pointer;
}
.portfolio-lightbox__close:hover, .portfolio-lightbox__close:focus-visible { color: var(--gold-light); border-color: var(--gold-light); }

@media (max-width: 1024px) {
  .projects-page .projects-grid { column-count: 2; }
}

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; }
  .projects-page .projects-grid { column-count: 1; }
  .portfolio-filters { gap: 8px; margin-bottom: 32px; }
  .portfolio-filter { min-width: 0; padding: 10px 14px; font-size: 12px; }
	.project-overlay{display:none; inset: unset!important;}
	.project-mobile-label { opacity:1;!important;}
}

/* ========= TESTIMONIALS ========= */
.testimonials {
  padding: var(--section-pad);
  background: var(--dark); position: relative;
}
.testimonials-deco {
  position: absolute; top: 0; left: 50%; width: 1px; height: 80px;
  background: linear-gradient(to bottom, rgba(193,163,104,0.4), transparent);
}
.testimonials-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-quote {
  font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.6;
  font-style: italic; margin-bottom: 32px; min-height: 160px;
}
.testimonial-name {
  font-family: var(--sans); font-size: 17px; font-weight: 600;
  color: var(--gold); margin-bottom: 4px; letter-spacing: 1px;
}
.testimonial-company {
  font-family: var(--sans); font-size: 16px; color: var(--text-muted);
}
.testimonial-project {
  font-family: var(--sans); font-size: 16px; color: var(--text-faint);
  margin-top: 6px; font-style: italic;
}
.testimonial-dots {
  display: flex; justify-content: center; gap: 12px; margin-top: 40px;
}
.testimonial-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.3s;
}
.testimonial-dot.active {
  background: var(--gold); border-color: var(--gold);
}

/* ========= ABOUT ========= */
.about { padding: var(--section-pad); background: var(--darker); }
.about-inner { max-width: 1000px; margin: 0 auto; }
.about-prose {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px; margin-bottom: 64px;
}
.about-prose p {
  font-family: var(--sans); font-size: 17px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 20px;
}
.about-prose p:last-child { margin-bottom: 0; }

/* Stats bar */
.stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: rgba(193,163,104,0.1);
  border: 1px solid var(--gold-faint); margin-bottom: 72px;
}
.stat-item {
  text-align: center; padding: 32px 16px;
  background: rgba(15,15,15,0.5);
}
.stat-num {
  font-family: var(--serif); font-size: 32px; color: var(--gold);
  font-weight: 500; margin-bottom: 6px;
}
.stat-label {
  font-family: var(--sans); font-size: 16px; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase;
}

/* Leadership */
.leadership-title {
  font-family: var(--serif); font-size: 28px; color: #fff;
  font-weight: 400; text-align: center; margin-bottom: 40px;
}
.leadership-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.leader-card {
  padding: 32px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
}
.leader-name {
  font-family: var(--serif); font-size: 24px; color: var(--gold);
  font-weight: 500; margin-bottom: 6px;
}
.leader-role {
  font-family: var(--sans); font-size: 16px; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.leader-bio {
  font-family: var(--sans); font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 16px;
}
.leader-credentials {
  font-family: var(--sans); font-size: 16px; color: var(--gold-dim);
  line-height: 1.6; font-style: italic;
}

/* ========= CONTACT ========= */
.contact {
  padding: var(--section-pad);
  /* background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%); */
    background: var(--dark);
}
.contact-inner { max-width: 900px; margin: 0 auto; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.contact-card {
  padding: 40px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-gold); transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(193,163,104,0.35); }
.contact-office {
  font-family: var(--serif); font-size: 26px; color: var(--gold);
  font-weight: 500; margin-bottom: 24px;
}
.contact-address {
  font-family: var(--sans); font-size: 16px; color: rgba(255,255,255,0.6);
  line-height: 1.7; white-space: pre-line; margin-bottom: 20px;
}
.contact-divider {
  border: none; border-top: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}
.contact-name {
  font-family: var(--sans); font-size: 16px; color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-phone {
  font-family: var(--sans); font-size: 17px; color: #fff;
  text-decoration: none; display: block; margin-bottom: 8px;
  transition: color 0.3s;
}
.contact-phone:hover, .contact-phone:focus { color: var(--gold); }
.contact-email {
  font-family: var(--sans); font-size: 16px; color: var(--gold);
  text-decoration: none; transition: opacity 0.3s;
}
.contact-email:hover, .contact-email:focus { opacity: 0.7; }

/* ========= FOOTER ========= */
.site-footer {
  padding: 40px clamp(24px, 4vw, 64px);
  background: var(--darker);
  border-top: 1px solid rgba(193,163,104,0.08);
  text-align: center;
}
.footer-brand {
  font-size: 18px; color: var(--gold);
  letter-spacing: 2px; margin-bottom: 8px;
}
.footer-copy {
  font-family: var(--sans); font-size: 16px; color: var(--text-faint);
}
/* ========= SHARED PAGE ADDITIONS ========= */
.skip-link {
  position: fixed; top: 1rem; left: 1rem; z-index: 1000;
  padding: .75rem 1rem; color: var(--dark); background: var(--gold);
  transform: translateY(-200%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.site-header { position: relative; z-index: 100; }
.mobile-overlay[hidden] { display: none; }
.nav-logo[aria-current="page"], .nav-links a[aria-current="page"] { color: var(--gold); }
.projects-actions { margin-top: 48px; text-align: center;     gap: 1em; display: flex; justify-content: center; flex-wrap: wrap;}
.page-hero {
  min-height: 58vh; display: grid; place-items: end start;
  padding: 160px clamp(24px, 8vw, 120px) 80px;
  background:
    linear-gradient(90deg, rgba(10,10,10,.92), rgba(10,10,10,.35)),
    url('https://dev.painy.com/assets/images/PeninsulaParisHotel1.jpeg') center/cover;
	    justify-content: center;
}
/* .page-hero-inner { max-width: 760px; } */
.page-hero h1 { 
	    font-family: var(--serif);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.15;
    max-width: 900px;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 2px 12px;
    margin: 0px auto 20px;
    animation: 0.8s ease 0.5s 1 normal both running fadeUp;}
.page-hero p:last-child { color: var(--text-secondary); line-height: 1.8; }
.projects-page { padding-top: clamp(72px, 8vw, 110px); }
.error-page { min-height: calc(100vh - 110px); display: grid; place-items: center; padding: 140px 24px 80px; text-align: center; }
.error-code { color: var(--gold); font: 500 clamp(90px, 20vw, 190px)/.8 var(--serif); opacity: .35; }
.error-page h1 { font: 500 clamp(42px, 7vw, 72px)/1 var(--serif); margin: 24px 0 16px; }
.error-page p { color: var(--text-secondary); margin-bottom: 32px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .anim-fade-up { opacity: 1; transform: none; }
}