/* ===================================================
   MARIUSZ DOMERADZKI — RESTRUKTURYZACJE
   style.css | v2.0 — Premium Redesign
   =================================================== */

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

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #091422;
  --navy-mid:    #122035;
  --navy-deep:   #050d18;
  --navy-glass:  rgba(9,20,34,.82);
  --gold:        #C9A84C;
  --gold-light:  #E2C06E;
  --gold-pale:   #F0DFA8;
  --gold-muted:  rgba(201,168,76,.28);
  --gold-glow:   rgba(201,168,76,.12);
  --cream:       #F7F3EB;
  --cream-dark:  #EDE7D8;
  --text-dark:   #0A1424;
  --text-mid:    #344155;
  --text-light:  #637083;
  --white:       #FFFFFF;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --cond:   'Barlow Condensed', sans-serif;
  --sans:   'Outfit', system-ui, sans-serif;
  --ease:   cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
  --radius: 3px;
  --shadow-sm: 0 2px 12px rgba(9,20,34,.08);
  --shadow-md: 0 8px 40px rgba(9,20,34,.14);
  --shadow-lg: 0 24px 64px rgba(9,20,34,.22);
}

html { scroll-behavior: smooth; }

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

img { display: block; max-width: 100%; }
a   { transition: color .25s var(--ease); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal-stagger.revealed > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: .05s; }
.reveal-stagger.revealed > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: .15s; }
.reveal-stagger.revealed > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: .25s; }
.reveal-stagger.revealed > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: .35s; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy-deep);
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
  position: relative;
  z-index: 300;
}
.topbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar a {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-family: var(--cond);
  font-size: 13px; font-weight: 400; letter-spacing: .06em;
  display: flex; align-items: center; gap: 7px;
  transition: color .2s;
}
.topbar a:hover { color: var(--gold-light); }
.topbar-phone a {
  color: var(--gold-light);
  font-size: 14px; font-weight: 500; letter-spacing: .09em;
}
.topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar-right .sep { width: 3px; height: 3px; background: rgba(201,168,76,.35); border-radius: 50%; }

/* ─── NAV ─── */
.nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(237,231,216,.7);
  position: sticky; top: 0; z-index: 200;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 32px rgba(9,20,34,.1);
  border-bottom-color: transparent;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
  width: 46px; height: 46px; background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
  box-shadow: 0 4px 16px rgba(9,20,34,.25), inset 0 1px 0 rgba(201,168,76,.2);
}
.logo-mark::after {
  content: ''; position: absolute; inset: 3px;
  border: 1px solid rgba(201,168,76,.35); border-radius: 2px; pointer-events: none;
}
.logo-mark span {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--gold-light); letter-spacing: .06em; position: relative; z-index: 1;
}
.logo-name {
  display: block; font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--navy); letter-spacing: .01em; line-height: 1.2;
}
.logo-sub {
  display: block; font-family: var(--cond);
  font-size: 10px; color: var(--gold); letter-spacing: .26em;
  text-transform: uppercase; margin-top: 3px; font-weight: 500;
}

/* NAV LINKS */
.nav-links { display: flex; list-style: none; align-items: center; gap: 4px; }
.nav-links a {
  display: block; padding: 8px 14px;
  font-family: var(--cond);
  font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; position: relative;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 3px; left: 14px; right: 14px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s var(--ease); transform-origin: left;
}
.nav-links a:hover { color: var(--navy); background: var(--gold-glow); }
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .cta a {
  background: var(--navy) !important; color: var(--gold-light) !important;
  border-radius: var(--radius); padding: 10px 24px !important; margin-left: 10px;
  letter-spacing: .12em;
  box-shadow: 0 2px 12px rgba(9,20,34,.2);
}
.nav-links .cta a::after { display: none !important; }
.nav-links .cta a:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: .3s var(--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); }

.mob-menu {
  display: none; background: var(--white);
  border-top: 1px solid var(--cream-dark); padding: 16px 28px 28px;
  flex-direction: column; gap: 4px;
}
.mob-menu a {
  display: block; padding: 13px 0;
  font-family: var(--cond); font-size: 15px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-mid); text-decoration: none;
  border-bottom: 1px solid var(--cream-dark);
}
.mob-menu a:hover { color: var(--gold); }
.mob-menu .mob-cta {
  margin-top: 12px !important; background: var(--navy); color: var(--gold-light) !important;
  text-align: center; padding: 15px !important; border: none !important;
  border-radius: var(--radius); font-weight: 500;
}

/* ─── HERO — HOMEPAGE ─── */
.hero {
  min-height: 96vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
/* Dark overlay + image */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    url('../img/office-warsaw.png') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(5,13,24,.96) 0%,
      rgba(9,20,34,.88) 52%,
      rgba(9,20,34,.55) 100%);
}
/* Noise grain */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .5;
}
/* Gold accent line */
.hero-accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 3;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 120px 28px 80px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--cond); font-size: 11px; font-weight: 500; letter-spacing: .38em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.hero-label::before {
  content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(38px,5.2vw,68px);
  font-weight: 500; color: var(--white); line-height: 1.1; letter-spacing: -.01em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-lead {
  font-size: 16.5px; font-weight: 300; color: rgba(255,255,255,.6);
  line-height: 1.9; margin-bottom: 48px; max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 28px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08);
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.trust-label {
  font-family: var(--cond); font-size: 12px; color: rgba(255,255,255,.5);
  letter-spacing: .12em; text-transform: uppercase; display: block;
}
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

/* HERO RIGHT — glass card */
.hero-right-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--radius);
  padding: 44px 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(5,13,24,.4), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.hero-right-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat-feature {
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.stat-feature:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.stat-feature-num {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px; display: block;
}
.stat-feature-title {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--white); line-height: 1.25; margin-bottom: 8px;
}
.stat-feature-label {
  font-size: 13px; color: rgba(255,255,255,.42); font-weight: 300;
  line-height: 1.6;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 380px;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,13,24,.97) 0%,
    rgba(9,20,34,.7) 60%,
    rgba(9,20,34,.35) 100%
  );
}
.page-hero-img-1 { background-image: url('../img/books-scales.png'); }
.page-hero-img-2 { background-image: url('../img/office-warsaw.png'); }
.page-hero-img-3 { background-image: url('../img/courthouse.png'); }
.page-hero-content {
  max-width: 1240px; margin: 0 auto; padding: 0 28px 56px;
  position: relative; z-index: 1; width: 100%;
}
.page-hero-label {
  font-family: var(--cond); font-size: 11px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold); display: inline-flex;
  align-items: center; gap: 12px; margin-bottom: 14px;
}
.page-hero-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: var(--serif); font-size: clamp(32px,4.2vw,54px);
  font-weight: 500; color: var(--white); line-height: 1.15; letter-spacing: -.01em;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 16px 34px; font-family: var(--cond); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,.42);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,.75);
  padding: 16px 34px; font-family: var(--cond); font-size: 13px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.18);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--gold-light);
  padding: 16px 34px; font-family: var(--cond); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 20px rgba(9,20,34,.25);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(9,20,34,.35); }
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--navy);
  padding: 15px 32px; font-family: var(--cond); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius); border: 1.5px solid var(--navy);
  transition: .25s var(--ease);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--gold-light); }
svg.icon { flex-shrink: 0; }

/* ─── SECTION BASE ─── */
.section { padding: 104px 0; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section.bg-cream { background: var(--cream); }
.section.bg-navy  { background: var(--navy); }
.section.bg-deep  { background: var(--navy-deep); }

.sec-label {
  font-family: var(--cond); font-size: 11px; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: inline-flex;
  align-items: center; gap: 12px;
}
.sec-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: var(--serif); font-size: clamp(30px,3.8vw,48px);
  font-weight: 500; color: var(--navy); line-height: 1.18; letter-spacing: -.01em;
}
.sec-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.sec-title.white { color: var(--white); }
.sec-sub {
  font-size: 16px; font-weight: 300; color: var(--text-light);
  line-height: 1.9; margin-top: 18px; max-width: 560px;
}
.sec-sub.white { color: rgba(255,255,255,.55); }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .sec-sub { margin: 18px auto 0; }
.section-header.center .sec-label { justify-content: center; }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--cream-dark); border-radius: var(--radius);
  overflow: hidden;
}
.svc-card {
  background: var(--white); padding: 52px 44px;
  position: relative; display: block; text-decoration: none; color: inherit;
  transition: background .3s var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.svc-card::after {
  content: ''; position: absolute; bottom: -100%; left: 0; right: 0; height: 100%;
  background: linear-gradient(to top, var(--gold-glow), transparent);
  transition: bottom .4s var(--ease);
}
.svc-card:hover { background: var(--cream); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after { bottom: 0; }
.svc-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-size: 10.5px; color: var(--gold);
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 28px;
}
.svc-kicker::before { content: ''; width: 16px; height: 1px; background: var(--gold); }
.svc-title {
  font-family: var(--serif); font-size: 25px; font-weight: 600;
  color: var(--navy); margin-bottom: 16px; line-height: 1.28; letter-spacing: -.01em;
}
.svc-text {
  font-size: 15px; font-weight: 300; color: var(--text-light); line-height: 1.85; margin-bottom: 32px;
}
.svc-link {
  font-family: var(--cond); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 8px; position: relative; z-index: 1;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center;
}
.about-img { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 4/5; max-height: 580px; overflow: hidden;
  border-radius: var(--radius); position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::before {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 55%; height: 2px; background: linear-gradient(to left, var(--gold), transparent); z-index: 2;
}
.about-photo::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 2px; height: 40%; background: linear-gradient(to top, var(--gold), transparent); z-index: 2;
}
.about-badge {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--gold); color: var(--navy);
  padding: 24px 30px; font-family: var(--serif); text-align: center;
  min-width: 138px; z-index: 3;
  box-shadow: var(--shadow-md);
}
.badge-n { font-size: 40px; font-weight: 700; line-height: 1; display: block; }
.badge-l {
  font-family: var(--cond); font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; opacity: .75; display: block; margin-top: 5px;
}
.about-text {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.62); line-height: 1.95; margin: 22px 0;
}
.about-text.dark { color: var(--text-mid); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 300;
}
.check-list.light li { color: rgba(255,255,255,.68); }
.check-list.dark-text li { color: var(--text-mid); }
.chk {
  width: 20px; height: 20px; border: 1px solid rgba(201,168,76,.5);
  border-radius: 50%; flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; margin-top: 2px;
  background: rgba(201,168,76,.07);
}
.chk svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: 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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.cta-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-title {
  font-family: var(--serif); font-size: clamp(26px,3.4vw,42px);
  font-weight: 500; color: var(--navy); line-height: 1.2; letter-spacing: -.01em;
}
.cta-title em { font-style: italic; }
.cta-sub { font-size: 15px; font-weight: 300; color: rgba(9,20,34,.58); margin-top: 8px; }

/* ─── PROCEEDING CARDS ─── */
.proceeding-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; background: var(--cream-dark); border-radius: var(--radius); overflow: hidden;
}
.proceeding-card {
  background: var(--white); padding: 52px 48px; position: relative; overflow: hidden;
  transition: background .3s;
}
.proceeding-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease);
}
.proceeding-card:hover { background: rgba(247,243,235,.5); }
.proceeding-card:hover::before { transform: scaleY(1); }
.proc-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--cond); font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,.1); padding: 5px 13px; border-radius: 1px; margin-bottom: 22px;
  border: 1px solid rgba(201,168,76,.22);
}
.proc-title {
  font-family: var(--serif); font-size: 25px; font-weight: 600;
  color: var(--navy); margin-bottom: 16px; line-height: 1.28; letter-spacing: -.01em;
}
.proc-text { font-size: 15px; font-weight: 300; color: var(--text-light); line-height: 1.85; }

/* ─── TWO COL CONTENT ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.two-col-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.two-col-img:hover img { transform: scale(1.03); }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 88px; align-items: start;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-family: var(--cond);
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; font-family: var(--sans); font-size: 15px;
  color: var(--text-dark); background: var(--cream);
  border: 1px solid var(--cream-dark); border-radius: var(--radius);
  transition: border-color .25s, background .25s, box-shadow .25s; outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 8px; line-height: 1.6; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23637083' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px; cursor: pointer;
}
.contact-info { padding-top: 8px; }
.contact-info-title {
  font-family: var(--serif); font-size: 30px; font-weight: 600;
  color: var(--navy); margin-bottom: 28px; letter-spacing: -.01em;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px;
  padding: 18px; background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: border-color .2s, box-shadow .2s;
}
.contact-item:hover { border-color: var(--gold-muted); box-shadow: var(--shadow-sm); }
.contact-item-icon {
  width: 42px; height: 42px; background: var(--white);
  border: 1px solid var(--cream-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-item-label {
  font-family: var(--cond); font-size: 10.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-light);
  display: block; margin-bottom: 4px;
}
.contact-item-val { font-size: 15.5px; color: var(--navy); font-weight: 400; }
.contact-item-val a { color: var(--navy); text-decoration: none; }
.contact-item-val a:hover { color: var(--gold); }
.hours-box {
  background: var(--navy); border-radius: var(--radius); padding: 28px;
  margin-top: 28px; position: relative; overflow: hidden;
}
.hours-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}
.hours-title {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.6);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.hours-row:last-child { border-bottom: none; }
.form-success {
  display: none; background: rgba(201,168,76,.1); border: 1px solid var(--gold-muted);
  border-radius: var(--radius); padding: 20px 24px; font-size: 15px;
  color: var(--navy); margin-top: 16px;
}
.map-placeholder {
  width: 100%; height: 280px; background: var(--cream);
  border: 1px solid var(--cream-dark); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 28px;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius); }

/* ─── ABOUT PAGE ─── */
.bio-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 88px; align-items: start; }
.bio-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); position: relative; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo::after {
  content: ''; position: absolute; bottom: 0; right: 0; width: 55%; height: 2px;
  background: linear-gradient(to left, var(--gold), transparent);
}
.credentials {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--cream-dark); margin-top: 24px; border-radius: var(--radius); overflow: hidden;
}
.credential-item { background: var(--cream); padding: 24px 22px; }
.credential-label strong {
  display: block; font-family: var(--serif); font-size: 20px;
  color: var(--text-dark); font-weight: 600; margin-bottom: 6px;
}
.credential-label { font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.55; }
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--cream-dark); border-radius: var(--radius); overflow: hidden;
}
.value-card { background: var(--white); padding: 44px 36px; transition: background .3s; }
.value-card:hover { background: var(--cream); }
.value-icon {
  width: 52px; height: 52px; background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.25); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.value-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.value-title {
  font-family: var(--serif); font-size: 21px; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.value-text { font-size: 14.5px; font-weight: 300; color: var(--text-light); line-height: 1.85; }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: rgba(201,168,76,.06);
  border-left: 2px solid var(--gold);
  padding: 28px 32px; border-radius: 0 var(--radius) var(--radius) 0; margin: 32px 0;
}
.highlight-box p {
  font-family: var(--serif); font-size: 18px; font-style: italic;
  color: var(--navy); line-height: 1.65; font-weight: 400;
}

/* ─── ALERT / INFO ─── */
.alert-info {
  background: var(--cream); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 20px 24px; font-size: 14px;
  color: var(--text-mid); line-height: 1.7; margin-top: 24px;
}

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-q {
  padding: 22px 0; font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--navy); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q svg {
  width: 18px; height: 18px; stroke: var(--gold); fill: none;
  stroke-width: 2; flex-shrink: 0; transition: transform .3s var(--ease);
}
details[open] .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 0 24px; font-size: 15px; font-weight: 300; color: var(--text-light); line-height: 1.9; }

/* ─── FOOTER ─── */
footer { background: var(--navy-deep); color: rgba(255,255,255,.5); }
.footer-main {
  max-width: 1240px; margin: 0 auto; padding: 80px 28px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px;
}
.footer-desc { font-size: 14px; font-weight: 300; line-height: 1.9; margin-top: 20px; color: rgba(255,255,255,.38); }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.footer-contact-item { display: flex; align-items: center; gap: 9px; font-size: 13px; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-contact-item span { color: rgba(255,255,255,.4); }
.footer-col h4 {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.38);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.82); }
.footer-license {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px; color: rgba(255,255,255,.2); line-height: 1.85;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05); padding: 20px 28px;
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.22); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(201,168,76,.4); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── BREADCRUMB ─── */
.breadcrumb { background: var(--cream); border-bottom: 1px solid var(--cream-dark); padding: 13px 0; }
.breadcrumb-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  font-family: var(--cond); font-size: 12px; letter-spacing: .06em;
  color: var(--text-light); display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold-muted); }

/* ─── DIVIDER ─── */
.divider { width: 100%; height: 1px; background: var(--cream-dark); margin: 48px 0; }
.divider.gold { background: linear-gradient(90deg, var(--gold-muted), transparent); }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-right-stat { display: none; }
  .bio-grid        { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-main     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .services-grid     { grid-template-columns: 1fr; }
  .proceeding-grid   { grid-template-columns: 1fr; }
  .about-grid        { grid-template-columns: 1fr; }
  .about-img         { display: none; }
  .two-col           { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
  .cta-inner         { justify-content: center; text-align: center; }
  .section           { padding: 72px 0; }
}
@media (max-width: 640px) {
  .footer-main   { grid-template-columns: 1fr; }
  .form-grid-2   { grid-template-columns: 1fr; }
  .credentials   { grid-template-columns: 1fr; }
  .topbar-right  { display: none; }
  .hero h1       { font-size: 36px; }
  .page-hero     { height: 300px; }
  .section       { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
  .hero-inner    { padding: 100px 20px 64px; }
  .hero::before  { background-attachment: scroll; }
  .page-hero-bg  { background-attachment: scroll; }
  .svc-card      { padding: 40px 28px; }
}
