/* ============================================================
   ARIK & CİLELİ ARIK — Hukuk ve Danışmanlık
   Main Stylesheet — Classical Aegean Aesthetic
   ============================================================ */

/* 1. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--anthracite);
  background-color: var(--marble);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: pageReveal 0.6s ease-out both;
}

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

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

ul {
  list-style: none;
}

/* 2. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --marble: #f7f3ec;
  --cream: #ede7da;
  --cream-dark: #e0d8cb;
  --anthracite: #2c2a28;
  --charcoal: #4b4845;
  --warm-grey: #8b857f;
  --gold: #c5a24e;
  --gold-dark: #9e7e38;
  --gold-light: #dcc07a;
  --border: #d4ccbf;
  --border-light: #e8e2d9;
  --white: #ffffff;
  --hero-overlay: rgba(18, 14, 10, 0.62);
  --sepia-dark: rgba(60, 40, 20, 0.55);

  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  /* Spacing */
  --section-v: 110px;
  --container: 1240px;
  --gap: 2rem;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--anthracite);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.08em;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--charcoal);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 1.4rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-top: 1rem;
  transition: width var(--transition);
}

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

section {
  padding: var(--section-v) 0;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.22s;
}
.reveal-delay-3 {
  transition-delay: 0.34s;
}
.reveal-delay-4 {
  transition-delay: 0.46s;
}
.reveal-delay-5 {
  transition-delay: 0.58s;
}
.reveal-delay-6 {
  transition-delay: 0.7s;
}

/* 5. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  background: transparent;
  transition:
    background 0.18s ease,
    padding 0.18s ease,
    box-shadow 0.18s ease;
}

.navbar.scrolled {
  background: rgba(247, 243, 236, 0.99);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.navbar.scrolled .brand-name,
.navbar.scrolled .brand-subtitle,
.navbar.scrolled .nav-links a,
.navbar.scrolled .lang-btn {
  color: var(--anthracite);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.3;
  transition: color var(--transition);
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after {
  width: 100%;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  padding: 2px 0;
  transition: color var(--transition);
  position: relative;
}

.lang-btn.active {
  color: var(--gold-light);
}

.lang-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-light);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
}

.navbar.scrolled .lang-btn {
  color: var(--warm-grey);
}
.navbar.scrolled .lang-btn.active {
  color: var(--gold-dark);
}
.navbar.scrolled .lang-btn.active::after {
  background: var(--gold-dark);
}
.navbar.scrolled .lang-divider {
  color: var(--border);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--anthracite);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* 6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/arik-hukuk-burosu.jpeg");

  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

@media (max-width: 768px) {
  .hero-bg {
    background-image: url("../images/Arik-Hukuk-Burosu-Mobile.png");
    background-position: center center;
  }
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 9, 6, 0.3) 0%,
    rgba(12, 9, 6, 0.45) 60%,
    rgba(12, 9, 6, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
}

.hero-ornament {
  font-family: var(--font-serif);
  color: var(--gold);
  letter-spacing: 0.5em;
  font-size: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.3s both;
}

.hero-quote-wrap {
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.6s both;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 400;
}
.hero-quote-tr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.55rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 400;
}

.hero-quote-attr {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-top: 0.8rem;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0;
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.9s both;
}

.hero-rule::before,
.hero-rule::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-rule::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-rule-diamond {
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.hero-firm-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.1s both;
}

.hero-firm-subtitle {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.25s both;
}

.hero-firm-location {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeSlideUp 1s ease 1.4s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s ease 2s both;
}

.hero-scroll-text {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* 7. QUOTE BANNER
   ============================================================ */
.quote-banner {
  background: var(--anthracite);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/Protegelesarts-full.jpeg") center / cover;
  opacity: 0.06;
  filter: sepia(100%);
}

.quote-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.quote-banner-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0.1rem;
}
.quote-banner-text-tr {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.15rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.quote-banner-source {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* 8. ABOUT SECTION
   ============================================================ */
.about {
  background: var(--marble);
  padding: var(--section-v) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
}

.about-image-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}

.about-image-frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  filter: sepia(60%) contrast(1.05) brightness(0.95);
  display: block;
  position: relative;
  z-index: 1;
}

.about-image-caption {
  position: absolute;
  bottom: -30px;
  right: -14px;
  background: var(--anthracite);
  padding: 0.8rem 1.4rem;
  z-index: 2;
}

.about-image-caption span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-content {
  padding-left: 1rem;
}

.about-content .section-title {
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

.about-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 2rem 0;
}

/* 9. PRACTICE AREAS
   ============================================================ */
.practice {
  background: var(--cream);
  padding: var(--section-v) 0;
  position: relative;
}

.practice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}

.practice::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}

.practice-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

.practice-header .section-title::after {
  margin: 1rem auto 0;
}

.practice-header p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  margin-top: 1rem;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.practice-card {
  background: var(--cream);
  padding: 3rem 2.4rem;
  transition:
    background var(--transition),
    transform var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.practice-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-slow);
}

.practice-card:hover {
  background: var(--marble);
}

.practice-card:hover::before {
  width: 100%;
}

.practice-card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: color var(--transition);
  user-select: none;
}

.practice-card:hover .practice-card-num {
  color: var(--gold-light);
}

.practice-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  color: var(--warm-grey);
  transition: color var(--transition);
}

.practice-card:hover .practice-card-icon {
  color: var(--gold-dark);
}

.practice-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

.practice-card-text {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--warm-grey);
}

/* 10. CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--marble);
  padding: var(--section-v) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-content .section-title {
  margin-bottom: 2rem;
}

.contact-content p {
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--warm-grey);
  max-width: 440px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact-item-content {
}

.contact-item-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--anthracite);
  line-height: 1.6;
}

.contact-item-value a {
  color: var(--anthracite);
  transition: color var(--transition);
}
.contact-item-value a:hover {
  color: var(--gold-dark);
}

.contact-map {
  background: var(--cream);
  border: 1px solid var(--border);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(30%) contrast(0.95);
}

/* 11. FOOTER
   ============================================================ */
.footer {
  background: var(--anthracite);
  padding: 3rem 0;
  border-top: 1px solid rgba(197, 162, 78, 0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand strong {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.footer-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-note {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
  max-width: 360px;
  line-height: 1.7;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 0.4rem;
}

/* 12. ANIMATIONS & TRANSITIONS
   ============================================================ */
@keyframes pageReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* 13. NAV DROPDOWN
   ============================================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 0 0 2px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--gold-light);
  outline: none;
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown.open .nav-dropdown-trigger::after {
  width: 100%;
}

.navbar.scrolled .nav-dropdown-trigger {
  color: var(--anthracite);
}

.navbar.scrolled .nav-dropdown-trigger:hover,
.navbar.scrolled .nav-dropdown.open .nav-dropdown-trigger {
  color: var(--gold-dark);
}

.nav-dropdown-arrow {
  width: 9px;
  height: 9px;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* Panel */
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 560px;
  background: var(--marble);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 64px rgba(12, 9, 6, 0.18),
    0 4px 16px rgba(12, 9, 6, 0.08);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  z-index: 500;
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: var(--marble);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.drop-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
  position: relative;
}

.drop-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-slow);
}

.drop-item:hover::after {
  width: 100%;
}

.drop-item:nth-child(even) {
  border-right: none;
}
.drop-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.drop-item:hover {
  background: var(--cream);
}

.drop-item-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  line-height: 1.2;
  flex-shrink: 0;
  padding-top: 1px;
}

.drop-item-text {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--anthracite);
  line-height: 1.5;
  transition: color var(--transition);
}

.drop-item:hover .drop-item-text {
  color: var(--gold-dark);
}

/* ── PRACTICE PAGES
   ============================================================ */
.practice-hero {
  position: relative;
  height: 56vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.practice-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: sepia(70%) contrast(1.08) brightness(0.85);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.practice-hero-bg.loaded {
  transform: scale(1);
}

.practice-hero-bg.no-image {
  background: linear-gradient(145deg, #3d2b1f 0%, #1a1008 55%, #2a1f14 100%);
  filter: none;
}

.practice-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 7, 4, 0.9) 0%,
    rgba(10, 7, 4, 0.45) 55%,
    rgba(10, 7, 4, 0.2) 100%
  );
  z-index: 1;
}

.practice-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

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

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.55rem;
}

.breadcrumb .current {
  color: var(--gold);
}

.practice-hero-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: 0.6rem;
  display: block;
}

.practice-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease 0.2s both;
}

/* Practice page main content */
.pa-section {
  background: var(--marble);
  padding: var(--section-v) 0;
}

.pa-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 6rem;
  align-items: start;
}

.pa-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

.pa-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--anthracite);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.pa-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-top: 1.2rem;
}

.pa-rule {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 2rem 0;
}

.pa-lead {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pa-text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.pa-services {
  margin-top: 2.8rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border-light);
}

.pa-services-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.pa-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pa-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--charcoal);
}

.pa-services-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Sidebar */
.pa-sidebar {
  position: sticky;
  top: 120px;
}

.pa-sidebar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.pa-sidebar-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
}

.pa-other-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.pa-other-list li {
  border-bottom: 1px solid var(--border-light);
}

.pa-other-list li:last-child {
  border-bottom: none;
}

.pa-other-list a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
}

.pa-other-list a:hover {
  color: var(--gold-dark);
}

.pa-other-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 20px;
}

.pa-contact-card {
  background: var(--anthracite);
  padding: 2rem;
}

.pa-contact-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.pa-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(197, 162, 78, 0.4);
  transition:
    color var(--transition),
    border-color var(--transition);
}

.pa-contact-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Önleyici hukuk badge */
.pa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(197, 162, 78, 0.5);
  padding: 0.42rem 1rem;
  margin-bottom: 2rem;
}
.pa-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Fides callout */
.pa-fides {
  margin: 2.6rem 0;
  padding: 1.8rem 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  position: relative;
}
.pa-fides::before {
  content: "FIDES";
  position: absolute;
  top: -0.62rem;
  left: 2rem;
  background: var(--cream);
  padding: 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.pa-fides p {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.88;
}

/* Sayfa alt başlığı (ör. Res Publica) */
.pa-subtitle {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  font-style: italic;
  display: block;
  margin-bottom: 1.4rem;
}

/* Latince alıntı bloğu */
.pa-quote {
  margin: 2rem 0 2.4rem;
  padding: 1.6rem 2rem;
  border-left: 3px solid var(--gold);
}
.pa-quote-latin {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--anthracite);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.pa-quote-tr {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--charcoal);
  margin-bottom: 0.9rem;
}
.pa-quote-attr {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* Ayrıntılı hizmet alt bölümleri */
.pa-subsections {
  margin-top: 2.8rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border-light);
}
.pa-subsections-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}
.pa-subsection {
  border-left: 2px solid rgba(197, 162, 78, 0.4);
  padding-left: 1.5rem;
  margin-bottom: 2.2rem;
  transition: border-color var(--transition);
}
.pa-subsection:hover {
  border-left-color: var(--gold);
}
.pa-subsection:last-child {
  margin-bottom: 0;
}
.pa-subsection-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 0.6rem;
}
.pa-subsection-body {
  font-size: 0.9rem;
  line-height: 1.92;
  color: var(--charcoal);
}

/* 14. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-v: 80px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-image-wrap {
    order: -1;
  }
  .about-image-frame img {
    height: 420px;
  }
  .about-content {
    padding-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .pa-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .pa-sidebar {
    position: static;
  }

  .nav-dropdown-panel {
    width: 480px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 60px;
  }

  .navbar {
    padding: 1.2rem 0;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100vh;
    background: var(--anthracite);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
    overflow-y: auto;
    /* Container: sadece opacity ile açılır */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.38s ease,
      visibility 0.38s;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Menü öğeleri yukarıdan kayarak gelir */
  .nav-links > li {
    opacity: 0;
    transform: translateY(-18px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  .nav-links.open > li:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
  }
  .nav-links.open > li:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
  }
  .nav-links.open > li:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
  }
  .nav-links.open > li:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.29s;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--white);
  }

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

  /* Dropdown — mobile accordion */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-trigger {
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.2em;
    justify-content: center;
    width: 100%;
  }

  .nav-dropdown-trigger:hover,
  .nav-dropdown.open .nav-dropdown-trigger {
    color: var(--gold-light);
  }

  .nav-dropdown-panel {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    margin-top: 1rem;
  }

  .nav-dropdown.open .nav-dropdown-panel {
    display: block;
  }

  .nav-dropdown-panel::before {
    display: none;
  }

  .nav-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .drop-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 0.75rem 1rem;
    justify-content: center;
  }

  .drop-item:last-child {
    border-bottom: none !important;
  }
  .drop-item::after {
    display: none;
  }
  .drop-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .drop-item-num {
    color: var(--gold-light);
    font-size: 0.85rem;
  }
  .drop-item-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
  }

  /* Menü kapanınca öğeler tekrar gizlenir */
  .nav-links:not(.open) > li {
    opacity: 0;
    transform: translateY(-18px);
    transition: none;
  }

  /* Scrolled navbar, mobil menü açıkken renkleri beyaz tut */
  .navbar.scrolled .nav-links a {
    color: var(--white);
  }
  .navbar.scrolled .nav-links a:hover {
    color: var(--gold-light);
  }
  .navbar.scrolled .nav-dropdown-trigger {
    color: var(--white);
  }
  .navbar.scrolled .nav-dropdown.open .nav-dropdown-trigger {
    color: var(--gold-light);
  }
  /* Hamburger — menü açıkken her zaman beyaz */
  .nav-toggle.open span {
    background: var(--white) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-right {
    gap: 1.2rem;
  }

  .hero-firm-name {
    letter-spacing: 0.06em;
  }

  .about-image-frame img {
    height: 300px;
  }
  .about-image-frame::before {
    inset: -8px;
  }
  .about-image-caption {
    bottom: -22px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }
  .practice-card {
    padding: 2.2rem 1.8rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.4rem;
  }
  .footer-divider {
    display: none;
  }
  .footer-note {
    text-align: center;
    max-width: 100%;
  }

  .practice-hero {
    height: 50vh;
    min-height: 400px;
  }
  .practice-hero-content {
    padding-bottom: 2.5rem;
  }
}

/* ── TEAM PAGE
   ============================================================ */
.team-section {
  background: var(--marble);
  padding: var(--section-v) 0;
}

.team-intro-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.team-member {
  background: var(--white);
  border: 1px solid var(--border-light);
  margin-bottom: 4rem;
  overflow: hidden;
}

.team-member:last-child {
  margin-bottom: 0;
}

.team-member-header {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-member-meta {
  padding: 3.5rem 4rem;
  border-left: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-member-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.1rem;
}

.team-member-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--anthracite);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.team-member-role {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
  display: block;
  margin-bottom: 2rem;
}

.team-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.8rem;
}

.team-member-bio {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--charcoal);
}

.team-member-body {
  padding: 3.5rem 4rem;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.team-body-section.full {
  grid-column: 1 / -1;
}

.team-body-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border-light);
}

.team-body-section p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.team-body-section p:last-child {
  margin-bottom: 0;
}

.team-areas-list {
  list-style: none;
  padding: 0;
}

.team-areas-list li {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--charcoal);
  padding: 0.75rem 0 0.75rem 1.1rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.team-areas-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.team-areas-list li:first-child {
  border-top: 1px solid var(--border-light);
}

.team-areas-list li strong {
  font-weight: 600;
  color: var(--anthracite);
}

.team-bar {
  grid-column: 1 / -1;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--warm-grey);
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: -1rem;
}

.team-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 4rem;
}

@media (max-width: 900px) {
  .team-member-header {
    grid-template-columns: 1fr;
  }
  .team-member-photo img {
    min-height: 320px;
    height: 340px;
  }
  .team-member-meta {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding: 2.5rem 2.2rem;
  }
  .team-member-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2.2rem;
  }
  .team-body-section.full {
    grid-column: 1;
  }
  .team-bar {
    margin-top: 0;
  }
}

/* ── END TEAM PAGE ── */

@media (max-width: 480px) {
  .container {
    padding: 0 1.4rem;
  }
  .nav-container {
    padding: 0 1.4rem;
  }
  .hero-content {
    padding: 0 1.2rem;
  }
}
