/* ============================================================
   Mike Mala Media — shared styles
   Green luxury palette + mikemalarealestate.com brand system
   (Bebas Neue display, DM Sans body, #E9A84C amber gold)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand gold — matched to mikemalarealestate.com */
  --gold: #E9A84C;
  --gold-bright: #f5bc60;
  --gold-dim: #b07d2a;
  --gold-soft: rgba(233,168,76,0.12);
  --gold-line: rgba(233,168,76,0.30);

  /* Green luxury surfaces */
  --bg: #0b1a14;
  --surface: #0f2419;
  --surface2: #143020;
  --surface3: #1a3a28;
  --green-deep: #071510;

  --white: #f5f2ed;
  --gray: #9e9e96;
  --light: #ccc9c2;
  --border: rgba(255,255,255,0.08);

  --display: 'Bebas Neue', sans-serif;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;

  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-line); }

.container { max-width: 1280px; margin: 0 auto; }

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled,
nav.solid {
  background: rgba(11,26,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-sig { height: 40px; width: auto; transition: opacity 0.2s; }
.nav-logo:hover .nav-sig { opacity: 0.78; }
.nav-logo-text {
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: 4px;
  color: var(--white);
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 7px; cursor: pointer; }
.nav-dropdown > a::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: border-color 0.2s;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(11,26,20,0.98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  backdrop-filter: blur(16px);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 13px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 2px;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--gold-soft); color: var(--gold); }

.nav-cta {
  color: var(--black);
  background: var(--gold);
  color: var(--bg) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-bright); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav-hamburger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8,19,14,0.99);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mn-sub {
  font-size: 20px;
  color: var(--gray);
  letter-spacing: 2px;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 15px 38px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 15px 38px;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ── SECTION SHARED ────────────────────────────────── */
section { padding: 120px 48px; }

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 22px;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light);
  max-width: 560px;
}

/* ── HERO (home) ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,21,16,0.55) 0%, rgba(7,21,16,0.35) 40%, rgba(7,21,16,0.92) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(7,21,16,0.75) 100%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 4;
  text-align: center;
  padding: 0 24px;
  max-width: 980px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 132px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 26px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-subtitle {
  font-family: var(--sans);
  font-size: 15px; font-weight: 300; letter-spacing: 2px;
  color: var(--light);
  margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 9px;
  opacity: 0; animation: fadeIn 1s 1.2s forwards;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gray);
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 48px 64px;
  background: var(--green-deep);
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-tint {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,21,16,0.55) 0%, rgba(7,21,16,0.30) 45%, rgba(7,21,16,0.95) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; }
.page-hero .section-label { margin-bottom: 14px; }
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: 2px;
  line-height: 0.92;
  color: var(--white);
}
.page-hero-title em { font-style: normal; color: var(--gold); }
.page-hero-sub {
  margin-top: 18px;
  max-width: 600px;
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
}

/* breadcrumb */
.crumb {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 22px;
}
.crumb a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.crumb a:hover { color: var(--gold); }

/* ── SERVICES (home) ───────────────────────────────── */
#services { background: var(--surface); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-body { max-width: 520px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  background: var(--surface2);
  text-decoration: none;
  display: block;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card-img {
  width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.02);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,26,20,0.5), transparent 55%);
}
.service-card-body { padding: 26px 28px 30px; }
.service-card-label {
  font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 11px;
}
.service-card-title {
  font-family: var(--display);
  font-size: 30px; letter-spacing: 1px; color: var(--white); margin-bottom: 11px;
}
.service-card-desc {
  font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray); margin-bottom: 20px;
}
.service-card-link {
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 9px;
}
.service-card-link::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.service-card:hover .service-card-link::after { width: 42px; }

/* ── FEATURED WORK MOSAIC (home) ───────────────────── */
#work { background: var(--bg); }
.work-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px; gap: 24px; max-width: 1280px; margin-left: auto; margin-right: auto;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1280px;
  margin: 0 auto;
}
.work-item {
  position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 1;
  background: var(--surface2);
}
.work-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.work-item:hover img { transform: scale(1.06); }
.work-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,21,16,0.85), rgba(7,21,16,0.05) 60%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 18px; gap: 4px; opacity: 0; transition: opacity 0.3s;
}
.work-item:hover .work-item-overlay { opacity: 1; }
.work-item-cat {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.work-item-view {
  font-family: var(--display); font-size: 17px; letter-spacing: 1px; color: var(--white);
}

/* ── ABOUT SNIPPET ─────────────────────────────────── */
#about-snippet { background: var(--surface); }
.about-inner {
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 72px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.about-img-wrap { position: relative; max-width: 440px; }
.about-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-top: 3px solid var(--gold);
}
.about-img-accent {
  position: absolute; bottom: -16px; right: -16px; width: 84px; height: 84px;
  border: 1px solid var(--gold-line); pointer-events: none;
}
.about-text .section-body { max-width: 100%; margin-bottom: 22px; }
.read-more {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
  transition: gap 0.3s;
}
.read-more::after {
  content: ''; display: block; width: 34px; height: 1px; background: var(--gold); transition: width 0.3s;
}
.read-more:hover { gap: 16px; }
.read-more:hover::after { width: 50px; }

/* ── STAT STRIP ────────────────────────────────────── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; max-width: 1280px; margin: 0 auto;
  border: 1px solid var(--border);
}
.stat {
  padding: 40px 24px; text-align: center; background: var(--surface2);
}
.stat-num {
  font-family: var(--display); font-size: 46px; letter-spacing: 1px; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-top: 10px;
}

/* ── CTA ───────────────────────────────────────────── */
#cta { background: var(--bg); text-align: center; position: relative; overflow: hidden; }
#cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, transparent 50%, var(--gold-soft) 100%);
}
#cta::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-inner .section-title { margin-bottom: 16px; }
.cta-inner .section-body { max-width: 100%; margin: 0 auto 44px; }

/* ── GALLERY (category pages) ──────────────────────── */
.gallery-section { background: var(--bg); padding: 90px 48px 120px; }
.gallery {
  column-count: 3;
  column-gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-figure {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface2);
}
.gallery-figure img {
  width: 100%; height: auto; transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-figure:hover img { transform: scale(1.04); }
.gallery-figure::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(7,21,16,0.55), transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-figure:hover::after { opacity: 1; }
.gallery-figure .gf-zoom {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 38px; height: 38px; border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px;
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s;
}
.gallery-figure:hover .gf-zoom { opacity: 1; transform: translateY(0); }

/* ── LIGHTBOX ──────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,16,12,0.96);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh; object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: 1px solid var(--border); color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lb-close { top: 28px; right: 28px; width: 46px; height: 46px; font-size: 20px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 24px; }
.lb-prev { left: 28px; } .lb-next { right: 28px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.lb-counter {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 3px; color: var(--gray);
}

/* ── ABOUT PAGE ────────────────────────────────────── */
.about-page-section { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 0.8fr 1fr; gap: 72px; align-items: start;
  max-width: 1180px; margin: 0 auto;
}
.about-portrait { position: relative; }
.about-portrait img { width: 100%; border-top: 3px solid var(--gold); }
.about-portrait .about-img-accent { width: 96px; height: 96px; }
.about-prose p { color: var(--light); font-size: 16px; line-height: 1.9; margin-bottom: 22px; }
.about-prose p:first-of-type { font-size: 19px; color: var(--white); }
.about-sign {
  font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--gold); margin-top: 14px;
}
.about-list { list-style: none; margin: 30px 0; display: grid; gap: 14px; }
.about-list li {
  display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: var(--light);
}
.about-list li::before { content: ''; flex: 0 0 8px; height: 8px; margin-top: 8px; background: var(--gold); }

/* ── FORMS (contact / booking) ─────────────────────── */
.form-section { background: var(--bg); }
.form-wrap { max-width: 760px; margin: 0 auto; }
.form-card {
  background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--gold);
  padding: 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.field label .opt { color: var(--gray); font-weight: 400; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--border); color: var(--white);
  font-family: var(--sans); font-size: 15px; padding: 14px 16px; transition: border-color 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #5e6b62; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23E9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}

/* chip multi-select */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  position: relative; cursor: pointer;
  font-size: 12px; letter-spacing: 1px; padding: 10px 18px;
  border: 1px solid var(--border); color: var(--light); user-select: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { border-color: var(--gold-line); }
.chip.checked { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

.form-actions { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--gray); }
.form-status { margin-top: 18px; font-size: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--gold); }
.form-status.err { color: #e07a6a; }

.contact-aside { display: grid; gap: 30px; align-content: start; }
.contact-block .section-label { margin-bottom: 8px; }
.contact-block a, .contact-block p { color: var(--light); text-decoration: none; font-size: 15px; line-height: 1.9; }
.contact-block a:hover { color: var(--gold); }
.contact-split { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; max-width: 1180px; margin: 0 auto; }

/* ── FOOTER ────────────────────────────────────────── */
footer { background: var(--green-deep); padding: 66px 48px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--border);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; text-decoration: none; }
.footer-sig { height: 50px; width: auto; opacity: 0.7; }
.footer-logo-name { font-family: var(--display); font-size: 22px; letter-spacing: 4px; color: var(--white); }
.footer-logo-name span { color: var(--gold); }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--light); line-height: 1.6; max-width: 320px; }
.footer-col-title {
  font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-links p { font-size: 14px; font-weight: 300; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--gray); opacity: 0.65; }
.footer-socials { display: flex; gap: 14px; }
.social-link {
  width: 38px; height: 38px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--gray); text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold-line); color: var(--gold); }
.footer-re-link {
  font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); text-decoration: none; opacity: 0.7; transition: opacity 0.2s, color 0.2s;
}
.footer-re-link:hover { opacity: 1; color: var(--gold); }

/* ── BRAND STRIP (clients) ─────────────────────────── */
.brand-strip {
  background: var(--surface);
  padding: 76px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.brand-strip-inner { max-width: 1280px; margin: 0 auto; }
.brand-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline;
  gap: 14px 0; margin-top: 30px;
}
.brand-link {
  position: relative;
  font-family: var(--display);
  font-size: 24px; letter-spacing: 2.5px;
  color: var(--gray); text-decoration: none;
  padding: 4px 28px;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.brand-link:hover { color: var(--gold); }
.brand-link::before {
  content: ''; position: absolute; left: -2px; top: 50%;
  width: 5px; height: 5px; background: var(--gold-line);
  transform: translateY(-50%) rotate(45deg);
}
.brand-row .brand-link:first-child::before { display: none; }
.brand-note { margin-top: 26px; font-size: 12px; letter-spacing: 1px; color: var(--gray); opacity: 0.75; }
@media (max-width: 768px) {
  .brand-strip { padding: 56px 22px; }
  .brand-link { font-size: 19px; padding: 4px 18px; }
}

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-wrap { max-width: 520px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .gallery { column-count: 2; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 22px; }
  section { padding: 80px 22px; }
  .page-hero { padding: 0 22px 48px; min-height: 52vh; }
  .gallery-section { padding: 64px 22px 90px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { gap: 3px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .work-header { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .lb-prev, .lb-next { width: 42px; height: 42px; }
  footer { padding: 56px 22px 36px; }
}
@media (max-width: 480px) {
  .gallery { column-count: 1; }
}
