/* =============================================
   OLAS LAW FIRM — style.css
   ============================================= */

/* ─── TOKENS ─── */
:root {
  --maroon: #6B0F1A;
  --maroon-deep: #4A0A12;
  --maroon-light: #8B1A28;
  --maroon-mid: #7A1220;
  --gold: #C9A84C;
  --gold-light: #E2C87E;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --cream: #F5F0E8;
  --light-grey: #E8E4DF;
  --mid-grey: #8A8480;
  --dark: #1A1210;
  --text: #2C2420;

  --nav-height: 72px;
  --section-pad: 120px 80px;
  --transition-base: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  transition: height 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
  height: 60px;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--maroon) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border: 1px solid var(--maroon-light) !important;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark) !important;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,5,5,0.97);
  z-index: 999;
  padding: 100px 40px 60px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul { list-style: none; }

.mobile-menu ul li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-link {
  display: block;
  padding: 18px 0;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0D0406;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(107,15,26,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 90% 20%, rgba(201,168,76,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #080204 0%, #1A0509 40%, #0D0406 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 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='%23C9A84C' 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");
}

.hero-graphic {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  width: 500px;
  height: 500px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 12px;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.1em;
}

.hero-subtitle-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  margin: 28px 0;
  animation: fadeSlideUp 0.8s ease 0.25s both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 52px;
  max-width: 560px;
  letter-spacing: 0.3px;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.5s both;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  padding: 16px 42px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--maroon-light);
  transition: background var(--transition-base), transform var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.5s;
}

.btn-primary:hover { background: var(--maroon-deep); transform: translateY(-2px); }
.btn-primary:hover::before { left: 100%; }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 16px 42px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 80px;
  display: flex;
  gap: 60px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp 0.8s ease 0.7s both;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0%   { left: -100%; }
  100% { left: 100%; }
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── SECTION SHARED ─── */
section { position: relative; }

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--maroon);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }
.section-eyebrow.light { color: var(--gold); }
.section-eyebrow.light::before { background: var(--gold); }

/* ─── ABOUT ─── */
.about {
  padding: var(--section-pad);
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual { position: relative; }

.about-image-frame {
  position: relative;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  padding: 48px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 30%, rgba(201,168,76,0.15) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.about-seal {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-seal-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.about-seal-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.seal-logo {
  font-family: 'Cinzel', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

.seal-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
}

.seal-tagline {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: rgba(201,168,76,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(201,168,76,0.3);
  border-style: solid;
}

.about-corner.tl { top: 20px; left: 20px; border-width: 1px 0 0 1px; }
.about-corner.tr { top: 20px; right: 20px; border-width: 1px 1px 0 0; }
.about-corner.bl { bottom: 20px; left: 20px; border-width: 0 0 1px 1px; }
.about-corner.br { bottom: 20px; right: 20px; border-width: 0 1px 1px 0; }

.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 100px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}

.accent-box-number {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.accent-box-text {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26,18,16,0.7);
  margin-top: 4px;
}

.about-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 400;
}

.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.pillar {
  padding: 20px 24px;
  border-left: 2px solid var(--maroon);
  background: var(--cream);
}

.pillar-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
}

/* ─── PRACTICE AREAS ─── */
.practice {
  padding: var(--section-pad);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.practice::before {
  content: 'LAW';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: 260px;
  font-weight: 900;
  color: rgba(107,15,26,0.04);
  line-height: 1;
  pointer-events: none;
}

.practice-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.practice-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.practice-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.practice-card:hover::before { transform: scaleX(1); }

.practice-card:hover {
  background: var(--maroon);
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(107,15,26,0.25);
}

.practice-card:hover .practice-num { color: rgba(255,255,255,0.2); }
.practice-card:hover .practice-name,
.practice-card:hover .practice-desc,
.practice-card:hover .practice-arrow { color: var(--white); }
.practice-card:hover .practice-icon { filter: brightness(10); }

.practice-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(107,15,26,0.2);
  letter-spacing: 2px;
  margin-bottom: 24px;
  transition: color 0.4s;
}

.practice-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
  transition: filter 0.4s;
}

.practice-name {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color 0.4s;
}

.practice-desc {
  font-size: 12.5px;
  color: #888;
  line-height: 1.7;
  font-weight: 300;
  flex-grow: 1;
  transition: color 0.4s;
}

.practice-arrow {
  font-size: 18px;
  color: var(--maroon);
  margin-top: 20px;
  display: block;
  transition: color 0.4s, transform 0.3s;
}

.practice-card:hover .practice-arrow { transform: translateX(4px); }

/* ─── APPROACH ─── */
.approach {
  padding: var(--section-pad);
  background: var(--maroon-deep);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M0 20L20 0 40 20 20 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.approach-inner {
  position: relative;
  z-index: 1;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 70px;
}

.approach-item {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: border-color 0.3s;
}

.approach-item:hover { border-color: rgba(201,168,76,0.4); }

.approach-number {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}

.approach-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.approach-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.approach-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  font-weight: 300;
}

/* ─── DETAILED PRACTICE SECTIONS ─── */
.practice-detail {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--light-grey);
}

.practice-detail.reverse { direction: rtl; }
.practice-detail.reverse > * { direction: ltr; }

.practice-detail.alt-bg { background: var(--cream); }

.detail-visual {
  position: relative;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.detail-visual--green {
  background: linear-gradient(135deg, #1a3a2a 0%, #0d1f17 100%);
}

.detail-visual--navy {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}

.detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,168,76,0.2) 0%, transparent 60%),
    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' stroke='%23C9A84C' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3Cpath d='M15 15h30v30H15z'/%3E%3Cpath d='M7 7l46 46M53 7L7 53'/%3E%3C/g%3E%3C/svg%3E");
}

.detail-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px;
}

.detail-visual-icon {
  font-size: 72px;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3));
}

.detail-visual-label {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.detail-body {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 32px;
}

.detail-services {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.detail-services li {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.detail-services li::before {
  content: '▸';
  color: var(--maroon);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── WHY OLAS ─── */
.why {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.why-card {
  padding: 48px 40px;
  background: var(--off-white);
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: var(--maroon);
  transform: translateY(-6px);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 24px;
  display: block;
}

.why-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.why-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.85;
  font-weight: 300;
}

/* ─── TESTIMONIAL / QUOTE ─── */
.testimony {
  padding: 100px 80px;
  background: var(--maroon);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimony::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 320px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimony-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.testimony-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.testimony-attr {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

/* ─── CONTACT ─── */
.contact {
  padding: var(--section-pad);
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info-title {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.contact-info-title span { color: var(--gold); }

.contact-body {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(107,15,26,0.4);
  border: 1px solid rgba(107,15,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

/* ─── FORM ─── */
.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--maroon-light);
}

.form-select { cursor: pointer; }
.form-select option { background: #1a1210; }
.form-textarea { resize: none; height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--maroon);
  color: var(--white);
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover:not(:disabled) { background: var(--maroon-deep); }
.btn-submit:disabled { cursor: default; }

.form-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin-top: 14px;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  background: #0A0304;
  padding: 60px 80px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.social-icon:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  background: #0A0304;
  padding: 20px 80px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

.footer-reg {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ─── MANDATE RIBBON ─── */
.mandate-ribbon {
  background: var(--gold);
  padding: 18px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  flex-wrap: wrap;
}

.mandate-text {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mandate-sep {
  width: 1px;
  height: 20px;
  background: rgba(26,18,16,0.2);
  flex-shrink: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --section-pad: 80px 40px; }

  nav { padding: 0 30px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .mobile-menu { display: block; }

  .hero-content { padding: 0 40px; }
  .hero-graphic { display: none; }
  .hero-stats {
    position: static;
    padding: 40px 40px 0;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .scroll-indicator { left: 40px; }

  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-accent-box { right: 0; bottom: -20px; }

  .practice-header { grid-template-columns: 1fr; gap: 24px; }

  .approach-grid { grid-template-columns: 1fr; gap: 24px; }

  .practice-detail {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 40px;
    direction: ltr !important;
  }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
    gap: 32px;
  }

  .footer-bottom { padding: 20px 40px; }
  .mandate-ribbon { padding: 16px 40px; gap: 20px; }

  .testimony { padding: 80px 40px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 60px 24px; }

  nav { padding: 0 20px; }
  .hero-content { padding: 80px 24px 0; }
  .hero-stats { padding: 32px 24px 0; }
  .scroll-indicator { left: 24px; }

  .practice-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .about-pillars { grid-template-columns: 1fr; }

  footer { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; }

  .mandate-ribbon { padding: 14px 24px; }
  .mandate-sep { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .detail-services { grid-template-columns: 1fr; }

  .hero-stats { gap: 20px; }
  .stat-number { font-size: 28px; }
}
