
:root {
  --background: #020711;
  --background-soft: #07101f;
  --panel: rgb(4 13 28 / 92%);
  --panel-soft: rgb(7 16 31 / 88%);
  --gold: #d4af37;
  --gold-light: #f5d978;
  --gold-dark: #8f6818;
  --text: #f7f4ed;
  --text-muted: #c6c7cc;
  --border-gold: rgb(212 175 55 / 55%);

  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-max: 90rem;
  --container-gutter: clamp(1rem, 4vw, 2.5rem);
  --header-height: 5.25rem;
  --section-space: clamp(4.5rem, 8vw, 7rem);

  --gradient-gold: linear-gradient(135deg, #8f6818 0%, #f5d978 44%, #d4af37 68%, #8f6818 100%);
  --gradient-text: linear-gradient(180deg, #fff4c9 0%, #f5d978 36%, #d4af37 70%, #9a711d 100%);
  --shadow-gold: 0 0 1.8rem rgb(212 175 55 / 18%);
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body,
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

body {
  min-width: 20rem;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgb(18 42 70 / 28%), transparent 34rem),
    var(--background);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  padding: 0;
  border: 0;
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  background: rgb(212 175 55 / 32%);
  color: #fff;
}

.container {
  width: min(calc(100% - (var(--container-gutter) * 2)), var(--container-max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 5000;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  color: var(--background);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) auto minmax(2rem, 1fr);
  align-items: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.section-heading > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}

.section-heading > span:last-child {
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

.section-heading h2 {
  background: var(--gradient-text);
  background-clip: text;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon-medallion,
.service-card__icon,
.contact-item__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(245 217 120 / 68%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgb(255 240 180 / 50%), transparent 34%),
    linear-gradient(145deg, #8f6818, #e3b846 54%, #6f4a0b);
  box-shadow:
    inset 0 0 0 3px rgb(4 13 28 / 28%),
    0 0 1.2rem rgb(212 175 55 / 26%);
}

.icon-medallion img,
.service-card__icon img,
.contact-item__icon img,
.floating-whatsapp img {
  filter: brightness(0) saturate(100%) invert(5%) sepia(15%) saturate(2850%) hue-rotate(174deg) brightness(89%) contrast(107%);
}

/* ================================================================
   Header and navigation
   ================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgb(212 175 55 / 30%);
  background: rgb(2 7 17 / 74%);
  box-shadow: 0 0.5rem 2rem rgb(0 0 0 / 16%);
  backdrop-filter: blur(14px);
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent 4%, var(--gold-dark) 26%, var(--gold-light) 48%, var(--gold-dark) 70%, transparent 96%);
  opacity: 0.55;
  pointer-events: none;
}

.site-header.is-scrolled {
  border-color: rgb(212 175 55 / 45%);
  background: rgb(2 7 17 / 94%);
  box-shadow: 0 0.85rem 2.5rem rgb(0 0 0 / 35%);
}

.site-header__inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.brand__logo {
  width: clamp(10.5rem, 42vw, 14rem);
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav__toggle {
  position: relative;
  z-index: 5;
  display: grid;
  width: 2.9rem;
  min-height: 2.9rem;
  place-content: center;
  gap: 0.31rem;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: rgb(4 13 28 / 92%);
  box-shadow: inset 0 0 0 1px rgb(245 217 120 / 8%);
}

.site-nav__toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
  transform-origin: center;
  transition:
    transform 240ms ease,
    opacity 180ms ease;
}

.site-header.is-menu-open .site-nav__toggle span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.site-header.is-menu-open .site-nav__toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-nav__toggle span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.site-nav__list {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  display: flex;
  width: min(84vw, 21rem);
  height: 100dvh;
  flex-direction: column;
  gap: 0.25rem;
  padding: calc(var(--header-height) + 1.5rem) 1.35rem 2rem;
  list-style: none;
  border-left: 1px solid rgb(212 175 55 / 42%);
  background:
    radial-gradient(circle at 100% 0%, rgb(212 175 55 / 12%), transparent 18rem),
    rgb(2 7 17 / 98%);
  box-shadow: -1.5rem 0 3rem rgb(0 0 0 / 45%);
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    clip-path 300ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 300ms;
}

.site-header.is-menu-open .site-nav__list {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.site-nav__link {
  position: relative;
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  padding-inline: 0.85rem;
  border-bottom: 1px solid rgb(212 175 55 / 12%);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    color var(--transition),
    background-color var(--transition);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link[aria-current="location"] {
  color: var(--gold-light);
}

.site-nav__link[aria-current="location"] {
  background: rgb(212 175 55 / 7%);
}

.site-nav__whatsapp-item {
  margin-top: 1rem;
}

.whatsapp-button {
  position: relative;
  display: inline-flex;
  width: 100%;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  gap: 0.6rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgb(124 255 174 / 74%);
  border-radius: 0.8rem;
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 56%, #128c4a 100%);
  color: #000a04;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 32%),
    0 0.5rem 1.35rem rgb(37 211 102 / 24%);
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  animation: whatsappIntro 680ms cubic-bezier(0.22, 1, 0.36, 1) 180ms backwards;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.whatsapp-button img {
  position: relative;
  z-index: 1;
  width: 1.18rem;
  height: 1.18rem;
  filter: brightness(0) saturate(100%) invert(7%) sepia(17%) saturate(1762%) hue-rotate(174deg) brightness(92%) contrast(102%);
  animation: whatsappIconPulse 1.8s ease-in-out 720ms infinite;
}

.whatsapp-button span {
  position: relative;
  z-index: 1;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: linear-gradient(135deg, #2be16d 0%, #20bd5a 52%, #128c4a 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 42%),
    0 0 1.45rem rgb(37 211 102 / 42%);
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.whatsapp-button:focus-visible {
  outline: 2px solid #b9ffd2;
  outline-offset: 3px;
}

.whatsapp-button:active {
  background: linear-gradient(135deg, #20bd5a 0%, #159447 58%, #128c4a 100%);
  box-shadow: inset 0 2px 0 rgb(0 0 0 / 18%);
  filter: brightness(0.96);
  transform: translateY(0);
}

.site-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  visibility: hidden;
  background: rgb(0 3 8 / 64%);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition:
    opacity var(--transition),
    visibility 0s linear var(--transition);
}

.site-header.is-menu-open .site-nav__backdrop {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.hero {
  --detective-right: clamp(-600px, -22vw, -75px);
  --magnifier-right: clamp(40px, -16vw, -30px);
  --magnifier-shift-x: clamp(-180px, -10vw, -70px);
  --magnifier-shift-y: clamp(-45px, -2.5vw, -15px);
  --magnifier-extra-y: clamp(18px, 1.8vw, 38px);
  position: relative;
  min-height: clamp(41rem, 71vw, 47.5rem);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgb(212 175 55 / 22%);
  background-color: var(--background);
  background-image: url("assets/images/hero-bg.png");
  background-position: center;
  background-size: cover;
}

.hero::before,
.hero::after,
.hero__shade {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(1 5 12 / 90%) 0%, rgb(1 6 14 / 66%) 30%, rgb(2 7 17 / 16%) 60%, rgb(1 4 10 / 8%) 100%),
    linear-gradient(180deg, rgb(2 7 17 / 4%) 46%, rgb(2 7 17 / 78%) 100%);
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 38%, rgb(0 2 7 / 50%) 100%),
    linear-gradient(180deg, rgb(5 16 30 / 2%), transparent 60%, rgb(2 7 17 / 78%) 100%);
}

.hero__shade {
  z-index: -1;
  background:
    radial-gradient(circle at 56% 39%, rgb(30 68 101 / 18%), transparent 18rem),
    linear-gradient(110deg, transparent 56%, rgb(0 3 9 / 4%) 100%);
}

.hero__inner {
  position: relative;
  min-height: inherit;
}

.hero__copy {
  position: absolute;
  top: clamp(5rem, 12%, 7.25rem);
  left: 0;
  z-index: 3;
  width: min(46%, 39rem);
}

.hero__eyebrow {
  margin-bottom: 0.8rem;
  color: rgb(245 217 120 / 72%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  background: var(--gradient-text);
  background-clip: text;
  color: var(--gold-light);
  filter: drop-shadow(0 0.25rem 0.65rem rgb(0 0 0 / 80%));
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.25vw, 5.15rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.06;
  text-wrap: balance;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span {
  display: block;
  color: #eee9dc;
  background: linear-gradient(180deg, #fffdf7 0%, #d9d4c9 68%, #a8a091 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__rule {
  display: block;
  width: min(100%, 34rem);
  height: 2px;
  margin-block: clamp(1.2rem, 3vw, 1.75rem);
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 10%, var(--gold-light) 48%, var(--gold-dark) 90%, transparent);
  box-shadow: 0 0 0.9rem rgb(245 217 120 / 58%);
}

.hero__statement {
  width: min(100%, 34rem);
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 2vw, 1.5rem);
  color: #ede9df;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.55;
  text-align: center;
  text-shadow: 0 2px 10px rgb(0 0 0 / 95%);
}

.hero__ankara-wrap {
  position: absolute;
  top: 44%;
  right: var(--magnifier-right);
  left: auto;
  z-index: 2;
  width: clamp(18rem, 32vw, 27rem);
  aspect-ratio: 1;
  transform:
    translateX(var(--magnifier-shift-x))
    translateY(calc(-50% + var(--magnifier-shift-y) + var(--magnifier-extra-y)));
  filter: brightness(1.28) contrast(1.12) saturate(1.14) drop-shadow(0 1.3rem 2rem rgb(0 0 0 / 72%));
  mix-blend-mode: screen;
}

.hero__ankara-wrap::before {
  position: absolute;
  inset: 9% 12% 16% 7%;
  z-index: -1;
  border-radius: 50%;
  background: rgb(212 175 55 / 10%);
  box-shadow: 0 0 2.5rem rgb(245 217 120 / 26%);
  content: "";
}

.hero__ankara {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__location {
  position: absolute;
  right: 0;
  bottom: clamp(2.25rem, 6%, 3.5rem);
  z-index: 4;
  display: flex;
  width: min(27rem, 38vw);
  min-height: 6rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  background: rgb(2 7 17 / 90%);
  box-shadow:
    inset 0 0 1.3rem rgb(212 175 55 / 8%),
    0 0 1.6rem rgb(212 175 55 / 22%);
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero__location > img {
  width: clamp(2.65rem, 3.4vw, 3.25rem);
  height: auto;
  filter:
    brightness(0) saturate(100%) invert(83%) sepia(60%) saturate(513%) hue-rotate(356deg) brightness(103%) contrast(95%)
    drop-shadow(0 0 0.7rem rgb(245 217 120 / 55%));
}

.hero__location span {
  display: grid;
  gap: 0.18rem;
}

.hero__location strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.hero__location small {
  color: #e8cf8c;
  font-size: clamp(0.68rem, 1.15vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ================================================================
   Trust strip
   ================================================================ */

.trust-strip {
  position: relative;
  z-index: 8;
  padding-block: 1.4rem 0;
  background: var(--background);
}

.trust-strip__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgb(212 175 55 / 7%), transparent 22rem),
    var(--panel);
  box-shadow:
    inset 0 0 1.8rem rgb(212 175 55 / 5%),
    0 0.9rem 2.6rem rgb(0 0 0 / 30%);
}

.trust-item {
  position: relative;
  display: flex;
  min-height: 7rem;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem;
}

.trust-item:nth-child(odd) {
  border-right: 1px solid rgb(212 175 55 / 33%);
}

.trust-item:nth-child(-n + 2) {
  border-bottom: 1px solid rgb(212 175 55 / 24%);
}

.icon-medallion {
  width: 3.35rem;
  aspect-ratio: 1;
}

.icon-medallion img {
  width: 1.7rem;
}

.trust-item h2 {
  max-width: 10rem;
  color: #f1eee5;
  font-size: clamp(0.82rem, 2.5vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
}

/* ================================================================
   About
   ================================================================ */

.about {
  background:
    radial-gradient(circle at 16% 45%, rgb(22 55 86 / 24%), transparent 25rem),
    linear-gradient(180deg, var(--background) 0%, var(--background-soft) 50%, var(--background) 100%);
}

.about__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow:
    inset 0 0 2rem rgb(212 175 55 / 7%),
    0 1.4rem 3rem rgb(0 0 0 / 40%);
}

.about__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(2 7 17 / 18%), transparent 58%),
    linear-gradient(180deg, transparent 58%, rgb(2 7 17 / 54%));
  pointer-events: none;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  max-width: 42rem;
}

.about__content h2 {
  margin-bottom: 1.25rem;
  background: var(--gradient-text);
  background-clip: text;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__content > p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
}

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

.about__lead {
  color: #ebe2ca !important;
  font-size: clamp(1rem, 1.7vw, 1.12rem) !important;
}

.about__principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.6rem;
  list-style: none;
}

.about__principles li {
  position: relative;
  padding: 0.72rem 0.8rem 0.72rem 2rem;
  border: 1px solid rgb(212 175 55 / 28%);
  border-radius: var(--radius-sm);
  background: rgb(4 13 28 / 58%);
  color: #e5e0d4;
  font-size: 0.84rem;
}

.about__principles li::before {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  width: 0.48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0.7rem rgb(245 217 120 / 65%);
  content: "";
  transform: translateY(-50%);
}

/* ================================================================
   Services
   ================================================================ */

.services {
  background:
    radial-gradient(circle at 50% 4%, rgb(17 43 71 / 22%), transparent 30rem),
    var(--background);
}

.services__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
}

.service-card {
  position: relative;
  min-width: 0;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgb(212 175 55 / 30%);
  border-radius: var(--radius-md);
  background:
    linear-gradient(120deg, rgb(14 29 51 / 88%), rgb(3 10 23 / 94%)),
    rgb(4 13 28 / 94%);
  box-shadow:
    inset 0 0 1.5rem rgb(212 175 55 / 4%),
    0 0.8rem 2rem rgb(0 0 0 / 18%);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
  content: "";
  opacity: 0.46;
  pointer-events: none;
}

.service-card__heading {
  margin: 0;
  font: inherit;
}

.service-card__trigger {
  display: grid;
  width: 100%;
  min-height: 6.8rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.service-card__trigger:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -4px;
}

.service-card__icon {
  width: 3.45rem;
  aspect-ratio: 1;
}

.service-card__icon img {
  width: 1.7rem;
}

.service-card__copy {
  min-width: 0;
}

.service-card__title {
  display: block;
  color: #f1dfac;
  font-size: clamp(0.92rem, 2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
}

.service-card__summary {
  display: block;
  margin-top: 0.28rem;
  color: var(--text-muted);
  font-size: clamp(0.76rem, 1.45vw, 0.88rem);
  line-height: 1.55;
}

.service-card__toggle {
  position: relative;
  display: grid;
  width: 1.75rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(212 175 55 / 52%);
  border-radius: 50%;
  background: rgb(212 175 55 / 7%);
  box-shadow: inset 0 0 0.75rem rgb(212 175 55 / 8%);
  transition:
    border-color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.service-card__toggle::before,
.service-card__toggle::after {
  position: absolute;
  width: 0.72rem;
  height: 1px;
  border-radius: 999px;
  background: var(--gold-light);
  content: "";
  transition: transform var(--transition);
}

.service-card__toggle::after {
  transform: rotate(90deg);
}

.service-card__details {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition:
    grid-template-rows 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    visibility 0s linear 300ms;
}

.service-card__details-inner {
  min-height: 0;
  overflow: hidden;
}

.service-card__details-content {
  margin-inline: 1.1rem;
  padding-block: 1rem 1.2rem;
  border-top: 1px solid rgb(212 175 55 / 22%);
}

.service-card__tag {
  display: inline-flex;
  margin-bottom: 0.72rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgb(212 175 55 / 32%);
  border-radius: 999px;
  background: rgb(212 175 55 / 7%);
  color: #e5c66d;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card__details p {
  color: #bbc3ce;
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  line-height: 1.7;
}

.service-card.is-open {
  border-color: rgb(245 217 120 / 76%);
  box-shadow:
    inset 0 0 2rem rgb(212 175 55 / 9%),
    0 0 1.35rem rgb(212 175 55 / 18%),
    0 1.1rem 2.4rem rgb(0 0 0 / 26%);
}

.service-card.is-open .service-card__details {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.service-card.is-open .service-card__toggle {
  border-color: rgb(245 217 120 / 82%);
  background: rgb(212 175 55 / 15%);
  transform: rotate(180deg);
}

.service-card.is-open .service-card__toggle::after {
  transform: rotate(90deg) scaleX(0);
}

@media (hover: hover) {
  .service-card:hover {
    border-color: rgb(245 217 120 / 72%);
    box-shadow:
      inset 0 0 1.8rem rgb(212 175 55 / 8%),
      0 1.15rem 2.2rem rgb(0 0 0 / 28%),
      0 0 1.15rem rgb(212 175 55 / 13%);
    transform: translateY(-3px);
  }

  .service-card__trigger:hover .service-card__toggle {
    border-color: var(--gold-light);
    background: rgb(212 175 55 / 14%);
  }
}
/* ================================================================
   Reasons
   ================================================================ */

.reasons {
  padding-top: 1rem;
  background: var(--background);
}

.reasons__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgb(212 175 55 / 7%), transparent 24rem),
    var(--panel);
  box-shadow:
    inset 0 0 1.8rem rgb(212 175 55 / 5%),
    var(--shadow-gold);
}

.reason-item {
  position: relative;
  display: grid;
  min-height: 9.5rem;
  place-items: center;
  align-content: center;
  gap: 0.85rem;
  padding: 1.2rem 0.9rem;
  text-align: center;
}

.reason-item:not(:nth-child(2n)) {
  border-right: 1px solid rgb(212 175 55 / 28%);
}

.reason-item:not(:nth-last-child(-n + 2)) {
  border-bottom: 1px solid rgb(212 175 55 / 20%);
}

.reason-item:last-child {
  grid-column: 1 / -1;
}

.reason-item h3 {
  max-width: 11rem;
  color: #eee9dd;
  font-size: clamp(0.78rem, 2vw, 0.94rem);
  font-weight: 600;
  line-height: 1.5;
}

/* ================================================================
   Contact strip
   ================================================================ */

.contact-strip {
  padding-top: 0;
  background: var(--background);
}

.contact-strip__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border: 2px solid rgb(212 175 55 / 76%);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgb(245 217 120 / 8%), transparent 24rem),
    var(--panel);
  box-shadow:
    inset 0 0 1.7rem rgb(212 175 55 / 7%),
    0 0 1.6rem rgb(212 175 55 / 19%);
}

.contact-item {
  display: flex;
  min-width: 0;
  min-height: 7.25rem;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 3vw, 1.8rem);
}

.contact-item + .contact-item {
  border-top: 1px solid rgb(212 175 55 / 35%);
}

.contact-item__icon {
  width: 3.65rem;
  aspect-ratio: 1;
}

.contact-item__icon img {
  width: 1.75rem;
}

.contact-item > div {
  min-width: 0;
}

.contact-item span:not(.contact-item__icon) {
  display: block;
  margin-bottom: 0.2rem;
  color: #dec47d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a {
  display: block;
  overflow-wrap: anywhere;
  color: #f1eee6;
  font-size: clamp(0.82rem, 1.8vw, 1rem);
  line-height: 1.5;
  transition: color var(--transition);
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--gold-light);
}

/* ================================================================
   Floating WhatsApp and footer
   ================================================================ */

.floating-whatsapp {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 900;
  display: grid;
  width: 3.75rem;
  aspect-ratio: 1;
  place-items: center;
  isolation: isolate;
  border: 1px solid rgb(124 255 174 / 78%);
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 56%, #128c4a 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 34%),
    0 0.55rem 1.4rem rgb(10 78 40 / 30%);
  animation: whatsappIntro 680ms cubic-bezier(0.22, 1, 0.36, 1) 180ms backwards;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.whatsapp-button::before,
.whatsapp-button::after,
.floating-whatsapp::before,
.floating-whatsapp::after {
  position: absolute;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.whatsapp-button::before,
.floating-whatsapp::before {
  inset: -0.62rem;
  z-index: -1;
  background: rgb(37 211 102 / 62%);
  filter: blur(0.78rem);
  opacity: 0.5;
  animation: whatsappGlow 1.8s ease-in-out 720ms infinite;
}

.whatsapp-button::after,
.floating-whatsapp::after {
  inset: 0;
  z-index: 0;
  background: linear-gradient(112deg, transparent 20%, rgb(255 255 255 / 68%) 46%, transparent 70%);
  background-position: 160% 0;
  background-size: 250% 100%;
  opacity: 0;
  animation: whatsappShine 2.6s linear 560ms infinite;
}

.floating-whatsapp img {
  position: relative;
  z-index: 1;
  width: 1.65rem;
  filter: brightness(0) saturate(100%) invert(7%) sepia(17%) saturate(1762%) hue-rotate(174deg) brightness(92%) contrast(102%);
  animation: whatsappIconPulse 1.8s ease-in-out 720ms infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: linear-gradient(135deg, #2be16d 0%, #20bd5a 52%, #128c4a 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 42%),
    0 0.75rem 1.7rem rgb(10 92 45 / 38%);
  filter: brightness(1.04);
  transform: translateY(-2px) scale(1.035);
}

.floating-whatsapp:active {
  filter: brightness(0.96);
  transform: translateY(0) scale(0.985);
}

@keyframes whatsappIntro {
  from {
    opacity: 0;
    transform: translateY(0.65rem) scale(0.94);
  }
}

@keyframes whatsappGlow {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.14);
  }
}

@keyframes whatsappShine {
  0%,
  100% {
    background-position: 160% 0;
    opacity: 0;
  }

  8% {
    opacity: 0.18;
  }

  24% {
    opacity: 0.9;
  }

  46% {
    background-position: -80% 0;
    opacity: 0;
  }
}

@keyframes whatsappIconPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.site-footer {
  position: relative;
  padding-block: 2.3rem 1.5rem;
  border-top: 1px solid rgb(212 175 55 / 22%);
  background: #01040a;
  text-align: center;
}

.site-footer::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.58;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
}

.site-footer__brand-row {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(1rem, 1fr) auto minmax(1rem, 1fr);
  align-items: center;
  gap: clamp(0.8rem, 4vw, 2rem);
}

.site-footer__brand-row > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}

.site-footer__brand-row > span:last-child {
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

.site-footer__brand-row img {
  width: clamp(12rem, 30vw, 18rem);
  height: auto;
}

.site-footer__motto {
  margin-top: 0.8rem;
  color: #e6d5a8;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2vw, 1rem);
  letter-spacing: 0.08em;
}

.site-footer__copyright {
  margin-top: 0.55rem;
  color: #7f8996;
  font-size: 0.7rem;
}

/* ================================================================
   Reveal animations
   ================================================================ */

.js [data-reveal] {
  opacity: 0;
  translate: 0 1.2rem;
  transition:
    opacity 620ms ease,
    translate 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  translate: 0;
}

/* ================================================================
   Responsive layout
   ================================================================ */

@media (min-width: 36rem) {
  .trust-item {
    padding: 1.3rem 1.5rem;
  }

  .services__grid {
    gap: 1rem;
  }

  .reason-item:last-child {
    grid-column: auto;
  }

  .reasons__panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reason-item:not(:nth-child(2n)) {
    border-right: 0;
  }

  .reason-item:not(:nth-child(3n)) {
    border-right: 1px solid rgb(212 175 55 / 28%);
  }

  .reason-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 48rem) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card__trigger {
    min-height: 7.1rem;
  }

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

  .contact-item + .contact-item {
    border-top: 0;
    border-left: 1px solid rgb(212 175 55 / 35%);
  }
}

@media (min-width: 56rem) {
  :root {
    --header-height: 5.75rem;
  }

  body.nav-open {
    overflow: auto;
  }

  .brand__logo {
    width: clamp(12.5rem, 20vw, 15.75rem);
  }

  .site-nav__toggle,
  .site-nav__backdrop {
    display: none;
  }

  .site-nav__list {
    position: static;
    display: flex;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.85rem, 1.8vw, 1.75rem);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    clip-path: none;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .site-nav__link {
    min-height: var(--header-height);
    padding: 0.2rem 0;
    border: 0;
    background: transparent !important;
    font-size: 0.88rem;
  }

  .site-nav__whatsapp-item {
    margin-top: 0;
    margin-left: 0.2rem;
  }

  .site-nav__whatsapp {
    width: auto;
    min-height: 2.8rem;
    padding: 0.7rem 0.95rem;
    border-radius: 0.72rem;
    white-space: nowrap;
  }

  .site-nav__link::after {
    position: absolute;
    right: 0;
    bottom: 1.05rem;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gradient-gold);
    box-shadow: 0 0 0.65rem rgb(245 217 120 / 55%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
  }

  .site-nav__link:hover::after,
  .site-nav__link:focus-visible::after,
  .site-nav__link[aria-current="location"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .trust-strip__panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-item:nth-child(n) {
    border-bottom: 0;
  }

  .trust-item:not(:last-child) {
    border-right: 1px solid rgb(212 175 55 / 33%);
  }

  .about__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  }

  .reasons__panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .reason-item:nth-child(n) {
    border-bottom: 0;
  }

  .reason-item:not(:last-child) {
    border-right: 1px solid rgb(212 175 55 / 28%);
  }
}

@media (max-width: 55.999rem) {
  .hero {
    min-height: 50rem;
    background-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(1 5 12 / 86%) 0%, rgb(2 7 17 / 30%) 46%, rgb(2 7 17 / 76%) 100%),
      linear-gradient(90deg, rgb(1 5 12 / 82%) 0%, rgb(1 6 14 / 34%) 55%, rgb(2 7 17 / 14%) 100%);
  }

  .hero__copy {
    top: 4rem;
    width: min(90%, 36rem);
  }

  .hero h1 {
    font-size: clamp(2.65rem, 8.5vw, 4rem);
  }

  .hero__statement {
    max-width: 30rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero__ankara-wrap {
    top: auto;
    bottom: 5.5rem;
    width: clamp(15.5rem, 48vw, 21rem);
  }

  .hero__location {
    right: 0;
    bottom: 1rem;
    left: 0;
    width: 100%;
    min-height: 4.8rem;
  }
}

@media (max-width: 35.999rem) {
  :root {
    --header-height: 4.85rem;
  }

  .brand__logo {
    width: clamp(9.7rem, 49vw, 11.5rem);
  }

  .hero {
    min-height: 46.5rem;
    background-position: 67% center;
  }

  .hero__copy {
    top: 3rem;
    width: 100%;
  }

  .hero__eyebrow {
    font-size: 0.63rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11.5vw, 3.1rem);
  }

  .hero__statement {
    font-size: 0.95rem;
  }

  .hero__ankara-wrap {
    bottom: 5.1rem;
    width: min(68vw, 17.5rem);
  }

  .hero__location {
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .hero__location > img {
    width: clamp(2rem, 9vw, 2.4rem);
  }

  .hero__location strong {
    font-size: 1.45rem;
  }

  .hero__location small {
    font-size: 0.6rem;
  }

  .trust-strip__panel {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 5.5rem;
    padding: 0.9rem 1rem;
  }

  .trust-item:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid rgb(212 175 55 / 24%);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .icon-medallion {
    width: 3rem;
  }

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

  .section-heading {
    grid-template-columns: minmax(1rem, 1fr) minmax(0, auto) minmax(1rem, 1fr);
    gap: 0.65rem;
  }

  .section-heading h2 {
    font-size: clamp(1.35rem, 6.8vw, 1.8rem);
  }

  .service-card__trigger {
    align-items: flex-start;
    padding: 1rem;
  }

  .service-card__details-content {
    margin-inline: 1rem;
  }

  .service-card__icon {
    width: 3rem;
  }

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

  .reason-item:nth-child(n) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(212 175 55 / 22%);
  }

  .reason-item:last-child {
    border-bottom: 0;
  }

  .reason-item {
    min-height: 7.5rem;
  }

  .floating-whatsapp {
    width: 3.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .service-card__details {
    transition: none;
  }

  .js [data-reveal] {
    opacity: 1;
    translate: none;
  }
}
/* ================================================================
   Informative interactions and expanded content
   ================================================================ */

.section-intro {
  width: min(100%, 54rem);
  margin: calc(clamp(2rem, 5vw, 3.25rem) * -0.45) auto clamp(2rem, 4vw, 3rem);
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.75;
  text-align: center;
}

.info-item {
  position: relative;
  min-width: 0;
}

.info-trigger {
  min-height: 2.75rem;
  cursor: pointer;
}

.info-trigger__indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #d8bd72;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.info-trigger__indicator::after {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1px solid currentcolor;
  border-bottom: 1px solid currentcolor;
  content: "";
  transform: rotate(45deg) translateY(-0.12rem);
  transition: transform var(--transition);
}

.info-item.is-info-open .info-trigger__indicator::after {
  transform: rotate(225deg) translate(-0.08rem, -0.08rem);
}

.info-panel {
  position: relative;
  z-index: 80;
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    grid-template-rows 280ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 200ms ease,
    visibility 0s linear 280ms;
}

.info-panel__inner {
  min-height: 0;
  overflow: hidden;
}

.info-panel__content {
  padding: 1rem;
  border: 1px solid rgb(245 217 120 / 58%);
  border-radius: clamp(0.875rem, 2vw, 1rem);
  background:
    radial-gradient(circle at 16% 0%, rgb(212 175 55 / 11%), transparent 14rem),
    rgb(4 13 28 / 98%);
  box-shadow:
    inset 0 0 1.6rem rgb(212 175 55 / 7%),
    0 1rem 2.4rem rgb(0 0 0 / 42%),
    0 0 1.25rem rgb(212 175 55 / 14%);
  color: #c8cdd5;
  font-size: clamp(0.94rem, 1.4vw, 1rem);
  line-height: 1.65;
  text-align: left;
  user-select: text;
}

.info-panel__sections {
  display: grid;
  gap: 0.9rem;
}

.info-panel__sections section + section {
  padding-top: 0.85rem;
  border-top: 1px solid rgb(212 175 55 / 18%);
}

.info-panel__sections h3,
.info-panel__steps strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #f0d98e;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.info-panel__sections p,
.info-panel__steps span {
  color: #c8cdd5;
  font-size: 0.94rem;
  line-height: 1.65;
}

.info-panel__legal {
  margin-top: 1rem;
  padding: 0.72rem 0.8rem;
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgb(212 175 55 / 7%);
  color: #e2cf96;
  font-size: 0.78rem;
  line-height: 1.55;
}

.info-panel__steps {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: info-step;
}

.info-panel__steps li {
  position: relative;
  padding-left: 2rem;
  counter-increment: info-step;
}

.info-panel__steps li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  display: grid;
  width: 1.35rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(212 175 55 / 44%);
  border-radius: 50%;
  color: var(--gold-light);
  content: counter(info-step);
  font-size: 0.62rem;
}

.info-item.is-info-open {
  z-index: 70;
}

.info-item.is-info-open > .info-panel {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.info-item.is-info-open .icon-medallion,
.info-item.is-info-open .contact-item__icon,
.info-item.is-info-open .reason-item__trigger > img {
  transform: scale(1.06);
}

/* Hero enrichment and composition */

.hero {
  min-height: clamp(51rem, 70vw, 55rem);
}

.hero__copy {
  width: min(43%, 39rem);
}

.hero__rule {
  width: min(100%, 31rem);
  margin-inline: 0;
}

.hero__statement {
  width: min(100%, 31rem);
  margin-inline: 0;
  padding-inline: 0;
  text-align: left;
}

.hero__description {
  width: min(100%, 34rem);
  margin-top: 1.25rem;
  color: #d7d5cf;
  font-size: clamp(0.88rem, 1.25vw, 0.98rem);
  line-height: 1.7;
  text-shadow: 0 2px 10px rgb(0 0 0 / 92%);
}

.hero__legal-note {
  width: min(100%, 34rem);
  margin-top: 0.75rem;
  padding-left: 0.8rem;
  border-left: 2px solid rgb(212 175 55 / 66%);
  color: #aaaead;
  font-size: clamp(0.75rem, 1vw, 0.82rem);
  line-height: 1.6;
}

.hero__principles {
  width: min(100%, 34rem);
  margin-top: 0.9rem;
}

.hero__info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgb(212 175 55 / 40%);
  border-radius: var(--radius-sm);
  background: rgb(3 12 25 / 72%);
  color: #f0dd9f;
  font-size: 0.78rem;
  font-weight: 650;
  text-align: left;
  backdrop-filter: blur(8px);
  transition:
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.hero__info-link:hover,
.hero__info-link:focus-visible,
.hero__principles.is-info-open .hero__info-link {
  border-color: rgb(245 217 120 / 72%);
  background: rgb(10 24 43 / 90%);
  box-shadow: 0 0 1rem rgb(212 175 55 / 17%);
}

.info-panel--hero {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(26rem, calc(100vw - 2rem));
  max-height: min(80vh, 44rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translate(-50%, -48%);
}

.hero__principles.is-info-open > .info-panel--hero {
  transform: translate(-50%, -50%);
}


.hero__location {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.hero__location-trigger {
  display: flex;
  width: 100%;
  min-height: 6rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.35rem;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  text-align: center;
}

.hero__location-trigger > img {
  width: clamp(2.65rem, 3.4vw, 3.25rem);
  height: auto;
  flex: 0 0 auto;
  filter:
    brightness(0) saturate(100%) invert(83%) sepia(60%) saturate(513%) hue-rotate(356deg) brightness(103%) contrast(95%)
    drop-shadow(0 0 0.7rem rgb(245 217 120 / 55%));
}

.hero__location-trigger > span:not(.hero__location-more) {
  display: grid;
  gap: 0.18rem;
}

.hero__location-more {
  position: absolute;
  right: 0.8rem;
  bottom: 0.35rem;
  display: block;
  color: #cfb76f;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__location.is-info-open {
  border-color: var(--gold-light);
  box-shadow:
    inset 0 0 1.6rem rgb(212 175 55 / 12%),
    0 0 1.8rem rgb(212 175 55 / 30%);
}

.hero__location > .info-panel--popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  left: auto;
  width: min(25rem, calc(100vw - 2rem));
}

/* Trust information cards */

.trust-strip__panel {
  overflow: visible;
}

.trust-item {
  display: block;
  min-height: 7rem;
  padding: 0;
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.trust-item h2 {
  max-width: none;
  margin: 0;
  font: inherit;
}

.trust-item__trigger {
  display: flex;
  width: 100%;
  min-height: 7rem;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem;
  background: transparent;
  color: inherit;
  text-align: left;
}

.trust-item__copy {
  display: grid;
  min-width: 0;
  gap: 0.3rem;
}

.trust-item__title {
  max-width: 11rem;
  color: #f1eee5;
  font-size: clamp(0.82rem, 2.5vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
}

.trust-item.is-info-open {
  background: rgb(212 175 55 / 7%);
  box-shadow: inset 0 0 1.5rem rgb(212 175 55 / 8%);
}

/* Work process */

.process {
  background:
    radial-gradient(circle at 12% 30%, rgb(18 47 77 / 22%), transparent 25rem),
    linear-gradient(180deg, var(--background), var(--background-soft), var(--background));
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  list-style: none;
}

.process-step {
  align-self: start;
  border: 1px solid rgb(212 175 55 / 28%);
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  box-shadow: inset 0 0 1.5rem rgb(212 175 55 / 4%);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.process-step__trigger {
  display: grid;
  width: 100%;
  min-height: 9.25rem;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  gap: 0.25rem 0.9rem;
  padding: 1.15rem;
  background: transparent;
  text-align: left;
}

.process-step__number {
  grid-row: 1 / 4;
  color: rgb(245 217 120 / 42%);
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.process-step__title {
  color: #efdca3;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.process-step__summary {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.process-step.is-info-open {
  border-color: rgb(245 217 120 / 72%);
  box-shadow:
    inset 0 0 1.8rem rgb(212 175 55 / 9%),
    0 0 1.2rem rgb(212 175 55 / 16%);
}

@media (hover: hover) {
  .process-step:hover {
    border-color: rgb(245 217 120 / 58%);
    transform: translateY(-2px);
  }
}

/* Service limits */

.service-limits {
  background:
    radial-gradient(circle at 88% 20%, rgb(90 55 12 / 13%), transparent 26rem),
    var(--background);
}

.limits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  list-style: none;
}

.limits__grid li {
  display: flex;
  min-height: 7.3rem;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgb(212 175 55 / 24%);
  border-radius: var(--radius-md);
  background: rgb(4 13 28 / 72%);
}

.limits__grid li > span {
  flex: 0 0 auto;
  color: rgb(245 217 120 / 42%);
  font-family: var(--font-display);
  font-size: 1rem;
}

.limits__grid h3 {
  color: #ebd799;
  font-size: 0.88rem;
  line-height: 1.4;
}

.limits__grid p {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.legal-callout {
  width: min(100%, 62rem);
  margin: 1.4rem auto 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgb(212 175 55 / 34%);
  border-left-width: 3px;
  border-radius: var(--radius-sm);
  background: rgb(212 175 55 / 6%);
  color: #d6d0c1;
  font-size: 0.84rem;
  line-height: 1.7;
}

/* Reasons with details */

.reasons__panel {
  overflow: visible;
}

.reason-item {
  display: block;
  min-height: 9.5rem;
  padding: 0;
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.reason-item h3 {
  max-width: none;
  margin: 0;
  font: inherit;
}

.reason-item__trigger {
  display: grid;
  width: 100%;
  min-height: 9.5rem;
  place-items: center;
  align-content: center;
  gap: 0.65rem;
  padding: 1rem 0.75rem;
  background: transparent;
  text-align: center;
}

.reason-item__trigger > img {
  width: 2.55rem;
  filter: brightness(0) saturate(100%) invert(83%) sepia(60%) saturate(513%) hue-rotate(356deg) brightness(103%) contrast(95%);
  transition: transform var(--transition);
}

.reason-item__title {
  max-width: 11rem;
  color: #eee9dd;
  font-size: clamp(0.78rem, 2vw, 0.94rem);
  font-weight: 600;
  line-height: 1.5;
}

.reason-item.is-info-open {
  background: rgb(212 175 55 / 7%);
  box-shadow: inset 0 0 1.5rem rgb(212 175 55 / 8%);
}

/* FAQ */

.faq {
  background:
    radial-gradient(circle at 50% 0%, rgb(17 43 71 / 20%), transparent 30rem),
    var(--background);
}

.faq__container {
  max-width: 72rem;
}

.faq__list {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgb(212 175 55 / 28%);
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.faq-item h3 {
  margin: 0;
  font: inherit;
}

.faq-item__trigger {
  display: flex;
  width: 100%;
  min-height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: transparent;
  color: #eee8d9;
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  font-weight: 650;
  line-height: 1.45;
  text-align: left;
}

.faq-item__toggle,
.contact-item__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 1.65rem;
  aspect-ratio: 1;
  border: 1px solid rgb(212 175 55 / 45%);
  border-radius: 50%;
}

.faq-item__toggle::before,
.faq-item__toggle::after,
.contact-item__toggle::before,
.contact-item__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-item__toggle::after,
.contact-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition:
    grid-template-rows 280ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 200ms ease,
    visibility 0s linear 280ms;
}

.faq-item__panel-inner {
  min-height: 0;
  overflow: hidden;
  color: #c5c9d0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-item__panel-inner p {
  margin: 0 1.1rem;
  padding: 1rem 0 1.2rem;
  border-top: 1px solid rgb(212 175 55 / 20%);
}

.faq-item.is-open {
  border-color: rgb(245 217 120 / 66%);
  box-shadow:
    inset 0 0 1.6rem rgb(212 175 55 / 7%),
    0 0 1rem rgb(212 175 55 / 12%);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

/* Contact channels */

.contact-strip__panel {
  grid-template-columns: minmax(0, 1fr);
  overflow: visible;
}

.contact-item {
  display: grid;
  min-height: 8.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.contact-item__main {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 1rem;
}

.contact-item__main > div {
  min-width: 0;
}

.contact-item__main small {
  display: block;
  margin-top: 0.25rem;
  color: #9299a3;
  font-size: 0.69rem;
}

.contact-item__info {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #d9c27e;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-item__info > span:first-child {
  display: none;
}

.contact-item .contact-item__toggle {
  display: block;
  margin: 0;
  color: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.contact-item.is-info-open {
  background: rgb(212 175 55 / 6%);
  box-shadow: inset 0 0 1.4rem rgb(212 175 55 / 7%);
}

/* Expanded footer */

.site-footer {
  overflow: visible;
  padding-block: 2.8rem 1.5rem;
}

.site-footer__description {
  width: min(100%, 42rem);
  margin-top: 1rem;
  color: #aeb3bb;
  font-size: 0.86rem;
  line-height: 1.7;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.25rem;
  margin-top: 1.35rem;
}

.site-footer__nav a {
  min-height: 2.75rem;
  align-content: center;
  color: #d9d9d6;
  font-size: 0.76rem;
  transition: color var(--transition);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--gold-light);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  list-style: none;
}

.site-footer__legal-trigger {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgb(212 175 55 / 24%);
  border-radius: var(--radius-sm);
  background: rgb(4 13 28 / 54%);
  color: #bfc2c6;
  font-size: 0.7rem;
  transition:
    border-color var(--transition),
    color var(--transition),
    background-color var(--transition);
}

.site-footer__legal-trigger:hover,
.site-footer__legal-trigger:focus-visible,
.site-footer__legal .is-info-open .site-footer__legal-trigger {
  border-color: rgb(245 217 120 / 58%);
  background: rgb(212 175 55 / 8%);
  color: var(--gold-light);
}

.site-footer__motto {
  margin-top: 1.25rem;
}

/* Responsive interaction layouts */

@media (min-width: 36rem) {
  .process__grid,
  .limits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .reason-item:nth-child(n) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(212 175 55 / 20%);
  }

  .reason-item:nth-child(odd) {
    border-right: 1px solid rgb(212 175 55 / 28%);
  }

  .reason-item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (min-width: 48rem) {
  .contact-strip__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-item:nth-child(n) {
    border-top: 0;
    border-left: 0;
  }

  .contact-item:nth-child(odd) {
    border-right: 1px solid rgb(212 175 55 / 35%);
  }

  .contact-item:nth-child(n + 3) {
    border-top: 1px solid rgb(212 175 55 / 35%);
  }

  .limits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 56rem) {
  .info-panel:not(.info-panel--hero) {
    position: absolute;
    top: calc(100% + 0.72rem);
    left: 0;
    width: min(25rem, calc(100vw - 2rem));
    transform: translate(var(--info-shift, 0), -0.35rem);
  }

  .info-item.is-info-open > .info-panel:not(.info-panel--hero) {
    transform: translate(var(--info-shift, 0), 0);
  }

  .info-panel--above:not(.info-panel--hero) {
    top: auto;
    bottom: calc(100% + 0.72rem);
  }

  .hero__location > .info-panel--popover {
    top: auto;
    right: 0;
    bottom: calc(100% + 0.75rem);
    left: auto;
  }

  .trust-strip__panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-item:nth-child(n) {
    border-right: 0;
    border-bottom: 0;
  }

  .trust-item:not(:last-child) {
    border-right: 1px solid rgb(212 175 55 / 33%);
  }

  .process__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reasons__panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .reason-item:nth-child(n) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 0;
  }

  .reason-item:not(:last-child) {
    border-right: 1px solid rgb(212 175 55 / 28%);
  }
}

@media (max-width: 55.999rem) {
  .hero {
    min-height: 64rem;
  }

  .hero__copy {
    top: 3.5rem;
    width: min(90%, 38rem);
  }

  .hero__rule,
  .hero__statement,
  .hero__description,
  .hero__legal-note,
  .hero__principles {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__statement,
  .hero__description,
  .hero__legal-note {
    text-align: center;
  }

  .hero__legal-note {
    padding: 0.65rem 0.75rem;
    border-top: 1px solid rgb(212 175 55 / 35%);
    border-left: 0;
  }

  .hero__info-link {
    margin-inline: auto;
  }

  .hero__ankara-wrap {
    bottom: 5.5rem;
  }

  .info-panel:not(.info-panel--hero, .info-panel--popover) {
    margin-top: 0;
  }

  .info-panel__content {
    margin: 0.65rem;
  }

  .contact-item,
  .trust-item,
  .reason-item,
  .process-step {
    overflow: visible;
  }

  .contact-item > .info-panel,
  .trust-item > .info-panel,
  .reason-item > .info-panel,
  .process-step > .info-panel {
    grid-column: 1 / -1;
  }

  .site-footer__legal {
    display: grid;
    width: min(100%, 32rem);
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__legal-trigger {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 35.999rem) {
  .hero {
    min-height: 62rem;
  }

  .hero__copy {
    top: 2.6rem;
  }

  .hero__description {
    font-size: 0.8rem;
    line-height: 1.58;
  }

  .hero__legal-note {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .hero__info-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero__ankara-wrap {
    bottom: 5.1rem;
  }

  .hero__location-trigger {
    min-height: 4.8rem;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
  }

  .hero__location-trigger > img {
    width: clamp(2rem, 9vw, 2.4rem);
  }

  .trust-item__trigger {
    min-height: 5.5rem;
    padding: 0.9rem 1rem;
  }

  .process-step__trigger {
    min-height: 8rem;
  }

  .reason-item__trigger {
    min-height: 7.5rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .contact-item__main {
    align-items: flex-start;
  }

  .contact-item__icon {
    width: 3.1rem;
  }

  .info-panel__content {
    padding: 0.9rem;
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .info-panel,
  .faq-item__panel {
    transition: none;
  }
}
/* ================================================================
   Hero media group and viewport-safe information layer
   ================================================================ */

:root {
  --z-card-active: 10;
  --z-hero-media: 5;
  --z-hero-visual: 20;
  --z-hero-location: 25;
  --z-header: 1000;
  --z-popover: 4000;
  --z-skip-link: 5000;
}

.site-header {
  z-index: var(--z-header);
}

.skip-link {
  z-index: var(--z-skip-link);
}

.info-item.is-info-open {
  z-index: var(--z-card-active);
}

.hero__media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: var(--z-hero-media);
  width: min(58%, 52rem);
  height: 100%;
  pointer-events: none;
}

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

.hero__detective {
  position: absolute;
  right: var(--detective-right);
  left: auto;
  bottom: 0;
  z-index: 15;
  display: block;
  width: auto;
  max-width: none;
  height: clamp(36rem, 61vw, 55rem);
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 1;
  filter: brightness(1.3) contrast(1.08) saturate(1.03) drop-shadow(-0.65rem 0 1.35rem rgb(82 137 184 / 26%));
  pointer-events: none;
}

.hero__media .hero__ankara-wrap {
  z-index: var(--z-hero-visual);
}

.hero__media .hero__location {
  position: absolute;
  right: clamp(1rem, 4%, 2.5rem);
  bottom: clamp(1.75rem, 6%, 3.25rem);
  z-index: var(--z-hero-location);
  width: min(27rem, 90%);
  pointer-events: auto;
}

#popover-layer {
  position: fixed;
  inset: 0;
  z-index: var(--z-popover);
  pointer-events: none;
}

#popover-layer > .info-panel.is-layered {
  position: fixed;
  inset: auto;
  display: grid;
  width: min(23.75rem, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  max-height: min(70vh, 32.5rem);
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 180ms ease;
}

#popover-layer > .info-panel.is-layered > .info-panel__inner {
  overflow: visible;
}

#popover-layer > .info-panel.is-layered .info-panel__content {
  max-height: min(70vh, 32.5rem);
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--gold-dark) rgb(2 7 17 / 80%);
}

html:not(.info-layer-enabled) .info-panel,
html:not(.info-layer-enabled) .info-panel--hero,
html:not(.info-layer-enabled) .hero__location > .info-panel--popover {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 100%;
  max-height: none;
  margin-top: 0;
  overflow: visible;
  transform: none;
}

html:not(.info-layer-enabled) .info-item.is-info-open > .info-panel,
html:not(.info-layer-enabled) .hero__principles.is-info-open > .info-panel--hero {
  transform: none;
}

html:not(.info-layer-enabled) .info-panel__content {
  max-height: none;
  overflow: visible;
}

@media (max-width: 75rem) {
  .hero {
    --detective-right: clamp(-220px, -15vw, -70px);
    --magnifier-right: clamp(-160px, -10vw, -30px);
  }
}

@media (max-width: 55.999rem) {
  .hero {
    --detective-right: clamp(-90px, -10vw, -40px);
    --magnifier-right: clamp(0.5rem, 4vw, 3rem);

    min-height: 70rem;
  }

  .hero__inner {
    display: block;
    min-height: inherit;
  }

  .hero__copy {
    position: relative;
    top: auto;
    left: auto;
    margin-inline: auto;
    padding-top: 3.5rem;
  }

  .hero__media {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: clamp(2.25rem, 7vw, 3.5rem);
    padding-bottom: 1rem;
    pointer-events: auto;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: clamp(20rem, 58vw, 28rem);
    flex: 0 0 auto;
  }

  .hero__media .hero__ankara-wrap {
    position: absolute;
    top: auto;
    bottom: clamp(1.25rem, 5vw, 3rem);
    width: clamp(15.5rem, 48vw, 21rem);
    transform: translate(var(--magnifier-shift-x), calc(var(--magnifier-shift-y) + var(--magnifier-extra-y)));
  }

  .hero__detective {
    height: 100%;
    max-height: none;
  }

  .hero__media .hero__location {
    position: relative;
    inset: auto;
    width: min(100%, 32rem);
    flex: 0 0 auto;
  }

  .hero__location > .info-panel--popover {
    margin-top: 0.75rem;
  }
}

@media (max-width: 35.999rem) {
  .hero {
    --detective-right: clamp(-46px, -10vw, -36px);
    --magnifier-right: clamp(0.5rem, 4vw, 1rem);

    min-height: 65rem;
  }

  .hero__copy {
    padding-top: 2.6rem;
  }

  .hero__media {
    margin-top: 2rem;
  }

  .hero__visual {
    height: 20rem;
  }

  .hero__media .hero__ankara-wrap {
    bottom: 1rem;
    width: min(68vw, 17.5rem);
  }

  .hero__media .hero__location {
    width: 100%;
  }
}
