/* ══════════════════════════════════════════
   MECA THEME — main.css
   Responsive luxury real estate consultancy
   ══════════════════════════════════════════ */

:root {
  --gold:        #AA8147;
  --gold-light:  #C4995A;
  --blue-dark:   #003457;
  --blue-mid:    #004E61;
  --cream:       #EDEBE4;
  --text-light:  rgba(237,235,228,0.72);
  --white:       #ffffff;
  --transition:  0.35s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--blue-dark);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Comfortaa', sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}
.section-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
}
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 34px;
  transition: background var(--transition), transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid rgba(237,235,228,0.3);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--cream); color: var(--white); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── NAV ── */
#meca-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  background: linear-gradient(to bottom, rgba(0,52,87,0.97), transparent);
  transition: background var(--transition), padding var(--transition);
}
#meca-nav.scrolled {
  background: rgba(0,52,87,0.98);
  padding: 16px 60px;
  box-shadow: 0 1px 0 rgba(170,129,71,0.2);
  backdrop-filter: blur(6px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo-icon { width: 34px; height: 34px; }
.nav-logo-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.nav-logo-text {
  font-family: 'Comfortaa', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  line-height: 1.5;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(170,129,71,0.5);
  padding: 10px 22px;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(170,129,71,0.12); border-color: var(--gold); }
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, #005570 100%);
  padding: 140px 60px 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(0,78,97,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(170,129,71,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170,129,71,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-mark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: min(700px, 60vw);
  height: auto;
  opacity: 0.04;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 38px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  font-family: 'Comfortaa', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.35s both;
}
.hero h1 span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s ease 0.65s both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(237,235,228,0.35);
  animation: fadeUp 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── VALUE STRIP ── */
.value-strip {
  background: var(--gold);
  padding: 20px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
}
.value-strip-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.value-strip-item::before { content: '◆'; font-size: 6px; opacity: 0.5; }

/* ── ABOUT ── */
.about-section {
  background: linear-gradient(135deg, #002a46 0%, var(--blue-mid) 100%);
  padding: 100px 60px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(170,129,71,0.14);
  padding: 34px 26px;
  transition: background var(--transition), border-color var(--transition);
}
.stat-card:hover { background: rgba(170,129,71,0.08); border-color: rgba(170,129,71,0.4); }
.stat-number {
  font-family: 'Comfortaa', sans-serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services-section {
  background: var(--blue-dark);
  padding: 100px 60px;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.services-header > div { max-width: 640px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(170,129,71,0.12);
  padding: 42px 34px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s, border-color 0.4s, transform 0.3s;
  display: block;
  color: inherit;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: rgba(170,129,71,0.07); border-color: rgba(170,129,71,0.35); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-number { font-family: 'Comfortaa', sans-serif; font-size: 11px; color: rgba(170,129,71,0.45); letter-spacing: 0.12em; margin-bottom: 24px; }
.service-title { font-family: 'Comfortaa', sans-serif; font-size: 16px; color: var(--cream); margin-bottom: 14px; line-height: 1.35; }
.service-desc { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.85; margin-bottom: 28px; }
.service-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 16px; }
.service-link::after { content: '→'; }

/* ── PROCESS ── */
.process-section {
  background: linear-gradient(135deg, var(--blue-mid) 0%, #002a46 100%);
  padding: 100px 60px;
}
.process-section .section-title { max-width: 640px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.25;
}
.step-dot {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(170,129,71,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 16px;
  color: var(--gold);
  background: var(--blue-mid);
  position: relative;
  z-index: 1;
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .step-dot { background: rgba(170,129,71,0.14); border-color: var(--gold); }
.step-title { font-family: 'Comfortaa', sans-serif; font-size: 15px; color: var(--cream); margin-bottom: 10px; }
.step-desc { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.85; }

/* ── WHY US ── */
.why-section {
  background: var(--blue-dark);
  padding: 100px 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.why-list { list-style: none; }
.why-item {
  border-top: 1px solid rgba(170,129,71,0.14);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 18px;
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid rgba(170,129,71,0.14); }
.why-check { color: var(--gold); font-size: 12px; margin-top: 3px; }
.why-item-title { font-family: 'Comfortaa', sans-serif; font-size: 14px; color: var(--cream); margin-bottom: 6px; }
.why-item-desc { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.8; }

/* ── CONTACT CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #8A6435 100%);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,52,87,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,52,87,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue-dark); opacity: 0.65; margin-bottom: 18px; }
.cta-title { font-family: 'Comfortaa', sans-serif; font-size: clamp(26px, 4vw, 50px); color: var(--blue-dark); margin-bottom: 16px; }
.cta-body { font-size: 16px; font-weight: 300; color: rgba(0,52,87,0.72); max-width: 480px; margin: 0 auto 40px; line-height: 1.85; }
.btn-dark {
  display: inline-block;
  background: var(--blue-dark);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 42px;
  transition: background var(--transition), transform 0.2s;
}
.btn-dark:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  background: #001f35;
  padding: 64px 60px 36px;
  border-top: 1px solid rgba(170,129,71,0.14);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-top: 18px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--text-light); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(237,235,228,0.3); letter-spacing: 0.06em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  #meca-nav { padding: 20px 32px; }
  #meca-nav.scrolled { padding: 14px 32px; }
  .nav-links { gap: 24px; }
  .hero { padding: 130px 32px 80px; }
  .about-section, .services-section, .process-section, .why-section, .cta-section { padding: 80px 32px; }
  .site-footer { padding: 56px 32px 32px; }
  .value-strip { padding: 18px 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-header { margin-bottom: 48px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  #meca-nav { padding: 18px 24px; }
  #meca-nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile menu open */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,52,87,0.98);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }
  .nav-links.mobile-open a { font-size: 16px; letter-spacing: 0.2em; }

  .hero { padding: 120px 24px 80px; }
  .hero-scroll-indicator { display: none; }
  .hero-bg-mark { display: none; }

  .value-strip { padding: 16px 24px; gap: 16px 32px; }
  .value-strip-item { font-size: 9px; }

  .about-section, .services-section, .process-section, .why-section, .cta-section { padding: 72px 24px; }
  .site-footer { padding: 48px 24px 28px; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .services-header { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .about-stats { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════════ */

/* ── INNER HERO ── */
.inner-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 60px 72px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  position: relative;
  overflow: hidden;
}
.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(170,129,71,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170,129,71,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.inner-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.inner-title {
  font-family: 'Comfortaa', sans-serif;
  font-size: clamp(30px, 4.5vw, 58px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.inner-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 600px;
}

/* ── SERVICE SECTIONS ── */
.inner-sections { max-width: 1280px; margin: 0 auto; padding: 80px 60px; }
.inner-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 56px 0;
  border-top: 1px solid rgba(170,129,71,0.14);
}
.inner-section:first-child { border-top: none; padding-top: 0; }
.inner-section-title {
  font-family: 'Comfortaa', sans-serif;
  font-size: 20px;
  color: var(--gold);
  line-height: 1.3;
}
.inner-section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.95;
}

/* ── CTA STRIP ── */
.inner-cta-strip {
  background: linear-gradient(135deg, #002a46 0%, var(--blue-mid) 100%);
  padding: 64px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ── PORTFOLIO GRID ── */
.portfolio-grid-wrap { padding: 80px 60px; max-width: 1280px; margin: 0 auto; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.portfolio-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(170,129,71,0.12);
  padding: 40px 32px;
  transition: background 0.3s, border-color 0.3s;
}
.portfolio-card:hover { background: rgba(170,129,71,0.07); border-color: rgba(170,129,71,0.3); }
.portfolio-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.portfolio-card-location {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 18px;
  opacity: 0.7;
}
.portfolio-card h3 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.35;
}
.portfolio-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 24px;
}
.portfolio-card-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: rgba(170,129,71,0.6);
  letter-spacing: 0.08em;
}
.portfolio-card-meta span::before { content: '— '; }

/* ── CLIENT AREA ── */
.client-area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px;
  align-items: start;
}
.client-login-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(170,129,71,0.2);
  padding: 56px 48px;
}
.client-login-icon { margin-bottom: 28px; }
.client-login-title {
  font-family: 'Comfortaa', sans-serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
}
.client-login-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}
/* WordPress login form styling */
.login-username, .login-password, .login-remember { margin-bottom: 20px; }
.login-username label, .login-password label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.login-username input, .login-password input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(170,129,71,0.25);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.login-username input:focus, .login-password input:focus { border-color: var(--gold); }
.login-remember { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-light); }
.login-submit input[type="submit"] {
  background: var(--gold);
  color: var(--blue-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}
.login-submit input[type="submit"]:hover { background: var(--gold-light); }
.client-welcome { text-align: center; padding: 20px 0; }
.client-welcome-name { font-family: 'Comfortaa', sans-serif; font-size: 20px; color: var(--gold); margin-bottom: 10px; }
.client-welcome-sub { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.client-info-cards { display: flex; flex-direction: column; gap: 2px; }
.client-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(170,129,71,0.1);
  padding: 32px 28px;
  transition: background 0.3s;
}
.client-info-card:hover { background: rgba(170,129,71,0.07); }
.client-info-icon { font-size: 26px; margin-bottom: 12px; }
.client-info-card h3 { font-family: 'Comfortaa', sans-serif; font-size: 15px; color: var(--cream); margin-bottom: 8px; }
.client-info-card p { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.8; }

/* ── LEGAL PAGE ── */
.legal-content-wrap { max-width: 820px; margin: 0 auto; padding: 80px 60px; }
.legal-content h2 { font-family: 'Comfortaa', sans-serif; font-size: 28px; color: var(--cream); margin-bottom: 28px; }
.legal-content h3 { font-family: 'Comfortaa', sans-serif; font-size: 16px; color: var(--gold); margin: 36px 0 12px; }
.legal-content p { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.95; margin-bottom: 16px; }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { font-weight: 500; color: var(--cream); }

/* ── INNER PAGE RESPONSIVE ── */
@media (max-width: 1024px) {
  .inner-hero { padding: 130px 32px 60px; }
  .inner-sections { padding: 64px 32px; }
  .inner-section { grid-template-columns: 1fr; gap: 20px; }
  .portfolio-grid-wrap { padding: 64px 32px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .client-area-wrap { padding: 64px 32px; grid-template-columns: 1fr; }
  .legal-content-wrap { padding: 64px 32px; }
  .inner-cta-strip { padding: 48px 32px; }
}
@media (max-width: 768px) {
  .inner-hero { padding: 120px 24px 48px; }
  .inner-sections { padding: 48px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid-wrap { padding: 48px 24px; }
  .client-area-wrap { padding: 48px 24px; }
  .legal-content-wrap { padding: 48px 24px; }
  .inner-cta-strip { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
  .client-login-card { padding: 36px 24px; }
}
