/* ============================================================
   NS HUKUK — Editorial Luxury Law Firm Stylesheet
   Av. Nisa Alkan Kayı — İstanbul Barosu
   ============================================================ */

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

:root {
  /* Core palette — deep midnight, parchment, brass */
  --ink: #0c1a2b;
  --ink-soft: #16263c;
  --ink-line: #1f3552;
  --parchment: #f4ecdc;
  --parchment-deep: #e8dec9;
  --bone: #faf6ed;
  --brass: #b8935a;
  --brass-deep: #9a7948;
  --brass-light: #d4b985;
  --muted: #8d97a5;
  --text-on-dark: #ede4cf;
  --text-on-dark-soft: #b8c0cb;

  /* Type */
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ============================================================
   TOPBAR — slim contact strip
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--text-on-dark-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--ink-line);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar .dot {
  color: var(--brass);
  font-size: 8px;
}
.topbar-right {
  font-style: italic;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--brass-light);
  letter-spacing: 0.04em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184, 147, 90, 0.18);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 147, 90, 0.3);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--bone);
}
.brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--brass-light);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brass-light);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 22px;
  background: transparent;
  color: var(--brass-light);
  border: 1px solid var(--brass);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  font-family: var(--sans);
}
.nav-cta:hover {
  background: var(--brass);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ============================================================
   HERO — editorial split layout
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 11vw, 140px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 600px at 80% 10%, rgba(184, 147, 90, 0.07), transparent 60%),
    radial-gradient(600px 500px at 10% 90%, rgba(184, 147, 90, 0.05), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184, 147, 90, 0.15), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--brass-light);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--brass);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0 0 32px;
  color: var(--bone);
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
  font-weight: 300;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-on-dark-soft);
  max-width: 520px;
  margin: 0 0 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}
.btn-primary:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(237, 228, 207, 0.3);
}
.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass-light);
}
.btn-dark {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}
.btn .arrow {
  font-family: var(--serif);
  font-size: 18px;
  transition: transform 0.35s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.hero-portrait {
  position: relative;
}
.hero-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-soft);
  overflow: hidden;
}
.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.04);
}
.hero-portrait-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 147, 90, 0.35);
  pointer-events: none;
  z-index: 2;
}
.hero-caption {
  position: absolute;
  bottom: -24px;
  left: -24px;
  right: 24px;
  background: var(--ink);
  border-left: 2px solid var(--brass);
  padding: 18px 22px;
  z-index: 3;
}
.hero-caption .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bone);
}
.hero-caption .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 6px;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  background: var(--parchment);
  border-top: 1px solid var(--parchment-deep);
  border-bottom: 1px solid var(--parchment-deep);
}
.stat-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 50px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: center;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(12, 26, 43, 0.15);
}
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.stat-num em {
  font-style: italic;
  color: var(--brass);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section.block {
  padding: clamp(70px, 9vw, 120px) 0;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--brass-deep);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.section-head .kicker::before,
.section-head .kicker::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--brass-deep);
}
.section-head p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a5566;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT TEASER — split
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--parchment);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-img-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--ink);
  color: var(--bone);
  padding: 14px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.05em;
  border-left: 2px solid var(--brass);
}
.about-content .kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--brass-deep);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-content .kicker::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
}
.about-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 28px;
  color: var(--ink);
}
.about-content h2 em {
  font-style: italic;
  color: var(--brass-deep);
}
.about-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #3d4858;
  margin: 0 0 18px;
}
.about-content .signature {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.about-content .signature small {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-top: 4px;
}

/* ============================================================
   SERVICES GRID — editorial cards
   ============================================================ */
.services-section {
  background: var(--parchment);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--parchment-deep);
  border-left: 1px solid var(--parchment-deep);
}
.service-card {
  background: var(--bone);
  padding: 44px 36px;
  border-right: 1px solid var(--parchment-deep);
  border-bottom: 1px solid var(--parchment-deep);
  position: relative;
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  cursor: pointer;
}
.service-card:hover {
  background: var(--ink);
  color: var(--text-on-dark);
}
.service-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brass-deep);
  letter-spacing: 0.1em;
  transition: color 0.4s var(--ease);
}
.service-card:hover .num {
  color: var(--brass-light);
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.service-card:hover h3 {
  color: var(--bone);
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #5a6573;
  margin: 0;
  flex: 1;
  transition: color 0.4s var(--ease);
}
.service-card:hover p {
  color: var(--text-on-dark-soft);
}
.service-card .more {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-weight: 600;
  transition: color 0.4s var(--ease);
}
.service-card:hover .more {
  color: var(--brass-light);
}
.service-card .more .arrow {
  font-family: var(--serif);
  font-size: 16px;
  transition: transform 0.35s var(--ease);
}
.service-card:hover .more .arrow {
  transform: translateX(6px);
}

/* ============================================================
   PHILOSOPHY / VALUES
   ============================================================ */
.philosophy {
  background: var(--ink);
  color: var(--text-on-dark);
}
.philosophy .section-head h2 {
  color: var(--bone);
}
.philosophy .section-head h2 em {
  color: var(--brass-light);
}
.philosophy .section-head .kicker {
  color: var(--brass-light);
}
.philosophy .section-head p {
  color: var(--text-on-dark-soft);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 30px;
}
.value {
  position: relative;
  padding-top: 32px;
}
.value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--brass);
}
.value .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brass-light);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.value h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--bone);
}
.value p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-on-dark-soft);
  margin: 0;
}

/* ============================================================
   FEATURED PRACTICE — labor law spotlight
   ============================================================ */
.featured-practice {
  background: var(--parchment);
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.featured-text .kicker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-deep);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.featured-text .kicker::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brass);
}
.featured-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.1;
  margin: 0 0 28px;
  color: var(--ink);
}
.featured-text h2 em {
  font-style: italic;
  color: var(--brass-deep);
}
.featured-text p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #3d4858;
  margin: 0 0 22px;
}
.featured-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.featured-list li {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.featured-list li::before {
  content: '§';
  color: var(--brass-deep);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}
.featured-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.featured-art::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 147, 90, 0.35);
}
.featured-art-content {
  text-align: center;
  color: var(--bone);
  padding: 40px;
  position: relative;
  z-index: 2;
}
.featured-art-content .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  color: var(--brass-light);
  line-height: 1;
  margin-bottom: 20px;
}
.featured-art-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.featured-art-content p {
  font-style: italic;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-on-dark-soft);
  margin: 0;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 50% 100%, rgba(184, 147, 90, 0.08), transparent 70%);
  pointer-events: none;
}
.contact-cta-inner {
  text-align: center;
  position: relative;
}
.contact-cta .kicker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-light);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.contact-cta .kicker::before,
.contact-cta .kicker::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--brass);
}
.contact-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--bone);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-cta h2 em {
  font-style: italic;
  color: var(--brass-light);
}
.contact-cta p {
  font-size: 17px;
  color: var(--text-on-dark-soft);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #08121f;
  color: var(--text-on-dark-soft);
  padding: 70px 0 30px;
  border-top: 1px solid var(--ink-line);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--brass-light);
  margin: 0 0 22px;
  letter-spacing: 0.02em;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-row img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 147, 90, 0.3);
  border-radius: 3px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--bone);
  letter-spacing: 0.12em;
}
.footer-brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--brass-light);
  text-transform: uppercase;
}
.footer-col p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-on-dark-soft);
  margin: 0 0 12px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-col a {
  color: var(--text-on-dark-soft);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover {
  color: var(--brass-light);
}
.footer-bottom {
  max-width: var(--container);
  margin: 50px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.footer-bottom em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-light);
}

/* ============================================================
   PAGE HEADER — for interior pages
   ============================================================ */
.page-header {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: clamp(60px, 8vw, 100px) 0 clamp(70px, 9vw, 110px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 70% 30%, rgba(184, 147, 90, 0.06), transparent 60%);
}
.page-header-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-header .kicker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-light);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.page-header .kicker::before,
.page-header .kicker::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--brass);
}
.page-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--bone);
}
.page-header h1 em {
  font-style: italic;
  color: var(--brass-light);
}
.page-header p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-on-dark-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* Breadcrumbs */
.crumbs {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-bottom: 28px;
}
.crumbs a {
  color: var(--brass-light);
}
.crumbs span {
  margin: 0 12px;
  color: rgba(237, 228, 207, 0.4);
}

/* ============================================================
   ARTICLE / LEGAL CONTENT PAGES
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.article {
  font-family: var(--sans);
  color: var(--ink);
}
.article > h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  color: var(--ink);
  margin: 50px 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--parchment-deep);
  letter-spacing: -0.005em;
}
.article > h2:first-child {
  margin-top: 0;
}
.article > h2 em {
  font-style: italic;
  color: var(--brass-deep);
}
.article h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  line-height: 1.3;
  color: var(--ink-soft);
  margin: 36px 0 16px;
}
.article p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #353f4d;
  margin: 0 0 20px;
}
.article p.lead {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 32px;
  padding-left: 22px;
  border-left: 2px solid var(--brass);
}
.article ul, .article ol {
  margin: 0 0 24px;
  padding-left: 4px;
  list-style: none;
}
.article ul li, .article ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.75;
  color: #353f4d;
}
.article ul li::before {
  content: '§';
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--serif);
  color: var(--brass-deep);
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
}
.article ol {
  counter-reset: artlist;
}
.article ol li {
  counter-increment: artlist;
}
.article ol li::before {
  content: counter(artlist, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-deep);
  font-size: 15px;
  font-weight: 500;
}
.article strong {
  color: var(--ink);
  font-weight: 600;
}
.article blockquote {
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--parchment);
  border-left: 3px solid var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.article blockquote .case {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 10px;
  font-weight: 600;
}
.article .note {
  background: var(--parchment);
  border-top: 2px solid var(--brass);
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.7;
}
.article .note strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--brass-deep);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* Code table styling */
.code-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
  background: var(--bone);
  border: 1px solid var(--parchment-deep);
}
.code-table thead {
  background: var(--ink);
  color: var(--bone);
}
.code-table th {
  text-align: left;
  padding: 14px 16px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-right: 1px solid var(--ink-line);
}
.code-table th:last-child { border-right: none; }
.code-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--parchment-deep);
  border-right: 1px solid var(--parchment-deep);
  vertical-align: top;
  line-height: 1.55;
}
.code-table td:last-child { border-right: none; }
.code-table tr:nth-child(even) td { background: var(--parchment); }
.code-table .code-num {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--brass-deep);
  font-size: 16px;
  width: 60px;
}
.code-table .yes {
  color: #2d5e3a;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.code-table .no {
  color: #8a2c2c;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  font-family: var(--sans);
}
.article-sidebar h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--parchment-deep);
  letter-spacing: 0.02em;
}
.article-sidebar .kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brass-deep);
  margin-bottom: 8px;
  display: block;
}
.article-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-sidebar li {
  margin-bottom: 4px;
}
.article-sidebar a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-left: 2px solid transparent;
  transition: all 0.3s var(--ease);
  line-height: 1.4;
}
.article-sidebar a:hover,
.article-sidebar a.active {
  background: var(--parchment);
  border-left-color: var(--brass);
  color: var(--ink);
}
.sidebar-card {
  background: var(--ink);
  color: var(--bone);
  padding: 28px;
  margin-top: 32px;
}
.sidebar-card h5 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--bone);
  margin: 0 0 10px;
  line-height: 1.2;
}
.sidebar-card p {
  font-size: 14px;
  color: var(--text-on-dark-soft);
  line-height: 1.6;
  margin: 0 0 18px;
}
.sidebar-card .btn {
  padding: 13px 22px;
  font-size: 11px;
}

/* ============================================================
   SERVICES PAGE — full grid
   ============================================================ */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--container);
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  border-top: 1px solid var(--parchment-deep);
  border-left: 1px solid var(--parchment-deep);
  background: var(--bone);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.contact-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 18px;
}
.contact-info h3 em {
  font-style: italic;
  color: var(--brass-deep);
}
.contact-info > p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #3d4858;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--parchment-deep);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--brass-deep);
  line-height: 1;
  margin-top: 4px;
  min-width: 36px;
}
.contact-item-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-item-value {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.4;
}

.contact-form-wrap {
  background: var(--parchment);
  padding: 44px;
  border-top: 3px solid var(--brass);
}
.contact-form-wrap h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 8px;
  color: var(--ink);
}
.contact-form-wrap h3 em {
  font-style: italic;
  color: var(--brass-deep);
}
.contact-form-wrap > p {
  font-size: 14.5px;
  color: #5a6573;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--parchment-deep);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brass);
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--sans);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up {
  animation: fadeUp 1s var(--ease) both;
}
.fade-in {
  animation: fadeIn 1.2s var(--ease) both;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }
.d5 { animation-delay: 0.7s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .featured-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-inner { gap: 12px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--ink); flex-direction: column; padding: 12px 0; border-top: 1px solid var(--ink-line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-portrait { max-width: 340px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .stat-inner { grid-template-columns: 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .featured-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 22px; }
  .topbar-left { gap: 14px; }
  .topbar { font-size: 11px; }
  .topbar-right { display: none; }
}
