/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #e8e6e0;
  background: #050505;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: .3px;
  color: #f5e8c2;
}
p { margin: 0 0 1em; }

:root {
  --navy: #a8841f;
  --navy-2: #c9a64b;
  --gold: #f0c14b;
  --gold-2: #d4a942;
  --ink: #f5e8c2;
  --bg: #0d0d0d;          /* koyu kart/section arkaplan */
  --bg-2: #141414;        /* alternatif kart arkaplanı */
  --muted: #9a9488;
  --line: #262420;
  --shadow-sm: 0 4px 14px rgba(0,0,0,.5);
  --shadow-md: 0 12px 32px rgba(0,0,0,.55);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 2px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: #fff; color: var(--navy); }

/* ===== Topbar ===== */
.topbar {
  background: var(--navy);
  color: #fff5d6;
  font-size: .85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.tb-item { display: inline-flex; align-items: center; gap: 6px; }
.tb-ico { color: #fff; }
.tb-sep { opacity: .35; margin: 0 10px; }
@media (max-width: 720px) { .tb-hide-mobile { display: none; } }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  border: 1px solid var(--gold);
}
.brand-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #f5e8c2;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-size: .72rem;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: .92rem;
  font-weight: 500;
  color: #d8d3c2;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all .25s ease;
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { left: 0; width: 100%; }

.header-cta { padding: 10px 18px; font-size: .82rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px; height: 32px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 4px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--gold);
  transition: all .3s;
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 18px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
    box-shadow: var(--shadow-sm);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  padding: 110px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(168,132,31,.94) 0%, rgba(168,132,31,.82) 60%, rgba(201,166,75,.88) 100%),
    url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  z-index: -1;
}
.hero-content { max-width: 760px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 10px 0 22px;
}
.hero h1 .accent { color: #fff; font-style: italic; }
.lead { font-size: 1.1rem; color: #fff5d6; max-width: 640px; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 30px;
  flex-wrap: wrap;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}
.hero-stats span { font-size: .85rem; color: #fff5d6; letter-spacing: 1px; margin-top: 6px; text-transform: uppercase; }

/* ===== Values ===== */
.values { padding: 70px 0; background: var(--bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--bg-2);
  padding: 36px 28px;
  border: 1px solid var(--line);
  text-align: center;
  transition: all .3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-ico { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.45rem; }
.value-card p { color: var(--muted); margin: 0; }

/* ===== About ===== */
.about { padding: 100px 0; background: #050505; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid #fff;
}
.about-photo .initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: #fff;
  letter-spacing: 4px;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: #fff;
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #fff; }
.about-badge span { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: #fff5d6; }

.about-text h2 { font-size: 2.4rem; margin-bottom: 18px; }
.about-list { margin: 18px 0 28px; }
.about-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #d8d3c2;
}
.about-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-media { max-width: 360px; margin: 0 auto; }
}

/* ===== Sections shared ===== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section-head p { color: var(--muted); }

/* ===== Areas ===== */
.areas { padding: 100px 0; background: var(--bg); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.area-card {
  background: #fff;
  padding: 34px 28px;
  border: 1px solid var(--line);
  position: relative;
  transition: all .3s ease;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .35s ease;
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.area-card:hover::before { width: 100%; }
.area-ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: all .3s;
}
.area-card:hover .area-ico { background: var(--navy); border-color: var(--navy); }
.area-card h3 { font-size: 1.4rem; }
.area-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ===== Process ===== */
.process { padding: 100px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.process-step h4 { font-size: 1.25rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: .92rem; }

/* ===== Consult ===== */
.consult {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.consult-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.consult-text h2 { color: #fff; font-size: 2.4rem; }
.consult-text p { color: #fff5d6; }
.consult-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.45);
  padding: 36px 30px;
}
.consult-card h3 { color: #fff; font-size: 1.5rem; }
.consult-card p { color: #fff5d6; margin: 8px 0; font-size: .95rem; }
.consult-card strong { color: #fff; }
@media (max-width: 880px) { .consult-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ===== Hukuk Terazisi (Scales) ===== */
.scales {
  padding: 100px 0;
  background: #050505;
}
.scales-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  display: grid;
  align-items: end;
}
.scales-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) brightness(.85);
}
.scales-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.88) 100%);
}
.scales-figure figcaption {
  position: relative;
  padding: 60px 50px;
  max-width: 720px;
  z-index: 1;
}
.scales-figure figcaption h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 8px 0 14px;
}
.scales-figure figcaption p {
  color: #e8e0c2;
  font-size: 1.05rem;
  margin: 0;
}
@media (max-width: 720px) {
  .scales-figure { min-height: 380px; }
  .scales-figure figcaption { padding: 36px 26px; }
}

/* ===== Contact ===== */
.contact { padding: 100px 0; background: #050505; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.info-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: all .3s ease;
}
.info-card:hover { border-color: var(--gold); transform: translateX(4px); }
.info-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 1.2rem;
}
.info-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.info-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.info-card a { color: var(--gold); font-weight: 600; }
.info-card a:hover { color: #fff; }

.contact-form {
  background: var(--bg-2);
  padding: 36px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: #d8d3c2;
  margin-bottom: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #0a0a0a;
  font-family: inherit;
  font-size: .95rem;
  color: #f5e8c2;
  transition: all .25s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6a6358; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #0d0d0d;
  box-shadow: 0 0 0 3px rgba(240,193,75,.18);
}
.form-note { margin-top: 14px; font-size: .9rem; padding: 12px; background: rgba(45,120,70,.15); color: #8fd6a4; border-left: 3px solid #3aa56b; }

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

.map-wrap {
  border: 1px solid var(--line);
  height: 380px;
  overflow: hidden;
  filter: invert(.9) hue-rotate(180deg) saturate(.6) brightness(.95);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.footer {
  background: #000;
  color: #b9b3a3;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}
.brand-light .brand-text strong { color: #f5e8c2; }
.brand-light .brand-text small { color: var(--gold); }
.footer-about { color: #9a9488; font-size: .92rem; margin-top: 16px; }
.footer h5 {
  color: #f5e8c2;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer ul li { margin-bottom: 10px; font-size: .92rem; }
.footer ul li a:hover { color: var(--gold); }
.footer-contact li::before { content: '›  '; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: .8rem;
  color: #6a6358;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.disclaimer { max-width: 540px; opacity: .8; }

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 30px; }
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .25s;
  z-index: 90;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: all .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
