/* ==========================================================================
   Aspiriar Legal - aspiriarlegal.co.uk
   UK Legal Recruitment - Permanent Hires Only
   --------------------------------------------------------------------------
   Palette: Deep Navy + Cream + Burnished Copper
   - Old-money legal gravitas
   - Distinct from existing portfolio sites
   ========================================================================== */

:root {
  /* Brand palette - Deep Navy + Cream + Burnished Copper */
  --navy:        #0E2240;   /* primary dark */
  --navy-deep:   #081428;   /* footer / topbar */
  --navy-soft:   #1A3358;   /* hover, accents */
  --cream:       #F2EBDD;   /* light surface */
  --cream-warm:  #E9DFC9;   /* alt cream for stripes */
  --copper:      #A0673E;   /* burnished copper accent */
  --copper-deep: #8A572F;   /* hover copper */
  --copper-soft: #C18F66;   /* highlights */
  --ink:         #14181F;   /* body text on light */
  --ink-soft:    #3F4A5C;   /* secondary text */
  --rule:        #D8CDB6;   /* hairlines */
  --white:       #FFFFFF;

  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(8,20,40,0.06), 0 2px 6px rgba(8,20,40,0.04);
  --shadow-md: 0 4px 12px rgba(8,20,40,0.08), 0 12px 24px rgba(8,20,40,0.06);
  --shadow-lg: 0 16px 40px rgba(8,20,40,0.14);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--copper-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1.05em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.eyebrow.on-dark { color: var(--copper-soft); }

.section-title {
  text-align: center;
  margin-bottom: 3.2rem;
}
.section-title h2 { margin-bottom: .6rem; }
.section-title p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--copper-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--navy-soft);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--copper-soft);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-large { padding: 16px 36px; font-size: 1rem; }

/* ==========================================================================
   Topbar + Nav
   ========================================================================== */
.topbar {
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 0.83rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(160,103,62,0.25);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar a { color: var(--copper-soft); }
.topbar a:hover { color: var(--white); }
.topbar-tagline {
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: 0.04em;
  color: rgba(242,235,221,0.78);
}
.topbar-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-meta span,
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.topbar-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-tagline svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar svg { max-width: 16px; max-height: 16px; }


.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--copper-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(193,143,102,0.25);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width .25s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--navy-soft); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--copper); }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.hamburger svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-menu, .nav-phone { display: none; }
  .hamburger { display: inline-flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 90%;
  height: 100vh;
  background: var(--navy);
  color: var(--white);
  z-index: 200;
  padding: 80px 28px 28px;
  transition: right .3s ease;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.drawer.open { right: 0; }
.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer ul { list-style: none; padding: 0; margin: 0 0 28px; }
.drawer li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.drawer a {
  display: block;
  padding: 16px 4px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
}
.drawer a:hover { color: var(--copper-soft); }
.drawer-cta {
  display: block;
  text-align: center;
  margin-top: 18px;
}
.drawer-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.drawer-meta strong { color: var(--copper-soft); }

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(8,20,40,0.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.scrim.open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(8,20,40,0.94) 0%, rgba(14,34,64,0.88) 55%, rgba(26,51,88,0.82) 100%),
    radial-gradient(circle at 18% 25%, rgba(160,103,62,0.30) 0%, transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(193,143,102,0.22) 0%, transparent 50%),
    var(--navy);
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.020) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--cream));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero h1 .accent {
  color: var(--copper-soft);
  font-style: italic;
  font-weight: 500;
}
.hero-lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(242,235,221,0.85);
  max-width: 720px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  justify-content: center;
  font-size: 0.92rem;
  color: rgba(242,235,221,0.78);
}
.hero-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { width: 18px; height: 18px; color: var(--copper-soft); }

/* Decorative scales icon, top right */
.hero-glyph {
  position: absolute;
  top: 30px;
  right: -40px;
  width: 360px;
  height: 360px;
  opacity: 0.07;
  z-index: 1;
}
.hero-glyph svg { width: 100%; height: 100%; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust {
  background: var(--cream);
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item { text-align: center; }
.trust-item .label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.trust-item .desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ==========================================================================
   Section base
   ========================================================================== */
section { padding: 92px 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-cream-warm { background: var(--cream-warm); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(242,235,221,0.85); }

@media (max-width: 760px) {
  section { padding: 64px 0; }
}

/* ==========================================================================
   Practice areas grid (role types)
   ========================================================================== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.role-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--copper-soft);
}
.role-card:hover::before { transform: scaleX(1); }
.role-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.role-icon svg { width: 28px; height: 28px; }
.role-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.role-card p { font-size: 0.92rem; margin-bottom: 14px; }
.role-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.role-chips li {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--navy-soft);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

@media (max-width: 1080px) { .roles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .roles-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Practice deep-dive (categories with paragraphs)
   ========================================================================== */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.practice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.practice-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--copper);
}
.practice-num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--copper);
  text-transform: uppercase;
}
.practice-card h3 {
  font-size: 1.55rem;
  margin: 0;
}
.practice-card .role-chips { margin-top: 12px; }
.practice-card .role-chips li { background: var(--cream-warm); }

@media (max-width: 880px) { .practice-grid { grid-template-columns: 1fr; gap: 22px; } }

/* ==========================================================================
   Why partner (reasons)
   ========================================================================== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reason {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  transition: all .3s ease;
}
.reason:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--copper-soft);
}
.reason-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--copper-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.reason-icon svg { width: 28px; height: 28px; }
.reason h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.reason p { margin-bottom: 0; font-size: 0.95rem; }

@media (max-width: 960px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reasons-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Process (how we work)
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  border-top: 1px dashed var(--copper-soft);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--copper);
  color: var(--copper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
}
.process-step h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.93rem; margin-bottom: 0; }

@media (max-width: 880px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process::before { display: none; }
}
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* ==========================================================================
   Locations
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.location {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .25s ease;
}
.location:hover {
  border-color: var(--copper);
  background: var(--cream);
}
.location-pin {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--copper-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-pin svg { width: 18px; height: 18px; }
.location-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.location-region {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

@media (max-width: 960px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .locations-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--rule);
}
.faq:first-child { border-top: 1px solid var(--rule); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.7rem;
  color: var(--copper);
  font-family: var(--font-sans);
  font-weight: 300;
  transition: transform .25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq[open] summary::after { content: "−"; }
.faq[open] summary { color: var(--copper-deep); }
.faq-body {
  padding: 0 4px 26px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.faq-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(8,20,40,0.96) 0%, rgba(14,34,64,0.92) 100%),
    radial-gradient(circle at 20% 50%, rgba(160,103,62,0.32) 0%, transparent 50%),
    var(--navy);
  color: var(--white);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.020) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(242,235,221,0.85); max-width: 640px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-banner .hero-actions { margin-bottom: 0; }

/* ==========================================================================
   About page bits
   ========================================================================== */
.page-hero {
  background:
    linear-gradient(135deg, rgba(8,20,40,0.95) 0%, rgba(14,34,64,0.88) 100%),
    radial-gradient(circle at 80% 30%, rgba(160,103,62,0.28) 0%, transparent 55%),
    var(--navy);
  color: var(--white);
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead {
  font-size: 1.12rem;
  color: rgba(242,235,221,0.85);
  max-width: 700px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-soft);
  position: relative;
  overflow: hidden;
}
.split-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px);
}
.split-img svg { width: 50%; height: 50%; opacity: 0.55; }

@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 28px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.value h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.value h3 svg { width: 24px; height: 24px; color: var(--copper); }
.value p { margin-bottom: 0; }
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.principle {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--copper);
}
.principle-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--copper);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.principle h4 { color: var(--navy); margin-bottom: 4px; font-size: 1.05rem; }
.principle p { font-size: 0.92rem; margin-bottom: 0; }

@media (max-width: 760px) { .principles { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services page services list
   ========================================================================== */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--copper-soft);
}
.service-card .role-icon { margin-bottom: 16px; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p { font-size: 0.93rem; margin-bottom: 0; }

@media (max-width: 960px) { .services-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-list { grid-template-columns: 1fr; } }

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.engagement {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-top: 4px solid var(--copper);
}
.engagement h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.engagement .tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.engagement ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.engagement li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.engagement li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: rotate(-45deg) translateY(-1px);
}

@media (max-width: 880px) { .engagement-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 18px; }
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
}
.contact-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-row-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row-icon svg { width: 20px; height: 20px; }
.contact-row .label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.contact-row .val {
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h2 { margin-bottom: 18px; }
.contact-form .form-iframe-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.contact-form .form-iframe-wrap p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 360px;
  margin: 0;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy-deep);
  color: rgba(242,235,221,0.85);
  padding: 72px 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.footer .brand-name { color: var(--white); }
.footer .brand-sub { color: var(--copper-soft); }
.footer p { color: rgba(242,235,221,0.78); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(242,235,221,0.78);
}
.footer ul a:hover {
  color: var(--white);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-meta-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-meta-row svg {
  width: 16px;
  height: 16px;
  color: var(--copper-soft);
  flex-shrink: 0;
  margin-top: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(242,235,221,0.65);
}
.footer-bottom a { color: rgba(242,235,221,0.75); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.mt-4 { margin-top: 1.5rem; }
