/* ============================================================
   NIEL SCHOEMAN ATTORNEYS & CONVEYANCERS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0C1B2E;
  --navy-mid:   #152840;
  --navy-light: #1E3A5F;
  --gold:       #C8A96E;
  --gold-light: #E8D5A3;
  --gold-dark:  #A07D45;
  --cream:      #F8F5EF;
  --white:      #FFFFFF;
  --grey:       #8A9BB0;
  --border:     rgba(200,169,110,0.2);
  --text:       #1C2B3A;
  --text-mid:   #4A5F78;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --shadow:      0 4px 24px rgba(12, 27, 46, 0.12);
  --shadow-gold: 0 8px 40px rgba(200, 169, 110, 0.28);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; }

/* ── Navigation ──────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 22px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s;
}

.nav.scrolled {
  background: var(--navy);
  padding: 14px 64px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo svg { color: var(--gold); flex-shrink: 0; }

.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  display: block;
}
.nav-logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-btn {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 26px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  font-size: 0.75rem !important;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.nav-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}
.nav-btn::after { display: none !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  padding: 90px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -12px 0 60px rgba(0,0,0,0.4);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-family: var(--font-serif);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  margin-top: 30px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  display: block;
}

/* ── Scroll reveal ───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* Gold line */
.gold-line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  width: 0;
  transition: width 1.1s var(--ease);
}
.gold-line.visible { width: 72px; }

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  font-family: var(--font-sans);
}
.btn-gold   { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
  width: 4px; height: 4px;
}
@keyframes rippleAnim { to { transform: scale(180); opacity: 0; } }

/* ── Label / divider ─────────────────────────────────────── */

.label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.section-intro {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-family: var(--font-serif);
  line-height: 1.25;
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 64px 80px;
}

/* animated background orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,169,110,0.07) 0%, transparent 65%);
  top: -200px; right: -100px;
  border-radius: 50%;
  animation: orbPulse 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,58,95,0.8) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  border-radius: 50%;
  animation: orbPulse 10s ease-in-out infinite reverse;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1) translate(0,0); }
  50%       { transform: scale(1.15) translate(20px,-20px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* left: text */
.hero-content .label {
  animation: fadeSlideUp 0.7s var(--ease) both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin: 18px 0 0;
  animation: fadeSlideUp 0.7s 0.15s var(--ease) both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-divider {
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
  animation: growLine 1s 0.5s var(--ease) forwards;
}
@keyframes growLine { to { width: 80px; } }

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 440px;
  line-height: 1.8;
  animation: fadeSlideUp 0.7s 0.3s var(--ease) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.45s var(--ease) both;
}

/* right: photo frame */
.hero-photo-wrap {
  position: relative;
  animation: fadeSlideRight 0.9s 0.3s var(--ease) both;
}
.hero-photo-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 580px;
  background: var(--navy-mid);
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* gold border accent */
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
/* offset gold frame */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: 20px; right: -20px;
  bottom: -20px; left: 20px;
  border: 1.5px solid rgba(200,169,110,0.22);
  border-radius: 4px;
  z-index: 0;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  top: -20px; right: 20px;
  bottom: 20px; left: -20px;
  border: 1.5px solid rgba(200,169,110,0.12);
  border-radius: 4px;
  z-index: 0;
}
.hero-photo-frame { z-index: 1; }

/* photo placeholder (before image added) */
.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  min-height: 480px;
}
.hero-photo-placeholder svg { opacity: 0.3; }

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s 1s both;
}
.scroll-hint .mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
  display: flex; justify-content: center;
}
.scroll-hint .mouse::after {
  content: '';
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

@keyframes fadeSlideUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }
@keyframes fadeSlideRight{ from { opacity:0; transform:translateX(50px);  } to { opacity:1; transform:none; } }

/* ── Stats bar ───────────────────────────────────────────── */

.stats {
  background: var(--navy-mid);
  padding: 56px 64px;
  position: relative;
  z-index: 2;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 50px;
  background: rgba(200,169,110,0.2);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── About section ───────────────────────────────────────── */

.about {
  padding: 110px 64px;
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 8px 0 24px;
}
.about-body {
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-features {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-features li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--gold);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7 10l2 2 4-4' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* about visual side */
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-light), var(--navy));
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-card {
  position: absolute;
  bottom: -24px; left: -30px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: 4px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.12);
  border-left: 3px solid var(--gold);
}
.about-badge-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.72rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Services preview ────────────────────────────────────── */

.services-preview {
  padding: 110px 64px;
  background: var(--white);
}
.services-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 70px;
}
.services-header .label { display: block; margin-bottom: 14px; }
.services-header .section-intro { color: var(--navy); }
.services-header p { margin-top: 16px; color: var(--text-mid); font-size: 0.95rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.service-card {
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: default;
  background: var(--white);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(12,27,46,0.1), 0 0 0 1px rgba(200,169,110,0.15);
  border-color: transparent;
}
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(200,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  transition: background 0.3s, transform 0.4s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}
.service-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

.services-footer { text-align: center; }

/* ── Trust section ───────────────────────────────────────── */

.trust {
  background: var(--navy);
  padding: 110px 64px;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.05) 0%, transparent 60%);
  top: -200px; right: -100px;
}
.trust-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 70px;
}
.trust-header .label { display: block; margin-bottom: 14px; }
.trust-header .section-intro { color: var(--white); }
.trust-header p { margin-top: 16px; color: var(--grey); font-size: 0.95rem; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.trust-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  text-align: center;
  transition: all 0.4s var(--ease);
}
.trust-card:hover {
  background: rgba(200,169,110,0.06);
  border-color: rgba(200,169,110,0.2);
  transform: translateY(-4px);
}
.trust-icon {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all 0.4s;
}
.trust-card:hover .trust-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.trust-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.trust-body { font-size: 0.88rem; color: var(--grey); line-height: 1.85; }

/* ── CTA section ─────────────────────────────────────────── */

.cta-section {
  padding: 90px 64px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-body { color: rgba(12,27,46,0.75); font-size: 1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page hero (inner pages) ─────────────────────────────── */

.page-hero {
  background: var(--navy);
  padding: 160px 64px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(200,169,110,0.06) 0%, transparent 50%);
}
.page-hero .label { display: block; margin-bottom: 16px; animation: fadeSlideUp 0.6s both; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  animation: fadeSlideUp 0.6s 0.15s both;
}
.page-hero p {
  color: var(--grey);
  margin-top: 14px;
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  animation: fadeSlideUp 0.6s 0.3s both;
}

/* ── SERVICES PAGE ───────────────────────────────────────── */

.services-full { padding: 90px 64px; background: var(--white); }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}
.service-row:last-child { border-bottom: none; }

.service-row-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(200,169,110,0.2);
  font-weight: 700;
  line-height: 1;
  padding-top: 4px;
}
.service-row-content h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-row-content p {
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.9;
  max-width: 700px;
  margin-bottom: 16px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  padding: 4px 14px;
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.process-section { padding: 90px 64px; background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%;
  width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  border: 2px solid var(--gold);
  font-weight: 600;
  transition: all 0.3s;
}
.process-step:hover .process-num {
  background: var(--gold);
  color: var(--navy);
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* FAQ */
.faq-section { padding: 90px 64px; background: var(--white); }
.faq-list { max-width: 800px; margin: 60px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */

.contact-section { padding: 90px 64px; background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin: 12px 0 10px;
}
.contact-info-body { color: var(--text-mid); font-size: 0.93rem; line-height: 1.8; margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,169,110,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-item:hover .contact-item-icon { background: var(--gold); color: var(--navy); }
.contact-item-content { flex: 1; }
.contact-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item-value {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-item-value a { color: var(--text); transition: color 0.3s; }
.contact-item-value a:hover { color: var(--gold-dark); }

/* Form */
.contact-form {
  background: var(--cream);
  padding: 48px;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form .form-sub { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
}
input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 24px; width: 100%; justify-content: center; }
.form-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-mid);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-note svg { color: var(--gold); }

/* form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success svg { color: var(--gold); margin: 0 auto 20px; }
.form-success h4 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); font-size: 0.9rem; }

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  background: var(--navy);
  padding: 72px 64px 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 64px; right: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.3), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin: 16px 0 4px;
}
.footer-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-desc {
  margin-top: 18px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-line svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }
.footer-contact-line a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-contact-line a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-photo-wrap { max-width: 420px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 768px) {
  .nav, .nav.scrolled { padding: 16px 24px; }
  .nav-links, .nav-btn { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu, .mobile-overlay { display: block; }
  .hero { padding: 110px 24px 80px; }
  .about, .services-preview, .trust, .cta-section,
  .services-full, .process-section, .faq-section,
  .contact-section, .footer { padding-left: 24px; padding-right: 24px; }
  .stats { padding: 48px 24px; }
  .page-hero { padding: 140px 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .service-row { grid-template-columns: 1fr; gap: 12px; }
  .service-row-number { font-size: 1.8rem; }
}
