/* =========================================================
   Dames A+P, shared stylesheet (multi-page static site)
   Brand system lifted verbatim from the original site CSS.
   ========================================================= */


:root {
  --orange: #f9703e;
  --blue: #3c4243;
  --blue-dark: #2a2f30;
  --blue-mid: #4e5556;
  --cream: #f8f5f0;
  --white: #ffffff;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --pad: clamp(20px, 5vw, 48px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Avenir', 'Avenir Next', 'Century Gothic', sans-serif; font-weight: 300; color: var(--blue); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ========================
   NAV
======================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(60,66,67,0.08);
}
.nav-logo { font-size: 16px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); cursor: pointer; flex-shrink: 0; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links li { position: relative; }
.nav-links > li > a, .nav-links > li > span {
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); padding: 8px 14px; cursor: pointer; display: block; transition: color 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > span:hover, .nav-links > li > a.active { color: var(--orange); }
.nav-dropdown {
  position: absolute; top: 100%; left: 0; background: var(--white);
  border-top: 2px solid var(--orange); min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: all 0.2s var(--ease);
}
.nav-links li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: none; }
.nav-dropdown a {
  display: block; padding: 12px 20px;
  font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); border-bottom: 1px solid rgba(60,66,67,0.06); transition: all 0.15s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--orange); padding-left: 26px; }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 20px !important; margin-left: 8px; transition: background 0.2s !important; white-space: nowrap; }
.nav-cta:hover { background: var(--blue) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); transition: all 0.3s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; overflow-y: auto;
  padding: 24px var(--pad) 48px;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-section { border-bottom: 1px solid rgba(60,66,67,0.08); padding: 4px 0; }
.mobile-menu-label { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); padding: 16px 0 8px; }
.mobile-menu-link { display: block; font-size: 15px; font-weight: 400; color: var(--blue); padding: 12px 0; border-bottom: 1px solid rgba(60,66,67,0.04); cursor: pointer; transition: color 0.2s; }
.mobile-menu-link:hover { color: var(--orange); }
.mobile-menu-cta { display: block; background: var(--orange); color: var(--white); text-align: center; padding: 16px; font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 24px; cursor: pointer; }

/* ========================
   COMMON
======================== */
.section-label { font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.section-title { font-size: clamp(24px, 4vw, 46px); font-weight: 800; line-height: 1.08; color: var(--blue); margin-bottom: 20px; }
.section-title.white { color: var(--white); }
.section-body { font-size: clamp(15px, 2vw, 16px); font-weight: 300; line-height: 1.8; color: var(--blue-mid); margin-bottom: 16px; }
.section-body.white { color: rgba(255,255,255,0.65); }
.btn { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; padding: 14px 28px; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--blue); }
.btn-dark { background: var(--blue); color: var(--white); }
.btn-dark:hover { background: var(--blue-dark); }
.btn-outline { border: 1.5px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.page-wrap { padding-top: 60px; }
.cred-badge { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-mid); border: 1px solid rgba(60,66,67,0.18); padding: 5px 10px; }

/* PAGE HERO */
.page-hero { background: var(--blue); padding: clamp(60px, 10vw, 100px) var(--pad) clamp(48px, 8vw, 80px); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: rgba(249,112,62,0.06); clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }
.page-hero-inner { max-width: 720px; position: relative; z-index: 1; }
.page-hero-label { font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.page-hero-title { font-size: clamp(28px, 5vw, 62px); font-weight: 800; line-height: 1.05; color: var(--white); margin-bottom: 20px; }
.page-hero-sub { font-size: clamp(15px, 2.5vw, 18px); font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 580px; margin-bottom: 32px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ========================
   FOOTER
======================== */
footer { background: var(--blue-dark); padding: clamp(40px, 8vw, 64px) var(--pad) 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer-logo { font-size: 16px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-badges { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-badge-logo { height: 28px; width: auto; display: block; filter: invert(1); opacity: 0.5; transition: opacity 0.2s; }
.footer-badge-logo:hover { opacity: 0.8; }
.footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-line { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 4px; }
.footer-bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.2); }
.footer-legal { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.3); line-height: 1.5; max-width: 720px; }

/* CTA SECTION */
.cta-section { background: var(--orange); padding: clamp(60px, 10vw, 100px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-input { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); padding: 14px 16px; font-family: inherit; font-size: 15px; font-weight: 300; color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; }
.cta-input::placeholder { color: rgba(255,255,255,0.5); }
.cta-input:focus { border-color: var(--white); }
.cta-select { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); padding: 14px 16px; font-family: inherit; font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.75); outline: none; appearance: none; width: 100%; cursor: pointer; }
.cta-select option { color: var(--blue); background: var(--white); }
.cta-btn { background: var(--blue); color: var(--white); border: none; padding: 16px 28px; font-family: inherit; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; align-self: flex-start; }
.cta-btn:hover { background: var(--blue-dark); }

/* ========================
   HOME PAGE
======================== */
.home-hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 60px; }
.home-hero-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px) clamp(40px, 6vw, 80px) var(--pad); }
.home-hero-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.home-hero-title { font-size: clamp(32px, 4vw, 62px); font-weight: 800; line-height: 1.04; color: var(--blue); margin-bottom: 22px; }
.home-hero-title em { font-style: normal; color: var(--orange); }
.home-hero-sub { font-size: clamp(15px, 2vw, 17px); font-weight: 300; line-height: 1.75; color: var(--blue-mid); max-width: 460px; margin-bottom: 36px; }
.home-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.home-hero-creds { display: flex; gap: 8px; flex-wrap: wrap; }
.home-hero-image { position: relative; overflow: hidden; min-height: 400px; background: var(--blue); }
.home-hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,47,48,0.85) 0%, rgba(42,47,48,0.1) 60%); z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(24px, 4vw, 48px); }
.hero-quote-label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.hero-quote { font-size: clamp(15px, 2vw, 18px); font-weight: 300; line-height: 1.6; color: var(--white); border-left: 3px solid var(--orange); padding-left: 16px; max-width: 380px; }
.hero-quote strong { color: var(--orange); font-weight: 800; }
.hero-project-tag { position: absolute; top: 24px; right: 24px; z-index: 2; background: rgba(42,47,48,0.75); backdrop-filter: blur(8px); padding: 10px 14px; }
.hero-project-tag-title { font-size: 11px; font-weight: 800; color: var(--white); letter-spacing: 0.08em; }
.hero-project-tag-sub { font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* SERVICE STRIP */
.service-strip { background: var(--blue); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 3px solid var(--orange); }
.service-strip-4 { grid-template-columns: repeat(4, 1fr); }
.svc-card { padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 40px); border-right: 1px solid rgba(255,255,255,0.07); position: relative; overflow: hidden; cursor: pointer; transition: background 0.3s; }
.svc-card:last-child { border-right: none; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.4s var(--ease); }
.svc-card:hover::after { width: 100%; }
.svc-card:hover { background: rgba(255,255,255,0.03); }
.svc-num { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--orange); margin-bottom: 12px; }
.svc-title { font-size: clamp(18px, 2.5vw, 22px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.svc-desc { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.svc-link { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }

/* FEATURED PROJECTS */
.featured-projects { padding: clamp(60px, 10vw, 100px) var(--pad); background: var(--white); }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 48px; }
.featured-item { position: relative; overflow: hidden; cursor: pointer; background: var(--blue); }
.featured-item-large { grid-row: span 2; }
.featured-img { width: 100%; height: 100%; min-height: 280px; position: relative; overflow: hidden; }
.featured-img img { transition: transform 0.6s var(--ease); }
.featured-item:hover .featured-img img { transform: scale(1.04); }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,47,48,0.85) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(16px, 3vw, 28px); transition: background 0.3s; z-index: 1; }
.featured-item:hover .featured-overlay { background: linear-gradient(to top, rgba(42,47,48,0.92) 0%, rgba(42,47,48,0.1) 65%); }
.featured-cat { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.featured-title { font-size: clamp(16px, 2.5vw, 22px); font-weight: 800; color: var(--white); margin-bottom: 4px; }
.featured-loc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.featured-link { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); opacity: 0; transition: opacity 0.3s; }
.featured-item:hover .featured-link { opacity: 1; }

/* INTERIOR STRIP */
.interior-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.interior-item { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--blue); }
.interior-item img { transition: transform 0.6s var(--ease); }
.interior-item:hover img { transform: scale(1.04); }
.interior-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; background: linear-gradient(to top, rgba(42,47,48,0.8), transparent); opacity: 0; transition: opacity 0.3s; z-index: 1; }
.interior-item:hover .interior-caption { opacity: 1; }
.interior-caption-text { font-size: 12px; font-weight: 800; color: var(--white); }

/* PROPOSITION */
.proposition { padding: clamp(60px, 10vw, 110px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; background: var(--cream); }
.prop-features { display: flex; flex-direction: column; }
.prop-feature { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.prop-feature:last-child { border-bottom: none; }
.prop-feature-icon { width: 34px; height: 34px; background: rgba(249,112,62,0.12); border: 1px solid rgba(249,112,62,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; color: var(--orange); }
.prop-feature-title { font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.prop-feature-desc { font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.55); }
.prop-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(60,66,67,0.1); }
.stat-val { font-size: clamp(28px, 4vw, 36px); font-weight: 800; color: var(--blue); margin-bottom: 6px; }
.stat-val span { color: var(--orange); }
.stat-lbl { font-size: 13px; font-weight: 300; line-height: 1.5; color: var(--blue-mid); }

/* P84 FEATURE */
.p84-feature { background: var(--blue-dark); padding: clamp(60px, 10vw, 110px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; overflow: hidden; }
.p84-feature::before { content: '84'; position: absolute; right: -30px; top: -60px; font-size: clamp(160px, 25vw, 340px); font-weight: 800; color: rgba(255,255,255,0.025); pointer-events: none; line-height: 1; }
.p84-inspector { border-left: 3px solid var(--orange); padding: 16px 20px; background: rgba(249,112,62,0.07); margin: 24px 0; }
.p84-inspector blockquote { font-size: clamp(14px, 2vw, 17px); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 10px; }
.p84-inspector cite { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); font-style: normal; }
.p84-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); padding: clamp(24px, 4vw, 36px); position: relative; }
.p84-card-corner { position: absolute; top: -10px; right: -10px; width: 32px; height: 32px; background: var(--orange); }
.p84-card-title { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.p84-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.p84-list li { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.7); display: flex; gap: 12px; line-height: 1.5; }
.p84-list li::before { content: '→'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* TESTIMONIAL */
.testimonial-section { padding: clamp(60px, 10vw, 90px) var(--pad); text-align: center; background: var(--white); }
.testimonial-rule { width: 40px; height: 3px; background: var(--orange); margin: 0 auto 32px; }
.testimonial-quote { font-size: clamp(18px, 2.5vw, 30px); font-weight: 300; font-style: italic; line-height: 1.65; color: var(--blue); max-width: 760px; margin: 0 auto 20px; }
.testimonial-source { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); }

/* GEOGRAPHY */
.geography { background: var(--cream); padding: clamp(60px, 10vw, 100px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.geo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.geo-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); border: 1.5px solid rgba(60,66,67,0.18); padding: 6px 12px; transition: all 0.2s; cursor: default; }
.geo-tag:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.geo-map-block { background: var(--blue); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.geo-map-block::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(249,112,62,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(249,112,62,0.05) 1px, transparent 1px); background-size: 40px 40px; }
.geo-map-label { font-size: 13px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); text-align: center; position: relative; z-index: 1; }
.map-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(249,112,62,0.18); z-index: 2; }

/* ========================
   PORTFOLIO
======================== */
.portfolio-filter { padding: 28px var(--pad); background: var(--cream); border-bottom: 1px solid rgba(60,66,67,0.08); display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 14px; border: 1.5px solid rgba(60,66,67,0.18); color: var(--blue); cursor: pointer; transition: all 0.2s; background: var(--white); }
.filter-btn.active, .filter-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.portfolio-grid { padding: 3px var(--pad) clamp(40px, 8vw, 60px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 3px; }
.portfolio-item { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: var(--blue); display: block; }
.portfolio-item img { transition: transform 0.6s var(--ease); width: 100%; height: 100%; object-fit: cover; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(42,47,48,0.25); transition: background 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(16px, 3vw, 28px); z-index: 1; }
.portfolio-item:hover .portfolio-overlay { background: rgba(42,47,48,0.72); }
.portfolio-cat { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; transition: all 0.3s; }
.disc-badge { position: absolute; top: 12px; right: 12px; z-index: 2; display: inline-flex; align-items: baseline; background: rgba(42,47,48,0.92); color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: 0.03em; line-height: 1; padding: 6px 9px; border-radius: 4px; box-shadow: 0 1px 6px rgba(0,0,0,0.3); pointer-events: none; }
.disc-badge .plus { color: var(--orange); padding: 0 1px; }
.disc-badge.on-hero { top: clamp(20px,3vw,32px); right: clamp(20px,3vw,32px); font-size: 15px; padding: 8px 12px; z-index: 3; }
.portfolio-title { font-size: clamp(15px, 2vw, 19px); font-weight: 800; color: var(--white); margin-bottom: 4px; transition: all 0.3s; }
.portfolio-loc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.7); transition: all 0.3s; }
.portfolio-view { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-top: 14px; opacity: 0; transform: translateY(8px); transition: all 0.3s; }
.portfolio-item:hover .portfolio-view { opacity: 1; transform: none; }

/* ========================
   PROJECT DETAIL
======================== */
.project-hero { position: relative; min-height: clamp(420px, 70vh, 680px); display: flex; align-items: flex-end; background: var(--blue); overflow: hidden; }
.project-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,47,48,0.9) 0%, rgba(42,47,48,0.25) 55%, rgba(42,47,48,0.45) 100%); z-index: 1; }
.project-hero-inner { position: relative; z-index: 2; padding: clamp(40px, 7vw, 80px) var(--pad); max-width: 900px; }
.project-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.project-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.project-breadcrumb a:hover { color: var(--orange); }
.project-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.project-breadcrumb .current { color: var(--orange); }
.project-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.project-title { font-size: clamp(32px, 5.5vw, 64px); font-weight: 800; line-height: 1.04; color: var(--white); margin-bottom: 14px; }
.project-loc { font-size: clamp(15px, 2vw, 18px); font-weight: 300; color: rgba(255,255,255,0.7); }

/* layout: copy + meta */
.project-body { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(32px, 5vw, 72px); padding: clamp(48px, 8vw, 90px) var(--pad); align-items: start; }
.project-copy .section-label { margin-bottom: 14px; }
.project-copy h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; line-height: 1.12; color: var(--blue); margin-bottom: 22px; }
.project-copy p { font-size: clamp(15px, 2vw, 16px); font-weight: 300; line-height: 1.85; color: var(--blue-mid); margin-bottom: 18px; }
.project-copy h3 { font-size: 14px; font-weight: 800; letter-spacing: 0.04em; color: var(--blue); margin: 32px 0 12px; }

/* meta block (dt/dd) */
.project-meta { background: var(--cream); padding: clamp(28px, 4vw, 40px); position: sticky; top: 84px; }
.project-meta-title { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; }
.project-meta dl { display: flex; flex-direction: column; }
.project-meta dt { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.project-meta dd { font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--blue-mid); padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid rgba(60,66,67,0.1); }
.project-meta dd:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

/* inspector pull-quote (light bg) */
.project-quote { border-left: 3px solid var(--orange); padding: 18px 24px; background: rgba(249,112,62,0.06); margin: 8px 0 24px; }
.project-quote blockquote { font-size: clamp(16px, 2vw, 20px); font-weight: 300; font-style: italic; line-height: 1.6; color: var(--blue); margin-bottom: 10px; }
.project-quote cite { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); font-style: normal; }

/* gallery */
.project-gallery-head { padding: 0 var(--pad); max-width: 100%; margin-bottom: 24px; }
.project-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3px; padding: 0 var(--pad) clamp(48px, 8vw, 80px); }
.gallery-item { position: relative; overflow: hidden; background: var(--blue); aspect-ratio: 3/2; }
.gallery-item img { transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px; background: linear-gradient(to top, rgba(42,47,48,0.8), transparent); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: var(--white); opacity: 0; transition: opacity 0.3s; z-index: 1; }
.gallery-item:hover .gallery-caption { opacity: 1; }
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; aspect-ratio: 21/9; }

/* ========================
   CONTACT (shared form styles)
======================== */
.contact-main { padding: clamp(48px, 8vw, 90px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-input, .form-select, .form-textarea { background: var(--cream); border: 1.5px solid rgba(60,66,67,0.1); padding: 14px 16px; font-family: inherit; font-size: 15px; font-weight: 300; color: var(--blue); outline: none; transition: border-color 0.2s; width: 100%; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(60,66,67,0.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-select { color: var(--blue-mid); appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { background: var(--orange); color: var(--white); border: none; padding: 16px 32px; font-family: inherit; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; align-self: flex-start; }
.form-submit:hover { background: var(--blue); }

/* ========================
   IMAGE FALLBACK (preview only, real photos load on deploy)
======================== */
.img-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: var(--blue); color: rgba(255,255,255,0.32); padding: 18px; text-align: center; }
.img-ph .plus { font-size: 26px; font-weight: 800; color: rgba(249,112,62,0.55); line-height: 1; }
.img-ph .lbl { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; max-width: 80%; line-height: 1.5; }

/* ========================
   CONTACT DETAILS
======================== */
.contact-label { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.contact-val { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--blue-mid); margin: 0; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 16px 20px; }
  .page-wrap { padding-top: 60px; }
  .home-hero { grid-template-columns: 1fr; grid-template-rows: 50vh auto; min-height: auto; padding-top: 60px; }
  .home-hero-image { grid-row: 1; min-height: 50vh; }
  .home-hero-content { grid-row: 2; padding: 40px 20px; }
  .home-hero-title { font-size: 32px; }
  .home-hero-sub { font-size: 15px; max-width: 100%; }
  .home-hero-actions { flex-direction: column; }
  .home-hero-actions .btn { text-align: center; }
  .hero-project-tag { top: 16px; right: 16px; }
  .service-strip { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .svc-card:last-child { border-bottom: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-item-large { grid-row: span 1; }
  .featured-img { min-height: 240px; }
  .interior-strip { grid-template-columns: 1fr; }
  .proposition { grid-template-columns: 1fr; gap: 40px; }
  .p84-feature { grid-template-columns: 1fr; gap: 40px; }
  .p84-feature::before { display: none; }
  .geography { grid-template-columns: 1fr; gap: 40px; }
  .cta-section { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; padding: 3px 12px 40px; }
  .contact-main { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr !important; gap: 40px !important; }
  .page-hero { padding: 60px 20px 48px; }
  .btn { width: 100%; text-align: center; }
  .cta-btn, .form-submit { align-self: stretch; text-align: center; width: 100%; }
  /* project detail */
  .project-body { grid-template-columns: 1fr; gap: 36px; }
  .project-meta { position: static; }
  .project-gallery { grid-template-columns: 1fr 1fr; }
  .span-6, .span-4, .span-8, .span-12 { grid-column: span 1; aspect-ratio: 3/2; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .home-hero-creds { flex-direction: column; align-items: flex-start; }
  .prop-stats { grid-template-columns: 1fr; }
  .project-gallery { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .home-hero { grid-template-columns: 55% 45%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; padding: 3px 32px 48px; }
  .proposition, .p84-feature, .geography { gap: 40px; }
}
