/* Kurts Hukuk — Rolex yeşili kurumsal tema */
:root {
  --rolex: #006039;
  --rolex-deep: #004028;
  --rolex-dark: #002818;
  --rolex-ink: #0b1f16;
  --gold: #c5a35a;
  --gold-soft: #d4b978;
  --gold-deep: #9a7b3c;
  --ivory: #f0f4f1;
  --ivory-soft: #e5ece7;
  --white: #ffffff;
  --ink: #121816;
  --muted: #5c6b62;
  --line: rgba(197, 163, 90, 0.28);
  --glass: rgba(0, 96, 57, 0.08);
  --shadow: 0 24px 60px rgba(0, 40, 24, 0.18);
  --radius: 2px;
  --nav-h: 84px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-narrow {
  width: min(820px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Typography ——— */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--rolex-dark);
  letter-spacing: -0.02em;
}

.section-lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.25rem 0 0;
  border: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--rolex-ink);
  box-shadow: 0 10px 30px rgba(197, 163, 90, 0.28);
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--rolex);
  border-color: var(--rolex);
}

.btn-outline:hover {
  background: var(--rolex);
  color: var(--white);
}

.btn-dark {
  background: var(--rolex);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--rolex-deep);
}

/* ——— Top bar ——— */
.topbar {
  background: var(--rolex-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.65rem 0;
}

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

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 96, 57, 0.08);
  box-shadow: 0 8px 30px rgba(0, 40, 24, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  background: #0a0a0a;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rolex-dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-name .s-mark {
  display: inline-block;
  background: var(--gold);
  color: var(--rolex-ink);
  padding: 0 0.18em;
  margin-left: 0.02em;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.6rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--rolex);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 96, 57, 0.2);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--rolex-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 36px);
  height: auto;
  max-height: none;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #061710;
  perspective: 1400px;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  background: #061710;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
  background: #061710;
}

.hero-photo-wrap picture,
.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-photo {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  animation: photoFloat 22s ease-in-out infinite alternate;
  filter: contrast(1.05) saturate(1.05);
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-layer-glow {
  background: linear-gradient(
    105deg,
    rgba(2, 16, 11, 0.78) 0%,
    rgba(0, 40, 24, 0.45) 38%,
    rgba(0, 50, 30, 0.2) 62%,
    rgba(2, 18, 12, 0.35) 100%
  );
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 12, 8, 0.75) 0%,
    rgba(2, 12, 8, 0.2) 36%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-place {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.hero-place::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  will-change: transform;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.45);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.hero-brand .s-mark {
  display: inline-block;
  background: var(--gold);
  color: var(--rolex-ink);
  padding: 0 0.12em 0.04em;
  line-height: 0.9;
  box-shadow: 0 8px 24px rgba(197, 163, 90, 0.35);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 400;
  max-width: 18ch;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.97);
}

.hero-text {
  margin-top: 1.1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  animation: floatY 2.8s ease-in-out infinite;
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ——— Sections ——— */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-dark {
  background: var(--rolex-ink);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(0, 96, 57, 0.04), transparent 40%),
    var(--ivory-soft);
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head.centered {
  text-align: center;
}

.section-head.centered .section-lead {
  margin-inline: auto;
}

.section-head.centered .gold-rule {
  margin-inline: auto;
}

/* ——— Practice strips ——— */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 96, 57, 0.1);
  border: 1px solid rgba(0, 96, 57, 0.1);
}

.practice-item {
  position: relative;
  padding: 2rem 1.65rem 1.85rem;
  background: var(--white);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.practice-item:hover {
  background: #f7faf8;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0, 40, 24, 0.08);
}

.practice-item.featured {
  background: var(--rolex);
  color: var(--white);
}

.practice-item.featured:hover {
  background: var(--rolex-deep);
  box-shadow: 0 18px 40px rgba(0, 40, 24, 0.22);
}

.practice-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.practice-item h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: inherit;
}

.practice-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

.practice-item.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.practice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rolex);
}

.practice-item.featured .practice-link {
  color: var(--gold);
}

/* ——— About split ——— */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-panel {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(160deg, rgba(0, 28, 18, 0.2), rgba(0, 60, 36, 0.62)),
    url("../img/hukuk-masa.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(197, 163, 90, 0.45);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(transparent, rgba(0, 24, 14, 0.92));
  color: var(--white);
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
}

.about-badge span {
  color: var(--gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.about-copy h2 {
  margin-bottom: 0.2rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy p {
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(0, 96, 57, 0.12);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--rolex);
  line-height: 1;
  font-weight: 500;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— Process ——— */
.process-list {
  display: grid;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
}

.process-item h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.process-item p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 46rem;
}

/* ——— CTA band ——— */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, var(--rolex-dark), var(--rolex) 55%, var(--rolex-deep));
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(197, 163, 90, 0.22), transparent 35%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  max-width: 14ch;
  line-height: 1.1;
}

.cta-inner p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 32rem;
}

/* ——— Page hero ——— */
.page-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    linear-gradient(115deg, rgba(0, 20, 12, 0.9), rgba(0, 70, 42, 0.72)),
    url("../img/hukuk-koridor.jpg") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

/* ——— Timeline / CV ——— */
.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(0, 96, 57, 0.1);
}

.timeline-item time {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  padding-top: 0.35rem;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--rolex-dark);
}

.timeline-item h4 {
  margin-top: 0.2rem;
  font-size: 0.92rem;
  color: var(--rolex);
  font-weight: 600;
}

.timeline-item p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.chip {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(0, 96, 57, 0.18);
  background: rgba(0, 96, 57, 0.04);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--rolex-deep);
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 96, 57, 0.14);
}

.profile-meta > div {
  padding: 1.1rem 1rem 1.1rem 0;
  border-bottom: 1px solid rgba(0, 96, 57, 0.1);
}

.profile-meta strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.profile-meta span {
  display: block;
  color: var(--rolex-dark);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .profile-meta {
    grid-template-columns: 1fr;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-block {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(0, 96, 57, 0.12);
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--rolex-dark);
  margin-bottom: 0.7rem;
}

.info-block li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.info-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-card {
  background: var(--rolex-ink);
  color: var(--white);
  padding: clamp(1.8rem, 4vw, 2.5rem);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.8rem;
}

.contact-list {
  display: grid;
  gap: 1.35rem;
}

.contact-list a,
.contact-list span {
  display: block;
}

.contact-list strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-list a:hover {
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(0, 96, 57, 0.18);
  background: var(--white);
  padding: 0.95rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--rolex);
  box-shadow: 0 0 0 3px rgba(0, 96, 57, 0.12);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.map-frame {
  margin-top: 2.5rem;
  min-height: 360px;
  border: 0;
  width: 100%;
  filter: grayscale(0.2) contrast(1.05);
  box-shadow: var(--shadow);
}

/* ——— Footer ——— */
.site-footer {
  background: #07150f;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.7rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ——— Detail pages ——— */
.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--rolex-dark);
  margin-bottom: 1rem;
}

.prose p + p {
  margin-top: 1rem;
}

.prose p {
  color: var(--muted);
}

.prose ul {
  margin-top: 1.2rem;
}

.prose li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.side-panel {
  background: var(--rolex-ink);
  color: var(--white);
  padding: 1.8rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.side-panel h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.side-panel p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1.4rem;
}

/* ——— Animations ——— */
@keyframes photoFloat {
  from { transform: scale(1.04) translate3d(-0.6%, 0.3%, 0); }
  to { transform: scale(1.1) translate3d(0.8%, -0.5%, 0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-split,
  .contact-layout,
  .footer-grid,
  .detail-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: calc(var(--nav-h) + 34px) 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem 1.25rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(0, 96, 57, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(0, 96, 57, 0.08);
  }

  .about-panel {
    min-height: 380px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .process-item {
    grid-template-columns: 60px 1fr;
  }

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

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
  }

  .brand-sub {
    display: none;
  }

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

  .practice-item {
    padding: 1.5rem 1.2rem;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-stage,
  .hero-photo-wrap {
    inset: 0;
  }

  .hero-photo {
    object-fit: cover;
    object-position: center center;
  }

  .hero-layer-glow {
    background: linear-gradient(
      180deg,
      rgba(2, 16, 11, 0.5) 0%,
      rgba(0, 30, 18, 0.25) 45%,
      rgba(2, 14, 10, 0.65) 100%
    );
  }
}
