
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #8c0000; --red-mid: #b50000; --red-light: #d40000;
  --black: #0e0e0e; --charcoal: #1c1c1c; --gray-dark: #2e2e2e;
  --gray-mid: #555; --gray-light: #aaa; --cream: #f5efe6; --white: #fff;
  --nav-h: 70px; --T: 0.32s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* NAVBAR */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  height: var(--nav-h); display:flex; align-items:center;
  padding: 0 clamp(1.5rem,5vw,4rem);
  background: rgba(14,14,14,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(140,0,0,.25);
  transition: background var(--T);
}
.navbar.scrolled { background:rgba(14,14,14,.99); border-bottom-color:rgba(140,0,0,.5); }
.nav-logo { flex-shrink:0; display:flex; align-items:center; gap:.7rem; text-decoration:none; margin-right:auto; }
.nav-logo img { height:52px; filter:brightness(1.35); }
.nav-logo-text { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:700; color:#fff; letter-spacing:.08em; text-transform:uppercase; }
.nav-links { display:flex; align-items:center; list-style:none; }
.nav-links > li { position:relative; }
.nav-links > li > a, .nav-links > li > button {
  display:block; padding:.5rem .9rem; font-size:.77rem; font-weight:500;
  letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.72);
  text-decoration:none; background:none; border:none; cursor:pointer;
  transition:color var(--T); white-space:nowrap;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { color:#fff; }
.nav-links > li > a.active { color:#fff; }
.dropdown-trigger { display:flex; align-items:center; gap:.3rem; }
.dropdown-trigger svg { width:10px; height:10px; transition:transform var(--T); }
.nav-links > li:hover .dropdown-trigger svg { transform:rotate(180deg); }
.dropdown-menu {
  position:absolute; top:calc(100% + 6px); left:50%;
  transform:translateX(-50%) translateY(-6px);
  background:var(--charcoal); border:1px solid rgba(140,0,0,.3);
  border-top:2px solid var(--red); min-width:220px; padding:.4rem 0;
  opacity:0; pointer-events:none;
  transition:opacity var(--T), transform var(--T); z-index:100;
}
.nav-links > li:hover .dropdown-menu, .nav-links > li:focus-within .dropdown-menu {
  opacity:1; pointer-events:all; transform:translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display:block; padding:.55rem 1.2rem; font-size:.78rem; font-weight:400;
  letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.68);
  text-decoration:none; transition:color var(--T), padding-left var(--T);
  border-left:2px solid transparent;
}
.dropdown-menu a:hover { color:#fff; padding-left:1.6rem; border-left-color:var(--red-light); }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:transform var(--T), opacity var(--T); }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.mobile-menu { display:none; position:fixed; top:var(--nav-h); left:0; right:0; background:var(--charcoal); border-bottom:2px solid var(--red); padding:1.25rem 1.5rem; z-index:999; max-height:calc(100vh - var(--nav-h)); overflow-y:auto; }
.mobile-menu.open { display:block; }
.mobile-menu a { display:block; padding:.65rem 0; font-size:.85rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.75); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.07); transition:color var(--T),padding-left var(--T); }
.mobile-menu a:hover { color:#fff; padding-left:.4rem; }
.mobile-sub a { font-size:.75rem; color:rgba(255,255,255,.5); padding:.5rem 0 .5rem .8rem; }

/* PAGE HEADER */
.page-header {
  padding: calc(var(--nav-h) + 3.5rem) clamp(1.5rem,6vw,5rem) 3.5rem;
  background: var(--black);
  position:relative; overflow:hidden;
}
.page-header-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center; opacity:.52;
}
.page-header-overlay { position:absolute; inset:0; background:linear-gradient(105deg,rgba(110,0,0,.52) 0%,rgba(14,14,14,.72) 60%); }
.page-header-content { position:relative; max-width:1200px; margin:0 auto; }
.page-label { font-size:.68rem; font-weight:600; letter-spacing:.25em; text-transform:uppercase; color:var(--red-light); margin-bottom:.8rem; display:flex; align-items:center; gap:.7rem; }
.page-label::before { content:''; display:block; width:28px; height:1px; background:var(--red-light); }
.page-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,5vw,4rem); font-weight:700; color:#fff; line-height:1.05; }
.page-title em { font-style:italic; font-weight:400; font-size:.65em; color:rgba(255,255,255,.65); display:block; margin-top:.6rem; line-height:1.5; max-width:680px; }

/* CONTENT */
.page-body { max-width:1200px; margin:0 auto; padding:4rem clamp(1.5rem,6vw,5rem) 5rem; }
.section-label { font-size:.68rem; font-weight:600; letter-spacing:.25em; text-transform:uppercase; color:var(--red); margin-bottom:.6rem; display:flex; align-items:center; gap:.7rem; }
.section-label::before { content:''; display:block; width:22px; height:2px; background:var(--red); flex-shrink:0; }
.section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,4vw,2.8rem); font-weight:700; color:var(--black); line-height:1.1; margin-bottom:2.5rem; }

/* PROSE */
.prose p { font-size:.95rem; line-height:1.8; color:var(--gray-mid); margin-bottom:1.1rem; }
.prose p:last-child { margin-bottom:0; }
.prose strong { color:var(--gray-dark); font-weight:600; }

/* CARD GRID (index pages) */
.card-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.5px; background:rgba(0,0,0,.1); }
.proj-card { background:var(--cream); overflow:hidden; text-decoration:none; color:inherit; display:flex; flex-direction:column; position:relative; }
.proj-card::before { content:''; position:absolute; left:0;top:0;bottom:0; width:3px; background:var(--red); transform:scaleY(0); transform-origin:bottom; transition:transform .4s ease; }
.proj-card:hover { background:#fff; }
.proj-card:hover::before { transform:scaleY(1); }
.proj-card-img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; filter:grayscale(15%); transition:filter .4s ease, transform .5s ease; }
.proj-card-img-wrap { overflow:hidden; }
.proj-card:hover .proj-card-img { filter:grayscale(0); transform:scale(1.04); }
.proj-card-body { padding:1.25rem 1.4rem 1.6rem; flex:1; }
.proj-card-title { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:700; color:var(--black); line-height:1.35; transition:color var(--T); }
.proj-card:hover .proj-card-title { color:var(--red); }
.proj-card-arrow { display:inline-flex; align-items:center; gap:.4rem; margin-top:.75rem; font-size:.68rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--red); transition:gap var(--T); }
.proj-card:hover .proj-card-arrow { gap:.75rem; }

/* PROJECT ENTRY (gallery pages) */
.project-entry { padding:3.5rem 0; border-bottom:1px solid rgba(0,0,0,.08); }
.project-entry:last-child { border-bottom:none; }
.project-entry-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.4rem,3vw,2rem); font-weight:700; color:var(--black); margin-bottom:.25rem; }
.project-meta { font-size:.78rem; color:var(--gray-light); letter-spacing:.06em; margin-bottom:.5rem; display:flex; flex-wrap:wrap; gap:.5rem .75rem; }
.project-meta span { display:inline-flex; align-items:center; gap:.3rem; }
.project-meta span::before { content:''; display:block; width:3px;height:3px; background:var(--red); border-radius:50%; flex-shrink:0; }
.project-desc { font-size:.9rem; line-height:1.7; color:var(--gray-mid); margin:.9rem 0 1.5rem; max-width:680px; }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:3px; }
.gallery-thumb { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; cursor:pointer; transition:opacity var(--T), transform var(--T); }
.gallery-thumb-wrap { overflow:hidden; }
.gallery-thumb-wrap:hover .gallery-thumb { opacity:.85; transform:scale(1.04); }

/* LIGHTBOX */
dialog.lightbox { padding:0; border:none; background:rgba(0,0,0,.95); max-width:100vw; max-height:100vh; width:100%; height:100%; position:fixed; inset:0; z-index:9999; }
dialog.lightbox[open] { display:flex; align-items:center; justify-content:center; }
dialog.lightbox::backdrop { background:rgba(0,0,0,.6); }
.lb-inner { position:relative; display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.lb-img { max-width:92vw; max-height:90vh; object-fit:contain; display:block; }
.lb-btn { position:absolute; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); color:#fff; font-size:1.5rem; width:48px;height:48px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background var(--T); top:50%; transform:translateY(-50%); }
.lb-btn:hover { background:rgba(255,255,255,.18); }
.lb-prev { left:1rem; }
.lb-next { right:1rem; }
.lb-close { position:absolute; top:1rem; right:1rem; top:1rem; transform:none; }
.lb-counter { position:absolute; bottom:1.2rem; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.5); font-size:.78rem; letter-spacing:.12em; }

/* FOOTER */
footer { background:var(--black); border-top:1px solid rgba(140,0,0,.3); margin-top:2rem; }
.footer-main { max-width:1200px; margin:0 auto; padding:3.5rem clamp(1.5rem,6vw,5rem); display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:2.5rem; }
.footer-logo img { height:46px; filter:brightness(1.35); margin-bottom:.75rem; display:block; }
.footer-tagline { font-family:'Cormorant Garamond',serif; font-size:.88rem; font-style:italic; color:rgba(255,255,255,.4); line-height:1.5; max-width:260px; }
.footer-col-title { font-size:.66rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:var(--red-light); margin-bottom:1rem; display:flex; align-items:center; gap:.5rem; }
.footer-col-title::before { content:''; display:block; width:14px;height:1px; background:var(--red-light); }
.footer-col p, .footer-col address { font-size:.85rem; line-height:1.8; color:rgba(255,255,255,.45); font-style:normal; }
.footer-col a { display:block; font-size:.78rem; color:rgba(255,255,255,.45); text-decoration:none; padding:.28rem 0; letter-spacing:.03em; border-bottom:1px solid rgba(255,255,255,.05); transition:color var(--T), padding-left var(--T); }
.footer-col a:hover { color:#fff; padding-left:.35rem; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding:1.25rem clamp(1.5rem,6vw,5rem); max-width:1200px; margin:0 auto; }
.footer-copy { font-size:.73rem; color:rgba(255,255,255,.28); letter-spacing:.04em; }

/* BTN */
.btn { display:inline-flex; align-items:center; gap:.5rem; padding:.8rem 1.9rem; font-size:.77rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; text-decoration:none; border:none; cursor:pointer; transition:all var(--T); }
.btn-red { background:var(--red); color:#fff; }
.btn-red:hover { background:var(--red-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(140,0,0,.38); }
.btn-outline { background:transparent; color:var(--black); border:1.5px solid rgba(0,0,0,.3); }
.btn-outline:hover { border-color:var(--red); color:var(--red); }

/* REVEAL */
.reveal { opacity:0; transform:translateY(20px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.rd1 { transition-delay:.1s; } .rd2 { transition-delay:.2s; } .rd3 { transition-delay:.3s; }
.rd4 { transition-delay:.4s; } .rd5 { transition-delay:.5s; }

/* UTILITY */
.mt1 { margin-top:1rem; } .mt2 { margin-top:2rem; } .mt3 { margin-top:3rem; }
.highlight-box { background:var(--black); padding:2.5rem 3rem; color:#fff; margin-bottom:2rem; }
.highlight-box p { color:rgba(255,255,255,.65); }
.clients-list { columns:2; column-gap:3rem; }
.clients-list li { font-size:.88rem; line-height:2; color:var(--gray-mid); list-style:none; padding-left:1rem; position:relative; break-inside:avoid; }
.clients-list li::before { content:'—'; position:absolute; left:0; color:var(--red); }
.award-card { display:flex; gap:2rem; padding:2.5rem 0; border-bottom:1px solid rgba(0,0,0,.08); align-items:flex-start; }
.award-card:last-child { border-bottom:none; }
.award-img { width:280px; flex-shrink:0; aspect-ratio:4/3; object-fit:cover; }
.award-body h3 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--black); margin-bottom:.5rem; }
.award-body .award-year { display:inline-block; background:var(--red); color:#fff; font-size:.7rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; padding:.3rem .7rem; margin-bottom:.75rem; }
.award-body p { font-size:.9rem; line-height:1.7; color:var(--gray-mid); }
.team-list { display:grid; grid-template-columns:1fr 1fr; gap:1.5px; background:rgba(0,0,0,.08); }
.team-item { background:var(--cream); padding:1.75rem 2rem; }
.team-item-name { font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:700; color:var(--black); }
.team-item-role { font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--red); margin-top:.25rem; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.contact-box { padding:2.5rem; background:var(--black); color:#fff; }
.contact-box h3 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:700; color:#fff; margin-bottom:1rem; }
.contact-box p, .contact-box address { font-size:.9rem; line-height:1.9; color:rgba(255,255,255,.6); font-style:normal; }
.contact-box a { color:rgba(255,255,255,.6); text-decoration:none; }
.contact-box a:hover { color:#fff; }


/* ── NEWS CARDS ── */
.nc {
  background: var(--charcoal, #1c1c1c);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--T);
  overflow: hidden;
}
.nc:hover { background: #252525; }
.nc::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s ease;
}
.nc:hover::before { transform: scaleY(1); }
.nc-img-w { overflow: hidden; }
.nc-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter .4s, transform .5s;
}
.nc:hover .nc-img { filter: grayscale(0); transform: scale(1.04); }
.nc-body { padding: 1.25rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.nc-header { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.nc-cat {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-light, #d40000);
  background: rgba(140,0,0,.12);
  padding: .2rem .55rem;
  flex-shrink: 0;
}
.nc-date { font-size: .65rem; color: rgba(255,255,255,.35); margin-left: auto; }
.nc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: .5rem;
  transition: color var(--T);
}
.nc:hover .nc-title { color: var(--red-light, #d40000); }
.nc-text {
  font-size: .82rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  flex: 1;
  margin-bottom: .75rem;
}
.nc-arr {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-light, #d40000);
  transition: gap var(--T);
  margin-top: auto;
}
.nc:hover .nc-arr { gap: .75rem; }

@media(max-width:960px){
  .nav-links{display:none;} .nav-toggle{display:flex;}
  .footer-main{grid-template-columns:1fr 1fr;}
  .award-card{flex-direction:column;} .award-img{width:100%;}
  .contact-grid{grid-template-columns:1fr;}
  .team-list{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .clients-list{columns:1;}
  .footer-main{grid-template-columns:1fr;}
  .card-grid{grid-template-columns:1fr 1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
}
