/* ============================================
   COLLECTOR OFFICE — GLOBAL STYLES
   ============================================ */

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

:root {
  --bg: #0b0a08;
  --surface: #131210;
  --surface-2: #1a1814;
  --line: #2a2620;
  --line-2: #3a342b;
  --copper: #ffedc8;
  --copper-bright: #ffffff;
  --champagne: #ffedc8;
  --text: #f0e8d6;
  --text-mid: #b0a896;
  --text-mute: #7a7268;
  --text-faint: #4a4540;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.005em;
}

/* === TYPOGRAPHY === */
h1 { font-size: clamp(40px, 5vw, 60px); font-weight: 500; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 3.5vw, 44px); font-weight: 500; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 20px; font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-size: 13px; font-weight: 500; line-height: 1.4; letter-spacing: 0.06em; text-transform: uppercase; }
p { font-size: 16px; line-height: 1.7; color: var(--text-mid); font-weight: 400; }

a { color: inherit; }

.copper { color: var(--copper); }

/* === LUCIDE ICONS === */
[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  display: inline-block;
  vertical-align: middle;
}

.label-icon {
  width: 13px !important;
  height: 13px !important;
  margin-right: 7px;
  stroke-width: 2 !important;
}

/* === LABEL === */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
}

.label-copper { color: var(--copper); }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(11, 10, 8, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 6px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 90px;
  width: auto;
  display: block;
}

.nav-left {
  display: flex;
  justify-content: flex-start;
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover { color: var(--text); }

.nav-links a.active {
  color: var(--copper);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--copper);
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, color 0.2s;
}

.mobile-toggle:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 102px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  padding: 14px 8px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--copper); }
.mobile-menu a.active { color: var(--copper); }

.btn-nav {
  background: var(--copper);
  color: var(--bg);
  padding: 10px 20px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.3s;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(255, 237, 200, 0.08);
}

.btn-nav:hover { 
  background: var(--copper-bright); 
  box-shadow: 0 6px 20px rgba(255, 237, 200, 0.18);
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--copper);
  color: var(--bg);
  padding: 14px 26px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, gap 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(255, 237, 200, 0.08);
}

.btn-primary:hover { 
  background: var(--copper-bright); 
  gap: 16px;
  box-shadow: 0 6px 20px rgba(255, 237, 200, 0.18);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  transition: border-color 0.3s, color 0.3s, gap 0.3s;
  font-family: inherit;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
  gap: 16px;
}

/* === SECTIONS === */
section {
  padding: 120px 32px;
}

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

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

/* === SECTION HEAD === */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 28px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.section-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--copper);
}

.section-head .label { display: block; margin-bottom: 12px; }

.section-head h2 {
  max-width: 800px;
}

.section-head h2 .copper { color: var(--copper); }

.section-head-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

.section-head-meta .num {
  font-size: 13px;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

/* === PAGE HERO (for inner pages) === */
.page-hero {
  padding: 180px 32px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 70% 50%, rgba(255, 237, 200, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 70%, rgba(255, 237, 200, 0.03) 0%, transparent 60%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 28px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--text-mute);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--copper); }

.breadcrumb-divider {
  color: var(--text-faint);
}

.breadcrumb-current {
  color: var(--copper);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--text);
}

.page-hero h1 .copper { color: var(--copper); }

.page-hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 700px;
  line-height: 1.6;
}

/* === TICKER === */
.ticker {
  background: var(--surface);
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 56px;
  animation: tickerScroll 60s linear infinite;
  padding-right: 56px;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

.ticker-item .copper {
  color: var(--copper);
  font-variant-numeric: tabular-nums;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-2);
}

/* === TRUST PILLARS === */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 70px 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 1440px;
  margin: 0 auto;
}

.trust-block {
  background: var(--surface);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.4s ease, transform 0.3s ease;
  position: relative;
}

.trust-block:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}

.trust-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--copper);
  transition: width 0.4s ease;
}

.trust-block:hover::after {
  width: 100%;
}

.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--copper);
}

.trust-icon i {
  width: 22px;
  height: 22px;
}

.trust-num {
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 12px;
}

.trust-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
}

/* === DISCIPLINES (Services) === */
.disciplines {
  display: flex;
  flex-direction: column;
}

.discipline {
  display: grid;
  grid-template-columns: 60px 280px 1fr;
  gap: 40px;
  padding: 40px 24px 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding 0.3s ease, background 0.3s ease;
}

.discipline:hover {
  padding-left: 8px;
  padding-right: 16px;
  background: linear-gradient(to right, rgba(255, 237, 200, 0.015), transparent 60%);
}

.discipline:first-child { border-top: 1px solid var(--line); }

.discipline:hover .discipline-icon {
  border-color: var(--copper);
  transition: border-color 0.3s ease;
}

.discipline-num {
  font-size: 14px;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  padding-top: 4px;
  font-weight: 500;
}

.discipline-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--copper);
}

.discipline-icon i {
  width: 20px;
  height: 20px;
}

.discipline-name {
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.discipline-name-sub {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 6px;
  text-transform: none;
}

.discipline-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 620px;
}

.discipline-desc strong {
  color: var(--text);
  font-weight: 500;
}

/* === SOLD CARDS === */
.recent-sold-intro {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.recent-sold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 32px;
}

.sold-card {
  background: var(--surface);
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.4s ease, transform 0.3s ease;
  overflow: hidden;
}

.sold-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--copper);
  transition: width 0.4s ease;
}

.sold-card:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}

.sold-card:hover::before {
  width: 100%;
}

.sold-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.sold-card-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sold-card-tag i {
  width: 11px;
  height: 11px;
  stroke-width: 2.5;
}

.sold-card-name {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.sold-card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.sold-card-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.sold-card-detail i {
  width: 13px;
  height: 13px;
  color: var(--copper);
  opacity: 0.85;
  flex-shrink: 0;
}

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}

.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; border-right: none; }

.process-step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 32px;
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.process-step:first-child::before { left: 0; }

.process-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--copper);
}

.process-icon i {
  width: 20px;
  height: 20px;
}

.process-num {
  font-size: 12px;
  color: var(--copper);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  font-weight: 500;
}

.process-step h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.process-step p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.65;
  max-width: 240px;
}

/* === CLIENT BLOCKS === */
.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.client-block {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.client-block:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}

.client-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--copper);
}

.client-icon i {
  width: 22px;
  height: 22px;
}

.client-block .label {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
}

.client-block h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.client-block p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.client-list {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.client-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 11px 0;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.client-list li:last-child {
  border-bottom: none;
}

.client-list li i {
  width: 16px;
  height: 16px;
  color: var(--copper);
  opacity: 0.9;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-left .label {
  display: block;
  margin-bottom: 14px;
}

.contact-left h2 {
  color: var(--text);
  margin-bottom: 28px;
}

.contact-left h2 .copper { color: var(--copper); }

.contact-left p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--copper);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--copper);
  transition: gap 0.3s ease, color 0.3s ease;
  letter-spacing: 0.005em;
  font-weight: 500;
  margin-bottom: 36px;
}

.contact-email:hover { 
  gap: 20px;
  color: var(--copper-bright);
}

.contact-meta-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-meta-row {
  display: grid;
  grid-template-columns: 28px 140px 1fr;
  gap: 16px;
  font-size: 14px;
  align-items: center;
}

.contact-meta-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
}

.contact-meta-icon i {
  width: 18px;
  height: 18px;
}

.contact-meta-row-label {
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  padding-top: 2px;
}

.contact-meta-row-value {
  color: var(--text);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.field {
  background: var(--bg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s ease;
  position: relative;
}

.field:focus-within { background: var(--surface); }
.field:focus-within .field-label { color: var(--copper); }

.field.full { grid-column: span 2; }

.field-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  transition: color 0.3s ease;
}

.field-input,
.field-select,
.field-textarea {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 4px 0;
  outline: none;
  width: 100%;
}

.field-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

.field-submit {
  background: var(--copper);
  color: var(--bg);
  border: none;
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  grid-column: span 2;
}

.field-submit:hover { background: var(--copper-bright); }

/* === STICKY CTA BAR === */
.cta-bar {
  background: linear-gradient(to right, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
}

.cta-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper), transparent);
}

.cta-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cta-bar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-bar-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.cta-bar-title {
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* === FOOTER === */
footer {
  background: var(--bg);
  padding: 64px 32px 32px;
  border-top: 1px solid var(--line);
}

.footer-main {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-image {
  height: 70px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--copper); }

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--copper); }

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE — Tablet & Mobile
   ============================================ */

/* TABLET (max 1100px) */
@media (max-width: 1100px) {
  
  .nav-inner { 
    grid-template-columns: 1fr auto 1fr;
    padding: 6px 24px;
    gap: 12px;
    align-items: center;
  }
  .nav-links { display: none; }
  .nav-left { display: none; }
  .nav-center { 
    justify-content: flex-start;
    grid-column: 2;
    max-width: 100%;
    overflow: hidden;
    margin-left: -20px;
  }
  .nav-right { 
    justify-content: flex-end;
    grid-column: 3;
  }
  .mobile-toggle { display: flex; }
  .btn-nav { display: none; }
  .logo-image { max-width: 100%; object-fit: contain; }
  
  .page-hero { padding: 140px 24px 80px; }
  
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .recent-sold-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  
  .discipline {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }
  .discipline-name { grid-column: span 1; margin-bottom: 12px; }
  .discipline-desc { grid-column: 2; }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .cta-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* MOBILE (max 700px) */
@media (max-width: 700px) {
  
  body { font-size: 15px; }
  h1 { font-size: 30px !important; line-height: 1.15 !important; }
  h2 { font-size: 24px !important; line-height: 1.2 !important; }
  h3 { font-size: 18px !important; }
  p { font-size: 15px; line-height: 1.65; }
  
  section { padding: 60px 20px; }
  
  .nav-inner { padding: 6px 16px; }
  .logo-image { height: 70px; }
  .mobile-menu { top: 82px; }
  
  .page-hero { padding: 120px 20px 60px; }
  .page-hero-sub { font-size: 15px; }
  
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
  .section-head-meta { 
    align-items: flex-start; 
    text-align: left; 
  }
  
  .trust { padding: 40px 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-block { padding: 28px 24px; }
  .trust-num { font-size: 28px; }
  
  .discipline {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }
  .discipline-num { 
    padding-top: 0;
    margin-bottom: 4px;
  }
  .discipline-name { font-size: 20px !important; }
  .discipline-desc { 
    grid-column: 1;
    font-size: 14px !important;
  }
  
  .recent-sold-grid { grid-template-columns: 1fr; }
  
  .process-grid { grid-template-columns: 1fr; }
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
  }
  .process-step:last-child { border-bottom: none; }
  
  .clients-grid { grid-template-columns: 1fr; gap: 20px; }
  .client-block { padding: 30px 26px; }
  .client-icon { width: 40px; height: 40px; margin-bottom: 20px; }
  .client-list li { font-size: 13px; padding: 10px 0; }
  
  .contact-form { grid-template-columns: 1fr; }
  .field.full,
  .field-submit { grid-column: span 1; }
  
  .contact-meta-row {
    grid-template-columns: 24px 1fr;
    gap: 4px 12px;
    align-items: start;
  }
  .contact-meta-row-label { grid-column: 2; }
  .contact-meta-row-value { grid-column: 2; }
  
  .cta-bar { padding: 24px 20px; }
  .cta-bar-title { font-size: 17px; }
  
  footer { padding: 48px 20px 24px; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
