/* Düz HTML sürümü: harici framework veya derleme adımı gerekmez. */

:root {
  --ink: #173832;
  --ink-deep: #102d28;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --sage: #aebead;
  --sage-light: #dce5d9;
  --clay: #c97a5a;
  --sand: #dfcaa8;
  --line: rgba(23, 56, 50, 0.18);
  --muted: #5f6f6a;
  --white: #ffffff;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 128px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 4px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.announcement {
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink-deep);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
}

.announcement p {
  margin: 0;
}

.announcement a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.brand-mark::before {
  width: 23px;
  height: 23px;
  top: -7px;
  right: -2px;
  background: var(--sage);
}

.brand-mark::after {
  width: 18px;
  height: 18px;
  bottom: -4px;
  left: 1px;
  background: var(--clay);
}

.brand-mark span {
  width: 7px;
  height: 7px;
  background: var(--paper);
}

.brand-type {
  display: grid;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 0.93;
  letter-spacing: -0.02em;
}

.brand-type strong {
  font-weight: 700;
}

.brand-type > span {
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 9px;
  color: #304d47;
  font-size: 0.82rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--ink);
}

.button-small:hover {
  background: var(--clay);
}

.button-primary {
  min-width: 220px;
  color: var(--white);
  background: var(--ink);
}

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

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  display: block;
  width: 19px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.mobile-nav[open] summary span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobile-nav[open] summary span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 20px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(16, 45, 40, 0.1);
}

.mobile-nav nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.mobile-nav nav .mobile-phone {
  color: var(--clay);
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 37%;
  content: "";
  background: var(--sage-light);
}

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

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(23, 56, 50, 0.1);
  border-radius: 50%;
}

.orbit-one {
  top: -410px;
  left: -260px;
  width: 740px;
  height: 740px;
}

.orbit-two {
  right: -230px;
  bottom: -440px;
  width: 770px;
  height: 770px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: 86px;
  padding-block: 88px 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.light {
  color: #e2c8b5;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6.7vw, 6.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: var(--clay);
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #435b56;
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(23, 56, 50, 0.35);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 52px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-notes li::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--clay);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 28px 70px rgba(16, 45, 40, 0.17);
}

.visual-card-main {
  top: 22px;
  right: 0;
  width: min(100%, 440px);
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: var(--white);
  background: var(--ink);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-symbol {
  position: relative;
  width: 230px;
  height: 190px;
  margin: 0 auto;
}

.symbol-dot {
  position: absolute;
  border-radius: 50%;
}

.dot-one {
  top: 0;
  left: 0;
  width: 138px;
  height: 138px;
  background: var(--sage);
}

.dot-two {
  right: 2px;
  bottom: 0;
  width: 116px;
  height: 116px;
  background: var(--clay);
}

.symbol-line {
  position: absolute;
  top: 40px;
  right: 29px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.visual-kicker {
  margin: 0 0 8px;
  color: #c9d7cc;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card h2 {
  max-width: 330px;
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.visual-card-note {
  bottom: -2px;
  left: -58px;
  z-index: 2;
  width: 190px;
  min-height: 170px;
  padding: 25px;
  background: var(--paper);
  border-color: var(--line);
}

.note-index {
  display: block;
  color: var(--clay);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.visual-card-note p {
  margin: 9px 0 5px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.visual-stamp {
  position: absolute;
  top: 88px;
  left: -74px;
  display: flex;
  width: 132px;
  height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--paper);
  background: var(--clay);
  border: 9px solid var(--cream);
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  transform: rotate(-8deg);
}

.visual-stamp i {
  font-style: normal;
}

.hero-disclaimer {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.hero-disclaimer span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.78rem;
  font-style: italic;
}

.hero-disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.section-heading h2,
.process-intro h2,
.faq-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.split-heading > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  min-height: 150px;
  grid-template-columns: 70px 1fr 1.25fr 52px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.service-row.has-media {
  grid-template-columns: 70px 96px 1fr 1.25fr 52px;
}

.service-media {
  display: block;
  width: 96px;
  height: 76px;
  overflow: hidden;
  background: var(--sage-light);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-row:hover .service-media img {
  transform: scale(1.06);
}

.service-row:hover {
  padding-inline: 18px;
  background: var(--cream);
}

.service-number {
  color: var(--clay);
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.service-row p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.round-arrow {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-row:hover .round-arrow,
.specialist-card:hover .round-arrow {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.statement-section {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  color: var(--paper);
  background: var(--ink);
}

.statement-section::after {
  position: absolute;
  top: -220px;
  right: -150px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}

.statement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.45fr 1.65fr 0.6fr;
  align-items: start;
  gap: 66px;
}

.statement-grid blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.statement-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.84rem;
}

.specialists-section {
  background: var(--cream);
}

.specialists-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.specialists-heading h2 {
  max-width: 730px;
}

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.specialist-card {
  min-width: 0;
}

.portrait {
  position: relative;
  display: grid;
  aspect-ratio: 0.86;
  place-items: center;
  overflow: hidden;
}

.portrait-clay {
  background: #d9a58e;
}

.portrait-sage {
  background: #afc3b3;
}

.portrait-sand {
  background: #ddc8a8;
}

.portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 500ms ease;
}

.specialist-card:hover .portrait > img {
  transform: scale(1.035);
}

.portrait > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  color: var(--paper);
  background: rgba(23, 56, 50, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2.25rem;
  font-style: italic;
  box-shadow: 0 20px 50px rgba(16, 45, 40, 0.17);
}

.portrait-lines {
  position: absolute;
  z-index: 2;
  width: 82%;
  height: 82%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.08);
  transition: transform 400ms ease;
}

.specialist-card:hover .portrait-lines {
  transform: scale(1.1) rotate(8deg);
}

.portrait small {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 18px;
  color: rgba(23, 56, 50, 0.75);
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
}

.specialist-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
}

.specialist-meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
}

.specialist-meta p {
  margin: 4px 0 0;
  color: var(--clay);
  font-size: 0.73rem;
  font-weight: 700;
}

.round-arrow.small {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
}

.specialist-focus {
  margin: 17px 0 0;
  padding-top: 15px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.77rem;
}

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

.testimonials-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.testimonials-heading h2 {
  max-width: 760px;
}

.testimonial-heading-actions {
  display: grid;
  justify-items: end;
  gap: 20px;
}

.testimonial-controls {
  display: flex;
  gap: 8px;
}

.testimonial-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.testimonial-controls button:hover {
  color: var(--white);
  background: var(--ink);
}

.testimonial-track {
  display: grid;
  grid-auto-columns: minmax(320px, calc((100% - 48px) / 3));
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--sage) transparent;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  background: var(--cream);
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.testimonial-mark {
  position: absolute;
  top: 16px;
  right: 28px;
  color: rgba(154, 82, 58, 0.18);
  font-family: var(--display);
  font-size: 6.5rem;
  line-height: 1;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  overflow: hidden;
  margin: 34px 0 40px;
  font-family: var(--display);
  font-size: 1.24rem;
  line-height: 1.55;
  letter-spacing: -0.015em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-card footer strong {
  font-size: 0.88rem;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.72rem;
}

.testimonial-card footer a {
  width: fit-content;
  color: var(--clay);
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 750;
}

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

.specialist-testimonial-count {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.specialist-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.specialist-testimonial-card {
  min-height: 390px;
}

.testimonial-card.is-expanded blockquote {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.testimonial-expand-button {
  width: fit-content;
  margin: -22px 0 28px;
  padding: 0 0 4px;
  color: var(--clay);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font: inherit;
  font-size: 0.79rem;
  font-weight: 800;
  cursor: pointer;
}

.testimonial-expand-button:hover {
  color: var(--ink);
}

.testimonial-expand-button[hidden] {
  display: none;
}

.specialist-testimonials-more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.empty-state {
  margin: 0;
  padding: 28px;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--line);
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.process-section::before {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -360px;
  right: -180px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.process-header {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 76px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.process-header .eyebrow {
  color: #d6a990;
}

.process-header h2 {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.052em;
}

.process-header > p {
  margin: 0;
  color: rgba(247, 241, 228, .72);
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 110px;
}

.process-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.process-orbit {
  position: relative;
  display: grid;
  width: 180px;
  height: 180px;
  margin-bottom: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.process-orbit::before,
.process-orbit::after {
  position: absolute;
  border: 1px solid rgba(201, 121, 90, .62);
  border-radius: 50%;
  content: "";
}

.process-orbit::before { width: 112px; height: 112px; transform: translate(18px, -15px); }
.process-orbit::after { width: 54px; height: 54px; transform: translate(-34px, 27px); }
.process-orbit i { width: 12px; height: 12px; background: var(--clay); border-radius: 50%; }

.process-answer {
  max-width: 500px;
  margin: 0;
  color: rgba(247, 241, 228, .76);
  line-height: 1.8;
}

.process-answer strong {
  color: var(--paper);
}

.process-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.process-section .button-primary {
  color: var(--ink);
  background: var(--paper);
}

.process-section .text-link {
  color: var(--paper);
}

.process-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .17);
  list-style: none;
}

.process-steps li {
  display: grid;
  min-height: 218px;
  grid-template-columns: 76px 1fr;
  align-content: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.process-steps > li > span {
  color: #d6a990;
  font-family: var(--display);
  font-style: italic;
}

.process-steps h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  color: var(--paper);
  font-size: 1.88rem;
  font-weight: 500;
}

.process-steps p {
  max-width: 520px;
  margin: 0;
  color: rgba(247, 241, 228, .68);
  font-size: 0.87rem;
}

.process-steps .process-step-label {
  margin-bottom: 7px;
  color: #d6a990;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.process-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 70px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

.process-trust-row > * {
  min-height: 86px;
  padding: 24px;
  color: rgba(247, 241, 228, .76);
  background: var(--ink);
  font-size: .78rem;
  font-weight: 700;
}

.process-trust-row a {
  color: var(--paper);
}

.articles-section {
  background: var(--cream);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.article-card:hover {
  box-shadow: 0 22px 55px rgba(16, 45, 40, 0.1);
  transform: translateY(-7px);
}

.article-art {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.article-card:hover .article-cover img {
  transform: scale(1.035);
}

.article-featured-image {
  margin-top: clamp(-70px, -5vw, -34px);
  margin-bottom: 0;
}

.article-featured-image img {
  display: block;
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  background: var(--sage-light);
}

.article-featured-image figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: .76rem;
}

.article-art-1 {
  background: #b7c9ba;
}

.article-art-2 {
  background: #d2a18c;
}

.article-art-3 {
  background: #ddc9aa;
}

.article-art::before,
.article-art::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.article-art::before {
  width: 56%;
  height: 100%;
  top: -35%;
  right: -8%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.09);
}

.article-art::after {
  width: 37%;
  height: 66%;
  bottom: -26%;
  left: 9%;
  background: rgba(23, 56, 50, 0.82);
}

.article-art span {
  position: relative;
  z-index: 1;
  color: var(--paper);
  font-family: var(--display);
  font-size: 3.5rem;
  font-style: italic;
}

.article-art i {
  position: absolute;
  z-index: 2;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.article-body {
  padding: 28px;
}

.article-category {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.article-body > p:not(.article-category) {
  min-height: 78px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 0.8rem;
}

.article-body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 800;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 110px;
}

.faq-lead {
  max-width: 460px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.35rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--sans);
  transition: transform 200ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -4px 60px 30px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-section {
  padding: 0 0 30px;
  background: var(--paper);
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  overflow: hidden;
  padding: 80px;
  color: var(--paper);
  background: var(--ink);
}

.contact-card::after {
  position: absolute;
  right: -150px;
  bottom: -240px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025);
}

.contact-copy,
.contact-options,
.emergency-note {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 4.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.contact-options {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-options a {
  display: grid;
  min-height: 105px;
  grid-template-columns: 110px 1fr 30px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: padding 180ms ease, background 180ms ease;
}

.contact-options a:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-options span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-options strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
}

.contact-options i {
  font-style: normal;
}

.emergency-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: -24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.emergency-note span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 0.7rem;
}

.emergency-note p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.68rem;
}

.site-footer {
  padding-block: 92px 32px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-about {
  max-width: 380px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 1.1rem;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--clay);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 75px;
  padding-top: 25px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.67rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-contact-bar {
  display: none;
}

.reveal {
  animation: reveal-up 650ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-two {
  animation-delay: 80ms;
}

.reveal-three {
  animation-delay: 160ms;
}

.reveal-four {
  animation-delay: 240ms;
}

.reveal-five {
  animation-delay: 320ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.74rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.76fr;
    gap: 50px;
  }

  .visual-card-note,
  .visual-stamp {
    display: none;
  }

  .statement-grid {
    grid-template-columns: 0.35fr 1.5fr 0.7fr;
    gap: 40px;
  }

  .process-grid,
  .faq-grid {
    gap: 70px;
  }

  .contact-card {
    gap: 60px;
    padding: 65px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 95px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero::before {
    top: auto;
    width: 100%;
    height: 39%;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 65px;
    padding-block: 75px 90px;
  }

  .hero-copy {
    max-width: 750px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .visual-card-main {
    right: auto;
    left: 50%;
    width: min(100%, 520px);
    transform: translateX(-50%);
  }

  .split-heading,
  .process-header,
  .process-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 25px;
  }

  .service-row {
    grid-template-columns: 55px 0.9fr 1fr 45px;
    gap: 20px;
  }

  .service-row.has-media {
    grid-template-columns: 55px 72px 0.9fr 1fr 45px;
  }

  .service-media {
    width: 72px;
    height: 64px;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .statement-note {
    max-width: 560px;
  }

  .specialist-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialist-card:last-child,
  .article-card:last-child {
    grid-column: span 2;
    width: calc(50% - 14px);
  }

  .process-intro {
    position: static;
  }

  .process-header {
    gap: 28px;
    align-items: start;
  }

  .process-grid {
    gap: 58px;
  }

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

  .contact-card {
    gap: 55px;
  }

  .emergency-note {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  body {
    padding-bottom: 66px;
  }

  .announcement {
    display: none;
  }

  .nav-shell {
    min-height: 73px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .hero-grid {
    padding-block: 62px 72px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-notes {
    display: grid;
    gap: 11px;
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .visual-card-main {
    min-height: 410px;
    padding: 25px;
  }

  .visual-symbol {
    width: 190px;
    height: 160px;
  }

  .dot-one {
    width: 116px;
    height: 116px;
  }

  .dot-two {
    width: 98px;
    height: 98px;
  }

  .symbol-line {
    width: 116px;
    height: 116px;
  }

  .hero-disclaimer {
    align-items: flex-start;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2,
  .process-header h2,
  .faq-section h2 {
    font-size: 2.65rem;
  }

  .process-header {
    margin-bottom: 52px;
    padding-bottom: 30px;
  }

  .process-orbit {
    width: 132px;
    height: 132px;
    margin-bottom: 28px;
  }

  .process-orbit::before { width: 84px; height: 84px; }
  .process-orbit::after { width: 42px; height: 42px; }

  .process-steps li {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding-block: 34px;
  }

  .process-trust-row {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .split-heading {
    margin-bottom: 42px;
  }

  .service-row {
    min-height: 0;
    grid-template-columns: 36px 1fr 38px;
    gap: 16px;
    padding-block: 26px;
  }

  .service-row.has-media {
    grid-template-columns: 36px 54px 1fr 38px;
  }

  .service-row.has-media p {
    grid-column: 3 / 5;
  }

  .service-media {
    width: 54px;
    height: 54px;
  }

  .service-row:hover {
    padding-inline: 8px;
  }

  .service-row p {
    grid-column: 2 / 4;
  }

  .service-row h3 {
    font-size: 1.55rem;
  }

  .round-arrow {
    width: 38px;
    height: 38px;
  }

  .statement-section {
    padding-block: 78px;
  }

  .specialists-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .specialist-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .specialist-card:last-child,
  .article-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .portrait {
    aspect-ratio: 1 / 0.92;
  }

  .process-steps li {
    min-height: 165px;
    grid-template-columns: 43px 1fr;
    gap: 18px;
  }

  .faq-list summary {
    font-size: 1.15rem;
  }

  .contact-section {
    padding-bottom: 0;
  }

  .contact-section .container {
    width: 100%;
  }

  .contact-card {
    padding: 58px 22px;
  }

  .contact-options a {
    min-height: 92px;
    grid-template-columns: 80px 1fr 20px;
    gap: 10px;
  }

  .contact-options strong {
    font-size: 1.3rem;
  }

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 52px;
  }

  .footer-links {
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    min-height: 66px;
    grid-template-columns: repeat(2, 1fr);
    color: var(--white);
    background: var(--ink-deep);
    box-shadow: 0 -10px 30px rgba(16, 45, 40, 0.14);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--display);
    font-size: 1.1rem;
  }

  .mobile-contact-bar a + a {
    color: var(--ink-deep);
    background: var(--sage);
  }

  .mobile-contact-bar span {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

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

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

/* PHP/MySQL sürümünün liste, detay ve form sayfaları */
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 108px 90px;
  background:
    radial-gradient(circle at 80% 10%, rgba(174, 190, 173, 0.42), transparent 28rem),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 12px 0 22px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.page-hero > .container > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.content-card {
  min-height: 340px;
  padding: 38px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.specialist-list-card {
  min-height: auto;
}

.content-card-media {
  display: grid;
  height: 330px;
  margin: -38px -38px 32px;
  place-items: center;
  overflow: hidden;
  background: var(--sage-light);
}

.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 450ms ease;
}

.content-card-media:hover img {
  transform: scale(1.035);
}

.content-card-initials {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
}

.content-card h2 {
  margin: 18px 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.08;
}

.content-card > p:not(.eyebrow) {
  color: var(--muted);
}

.content-card .text-link {
  margin-top: 28px;
}

.pagination-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding-top: 48px;
}

.pagination-nav > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonials-page-hero > .container > p:not(.eyebrow) {
  max-width: 720px;
}

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

.testimonials-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-archive-card {
  min-height: 410px;
}

.testimonial-archive-card blockquote {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.page-hero .profile-hero-grid {
  display: grid;
  max-width: var(--container);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.profile-hero-grid > div:first-child > p:not(.eyebrow):not(.profile-title) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.profile-title {
  margin: -8px 0 18px;
  color: var(--clay);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.detail-profile-media {
  display: grid;
  width: 100%;
  aspect-ratio: .86;
  place-items: center;
  overflow: hidden;
  background: var(--sage);
}

.detail-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.detail-profile-media > span {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 2.3rem;
  font-style: italic;
}

.prose {
  color: #27443e;
  font-size: 1.08rem;
  line-height: 1.85;
}

.prose .font-serif { font-family: var(--display); }
.prose .font-sans { font-family: var(--sans); }
.prose .text-size-small { font-size: .88em; }
.prose .text-size-large { font-size: 1.2em; }
.prose .text-size-xlarge { font-size: 1.5em; line-height: 1.45; }

.prose h2,
.prose h3,
.prose h4 {
  margin: 2.1em 0 0.65em;
  color: var(--ink-deep);
  font-family: var(--display);
  line-height: 1.15;
}

.prose h2 { font-size: clamp(2rem, 4vw, 3rem); }
.prose h3 { font-size: 1.7rem; }
.prose a { color: var(--clay); text-decoration: underline; }
.prose li + li { margin-top: 8px; }

.content-meta {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.article-aside {
  position: sticky;
  top: 28px;
  padding: 32px;
  background: var(--sage-light);
}

.article-aside p:not(.eyebrow) {
  color: #405b55;
}

.article-aside .button {
  margin-top: 18px;
}

.faq-answer {
  padding: 0 56px 26px 0;
  color: var(--muted);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 32px;
  align-items: start;
}

.contact-info-panel,
.form-panel {
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
}

.contact-info-panel {
  color: var(--paper);
  background: var(--ink);
}

.contact-info-panel h2,
.form-panel h2 {
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-info-panel > a {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-info-panel > a span {
  color: rgba(255,255,255,.68);
  font-size: 0.76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-info-panel > a strong {
  font-family: var(--display);
  font-size: 1.55rem;
}

.emergency-inline {
  margin-top: 38px;
  padding: 22px;
  color: var(--ink);
  background: var(--sand);
}

.emergency-inline p {
  margin: 8px 0 0;
}

.form-panel {
  background: var(--cream);
}

.form-control,
.form-select {
  min-height: 50px;
  border: 1px solid rgba(23, 56, 50, .28);
  border-radius: 0;
  background: var(--paper);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 .2rem rgba(201, 122, 90, .18);
}

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

@media (max-width: 900px) {
  .content-card-grid,
  .article-layout,
  .contact-page-grid,
  .page-hero .profile-hero-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-heading { align-items: start; flex-direction: column; }
  .testimonial-heading-actions { width: 100%; grid-template-columns: 1fr auto; align-items: center; justify-items: start; }
  .testimonial-track { grid-auto-columns: minmax(300px, 72vw); }
  .testimonials-archive-grid,
  .specialist-testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-aside { position: static; }
  .detail-profile-media { max-width: 420px; grid-row: 1; }
}

@media (max-width: 600px) {
  .page-hero { padding-block: 72px 60px; }
  .testimonial-heading-actions { grid-template-columns: 1fr; }
  .testimonial-track { grid-auto-columns: 88vw; }
  .testimonial-card { min-height: 360px; padding: 28px; }
  .testimonials-archive-grid,
  .specialist-testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-archive-card { min-height: 0; }
  .specialist-testimonial-card { min-height: 0; }
  .content-card { min-height: auto; padding: 28px; }
  .content-card-media { height: 300px; margin: -28px -28px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
