/* ============================================================
   MOUNA BENNANI — Architecture & Design
   Inspiré de evainteriors.ae
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --white:      #ffffff;
  --off-white:  #f9f8f6;
  --gold:       #c9a96e;
  --gray:       #888580;
  --light-gray: #d4d0cb;
  --border:     #e8e4df;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;

  --nav-h: 80px;
  --ease:  cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { border: none; background: none; }

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.3s var(--ease), height 0.3s var(--ease);
  will-change: transform;
}
.cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor.is-visible     { opacity: 1; }
.cursor-dot.is-visible { opacity: 1; }
.cursor.expanded       { width: 64px; height: 64px; background: rgba(201,169,110,0.07); }

/* ── Layout ────────────────────────────────────────────────── */
.container      { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container-full { max-width: 100%; padding: 0 48px; }

/* ── Navigation ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.5s var(--ease), border-bottom 0.5s;
}
.site-header.solid {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 48px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.4s;
}
.site-header.solid .logo-name { color: var(--black); }
.site-header.solid .logo-sub  { color: var(--gray); }

/* Nav links */
.nav-list { display: flex; gap: 44px; }
.nav-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.site-header.solid .nav-link { color: var(--gray); }
.site-header.solid .nav-link:hover,
.site-header.solid .nav-link.active { color: var(--black); }

/* Contact nav button */
.nav-contact {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px;
  transition: all 0.3s;
}
.nav-contact:hover { border-color: var(--gold); color: var(--gold); }
.site-header.solid .nav-contact { color: var(--black); border-color: var(--border); }
.site-header.solid .nav-contact:hover { border-color: var(--gold); color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 100%; height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
}
.site-header.solid .nav-toggle span { background: var(--black); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── Reveal animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ── Label (small caps above headings) ─────────────────────── */
.label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
/* Slideshow */
.hero-slides {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.slide-img {
  position: absolute; inset: -6%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.hero-slide.is-active .slide-img { transform: scale(1); }

/* Dark overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.80) 0%,
    rgba(10,10,10,0.30) 55%,
    rgba(10,10,10,0.12) 100%
  );
  z-index: 1;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s, width 0.35s;
}
.hero-dot.is-active {
  background: var(--gold);
  width: 48px;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  width: 48px; height: 48px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { color: var(--gold); border-color: var(--gold); }
.hero-arrow--prev { left: 36px; }
.hero-arrow--next { right: 36px; }

.hero-body {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 72px 90px;
}

.hero-left { max-width: 700px; }
.hero-location {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 44px;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}
.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 36px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-bar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: pulse 2s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── Page header (non-hero pages) ──────────────────────────── */
.page-header {
  padding-top: var(--nav-h);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 64px;
  min-height: 340px;
  text-align: center;
}
.page-header-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-top: 10px;
}
.page-header-title em { font-style: italic; color: rgba(255,255,255,0.5); }
.page-header-desc {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  max-width: 700px;
  line-height: 1.7;
  margin-top: 20px;
}

/* ── Projects grid ─────────────────────────────────────────── */
.projects {
  background: var(--white);
  padding: 0;
}
.projects-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px 28px;
}
.projects-bar-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}
.link-arrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 2px;
}
.link-arrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }

/* Project grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}
.project-card { background: var(--white); overflow: hidden; }
.project-card-link { display: block; }
.project-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.project-img img { transition: transform 0.9s var(--ease); }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.25);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay-text {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.project-info { padding: 18px 20px 24px; }
.project-cat {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.project-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.3;
}

/* Show more */
.projects-more {
  text-align: center;
  padding: 48px;
  border-top: 1px solid var(--border);
}
.btn-more {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--border);
  padding: 16px 52px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-more:hover { border-color: var(--gold); color: var(--gold); }

/* ── Portfolio filters ──────────────────────────────────────── */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 36px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.filter {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  background: none;
  border: none;
  transition: color 0.3s;
}
.filter::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.filter:hover, .filter.active { color: var(--black); }
.filter.active::after { width: 100%; }

/* Portfolio grid (full page) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.portfolio-grid .project-img { aspect-ratio: 3/4; }

/* ── About page ────────────────────────────────────────────── */
.about-founder {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 80vh;
}
.about-photo { overflow: hidden; }
.about-photo img { height: 100%; object-fit: cover; }
.about-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-name {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 6px;
}
.about-name em { font-style: italic; color: var(--gray); }
.about-role {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: block;
}
.gold-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
  display: block;
}
.about-bio {
  font-size: 14.5px;
  line-height: 2;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 22px;
}
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gray);
}

/* Philosophy strip */
.philosophy {
  background: var(--black);
  padding: 100px 48px;
}
.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 28px;
}
.philosophy-attr {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Team grid */
.team { padding: 80px 0; background: var(--off-white); }
.team-heading {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 52px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.team-member { background: var(--off-white); overflow: hidden; }
.team-photo { aspect-ratio: 3/4; overflow: hidden; }
.team-photo img { transition: transform 0.8s var(--ease); }
.team-member:hover .team-photo img { transform: scale(1.04); }
.team-name-block {
  padding: 20px 20px 24px;
  text-align: center;
}
.team-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── Contact page ──────────────────────────────────────────── */
.contact-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 0 48px;
}
.tab {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 22px 0;
  margin-right: 48px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab:hover        { color: var(--black); }
.tab.active       { color: var(--black); border-bottom-color: var(--gold); }

.tab-panels { padding: 72px 48px 80px; }
.tab-panel  { display: none; }
.tab-panel.active { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}
.contact-info-lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 40px;
}
.contact-info-lead em { font-style: italic; color: var(--gray); }
.contact-detail { margin-bottom: 28px; }
.detail-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.detail-val {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}
.detail-val a { transition: color 0.3s; }
.detail-val a:hover { color: var(--gold); }

/* Form */
.form-row { margin-bottom: 28px; }
.form-row.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.3s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--light-gray); font-size: 12px; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-bottom-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 100px; }
.btn-send {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 16px 52px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-send:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Press / Suppliers / Careers simple sections */
.simple-contact { max-width: 560px; }
.simple-contact h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 32px;
}
.simple-contact p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
}
.simple-contact a { color: var(--black); transition: color 0.3s; }
.simple-contact a:hover { color: var(--gold); }

/* Offices strip */
.offices {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 64px 48px;
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.office-city {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.office-addr {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.9;
  font-weight: 300;
}
.office-addr a { transition: color 0.3s; }
.office-addr a:hover { color: var(--gold); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 64px 48px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand .logo-name { color: rgba(255,255,255,0.75); }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.35); }
.footer-tagline {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.9;
  font-weight: 300;
  margin-top: 18px;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.footer-col li,
.footer-col p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 9px;
  font-weight: 300;
}
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; flex-direction: column; gap: 9px; }
.social-item {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  transition: color 0.3s;
  position: relative;
  padding-left: 16px;
}
.social-item::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }
.social-item:hover { color: var(--gold); }
.footer-bottom {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .projects-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .header-inner { padding: 0 24px; }
  .nav-list, .nav-contact { display: none; }
  .nav-toggle { display: flex; }
  .hero-body { padding: 0 24px 56px; flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-cta { text-align: left; }
  .about-founder { grid-template-columns: 1fr; }
  .about-photo { height: 60vw; }
  .about-text { padding: 52px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-tabs { padding: 0 24px; overflow-x: auto; }
  .tab-panels { padding: 48px 24px 60px; }
  .container-full, .projects-bar, .portfolio-filters, .offices, .site-footer { padding-left: 24px; padding-right: 24px; }
  .container { padding: 0 24px; }
}

@media (max-width: 680px) {
  .projects-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 24px; }
  .form-row.cols-2 { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 28px; flex-wrap: wrap; }
}
