:root {
  --ink: #102033;
  --ink-muted: #51606d;
  --paper: #f7f3ea;
  --paper-strong: #fffdf8;
  --line: #ddd2bf;
  --field: #efe7d7;
  --accent: #c2a15d;
  --accent-dark: #d3ba76;
  --navy: #0b1b33;
  --navy-deep: #061222;
  --champagne: #b89a63;
  --champagne-dark: #7b6134;
  --shadow: 0 24px 70px rgba(11, 27, 51, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper-strong);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 3rem);
  min-height: 76px;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  border-top: 2px solid var(--navy-deep);
  box-shadow: 0 1px 0 rgba(11, 27, 51, 0.1), 0 8px 24px rgba(11, 27, 51, 0.035);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.compact,
body.nav-open .site-header {
  background: rgba(255, 253, 248, 0.98);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(11, 27, 51, 0.12), 0 10px 28px rgba(11, 27, 51, 0.045);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: max-content;
}

.brand strong {
  display: grid;
  width: clamp(10.5rem, 14vw, 12.5rem);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.brand-primary {
  font-size: clamp(1.22rem, 1.55vw, 1.48rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-secondary {
  display: flex;
  justify-content: space-between;
  width: 92%;
  margin: 0.28rem auto 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.62rem, 0.8vw, 0.74rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.95rem, 1.8vw, 1.55rem);
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.32rem;
  height: 2px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.05rem;
  color: var(--navy-deep);
  background: rgba(184, 154, 99, 0.1);
  border: 1px solid rgba(11, 27, 51, 0.32);
  border-radius: 3px;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: calc(82svh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 18, 34, 0.92) 0%, rgba(11, 27, 51, 0.76) 40%, rgba(11, 27, 51, 0.2) 70%, rgba(11, 27, 51, 0.05) 100%),
    linear-gradient(0deg, rgba(6, 18, 34, 0.32), rgba(6, 18, 34, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 5.8rem clamp(1rem, 5vw, 4rem) clamp(1.8rem, 4vw, 3rem);
  color: var(--paper-strong);
}

.eyebrow {
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ead7af;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 0.85rem;
  font-size: clamp(2.45rem, 5.1vw, 4.65rem);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 760px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.35vw, 1.15rem);
  line-height: 1.6;
}

.turkish-line {
  max-width: 660px;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(184, 154, 99, 0.56);
  outline-offset: 4px;
}

.button-primary {
  background: var(--accent);
  color: var(--navy-deep);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: rgba(232, 213, 174, 0.72);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(232, 213, 174, 0.12);
}

.full-width {
  width: 100%;
}

.notice-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem clamp(1rem, 4vw, 3rem);
  background: var(--navy-deep);
  color: var(--paper-strong);
}

.notice-band p {
  max-width: 980px;
  font-size: 0.95rem;
}

.notice-band a {
  flex: 0 0 auto;
  color: #e8d5ae;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.section,
.contact-section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-intro,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-heading h2,
.contact-section h2,
.legal-hero h1 {
  margin-top: 0.7rem;
}

#services {
  display: block;
  padding-bottom: 1.75rem;
}

#services .section-heading,
#services .section-heading h2 {
  max-width: none;
  width: 100%;
}

.services-description {
  width: 100%;
  max-width: none;
  margin-top: 1.3rem;
  color: var(--ink-muted);
  font-size: 1.03rem;
}

.services-description p + p {
  margin-top: 0.75rem;
}

.intro-copy,
.about-block p,
.contact-section p,
.legal-hero p,
.legal-content p {
  color: var(--ink-muted);
  font-size: 1.03rem;
}

.intro-copy p + p,
.about-block p + p,
.legal-content p + p {
  margin-top: 1rem;
}

.services-accordion {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.service-panel,
.about-block,
.legal-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 1px 0 rgba(11, 27, 51, 0.04);
}

.service-panel {
  overflow: hidden;
}

.service-panel summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1.15rem 1.35rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-panel summary::-webkit-details-marker {
  display: none;
}

.service-panel summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  color: var(--navy-deep);
  border: 1px solid rgba(11, 27, 51, 0.24);
  border-radius: 50%;
  background: rgba(184, 154, 99, 0.12);
  font-size: 1.2rem;
  line-height: 1;
}

.service-panel[open] summary {
  border-bottom: 1px solid var(--line);
}

.service-panel[open] summary::after {
  content: "-";
}

.service-panel-content {
  padding: 1.25rem 1.35rem 1.5rem;
  overflow: hidden;
}

.service-panel[data-accordion-ready] .service-panel-content {
  height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateY(-6px);
  transition: height 260ms ease, opacity 200ms ease, padding 260ms ease, transform 260ms ease;
}

.service-panel[data-accordion-ready][open] .service-panel-content {
  opacity: 1;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .service-panel[data-accordion-ready] .service-panel-content {
    transition: none;
  }
}

.service-panel-content p,
.service-panel-content li {
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.service-panel-content p + p {
  margin-top: 1rem;
}

.service-panel-content h3 {
  margin: 1.2rem 0 0.8rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-panel-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-panel-content li {
  position: relative;
  padding-left: 1.2rem;
}

.service-panel-content li + li {
  margin-top: 0.8rem;
}

.service-panel-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
}

.about-list li {
  color: var(--ink-muted);
}

.profile-section {
  width: 100%;
  max-width: none;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: #efe7d7;
}

.about-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.about-block {
  height: 100%;
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.about-block h2 {
  margin: 0.7rem 0 1.2rem;
}

.about-founder {
  background: #fffaf0;
}

.founder-heading {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 1.35rem;
}

.founder-heading h2 {
  margin-bottom: 0;
}

.founder-photo {
  width: clamp(96px, 12vw, 132px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--paper-strong);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--champagne), 0 12px 28px rgba(11, 27, 51, 0.14);
}

.about-list,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-list {
  margin: 1.15rem 0;
}

.about-list li,
.check-list li {
  position: relative;
  padding-left: 1.2rem;
}

.about-list li + li,
.check-list li + li {
  margin-top: 0.75rem;
}

.about-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--champagne);
}

.check-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.6rem;
}

.check-list li::before {
  background: #e8d5ae;
}

.microcopy {
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

.contact-section {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: var(--paper-strong);
}

.contact-section h2 {
  margin-bottom: 1rem;
  max-width: 820px;
}

.contact-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy {
  width: min(100%, var(--max));
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  font-style: normal;
}

.contact-list a {
  display: grid;
  min-height: 132px;
  align-content: start;
  gap: 1.35rem;
  padding: 1.25rem;
  border: 1px solid rgba(232, 213, 174, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 213, 174, 0.62);
  background: rgba(255, 253, 248, 0.13);
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #e8d5ae;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-icon {
  position: relative;
  width: 16px;
  height: 14px;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.contact-icon-email {
  background:
    linear-gradient(34deg, transparent 46%, currentColor 48%, currentColor 54%, transparent 56%) left top / 50% 75% no-repeat,
    linear-gradient(-34deg, transparent 46%, currentColor 48%, currentColor 54%, transparent 56%) right top / 50% 75% no-repeat;
}

.contact-icon-calendar {
  height: 15px;
  border-top-width: 4px;
}

.contact-icon-calendar::before,
.contact-icon-calendar::after {
  content: "";
  position: absolute;
  top: -7px;
  width: 2px;
  height: 5px;
  border-radius: 1px;
  background: currentColor;
}

.contact-icon-calendar::before {
  left: 3px;
}

.contact-icon-calendar::after {
  right: 3px;
}

.contact-value {
  color: var(--paper-strong);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 1rem;
}

.footer-copy {
  width: 80%;
  max-width: none;
}

.footer-copy p + p {
  margin-top: 0.4rem;
}

.site-footer a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.legal-page {
  padding-top: 0;
}

.legal-hero {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 2.5rem;
}

.legal-hero p {
  max-width: 760px;
  margin-top: 1rem;
}

.legal-content {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 7rem);
}

.legal-content a {
  color: var(--champagne-dark);
  font-weight: 800;
}

.terms-text {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.terms-document {
  display: grid;
  gap: 1rem;
}

.terms-document-header {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: var(--paper-strong);
  background: var(--navy);
  border-top: 4px solid var(--champagne);
  border-radius: var(--radius);
}

.terms-document-header h1 {
  max-width: none;
  margin: 0;
  font-size: 24px;
}

.terms-section {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 1px 0 rgba(11, 27, 51, 0.04);
}

.terms-section h2 {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  color: var(--navy-deep);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.terms-section-number {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--navy-deep);
  border: 1px solid rgba(184, 154, 99, 0.55);
  border-radius: 50%;
  background: rgba(184, 154, 99, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.terms-section p {
  max-width: 900px;
  color: var(--ink-muted);
  font-size: 1rem;
}

.terms-section p + p {
  margin-top: 0.8rem;
}

.terms-section ul {
  display: grid;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
  padding: 1rem 1rem 1rem 2.4rem;
  color: var(--ink-muted);
  border-left: 3px solid var(--champagne);
  background: var(--field);
}

.terms-section li {
  padding-left: 0.2rem;
}

@media (max-width: 980px) {
  .section-intro,
  .about-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0.75rem 1rem;
  }

  .brand strong {
    width: 10rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.6rem 1rem 1rem;
    color: var(--ink);
    background: var(--paper-strong);
    box-shadow: 0 24px 60px rgba(11, 27, 51, 0.2);
    transform: translateY(-140%);
    transition: transform 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    width: 100%;
    margin-top: 0.9rem;
    padding: 0.85rem 1rem;
    border-bottom: 0;
  }

  .hero {
    min-height: calc(84svh - 68px);
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 18, 34, 0.92) 0%, rgba(11, 27, 51, 0.8) 58%, rgba(11, 27, 51, 0.42) 100%),
      linear-gradient(0deg, rgba(6, 18, 34, 0.44), rgba(6, 18, 34, 0.14));
  }

  .hero-content {
    padding: 4.8rem 1rem 2rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .terms-section h2 {
    grid-template-columns: 2.2rem minmax(0, 1fr);
  }

  .terms-section-number {
    width: 2.2rem;
    height: 2.2rem;
  }

  .service-panel summary {
    align-items: flex-start;
    min-height: 64px;
    padding: 1rem;
    font-size: 0.95rem;
  }

  .service-panel-content {
    padding: 1rem;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
