/* â”€â”€ RESET & TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Logo Renk Paleti */
  --gold: #b97a6b;
  /* Logodaki ana gÃ¼l kurusu/bakÄ±r tonu */
  --gold-lt: #d1a398;
  --ink: #324240;
  /* Logodaki isim ve unvanÄ±n koyu petrol/fÃ¼me tonu */
  --slate-lt: #4a5e5c;

  /* NÃ¶tr Tonlar ve Arka Plan */
  --ivory: #fcfaf7;
  --cream: #f2eee8;
  /* --ink:       #1a1d1d; /* Daha derin bir slate siyahÄ± */
  --white: #ffffff;

  /* OpaklÄ±k DeÄŸerleri */
  --ink-60: rgba(50, 66, 64, 0.6);
  --ink-30: rgba(50, 66, 64, 0.3);

  /* Tipografi */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Jost', system-ui, sans-serif;

  /* Border Radius & Spacing */
  --r-sm: 0.5rem;
  --r-md: 1rem;
  --r-lg: 2rem;

  /* Animasyon EÄŸrileri */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container: min(90vw, 1200px);
}

.nav-bg {
  height: 100px;
  background-color: var(--ink);
}

html {
  scroll- smooth;
  font-size: 16px;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* â”€â”€ TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section__eyebrow {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-lt);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease-out-expo);
  z-index: 0;
  opacity: 0.2;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn span,
.btn>* {
  position: relative;
  z-index: 1;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn--primary:hover {
  color: var(--slate-lt);
  border-color: var(--gold-lt);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--ghost::after {
  background: rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  color: var(--white);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* â”€â”€ REVEAL ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal-up {
  transform: translateY(3.5rem);
}

.reveal-left {
  transform: translateX(-3.5rem);
}

.reveal-right {
  transform: translateX(3.5rem);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.32s !important;
}

.delay-4 {
  transition-delay: 0.48s !important;
}

/* â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.5rem, 5vw, 3.5rem);
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.4s ease;

  width: 100%;
}

.nav.scrolled {
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-30);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav__logo {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.4s;
  z-index: 10;
}

.nav.scrolled .nav__logo {
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav.scrolled .nav__links a {
  color: var(--ink);
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out-expo);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav.scrolled .nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  padding: 0.6rem 1.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: var(--white) !important;
  transition: all 0.35s !important;
}

.nav.scrolled .nav__cta {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.nav__cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 10;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s;
}

.nav.scrolled .nav__burger span {
  background: var(--ink);
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__bg-layer--1 {
  /* Logodaki Slate renginin en derin haliyle ÅŸÄ±k bir zemin */
  background: linear-gradient(145deg, #253130 0%, #324240 60%, #2a3836 100%);
}

.hero__bg-layer--2 {
  /* Gold yerine BakÄ±r tonunda yumuÅŸak Ä±ÅŸÄ±k sÄ±zmalarÄ± */
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(185, 122, 107, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(185, 122, 107, 0.08) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero__bg-layer--3 {
  /* Grid yapÄ±sÄ±nÄ± BakÄ±r tonunda Ã§ok hafif (subtle) bir dokuya dÃ¶nÃ¼ÅŸtÃ¼rdÃ¼k */
  background-image:
    repeating-linear-gradient(90deg,
      rgba(185, 122, 107, 0.04) 0px,
      rgba(185, 122, 107, 0.04) 1px,
      transparent 1px,
      transparent 80px),
    repeating-linear-gradient(0deg,
      rgba(185, 122, 107, 0.04) 0px,
      rgba(185, 122, 107, 0.04) 1px,
      transparent 1px,
      transparent 80px);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

@keyframes heroGlow {
  from {
    opacity: 0.7;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.06);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem clamp(1.5rem, 5vw, 3rem) 4rem;
  max-width: 820px;
}

.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3.8rem, 13vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollHint 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes scrollHint {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.8;
  }
}

.hero__badge {
  position: absolute;
  bottom: 3rem;
  right: clamp(1.5rem, 5vw, 4rem);
  width: 90px;
  height: 90px;
  color: rgba(255, 255, 255, 0.45);
  z-index: 2;
  animation: rotateBadge 18s linear infinite;
}

.hero__badge-ring {
  width: 100%;
  height: 100%;
}

.hero__badge-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: var(--gold);
  animation: rotateBadge 18s linear infinite reverse;
}

@keyframes rotateBadge {
  to {
    transform: rotate(360deg);
  }
}

/* â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee {
  overflow: hidden;
  background: var(--gold);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  opacity: 0.9;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* â”€â”€ SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  max-width: var(--container);
  margin-inline: auto;
}

/* â”€â”€ ABOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
}

.about__img-placeholder {
  width: 100%;
  height: 100%;
  /* Kahverengi tonlar yerine Slate renginin derin geÃ§iÅŸleri */
  background: linear-gradient(155deg, #253130 0%, #324240 50%, #253130 100%);
  position: relative;
  overflow: hidden;
}

.about__img-overlay {
  position: absolute;
  inset: 0;
  /* Overlay rengi Slate (50, 66, 64) olarak gÃ¼ncellendi */
  background: linear-gradient(to bottom, transparent 50%, rgba(50, 66, 64, 0.6));
}

/* Decorative silhouette */
.about__img-face {
  position: absolute;
  inset: 0;
  /* Gold yerine BakÄ±r (185, 122, 107) tonlarÄ±nda aydÄ±nlatma efekti */
  background: url('../assets/noimg-p.jpg') center/cover no-repeat;
}

.about__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}

.about__credentials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cred {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cred__num {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.cred__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.about__body {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--ink-60);
}

.about__list {
  margin: 1.8rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.about__list-icon {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* â”€â”€ SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services {
  background: var(--ink);
  max-width: 100%;
  padding-inline: clamp(1.5rem, 5vw, 3.5rem);
}

.services>* {
  max-width: var(--container);
  margin-inline: auto;
}

.services__header {
  margin-bottom: 4rem;
}

.services__header .section__title {
  color: var(--white);
}

.services__header .section__eyebrow {
  color: var(--gold);
}

.services__grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  /* Ã‡izgiler iÃ§in Slate renginin Ã§ok ÅŸeffaf bir hali veya BakÄ±r tonu kullanÄ±labilir */
  background: rgba(185, 122, 107, 0.15);
  border: 1px solid rgba(185, 122, 107, 0.15);
}

.service-card {
  background: var(--ink);
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: background 0.4s;
  overflow: hidden;
}

.service-card:hover {
  /* Logodaki Slate (#324240) tonunun daha derin ve canlÄ± bir versiyonu */
  background: #3b4e4c;
}

.service-card__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-card__icon {
  transform: rotate(45deg) scale(1.1);
}

.service-card__title {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.service-card__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s, letter-spacing 0.3s;
  display: inline-block;
}

.service-card:hover .service-card__link {
  letter-spacing: 0.2em;
}

.service-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.5s var(--ease-out-expo);
}

.service-card:hover .service-card__line {
  width: 100%;
}

/* â”€â”€ RESULTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.results__header {
  margin-bottom: 3.5rem;
}

.results__note {
  font-size: 0.72rem;
  color: var(--ink-60);
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.result-card {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
}

.result-card--tall {
  grid-row: span 2;
}

.result-card--wide {
  grid-column: span 2;
}

.result-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}

.result-card--tall .result-card__inner {
  min-height: 520px;
}

.result-card--wide .result-card__inner {
  min-height: 260px;
}

.result-card__placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-out-expo);
}

.result-card__placeholder img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  /* Sets the box shape */
  object-fit: cover;
}

.result-card:hover .result-card__placeholder {
  transform: scale(1.06);
}

.result-card__placeholder--a {
  /* Slate/Petrol aÄŸÄ±rlÄ±klÄ± derin gradyan */
  background: linear-gradient(160deg, #253130 0%, #324240 40%, #1e2928 100%);
}

.result-card__placeholder--b {
  /* BakÄ±r/GÃ¼l Kurusu aÄŸÄ±rlÄ±klÄ± sÄ±cak gradyan */
  background: linear-gradient(145deg, #a66a5c 0%, #b97a6b 100%);
}

.result-card__placeholder--c {
  /* Slate ve BakÄ±r karÄ±ÅŸÄ±mÄ± soft geÃ§iÅŸ */
  background: linear-gradient(150deg, #324240 0%, #4a5e5c 100%);
}

.result-card__placeholder--d {
  /* Dramatik koyu petrol ve bakÄ±r vuruÅŸu */
  background: linear-gradient(135deg, #253130 0%, #324240 50%, #b97a6b 100%);
}

.result-card__overlay {
  position: absolute;
  inset: 0;
  /* Slate renginin (#324240) RGBA hali: 50, 66, 64 */
  background: linear-gradient(to top, rgba(50, 66, 64, 0.9) 0%, transparent 65%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.result-card:hover .result-card__overlay {
  opacity: 1;
}

.result-card__label {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* â”€â”€ STATS BAND â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-band {
  background: var(--gold);
  padding: 4rem clamp(1.5rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stats-band__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stats-band__num {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stats-band__label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.stats-band__divider {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  align-self: center;
}

/* â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials {
  background: var(--ink);
  max-width: 100%;
  padding-inline: clamp(1.5rem, 5vw, 3.5rem);
}

.testimonials__header {
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: 4rem;
}

.testimonials__header .section__title {
  color: var(--white);
}

.testimonials__slider {
  max-width: var(--container);
  margin-inline: auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.7s var(--ease-out-expo);
}

.testimonial-card {
  min-width: 100%;
  padding: 3.5rem clamp(1.5rem, 8vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.8rem;
}

.testimonial-card__quote {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.testimonial-card__author {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.testimonials__controls {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}

.testimonial-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.35s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* â”€â”€ PROCESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process__header {
  margin-bottom: 4rem;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 1rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.process-step__num {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.process-step__body h3 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.process-step__body p {
  font-size: 0.85rem;
  color: var(--ink-60);
  line-height: 1.75;
}

.process-step__connector {
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--cream));
  opacity: 0.4;
  align-self: 2.5rem;
  margin-top: 3.2rem;
  flex-shrink: 0;
  width: 100%;
}

/* â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact {
  max-width: 100%;
  background: var(--cream);
  padding-inline: clamp(1.5rem, 5vw, 3.5rem);
}

.contact__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact__body {
  font-size: 0.95rem;
  color: var(--ink-60);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.6;
}

.contact__info-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Form */
.contact__form {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 4px 40px rgba(26, 23, 20, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream);
  background: var(--ivory);
  font-family: var(--f-sans);
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-30);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field textarea {
  resize: vertical;
}

.form__note {
  font-size: 0.68rem;
  color: var(--ink-60);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  background: var(--ink);
  padding: 3.5rem clamp(1.5rem, 5vw, 3.5rem) 2rem;
}

.footer__top {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer__logo {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer__tagline {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer__nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__bottom {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.footer__bottom a:hover {
  color: var(--gold);
}

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .process-step__connector {
    display: none;
  }

  .results__grid {
    grid-template-columns: 1fr 1fr;
  }

  .result-card--tall {
    grid-row: span 1;
  }

  .result-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__media {
    max-width: 420px;
    margin-inline: auto;
  }

  .about__text {
    text-align: left;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav.scrolled {
    backdrop-filter: unset !important;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.55s var(--ease-out-expo);
    padding: 5rem 3rem;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__links a {
    color: var(--white) !important;
    font-size: 0.9rem;
  }

  .nav__links .nav__cta {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
    display: inline-flex;
    padding: 0.75rem 2rem !important;
  }

  .nav__burger {
    display: flex;
    z-index: 1003;
    top: 20px;
    position: fixed;
    right: 10px;
  }


  .nav__burger span {
    background: var(--white) !important;
  }

  .nav.scrolled .nav__burger span {
    background: var(--ink) !important;
  }

  .nav.scrolled .nav__burger.open span {
    background: var(--white) !important;
  }

  .nav__burger.open span {
    background-color: #fff !important;
  }

  .hero__badge {
    display: none;
  }

  .hero__title {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem 1.6rem;
  }

  .results__grid {
    grid-template-columns: 1fr;
  }

  .result-card--tall,
  .result-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-band {
    gap: 2.5rem;
  }

  .stats-band__divider {
    display: none;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .btn {
    font-size: 0.7rem;
    padding: 0.8rem 1.8rem;
  }
}

@media (max-width: 400px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--ghost {
    width: 100%;
    justify-content: center;
  }
}

/* â”€â”€ PARALLAX LAYER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[data-parallax] {
  will-change: transform;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUB-PAGE SHARED
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Nav active link */
.nav__link--active {
  color: var(--gold) !important;
}

/* Nav on sub-pages is always scrolled/visible */
.nav.scrolled .nav__links a {
  color: var(--ink);
}

/* â”€â”€ PAGE HERO (blog, about shared) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: var(--ink);
  padding: clamp(7rem, 16vw, 11rem) clamp(1.5rem, 5vw, 3.5rem) clamp(4rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 60%, rgba(185, 122, 107, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
}

.page-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero__sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.8;
}

/* â”€â”€ BLOG TAG â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-tag {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.2rem;
}

.blog-tag--sm {
  font-size: 0.55rem;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.4rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ FEATURED POST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-featured {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  border: 1px solid var(--cream);
  padding: clamp(2rem, 4vw, 3.5rem);
  transition: border-color 0.4s;
}

.blog-featured__card:hover {
  border-color: var(--gold);
}

.blog-featured__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-featured__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #253130 0%, #324240 50%, #b97a6b 100%);
  transition: transform 0.7s var(--ease-out-expo);
}

.blog-featured__card:hover .blog-featured__img-placeholder {
  transform: scale(1.04);
}

.blog-featured__title {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.blog-featured__title em {
  font-style: italic;
  color: var(--gold);
}

.blog-featured__excerpt {
  font-size: 0.9rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-featured__meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.blog-meta__date,
.blog-meta__read {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ink-60);
  text-transform: uppercase;
}

.blog-featured__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s;
  display: inline-block;
}

.blog-featured__card:hover .blog-featured__link {
  letter-spacing: 0.22em;
}

/* â”€â”€ FILTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.blog-filter__btn {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--cream);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.blog-filter__btn:hover,
.blog-filter__btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* â”€â”€ BLOG GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.blog-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.blog-card__img-wrap .blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin-bottom: 0;
  background: var(--ink);
  border-color: transparent;
  z-index: 1;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease-out-expo);
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

.blog-card__img--a {
  background: linear-gradient(145deg, #253130 0%, #324240 100%);
}

.blog-card__img--b {
  background: linear-gradient(145deg, #a66a5c 0%, #b97a6b 100%);
}

.blog-card__img--c {
  background: linear-gradient(145deg, #324240 0%, #4a5e5c 100%);
}

.blog-card__img--d {
  background: linear-gradient(135deg, #253130 0%, #b97a6b 100%);
}

.blog-card__img--e {
  background: linear-gradient(145deg, #3b4e4c 0%, #253130 100%);
}

.blog-card__img--f {
  background: linear-gradient(145deg, #b97a6b 0%, #324240 100%);
}

.blog-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.blog-card__title {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.blog-card__title a {
  transition: color 0.3s;
}

.blog-card__title a:hover {
  color: var(--gold);
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--ink-60);
  line-height: 1.75;
}

.blog-load-more {
  text-align: center;
  margin-top: 3.5rem;
}

.btn--ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-30);
}

.btn--ink::after {
  background: var(--ink);
  opacity: 0.06;
}

.btn--ink:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG DETAIL PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ ARTICLE HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-hero {
  background: var(--ink);
  padding: clamp(6rem, 12vw, 9rem) clamp(1.5rem, 5vw, 3.5rem) 0;
}

.article-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-bottom: 3rem;
}

.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.5rem;
}

.article-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.article-hero__breadcrumb a:hover {
  color: var(--gold);
}

.article-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 820px;
}

.article-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.article-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-author__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #324240, #b97a6b);
  flex-shrink: 0;
}

.article-author__name {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.article-author__role {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.article-hero__info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
}

.article-hero__dot {
  color: var(--gold);
}

.article-hero__cover {
  max-width: var(--container);
  margin-inline: auto;
  aspect-ratio: 21/8;
  overflow: hidden;
}

.article-hero__cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #253130 0%, #324240 50%, #4a5e5c 100%);
}

/* â”€â”€ ARTICLE LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* â”€â”€ ARTICLE CONTENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-content {
  min-width: 0;
}

.article-lead {
  font-family: var(--f-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--cream);
}

.article-content p {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.article-content h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}

.article-content h3 {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin: 1.8rem 0 0.6rem;
}

.article-blockquote {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 2rem;
  margin: 2.5rem 0;
  line-height: 1.6;
}

.article-figure {
  margin: 2.5rem 0;
}

.article-figure__placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #253130 0%, #324240 60%, #b97a6b 100%);
  margin-bottom: 0.8rem;
}

.article-figure figcaption {
  font-size: 0.72rem;
  color: var(--ink-60);
  letter-spacing: 0.04em;
  text-align: center;
  font-style: italic;
}

.article-cta-box {
  background: var(--cream);
  padding: 2.5rem;
  margin-top: 3rem;
  border-left: 3px solid var(--gold);
}

.article-cta-box h3 {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  margin: 0.3rem 0 0.8rem;
}

.article-cta-box p {
  font-size: 0.88rem;
  color: var(--ink-60);
  margin-bottom: 1.5rem;
}

/* â”€â”€ SIDEBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.article-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  border: 1px solid var(--cream);
  padding: 1.8rem;
}

.sidebar-card__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.sidebar-author {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.sidebar-author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #324240, #b97a6b);
  flex-shrink: 0;
}

.sidebar-author__name {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.sidebar-author__bio {
  font-size: 0.78rem;
  color: var(--ink-60);
  line-height: 1.7;
}

.sidebar-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s;
  display: inline-block;
}

.sidebar-link:hover {
  letter-spacing: 0.18em;
}

.sidebar-procedure {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--ivory);
  transition: background 0.3s;
}

.sidebar-procedure:hover {
  background: var(--cream);
}

.sidebar-procedure__icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sidebar-procedure__title {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}

.sidebar-procedure__sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.sidebar-procedure__arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-posts li+li {
  border-top: 1px solid var(--cream);
}

.sidebar-posts li a {
  display: block;
  padding: 1rem 0;
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.5;
  transition: color 0.3s;
}

.sidebar-posts li a:hover {
  color: var(--gold);
}

.sidebar-posts__date {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-60);
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* â”€â”€ RELATED POSTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.related-posts {
  background: var(--cream);
  max-width: 100%;
  padding-inline: clamp(1.5rem, 5vw, 3.5rem);
}

.related-posts>* {
  max-width: var(--container);
  margin-inline: auto;
}

.related-posts__header {
  margin-bottom: 3rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ ABOUT INTRO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-intro__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
}

.about-intro__img {
  width: 100%;
  height: 100%;
  background: url('../assets/noimg-p.jpg') center/cover no-repeat,
    linear-gradient(155deg, #253130 0%, #324240 50%, #253130 100%);
  object-fit: cover;
  object-position: top;
}

.about-intro__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}

.about-intro__body {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-intro__credentials {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--cream);
}

/* â”€â”€ PHILOSOPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.philosophy {
  background: var(--ink);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
}

.philosophy__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.philosophy__text {
  margin-bottom: 4rem;
}

.philosophy__text .section__title {
  color: var(--white);
}

.philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(185, 122, 107, 0.15);
  border: 1px solid rgba(185, 122, 107, 0.15);
}

.pillar {
  background: var(--ink);
  padding: 2.5rem 2rem;
  transition: background 0.4s;
}

.pillar:hover {
  background: #3b4e4c;
}

.pillar__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
  transition: transform 0.4s var(--ease-out-expo);
}

.pillar:hover .pillar__icon {
  transform: rotate(45deg) scale(1.1);
}

.pillar__title {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.pillar__body {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
}

/* â”€â”€ TIMELINE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.timeline__header {
  margin-bottom: 4rem;
}

.timeline__track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 40px 1fr;
  align-items: start;
  gap: 0 1.5rem;
}

.timeline-item+.timeline-item {
  margin-top: 0;
}

.timeline-item__year {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  padding-top: 0.1rem;
  text-align: right;
}

.timeline-item__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.timeline-item__connector::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.timeline-item__connector::after {
  content: '';
  width: 1px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, var(--gold), var(--cream));
  opacity: 0.35;
}

.timeline-item__connector--last::after {
  display: none;
}

.timeline-item__content {
  padding-bottom: 2.5rem;
}

.timeline-item__content h3 {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.timeline-item__content p {
  font-size: 0.87rem;
  color: var(--ink-60);
  line-height: 1.75;
}

/* â”€â”€ MEMBERSHIPS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.memberships {
  background: var(--cream);
  padding-inline: 0;
}

.memberships__header {
  margin-bottom: 3rem;
}

.memberships__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(50, 66, 64, 0.12);
  border: 1px solid rgba(50, 66, 64, 0.12);
}

.membership-item {
  background: var(--cream);
  padding: 2rem 1.8rem;
  transition: background 0.3s;
}

.membership-item:hover {
  background: var(--white);
}

.membership-item__abbr {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.membership-item p {
  font-size: 0.82rem;
  color: var(--ink-60);
  line-height: 1.6;
}

/* â”€â”€ ABOUT CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-cta {
  background: var(--ink);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}

.about-cta__inner {
  max-width: 680px;
  margin-inline: auto;
}

.about-cta__inner .section__title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-cta__body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE DETAIL PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ SERVICE HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-hero {
  position: relative;
  background: var(--ink);
  padding: clamp(7rem, 15vw, 10rem) clamp(1.5rem, 5vw, 3.5rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(185, 122, 107, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(185, 122, 107, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.service-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.service-hero__sub {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.service-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 200px;
}

.service-stat {
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-stat__num {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.service-stat__label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.service-stat__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* â”€â”€ OVERVIEW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.svc-overview__body {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.svc-overview__media {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
}

.svc-overview__img {
  width: 100%;
  height: 100%;
}

.svc-overview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.svc-overview__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  height: 55%;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}

/* â”€â”€ CANDIDATES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-candidates {
  background: var(--cream);
  padding-inline: 0;
}

.svc-candidates__header {
  margin-bottom: 3rem;
}

.candidates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.candidate-card {
  background: var(--white);
  padding: 1.8rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid transparent;
  transition: border-color 0.35s;
}

.candidate-card:hover {
  border-color: var(--gold);
}

.candidate-card__icon {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.candidate-card p {
  font-size: 0.87rem;
  color: var(--ink-60);
  line-height: 1.7;
}

/* â”€â”€ PROCEDURE STEPS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-process__header {
  margin-bottom: 3.5rem;
}

.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.svc-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-top: 2px solid var(--cream);
  transition: border-color 0.35s;
}

.svc-step:hover {
  border-color: var(--gold);
}

.svc-step__num {
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.svc-step__content h3 {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.svc-step__content p {
  font-size: 0.83rem;
  color: var(--ink-60);
  line-height: 1.75;
}

/* â”€â”€ RECOVERY TIMELINE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.recovery-timeline {
  background: var(--ink);
  padding-inline: 0;
}

.recovery-timeline__inner {
  max-width: var(--container);
  margin-inline: auto;
}

.recovery-timeline__header {
  margin-bottom: 3.5rem;
}

.recovery-timeline__header .section__title {
  color: var(--white);
}

.recovery-weeks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.recovery-week {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.recovery-week__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.recovery-week__bar {
  height: 3px;
  margin-bottom: 1.2rem;
  border-radius: 2px;
}

.recovery-week__bar--1 {
  background: var(--gold);
  width: 100%;
}

.recovery-week__bar--2 {
  background: var(--gold);
  width: 75%;
  opacity: 0.8;
}

.recovery-week__bar--3 {
  background: var(--gold);
  width: 45%;
  opacity: 0.6;
}

.recovery-week__bar--4 {
  background: var(--gold);
  width: 15%;
  opacity: 0.4;
}

.recovery-week p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-faq__header {
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--cream);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  transition: color 0.3s;
  cursor: pointer;
}

.faq-item__q:hover {
  color: var(--gold);
}

.faq-item__icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo);
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.4s;
}

.faq-item.open .faq-item__a {
  max-height: 400px;
  padding-bottom: 1.4rem;
}

.faq-item__a p {
  font-size: 0.88rem;
  color: var(--ink-60);
  line-height: 1.85;
}

/* â”€â”€ RELATED SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.related-services {
  background: var(--cream);
  padding-inline: 0;
}

.related-services__header {
  margin-bottom: 3rem;
}

.related-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-service-card {
  background: var(--white);
  padding: 2.2rem;
  display: block;
  border: 1px solid transparent;
  transition: border-color 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
}

.related-service-card:hover {
  border-color: var(--gold);
}

.related-service-card__icon {
  font-size: 1.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
  transition: transform 0.4s var(--ease-out-expo);
}

.related-service-card:hover .related-service-card__icon {
  transform: rotate(45deg) scale(1.1);
}

.related-service-card h3 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.related-service-card p {
  font-size: 0.83rem;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* â”€â”€ SERVICE CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-cta {
  background: var(--gold);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}

.svc-cta__inner {
  max-width: 640px;
  margin-inline: auto;
}

.svc-cta__inner .section__eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.svc-cta__inner .section__title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.svc-cta__inner .section__title em {
  color: var(--ink);
}

.svc-cta__body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.svc-cta .btn--primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.svc-cta .btn--primary:hover {
  color: var(--white);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUB-PAGE RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 1024px) {
  .philosophy__pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .memberships__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .recovery-weeks {
    grid-template-columns: repeat(2, 1fr);
  }

  .candidates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-hero__inner {
    grid-template-columns: 1fr;
  }

  .service-hero__stats {
    flex-direction: row;
    min-width: unset;
    width: 100%;
  }

  .service-stat__divider {
    width: 1px;
    height: auto;
    align-self: stretch;
  }

  .svc-overview {
    grid-template-columns: 1fr;
  }

  .svc-overview__media {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 900px) {
  .blog-featured__card {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro__img-wrap {
    aspect-ratio: 16/9;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .related-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .blog-grid,
  .blog-grid--3 {
    grid-template-columns: 1fr;
  }

  .philosophy__pillars {
    grid-template-columns: 1fr;
  }

  .memberships__grid {
    grid-template-columns: 1fr;
  }

  .svc-steps {
    grid-template-columns: 1fr;
  }

  .recovery-weeks {
    grid-template-columns: 1fr;
  }

  .candidates-grid {
    grid-template-columns: 1fr;
  }

  .related-services__grid {
    grid-template-columns: 1fr;
  }

  .service-hero__stats {
    flex-direction: column;
  }

  .service-stat__divider {
    width: 100%;
    height: 1px;
  }

  .timeline-item {
    grid-template-columns: 60px 30px 1fr;
    gap: 0 0.8rem;
  }

  .article-hero__cover {
    aspect-ratio: 16/9;
  }

  .article-hero__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-filter {
    gap: 0.4rem;
  }
}


/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s
}

.whatsapp-btn:hover {
  transform: scale(1.1)
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white
}

/* â”€â”€ Dropdown Navigation â€” Elegance â”€â”€ */
.nav__links li.has-dropdown {
  position: relative;
}

.nav-chevron {
  font-size: 0.6em;
  opacity: 0.45;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.22s ease;
  vertical-align: middle;
}

.has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Invisible hover bridge â€” closes the gap so mouse never leaves the hover zone */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 16px;
  background: transparent;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 8px;
  min-width: 210px;
  z-index: 9000;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  /* delay on hide gives mouse time to reach the panel */
  transition: opacity 0.18s ease 0.1s, transform 0.18s ease 0.1s;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  /* no delay on show */
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
}

.nav-dropdown--mega {
  min-width: 540px;
  display: flex;
  gap: 0;
  padding: 20px 16px;
}

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown>li>a,
.mega-group ul li a {
  display: block;
  padding: 7px 12px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown>li>a:hover,
.mega-group ul li a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #000;
}

.mega-group {
  flex: 1;
  padding: 0 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-group:last-child {
  border-right: none;
}

.mega-group-label {
  display: block;
  font-size: 0.57rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  padding: 0 12px;
}

.mega-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* â”€â”€ Mobile accordion nav â”€â”€ */
@media (max-width: 768px) {

  /* Kill the hover bridge on mobile */
  .has-dropdown::after {
    display: none;
  }

  /* Parent trigger row gets a + icon */
  .nav-parent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-parent .nav-chevron {
    margin-left: auto;
    padding-left: 12px;
    font-size: 0.9em;
    opacity: 0.45;
    transition: transform 0.28s ease;
  }

  .has-dropdown.acc-open>a .nav-chevron {
    transform: rotate(180deg);
    opacity: 0.75;
  }

  /* Panels collapsed by default */
  .has-dropdown .nav-dropdown,
  .has-dropdown .nav-dropdown--mega {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 14px;
    min-width: 0;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Open state */
  .has-dropdown.acc-open>.nav-dropdown,
  .has-dropdown.acc-open>.nav-dropdown--mega {
    max-height: 700px;
  }

  .nav-dropdown--mega {
    flex-direction: column;
  }

  .mega-group {
    border-right: none;
    padding: 0;
    margin-bottom: 4px;
  }

  .mega-group-label {
    padding: 10px 12px 4px;
    color: rgba(0, 0, 0, 0.35);
  }

  .nav-dropdown>li>a,
  .mega-group ul li a {
    white-space: normal;
  }
}

/* Elegance â€” Certification Section */
.cert-section.section {
  background: #faf9f7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cert-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.cert-logos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  margin: 48px 0 40px;
  flex-wrap: wrap;
}

.cert-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cert-logo-wrap {
  width: 140px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cert-logo-wrap:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cert-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.cert-logo-wrap:hover img {
  opacity: 1;
}

.cert-logo-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
}

.cert-compliance {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.8rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.38);
  font-style: italic;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 32px;
}

@media (max-width: 640px) {
  .cert-logos {
    gap: 28px;
  }

  .cert-logo-wrap {
    width: 108px;
    height: 80px;
  }
}

/* Elegance â€” Consultation Form Additions */
.consult-group {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.consult-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.consult-group-title {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.32);
  margin-bottom: 18px;
}

.consult-radios {
  display: flex;
  gap: 28px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.consult-radio {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.65);
}

.consult-radio input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 32px 20px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  text-align: center;
  gap: 6px;
  color: rgba(0, 0, 0, 0.45);
}

.file-drop:hover {
  border-color: rgba(0, 0, 0, 0.28);
  background: rgba(0, 0, 0, 0.02);
}

.file-drop-icon {
  font-size: 1.4rem;
  opacity: 0.45;
}

.file-drop-text {
  font-size: 0.88rem;
}

.file-drop-sub {
  font-size: 0.72rem;
  opacity: 0.5;
}

.field-optional {
  font-size: 0.72rem;
  opacity: 0.45;
  font-weight: 400;
}

.form-compliance-note {
  font-size: 0.7rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.32);
  margin-top: 20px;
  text-align: center;
  font-style: italic;
}

/* CLINIC SECTION STYLES */
.clinic {
  padding: 80px 0;
  overflow: hidden;
}

.clinic__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* MasaÃ¼stÃ¼nde yan yana */
  gap: 60px;
  align-items: center;
}

/* GÃ¶rsel AlanÄ± */
.clinic__image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  /* Sabit yÃ¼kseklik veya oran verebilirsin */
  overflow: hidden;
  border-radius: 4px;
  /* Hafif yumuÅŸatma */
}

.clinic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* FotoÄŸrafÄ±n bozulmasÄ±nÄ± engeller */
  transition: transform 0.5s ease;
}

.clinic__image-wrapper:hover .clinic__img {
  transform: scale(1.03);
  /* Hafif bir zoom efekti */
}

/* Metin AlanÄ± */
.clinic__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clinic__description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  /* GÃ¶zÃ¼ yormayan bir gri */
  margin-bottom: 15px;
}

.clinic__description strong {
  color: #000;
  /* Vurgulanan kelimeler siyah */
  font-weight: 600;
}

/* Ã–zellik Listesi (Checklist gibi) */
.clinic__features {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Maddeleri iki sÃ¼tun yap */
  gap: 15px;
}

.clinic__features li {
  position: relative;
  padding-left: 25px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Madde iÅŸaretleri (KÃ¼Ã§Ã¼k bir Ã§izgi veya ikon) */
.clinic__features li::before {
  content: "◈";
  position: absolute;
  left: 0;
  color: #888;
}

/* MOBÄ°L UYUMLULUK (Responsive) */
@media (max-width: 992px) {
  .clinic__container {
    grid-template-columns: 1fr;
    /* Mobilde alt alta */
    gap: 40px;
  }

  .clinic__image-wrapper {
    height: 350px;
    /* Mobilde biraz daha kÃ¼Ã§Ã¼k gÃ¶rsel */
  }

  .clinic__features {
    grid-template-columns: 1fr;
    /* Mobilde liste tek sÃ¼tun */
  }
}

/* HERO */
.proc-hero {
  padding: 148px 56px 72px;
  background: linear-gradient(to bottom, #ede9e3 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}

.proc-hero__label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.proc-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.proc-hero h1 em {
  font-style: italic;
}

.proc-hero__sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

.proc-hero__meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.proc-hero__stat strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  display: block;
}

.proc-hero__stat span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* LAYOUT */
.proc-body {
  max-width: 1060px;
  margin: 0 auto;
  padding: 80px 56px;
}

/* OVERVIEW */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.overview__content h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.overview__content h2 em {
  font-style: italic;
}

.overview__content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

.overview__card {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
  position: sticky;
  top: 100px;
  background: var(--white);
}

.overview__card h3 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.overview__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.overview__list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.overview__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.overview__list .lbl {
  color: var(--muted);
}

.overview__list .val {
  font-weight: 500;
}

.cta-btn {
  display: block;
  text-align: center;
  margin-top: 22px;
  padding: 12px 20px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #2e6460;
}

/* STEPS */
.steps-section {
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 36px;
}

.section-title em {
  font-style: italic;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--ink);
}

.step-card {
  padding: 28px 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.step-card:nth-child(n) {
  border-right: 1px solid var(--ink);
}

.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* FAQ */
.faq-section {
  margin-bottom: 80px;
}

.faq-item {
  border-bottom: 1px solid var(--ink);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
}

.faq-q svg {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.85;
  padding-bottom: 20px;
}

/* TABS */
.reviews-section {
  margin-bottom: 80px;
}

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.tab-btn.active {
  color: var(--teal);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink);
}

.rating-big strong {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--teal);
  display: block;
  line-height: 1;
}

.rating-big span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

.bar-track {
  flex: 1;
  height: 2px;
  background: var(--ink);
}

.bar-fill {
  height: 100%;
  background: var(--teal);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.review-card {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.review-stars {
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 16px;
}

.review-meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-cta {
  margin-top: 24px;
}

.reviews-cta a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 122, 116, 0.3);
  padding-bottom: 2px;
}

/* FORM */
.form-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 56px;
  margin-bottom: 0;
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.form-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 8px;
}

.form-section h2 em {
  font-style: italic;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 48px;
}

.fg-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.f-row.full {
  grid-template-columns: 1fr;
}

.f-row.trio {
  grid-template-columns: 1fr 1fr 1fr;
}

label.f-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.radio-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-row label {
  font-size: 0.87rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-row input[type=radio] {
  width: auto;
  accent-color: var(--teal);
}

.hidden {
  display: none;
}

.contact-opts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-opts label {
  flex: 1;
  min-width: 120px;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--ink);
  transition: border-color 0.2s;
}

.contact-opts label:has(input:checked) {
  border-color: var(--teal);
  color: var(--teal);
}

.contact-opts input[type=radio] {
  width: auto;
  accent-color: var(--teal);
}

.drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(61, 122, 116, 0.3);
  border-radius: 4px;
  /* Ã‡ok keskinse 4px daha modern durur */
  padding: 32px;
  /* Ä°Ã§erik iÃ§in biraz daha nefes alanÄ± */
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drop-zone:hover {
  border-color: var(--teal);
  background-color: rgba(61, 122, 116, 0.02);
  /* Hafif bir hover dolgusu */
}

/* SVG'nin boyutunu ve rengini garantiye alalÄ±m */
.drop-zone svg {
  display: block;
  margin-bottom: 8px;
  /* AltÄ±ndaki metinle arayÄ± aÃ§ar */
  flex-shrink: 0;
}

.drop-zone p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 4px 0 0 0;
  /* Marginleri sÄ±fÄ±rlayÄ±p kontrollÃ¼ verelim */
}

.submit-btn {
  margin-top: 32px;
  width: 100%;
  padding: 15px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #2e6460;
}

.form-legal {
  margin-top: 14px;
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.form-legal a {
  color: var(--teal);
  text-decoration: none;
}

/* FOOTER */
.e-footer {
  padding: 44px 56px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
}

.e-footer__brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.e-footer__brand em {
  font-style: italic;
  color: var(--teal);
}

.e-footer__links {
  display: flex;
  gap: 24px;
}

.e-footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.e-footer__links a:hover {
  color: var(--teal);
}

.e-footer__copy {
  font-size: 0.72rem;
  color: rgba(26, 24, 20, 0.3);
}

/* WA */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

@media (max-width: 860px) {
  .e-nav {
    padding: 18px 24px;
  }

  .proc-hero {
    padding: 110px 24px 56px;
  }

  .proc-body {
    padding: 56px 24px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview__card {
    position: static;
  }

  .f-row,
  .f-row.trio {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 48px 24px;
  }

  .e-footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

.legal-page {
  position: relative;
  padding: 140px 0;
}

.legal-container {
  width: min(900px, 92%);
  margin: 0 auto;
}

.legal-tag {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.legal-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .95;
  margin-bottom: 20px;
  color: var(--gold);
}

.legal-updated {
  opacity: .55;
  margin-bottom: 60px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  opacity: .78;
  line-height: 1.9;
  font-size: 1rem;
}

.legal-content ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bg-ink {
  background: var(--ink);
}

.bg-gold {
  background: var(--gold-lt);
}


.hero-small-header {
  font-size: 6em !important;
  padding: 1em 0 !important
}