:root {
  --navy: #0f2747;
  --navy-deep: #0a1b32;
  --gold: #c8a45d;
  --gold-soft: #d4b87a;
  --paper: #ffffff;
  --mist: #f4f1ea;
  --ink: #1e293b;
  --slate: #5b6573;
  --muted: #8b94a3;
  --line: #e6e1d6;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
  text-wrap: pretty;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

::selection {
  background: var(--navy);
  color: var(--paper);
}

.wrap {
  width: min(92%, 1200px);
  margin-inline: auto;
}

.gold-rule {
  width: 3.25rem;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.gold-rule.center {
  margin-inline: auto;
}

.btn-gold {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  padding-inline: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  outline: 1px solid var(--gold);
}

.btn-outline {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding-inline: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 4.5rem;
  border-bottom: 1px solid rgba(200, 164, 93, 0.3);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.site-header.is-open {
  background: var(--navy);
  border-bottom-color: rgba(200, 164, 93, 0.2);
  backdrop-filter: none;
}

.header-inner {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.site-header.is-open .brand {
  color: var(--paper);
}

.brand span {
  color: var(--gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a,
.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-desktop a:hover,
.nav-link:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-wa {
  display: none;
  height: 2.5rem;
  align-items: center;
  padding-inline: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--paper);
}

.site-header.is-open .header-wa {
  background: var(--gold);
  color: var(--navy);
}

.menu-btn {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  z-index: 81;
}

.site-header.is-open .menu-btn {
  color: var(--paper);
}

.menu-btn[hidden],
.menu-btn [hidden] {
  display: none !important;
}

.burger {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.burger::before {
  top: -7px;
}

.burger::after {
  top: 7px;
}

.burger-x {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.burger-x::before,
.burger-x::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.burger-x::before {
  transform: rotate(45deg);
}

.burger-x::after {
  transform: rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 4.5rem 0 0;
  z-index: 70;
  background: var(--navy);
  overflow-y: auto;
}

.mobile-overlay.is-open {
  display: block;
}

.mobile-overlay nav {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 2rem 3rem;
}

.mobile-overlay a.nav-link {
  display: flex;
  min-height: 3rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-size: 0.82rem;
}

.mobile-cta {
  margin-top: 2rem;
  display: inline-flex;
  height: 3rem;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  padding-inline: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-wa {
  margin-top: 0.75rem;
  display: inline-flex;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding-inline: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  background: var(--mist);
  padding: 9rem 0 6rem;
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.kicker {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--gold);
  font-style: italic;
}

.hero h1 {
  margin-top: 0.75rem;
  font-size: 2.5rem;
}

.lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.05rem;
  color: rgba(30, 41, 59, 0.85);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.portrait-wrap {
  position: relative;
}

.portrait-wrap img {
  width: 100%;
  object-fit: cover;
  object-position: 28% 18%;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 6rem 0;
}

.section.mist {
  background: var(--mist);
}

.section.paper {
  background: var(--paper);
}

.section.navy {
  background: var(--navy);
  color: var(--paper);
}

.section.navy h2,
.section.navy h3,
.section.navy h4 {
  color: var(--paper);
}

.two-col {
  display: grid;
  gap: 3.5rem;
}

.body-copy {
  font-size: 1.05rem;
  color: rgba(30, 41, 59, 0.9);
}

.body-copy + .body-copy {
  margin-top: 1.25rem;
}

.quote {
  font-family: var(--display);
  margin: 2rem 0;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--navy);
  font-style: italic;
}

.office-img {
  width: 100%;
  min-height: 280px;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-card {
  margin-top: 2rem;
  background: var(--navy);
  padding: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.bio-card p + p {
  margin-top: 1.25rem;
}

.bio-card strong {
  color: var(--gold);
}

.bio-card span {
  color: rgba(255, 255, 255, 0.9);
}

.center {
  text-align: center;
}

.muted {
  color: rgba(30, 41, 59, 0.75);
}

.cards-2 {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.75rem;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--gold);
  padding: 2.5rem;
  text-align: left;
}

.service-card svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.service-card h3 {
  margin-top: 1.5rem;
  font-size: 1.55rem;
}

.service-sub {
  margin-top: 0.25rem;
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--gold);
  font-style: italic;
}

.service-card p {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: rgba(30, 41, 59, 0.8);
}

.article-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.75rem;
}

.article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card .pad {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card .cat {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-card h3 {
  margin-top: 0.5rem;
  font-size: 1.35rem;
}

.article-card p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--slate);
  flex: 1;
}

.article-card .more {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.principles {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}

.principle {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 1.75rem;
  text-align: center;
}

.principle svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  margin-inline: auto;
}

.principle h4 {
  margin-top: 1.25rem;
  font-size: 1.35rem;
  color: var(--paper);
}

.principle p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq {
  max-width: 800px;
  margin: 2.5rem auto 0;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-mark {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

details[open] .faq-mark {
  transform: none;
}

.faq-mark::after {
  content: "+";
}

details[open] .faq-mark::after {
  content: "−";
}

details p {
  margin-top: 1rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  color: rgba(30, 41, 59, 0.9);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-list svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-list h4 {
  font-size: 1.125rem;
}

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

.map-wrap {
  margin-top: 2rem;
  filter: grayscale(1) contrast(1.1);
}

.map-wrap iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--mist);
  padding: 0 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  margin-bottom: 1.25rem;
  border-radius: 0;
}

.form input {
  height: 3rem;
}

.form textarea {
  padding: 0.75rem 1rem;
  min-height: 8rem;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--gold);
  background: var(--paper);
}

.kvkk-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(30, 41, 59, 0.8);
  margin-bottom: 1.5rem;
}

.kvkk-row input {
  width: auto;
  height: auto;
  margin: 0.3rem 0 0;
}

.form-ok {
  color: #1a7f37;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.form-err {
  color: #b42318;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.page-hero {
  background: var(--navy);
  color: var(--paper);
  padding: 8.5rem 0 4rem;
}

.page-hero h1 {
  color: var(--paper);
  font-size: 2.6rem;
}

.page-hero p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.article-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.article-prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}

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

.article-prose h2 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.45rem;
}

.article-prose blockquote {
  margin: 1.2rem 0;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.article-prose ul {
  margin: 1rem 0;
  padding-left: 1.35rem;
}

.article-prose li + li {
  margin-top: 0.35rem;
}

.kvkk-block {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.kvkk-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
}

.filter {
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  padding-inline: 0.9rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.filter.is-on,
.filter:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}

.site-footer {
  border-top: 3px solid var(--gold);
  background: var(--navy);
  color: var(--paper);
  text-align: center;
  padding: 3.5rem 0;
}

.site-footer .brand {
  color: var(--paper);
  font-size: 1.5rem;
}

.site-footer .sub {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-nav {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.copy {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.credit {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: rgba(139, 148, 163, 0.8);
}

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  height: 3.4rem;
  width: 3.4rem;
  align-items: center;
  justify-content: center;
  background: #128c7e;
  color: #fff;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.35);
}

.wa-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

body.menu-open .wa-float {
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .cards-2 {
    grid-template-columns: 1fr 1fr;
  }
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form {
    padding: 3rem;
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 100dvh;
    padding-top: 10rem;
  }
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .portrait-wrap::before {
    content: "";
    position: absolute;
    top: -1.25rem;
    left: -1.25rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    pointer-events: none;
  }
  .portrait-wrap img {
    position: relative;
    z-index: 1;
    aspect-ratio: 3 / 4;
    max-height: 560px;
  }
  .bio-portrait {
    aspect-ratio: 3 / 4;
    max-height: 520px;
    object-fit: cover;
    object-position: 28% 18%;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .article-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .principles {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .nav-desktop {
    display: flex;
  }
  .header-wa {
    display: inline-flex;
  }
  .menu-btn {
    display: none;
  }
  .mobile-overlay {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
