/* ─────────────────────────────────────────────
   ARCHITETTO CRIPPA — style.css
   ───────────────────────────────────────────── */

:root {
  --bg:       #F8F6F3;
  --cream:    #EDE9E2;
  --white:    #FFFFFF;
  --charcoal: #1A1A18;
  --dark:     #2C2C2A;
  --mid:      #3D3D3A;
  --muted:    #6B6B66;
  --border:   #D8D2CA;
  --accent:   #A8865A;
  --accent2:  #C9A87A;
  --nav-h:    80px;
  --max:      1280px;
  --pad:      clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

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

/* ── TYPOGRAPHY ── */
.section-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 560px;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-body { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background .25s;
  border: none;
  font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover { background: var(--accent); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.6);
  color: var(--white);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 32px;
  transition: all .25s;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.link-arrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 14px; }
.link-arrow span { font-size: 16px; }

/* ── ANIMATIONS ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .75s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── HEADER / NAV ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(248,246,243,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 2px 24px rgba(26,26,24,.07); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 58px; width: auto; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px var(--pad);
  z-index: 199;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal); }

/* ── HERO (HOME) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.04); animation: slowZoom 12s ease forwards; }
@keyframes slowZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(15,15,12,.72) 0%, rgba(15,15,12,.45) 55%, rgba(15,15,12,.2) 100%); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--pad) 120px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 0;
}
.hero-title em { font-style: italic; color: var(--accent2); }

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--accent2);
  margin: 32px 0;
}

.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 44px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,.3); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:.9} }

/* ── WELCOME STRIP ── */
.welcome-strip {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.welcome-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.welcome-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.label-line { width: 32px; height: 1px; background: var(--accent); }
.welcome-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  border: none;
  padding: 0;
}

/* ── SERVICES ── */
.services-section { padding: 100px 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--white);
  padding: 44px 32px;
  border-top: 2px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26,26,24,.08);
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.service-icon { width: 44px; height: 44px; color: var(--charcoal); margin-bottom: 24px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── FEATURED PROJECTS ── */
.featured-section { padding: 100px 0; background: var(--cream); }
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 12px;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.feat-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--charcoal);
}
.feat-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(.82);
  transition: transform .6s ease, filter .6s ease;
}
.feat-item:hover img { transform: scale(1.06); filter: brightness(.65); }
.feat-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 24px 28px;
  background: linear-gradient(transparent, rgba(15,15,12,.8));
}
.feat-cat {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent2);
  display: block;
  margin-bottom: 8px;
}
.feat-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
}

/* ── NUMBERS ── */
.numbers-section { background: var(--charcoal); padding: 80px 0; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  background: var(--charcoal);
  text-align: center;
}
.num-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 12px;
}
.num-label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── CTA BANNER ── */
.cta-banner { background: var(--bg); padding: 100px 0; border-top: 1px solid var(--border); }
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.site-footer {
  background: #141412;
  padding: 52px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(.7); }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--accent2); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  transition: all .25s;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--accent2); color: var(--accent2); }
.footer-bottom {
  padding: 20px var(--pad);
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: var(--accent2); }

/* ── PAGE HERO (inner pages) ── */
.page-inner { padding-top: 0; }
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero-sm { min-height: 42vh; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,12,.8) 0%, rgba(15,15,12,.35) 100%); }
.page-hero-content {
  position: relative; z-index: 1;
  max-width: var(--max); width: 100%;
  margin: 0 auto;
  padding: 60px var(--pad);
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}
.page-hero-title em { font-style: italic; color: var(--accent2); }

/* ── PAYOFF SECTION ── */
.payoff-section { background: var(--white); padding: 72px 0; border-bottom: 1px solid var(--border); }
.payoff-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.payoff-line { flex: 1; height: 1px; background: var(--border); }
.payoff-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.2vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  text-align: center;
  max-width: 700px;
  line-height: 1.55;
}

/* ── ABOUT (studio page) ── */
.about-section { padding: 100px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-body { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.about-credentials {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.credential { display: flex; flex-direction: column; gap: 4px; }
.cred-title { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.cred-val { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 400; }
.about-img-frame { position: relative; }
.about-img-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-caption {
  font-size: 11px;
  color: var(--muted);
  padding: 12px 0 0;
  font-style: italic;
}

/* ── VALUES ── */
.values-section { background: var(--charcoal); padding: 100px 0; }
.values-section .section-label { color: var(--accent2); }
.values-section .section-title { color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 52px; background: rgba(255,255,255,.06); }
.value-item {
  padding: 44px 32px;
  background: var(--charcoal);
  transition: background .25s;
}
.value-item:hover { background: #222220; }
.value-icon { width: 40px; height: 40px; color: var(--accent2); margin-bottom: 24px; }
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.value-item p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; }

/* ── SPECIALIZATIONS ── */
.spec-section { padding: 100px 0; background: var(--white); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.spec-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.spec-list li {
  font-size: 14px;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
}
.spec-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.spec-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.spec-stat { background: var(--bg); padding: 36px 28px; }
.ss-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.ss-label { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── FILTER ── */
.filter-section { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--border); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid var(--border);
  background: none;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* ── PROJECTS GRID ── */
.projects-section { padding: 80px 0 100px; background: var(--bg); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.proj-card { background: var(--white); overflow: hidden; transition: box-shadow .3s; }
.proj-card:hover { box-shadow: 0 16px 48px rgba(26,26,24,.1); }

.proj-imgs { position: relative; }
.proj-imgs .proj-cover { width: 100%; height: 340px; object-fit: cover; cursor: zoom-in; transition: filter .4s; }
.proj-card:hover .proj-cover { filter: brightness(.92); }
.proj-imgs.single .proj-cover { height: 320px; }

.proj-thumbs {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.proj-thumbs img {
  flex: 1;
  height: 88px;
  object-fit: cover;
  cursor: zoom-in;
  filter: brightness(.85);
  transition: filter .3s;
}
.proj-thumbs img:hover { filter: brightness(1); }

.proj-body { padding: 28px 32px 36px; }
.proj-cat {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.proj-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.proj-desc { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,10,8,.94);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
#lbImg { max-width: 88vw; max-height: 85vh; object-fit: contain; display: block; }
.lb-close {
  position: absolute;
  top: -52px; right: 0;
  background: none; border: none;
  color: rgba(255,255,255,.7);
  font-size: 36px; line-height: 1;
  transition: color .2s;
}
.lb-close:hover { color: var(--white); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 36px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-counter {
  position: absolute;
  bottom: -36px;
  left: 50%; transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .12em;
}

/* ── CONTACT PAGE ── */
.contact-section { padding: 100px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-details { display: flex; flex-direction: column; gap: 28px; margin: 40px 0; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.ci-icon svg { width: 100%; height: 100%; }
.ci-text { display: flex; flex-direction: column; gap: 4px; }
.ci-label { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.ci-val { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; line-height: 1.45; }
.ci-link { transition: color .2s; }
.ci-link:hover { color: var(--accent); }

.email-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 28px;
  margin-bottom: 44px;
  transition: background .25s;
}
.email-cta:hover { background: var(--accent); }
.email-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.email-cta span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; flex: 1; }
.email-arrow { font-size: 18px; }

.social-block {}
.social-cards { display: flex; flex-direction: column; gap: 12px; }
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
}
.social-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(26,26,24,.08); }
.social-card svg { width: 22px; height: 22px; color: var(--charcoal); flex-shrink: 0; }
.sc-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.sc-name { font-size: 12px; font-weight: 500; letter-spacing: .06em; }
.sc-handle { font-size: 11px; color: var(--muted); }
.sc-arrow { font-size: 18px; color: var(--accent); }

/* form */
.contact-form-wrap { background: var(--white); padding: 48px 40px; }
.form-header { margin-bottom: 36px; }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--charcoal);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--charcoal);
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: .6; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B66' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.btn-submit {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--accent); }
.form-note { font-size: 11px; color: var(--muted); font-style: italic; }
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.success-icon { font-size: 48px; color: var(--accent); margin-bottom: 16px; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; margin-bottom: 8px; }
.form-success p { font-size: 13px; color: var(--muted); }

/* ── MAP ── */
.map-section { position: relative; height: 480px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }
.map-pin-card {
  position: absolute;
  top: 40px; left: 60px;
  background: var(--white);
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  box-shadow: 0 6px 32px rgba(26,26,24,.12);
  pointer-events: none;
}
.mpc-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.mpc-addr { font-size: 13px; color: var(--muted); line-height: 1.65; }
.mpc-link { display: block; margin-top: 14px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); pointer-events: all; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .feat-large { grid-column: span 2; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .spec-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .welcome-inner { grid-template-columns: 1fr; }
  .welcome-label { display: none; }
  .map-pin-card { left: 20px; top: 20px; }
  .payoff-line { display: none; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .feat-large { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .spec-stats { grid-template-columns: 1fr 1fr; }
  .about-credentials { flex-direction: column; gap: 20px; }
}

/* ── CV FILE INPUT ── */
.file-input-wrap { position: relative; }
.file-input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; overflow: hidden;
  clip: rect(0,0,0,0);
}
.file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px dashed var(--accent);
  color: var(--mid);
  padding: 14px 18px;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color .2s, background .2s;
}
.file-label:hover { background: #f0ece5; border-color: var(--charcoal); }
.file-label svg { flex-shrink: 0; color: var(--accent); }
.file-note { font-size: 11px; color: var(--muted); font-style: italic; margin-top: 6px; }

/* ── ABOUT PORTRAIT LAYOUT ── */
.about-portrait-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: start;
}

.portrait-main {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}
.portrait-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(.92) brightness(.97);
  transition: transform .6s ease;
}
.portrait-main:hover img { transform: scale(1.03); }

.portrait-name-card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 22px;
  background: linear-gradient(transparent, rgba(15,15,12,.72));
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pnc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}
.pnc-role {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent2);
}

.portrait-secondary {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}
.portrait-secondary img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.88) saturate(.85);
  transition: transform .6s ease;
}
.portrait-secondary:hover img { transform: scale(1.04); }

.portrait-project-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: rgba(15,15,12,.6);
}
.portrait-project-tag span {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent2);
}

/* accent block below secondary image */
.about-portrait-layout::after {
  content: '';
  grid-column: 2;
  grid-row: 2;
  background: var(--accent);
  opacity: .15;
  min-height: 48px;
}

@media (max-width: 1024px) {
  .about-portrait-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    max-width: 560px;
  }
  .portrait-main { grid-row: 1; }
  .portrait-secondary { grid-row: 1; }
  .about-portrait-layout::after { display: none; }
}

@media (max-width: 480px) {
  .about-portrait-layout { grid-template-columns: 1fr; }
  .portrait-main { grid-column: 1; }
  .portrait-secondary { grid-column: 1; }
}

/* ── PORTRAIT SOLO ── */
.portrait-solo {
  position: relative;
  overflow: hidden;
}
.portrait-solo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(.92) brightness(.97);
  transition: transform .6s ease;
}
.portrait-solo:hover img { transform: scale(1.03); }
.portrait-solo .portrait-name-card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 24px;
  background: linear-gradient(transparent, rgba(15,15,12,.72));
  display: flex;
  flex-direction: column;
  gap: 4px;
}
