@font-face {
  font-family: 'Tenor Sans';
  src: url('/assets/fonts/tenor-sans/TenorSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MontserratLogo';
  src: local('Montserrat Bold'), local('Montserrat-Bold'), local('Montserrat SemiBold'), local('Montserrat-SemiBold');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.brand-main {
  font-family: 'MontserratLogo', 'Helvetica World', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1;
  font-weight: 700 !important;
  letter-spacing: .075em;
  color: #000;
  font-style: normal !important;
  font-synthesis: none !important;
  font-synthesis-style: none !important;
  transform: none !important;
}

@font-face {
  font-family: 'Helvetica World';
  src: url('/assets/fonts/helvetica-world/HelveticaWorld-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica World';
  src: url('/assets/fonts/helvetica-world/HelveticaWorld-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica World';
  src: url('/assets/fonts/helvetica-world/HelveticaWorld-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica World';
  src: url('/assets/fonts/helvetica-world/HelveticaWorld-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TT Ramillas';
  src: url('/assets/fonts/tt-ramillas/TTRamillas-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Ramillas';
  src: url('/assets/fonts/tt-ramillas/TTRamillas-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TT Ramillas';
  src: url('/assets/fonts/tt-ramillas/TTRamillas-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Ramillas';
  src: url('/assets/fonts/tt-ramillas/TTRamillas-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce One';
  src: url('/assets/fonts/open-sauce-one/OpenSauceOne-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Buffalo';
  src: url('/assets/fonts/buffalo/Buffalo-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fcf7f1;
  --bg-soft: #f6f1eb;
  --section: #e7e1da;
  --text: #0f0f0f;
  --muted: #0f0f0f;
  --accent: #c14a3e;
  --accent-dark: #9f382f;
  --white-soft: #fcf8f7;
  --footer: #363535;
  --design-width: 1366px;
  --page-side-space: 49.4px;
  --page-gutter-total: 98.8px;
  --max: 1267.2px;
  --font-heading: 'Tenor Sans', 'Times New Roman', serif;
  --font-body: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  --font-brand: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 999;
  background: var(--accent);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus { left: 8px; }

/* Header / navigation */
.site-header { background: var(--bg); }

.header-top {
  width: min(var(--max), calc(100% - var(--page-gutter-total)));
  margin-inline: auto;
  min-height: 122px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 25px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.brand-main {
  font-family: 'MontserratLogo', var(--font-brand), 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .075em;
  color: #000;
  font-style: normal;
  font-synthesis: none;
  font-synthesis-style: none;
  transform: none;
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: .92rem;
  letter-spacing: .025em;
  color: #000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 2px;
  color: var(--text);
}

.icon-link {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.icon-link svg {
  width: 18px;
  height: 18px;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 14.66666px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.lang-link img,
.lang-link svg {
  width: 15px;
  height: 15px;
}

.menu-bar { background: var(--bg-soft); }

.cards-3.analysis-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  margin-top: 144px;
}

.analysis-benefits h3 {
  font-family: 'TT Ramillas', var(--font-heading);
  font-size: 29.4pt;
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 400;
  min-height: 2.16em;
}

.analysis-benefits p {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16.5pt;
  line-height: 1.48;
  color: var(--text);
  margin: 0;
}

.nav-inner {
  width: min(var(--max), calc(100% - var(--page-gutter-total)));
  margin-inline: auto;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: color .18s ease;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  position: relative;
  color: var(--muted);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
  margin: 6px auto;
  transition: transform .18s ease, opacity .18s ease;
}

/* Global layout and typography */
main { min-height: 60vh; }

.section { padding: clamp(64px, 8vw, 120px) 0; }

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

.eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--muted);
  margin: 0 0 14px;
}

.display-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.55rem);
  line-height: 1.22;
  letter-spacing: .13em;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 42px;
  text-transform: uppercase;
}

.display-title.tight { margin-bottom: 24px; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  max-width: 970px;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 21px;
  margin-top: 56px;
  background: var(--accent);
  color: var(--white-soft);
  text-decoration: none;
  border: 1px solid var(--accent);
  font-family: 'Open Sauce One', 'Open Sauce', 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22.6666px;
  letter-spacing: .14em;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: var(--white-soft);
}

/* Homepage */
.hero-home { padding-top: 0; }

.hero-frame {
  width: min(var(--max), calc(100% - var(--page-gutter-total)));
  margin: 0 auto;
  min-height: clamp(280px, 38vw, 520px);
  background: url('/assets/images/home-hero.jpg') center center / cover no-repeat;
  position: relative;
}

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

.hero-overlay-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-soft);
  pointer-events: none;
  padding: 0 32px;
  transform: translateY(-34px);
}

.hero-overlay-kicker {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-size: 30pt;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--white-soft);
  margin: 0;
}

.hero-overlay-kicker em {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.hero-overlay-title {
  font-family: 'Tenor Sans', 'Times New Roman', serif;
  font-size: 55pt;
  line-height: 1.4;
  letter-spacing: .1em;
  font-weight: 400;
  color: var(--white-soft);
  text-transform: uppercase;
  margin: 0;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.home-copy {
  max-width: 690px;
}

.home-title {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.4;
  letter-spacing: .15em;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 clamp(64px, 8vw, 120px);
  text-transform: uppercase;
}

.home-title span {
  display: block;
  white-space: nowrap;
}

.home-copy p:not(.script-statement) {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22.6667px;
  line-height: 1.4;
  letter-spacing: .02em;
  margin: 0 0 22px;
}

.script-statement {
  font-family: 'Buffalo', 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 54.6667px;
  line-height: 1.08;
  letter-spacing: .01em;
  text-align: center;
  margin: 32px 0 20px;
  color: var(--text);
  transform: translateX(105px);
}

.vase-wrap {
  justify-self: center;
  width: clamp(250px, 31vw, 366.2px);
  aspect-ratio: 366.2 / 463.5;
  border-radius: 50%;
  overflow: hidden;
  transform: translateY(105px);
}

.vase-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Shared content layouts */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(44px, 8vw, 118px);
  align-items: start;
}

.two-column.reverse {
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
}

.text-block p { margin: 0 0 20px; }

.price {
  font-family: var(--font-heading);
  color: var(--muted);
  font-size: 1.75rem;
  margin: 12px 0 12px;
}

.phone-mockup {
  width: clamp(220px, 18.64vw, 254.6px);
  aspect-ratio: 254.6 / 503.8;
  margin: 0 auto;
  background: #050505;
  border-radius: 30px;
  padding: 16px 10px 14px;
  box-shadow: 14.14px 14.14px 10px rgba(0, 0, 0, 0.30);
  transform: translateX(-24px);
}

.phone-screen {
  height: 100%;
  background: var(--white-soft);
  border-radius: 21px;
  overflow: hidden;
}

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

.spark {
  text-align: center;
  margin: 120px 0 56px;
}

.spark img {
  width: 48px;
  height: auto;
  margin: 0 auto;
}

.season-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(48px, 9vw, 110px);
  align-items: center;
}

.season-wheel {
  max-width: 380px;
  margin-inline: auto;
}

/* Kişisel Renk Analizi */
.analysis-page-title {
  font-family: var(--font-heading);
  font-size: 32.2pt;
  line-height: 1.4;
  letter-spacing: .15em;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.analysis-intro-lead,
.analysis-benefit-lead,
.analysis-season-copy p,
.analysis-list,
.analysis-list li,
.analysis-benefits p {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--text);
}

.analysis-intro-lead {
  max-width: none;
  margin: 0;
}

.analysis-intro-lead span {
  display: block;
  white-space: nowrap;
}

.analysis-detail-block .analysis-subtitle,
.analysis-detail-block .analysis-price {
  font-family: 'TT Ramillas', var(--font-heading);
  font-size: 23.3pt;
  line-height: 1.24;
  color: var(--muted);
}
.analysis-detail-block {
  transform: translateX(-80px);
}

.analysis-detail-block .analysis-subtitle { margin: 0 0 14px; }

.analysis-detail-block .analysis-price {
  line-height: 1.2;
  margin: 0 0 16px;
}

.analysis-contact-btn {
  font-size: 16.5pt;
}

.analysis-side-intro {
  margin-top: 34px !important;
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--text);
}

.analysis-side-intro br { display: block; }

.analysis-process-title {
  font-family: 'TT Ramillas', var(--font-heading);
  font-size: 23.3pt;
  line-height: 1.2;
  color: var(--text);
  font-weight: 400;
  margin: 86px 0 22px;
}

.analysis-process-copy {
  display: grid;
  row-gap: 42px;
}

.analysis-process-copy p {
  position: relative;
  display: block;
  margin: 0;
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--text);
}

.analysis-process-copy p::before {
  content: '';
  position: absolute;
  left: -72px;
  top: .82em;
  width: 56px;
  height: 1px;
  background: #3f3f3f;
}

.analysis-benefit-title {
  font-family: 'TT Ramillas', var(--font-heading);
  font-size: 45pt;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text);
  margin: 0 0 30px;
  font-weight: 400;
}

.analysis-benefit-title em { font-style: italic; }

.analysis-benefit-lead {
  max-width: 1040px;
  margin: 0;
}

.analysis-benefits h3 {
  font-family: 'TT Ramillas', var(--font-heading);
  font-size: 29.4pt;
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 400;
  min-height: 2.16em;
}

.analysis-benefits p {
  color: var(--text);
  line-height: 1.4;
  letter-spacing: .02em;
}

.analysis-content-title,
.analysis-season-title {
  font-family: 'Tenor Sans', 'Times New Roman', serif;
  font-size: 32.2pt;
  color: var(--text);
}

.analysis-content-title {
  line-height: 1.4;
  letter-spacing: .15em;
  margin-bottom: 56px;
}

.analysis-season-title {
  line-height: 1.4;
  white-space: nowrap;
  font-size: clamp(30px, 3.1vw, 32.2pt);
  letter-spacing: .15em;
}



.analysis-list {
  max-width: 1010px;
  display: grid;
  gap: 28px;
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: analysis-item;
  line-height: 1.4;
}

.analysis-list li {
  position: relative;
  padding-left: 46px;
  line-height: 1.4;
  counter-increment: analysis-item;
}

.analysis-list li::before {
  content: counter(analysis-item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: inherit;
  line-height: 1.4;
  color: var(--text);
}

.analysis-list strong {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
}

.analysis-season-subtitle {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-size: 39.4667px;
  line-height: 1.16;
  color: var(--text);
  margin: 0 0 64px;
  font-style: normal;
  font-weight: 400;
}

.analysis-season-subtitle em {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 39.4667px;
}

.analysis-season-block .analysis-season-subtitle {
  margin: 0 0 105px;
}

.analysis-season-copy {
  display: grid;
  gap: 20px;
}

.analysis-season-copy p {
  margin: 0;
  line-height: 1.4;
  letter-spacing: .02em;
}

.analysis-season-block .analysis-season-script {
  margin: 96px 0 56px;
  transform: translateX(48px);
}

.analysis-season-script {
  font-family: 'Buffalo', 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 54.6667px;
  line-height: 1.08;
  color: var(--text);
  text-align: center;
  margin: 40px 0 24px;
  font-weight: 400;
}

.analysis-season-btn {
  font-size: 17pt;
}

.analysis-season-grid .season-wheel {
  max-width: 420px;
}

.analysis-intro-lead,
.analysis-side-intro,
.analysis-process-copy p,
.analysis-benefit-lead,
.analysis-benefits p,
.analysis-list,
.analysis-list li,
.analysis-season-copy p {
  line-height: 1.4;
  letter-spacing: .02em;
}

/* Hakkımda */
.about-page-section { padding-top: 54px; }

.about-page-title {
  font-family: 'Tenor Sans', 'Times New Roman', serif;
  font-size: 32.2pt;
  line-height: 1.22;
  letter-spacing: .11em;
  font-weight: 400;
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 56px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}

.about-intro-copy p,
.about-quote,
.about-open-ending p {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16.5pt;
  line-height: 1.58;
  color: var(--text);
}

.about-intro-copy p {
  margin: 0 0 20px;
}

.about-quote {
  margin: 36px auto;
  text-align: center;
}

.about-quote span {
  display: inline;
  margin-left: 0;
}

.about-photo-wrap {
  position: relative;
  display: block;
  line-height: 0;
}

.about-photo-wrap img {
  width: 100%;
  max-height: 780px;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.about-photo-wrap .photo-credit {
  position: absolute;
    left: calc(100% - 30px);
  bottom: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transform-origin: center center;
  font-size: .82rem;
  line-height: 1;
  color: var(--muted);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.about-open-ending {
  max-width: 1060px;
  margin-top: 72px;
}

.about-open-ending p {
  margin: 0 0 28px;
}

.about-open-ending .about-colors-script {
  font-family: 'Buffalo', 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 54.6667px;
  line-height: 1.08;
  color: var(--text);
  margin: 56px 0 48px;
}

.about-open-ending .about-colors-note {
  margin-bottom: 96px;
}

.about-middle-section {
  background: var(--section);
  padding-top: 40px;
}

.about-middle-grid {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 116px);
  align-items: start;
}

.about-middle-media {
  position: relative;
  margin-top: 77px;
}

.about-middle-media img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
}

.about-middle-photo-credit {
  position: absolute;
  left: -18px;
  bottom: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  color: #5f565a;
}

.about-middle-copy {
  padding-top: 18px;
}

.about-middle-title {
  font-family: 'Buffalo', 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 54.6667px;
  line-height: 1.08;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 72px;
}

.about-middle-text p,
.about-middle-extra p {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.58;
  color: var(--text);
  margin: 0 0 28px;
}

.about-middle-extra {
  max-width: none;
  margin-top: 72px;
}

.about-intro-copy p,
.about-quote,
.about-open-ending p:not(.about-colors-script),
.about-middle-text p,
.about-middle-extra p {
  line-height: 1.4;
  letter-spacing: .02em;
}







/* Reviews */
.reviews-page-title {
  font-size: 42.93338px;
  line-height: 1.4;
  letter-spacing: .15em;
  margin-bottom: 22px;
}

.reviews-page-subtitle {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-size: 39.4666666666px;
  line-height: 1.16;
  color: var(--text);
  margin: 0;
  font-style: normal;
  font-weight: 400;
}

.reviews-page-subtitle em {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.reviews-hero {
  padding-top: 82px;
  padding-bottom: 94px;
}

.review-entry {
  background: var(--bg);
  padding-top: 0;
  padding-bottom: 86px;
}

.review-entry.is-alt {
  background: var(--section);
}

.reviews-carousel {
  position: relative;
  max-width: 1120px;
  min-height: 590px;
}

.review-slide {
  display: none;
}

.review-slide.is-active {
  display: block;
}

.review-card {
  position: relative;
  min-height: 590px;
  margin: 0;
  padding: 0;
}

.review-quote-mark {
  position: absolute;
  left: 70px;
  top: 78px;
  z-index: 0;
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-size: 548px;
  line-height: .50;
  font-weight: 400;
  color: rgba(231, 225, 218, .72);
  transform: scale(1.58);
  transform-origin: left top;
  pointer-events: none;
  user-select: none;
}

.review-entry.is-alt .review-quote-mark {
  color: rgba(252, 247, 241, .56);
}

.review-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 520px));
  margin-left: 455px;
  padding-top: 142px;
}

.review-line {
  display: block;
  width: 252px;
  height: 1px;
  background: #3f3f3f;
  margin: 0 0 48px;
}

.review-text,
.review-author {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--text);
}

.review-text {
  margin: 0 0 32px;
}

.review-author {
  margin: 42px 0 0;
}

.review-arrow {
  position: absolute;
  top: 362px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.review-arrow-prev {
  left: 132px;
}

.review-arrow-next {
  right: 0;
}

/* FAQ */
.faq-page-title,
.faq-contact-title {
  font-size: 42.93338px;
  line-height: 1.22;
}

.faq-page-subtitle {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-size: 39.4667px;
  line-height: 1.16;
  color: var(--text);
  margin: 0 0 72px;
  font-style: normal;
  font-weight: 400;
}

.faq-page-subtitle em {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 39.4667px;
}

.faq-list {
  max-width: 1120px;
  display: grid;
  gap: 0;
}

.faq-item {
  border-top: 0;
  padding: 0;
}

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

.faq-item h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.faq-item p {
  margin: 0;
  max-width: none;
}
.faq-question {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0 14px 88px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: .02em;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.faq-question[aria-expanded="true"] {
  font-weight: 700;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(14px + .82em);
  width: 72px;
  height: 1px;
  background: #3f3f3f;
}

.faq-question::after {
  content: none;
  display: none;
}

.faq-answer {
  padding: 0 0 20px 88px;
  max-width: 1120px;
  color: var(--text);
}

.faq-answer[hidden] { display: none; }

.faq-answer p {
  margin: 0 0 1em;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: .02em;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer em {
  font-style: italic;
}

.faq-contact-section { padding-top: 0; }

.faq-contact-subtitle { margin: 0; }

.faq-contact-btn {
  margin-top: 56px;
  margin-left: 28px;
}

/* Contact */

.contact-main {
  min-height: auto;
}
.contact-hero {
  min-height: auto;
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: 210px;
}
.contact-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 1.12rem;
}

.contact-list a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-page-title {
  font-size: 42.93338px;
  line-height: 1.22;
  margin-bottom: 20px;
}

.contact-page-list,
.contact-page-list a,
.contact-faq-note {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.58;
  color: var(--text);
}

.contact-page-list {
  margin: 0;
}

.contact-page-list li {
  margin: 0;
}

.contact-whatsapp-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
}

.contact-whatsapp-link:hover {
  text-decoration: none;
}

.contact-faq-note {
  margin: 4px 0 0;
}

.contact-faq-note a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-social-band {
  background: #e7e1da;
}


.contact-gallery {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  overflow: hidden;
}

.contact-gallery img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.contact-collage-gallery {
  display: block;
  overflow: hidden;
}

.contact-collage-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.contact-collage-gallery a {
  display: block;
  line-height: 0;
}

/* Placeholder, legal, social and footer */
.placeholder {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.placeholder h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 16px;
}

.placeholder p {
  font-size: 1.18rem;
  color: var(--muted);
}

.legal { max-width: 960px; }

.legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
}

.legal h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin-top: 34px;
}

.legal p,
.legal li {
  font-size: 1rem;
}

.social-band {
  background: var(--section);
  text-align: center;
  padding: 20px 0 24px;
  color: var(--muted);
}

.social-band p {
  margin: 0 0 6px;
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
}

.social-band .handle { margin-bottom: 12px; }

.social-band .ig-color {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  display: block;
  background: transparent;
  border-radius: 0;
  line-height: 0;
}

.social-band .ig-color img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
}

.site-footer {
  background: var(--footer);
  color: var(--white-soft);
  min-height: 64px;
  font-size: .88rem;
}

.footer-inner {
  width: calc(100% - 32px);
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  padding: 12px 0 13px;
  text-align: right;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  line-height: 1.35;
  font-size: 20px;
}

.footer-links a {
  color: var(--white-soft);
  text-decoration: none;
  opacity: .95;
}

.footer-links a:hover { text-decoration: underline; }

.footer-links span {
  color: var(--white-soft);
  opacity: .78;
}

.footer-copy {
  line-height: 1.35;
  font-size: 16px;
}

.page-404 {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  background: radial-gradient(circle at 22% 25%, rgba(193,74,62,.13), transparent 26%),
              radial-gradient(circle at 82% 78%, rgba(231,225,218,.85), transparent 28%),
              var(--bg);
  text-align: center;
}

.card-404 {
  max-width: 760px;
  padding: clamp(42px, 7vw, 84px);
  border: 1px solid rgba(95,86,90,.18);
  background: rgba(252,248,247,.62);
  backdrop-filter: blur(6px);
}

.card-404 h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 16vw, 9rem);
  line-height: 1;
  margin: 0 0 24px;
  font-weight: 400;
  letter-spacing: .12em;
}

.card-404 p {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.4;
}

.card-404 a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

/* Desktop-only text inset */
@media (min-width: 841px) {
  .home-copy,
  .analysis-page-title,
  .analysis-intro-lead,
  .analysis-benefit-title,
  .analysis-benefit-lead,
  .analysis-benefits,
  .analysis-content-title,
  .analysis-list,
  .analysis-season-title,
  .analysis-season-subtitle,
  .analysis-season-copy,
  .analysis-season-script,
  .analysis-season-btn,
  .about-page-title,
  .about-intro-copy,
  .about-open-ending,
  .about-middle-copy,
  .about-middle-extra,
  .faq-page-title,
  .faq-page-subtitle,
  .faq-list,
  .faq-contact-title,
  .faq-contact-subtitle,
  .faq-contact-btn,
  .contact-page-title,
  .contact-page-list,
  .contact-faq-note {
    padding-left: 28px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-list { gap: 14px; }

  .header-top,
  .nav-inner,
  .container,
  .hero-frame {
    width: min(100% - 44px, var(--max));
  }

  .footer-inner {
    width: calc(100% - 32px);
    max-width: none;
  }

  .contact-gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 840px) {
  .header-top {
    min-height: 94px;
    padding-top: 20px;
    align-items: flex-start;
  }

  .analysis-process-copy p::before {
    left: -48px;
    width: 36px;
    background: #3f3f3f;
  }
  .analysis-detail-block {
    transform: none;
  }

  .nav-inner {
    height: auto;
    min-height: 58px;
    position: relative;
    justify-content: flex-end;
  }

  .menu-toggle { display: inline-block; }

  .nav-list {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-soft);
    border-top: 1px solid rgba(95,86,90,.12);
  }

  .nav-list.open { display: flex; }

  .nav-list li { border-bottom: 1px solid rgba(95,86,90,.12); }

  .nav-list a {
    display: block;
    padding: 15px 4px;
    font-size: 14px;
  }

  .hero-frame { min-height: 300px; }

  .hero-overlay-copy {
    transform: translateY(-18px);
  }

  .hero-overlay-kicker {
    font-size: clamp(22px, 4.2vw, 34px);
  }

  .hero-overlay-title {
    font-size: clamp(34px, 7vw, 58px);
    letter-spacing: .075em;
  }

  .home-intro-grid,
  .two-column,
  .two-column.reverse,
  .season-grid,
  .about-intro-grid,
  .about-middle-grid,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .two-column.reverse > :first-child { order: 2; }

  .two-column.reverse > :last-child { order: 1; }

  .btn {
    min-height: 72px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-title {
    font-size: clamp(28px, 5vw, 33px);
    letter-spacing: .075em;
  }

  .script-statement {
    transform: none;
    margin-top: 32px;
  }

  .vase-wrap {
    transform: translateY(40px);
  }

  .phone-mockup {
    transform: none;
    margin-inline: auto;
  }

  .display-title { letter-spacing: .08em; }

  .analysis-page-title {
    font-size: clamp(28px, 6vw, 32.2pt);
    letter-spacing: .08em;
  }

  .analysis-intro-lead,
  .analysis-benefit-lead,
  .analysis-season-copy p,
  .analysis-list,
  .analysis-list li,
  .analysis-benefits p,
  .about-intro-copy p,
  .about-open-ending p,
  .about-middle-text p,
  .about-middle-extra p {
    font-size: 16px;
  }

  .analysis-detail-block .analysis-subtitle,
  .analysis-detail-block .analysis-price,
  .analysis-process-title {
    font-size: clamp(24px, 4.6vw, 31px);
  }

  .analysis-benefit-title {
    font-size: clamp(36px, 7vw, 60px);
  }

  .analysis-benefits h3 {
    font-size: clamp(28px, 5vw, 39px);
  }

  .analysis-content-title,
  .analysis-season-title,
  .about-page-title {
    font-size: clamp(28px, 5vw, 43px);
    letter-spacing: .08em;
  }

  .analysis-contact-btn,
  .analysis-season-btn {
    font-size: 17px;
  }

  .spark img { width: 74px; }

   .about-photo-wrap {
    display: block;
    line-height: normal;
  }
  
    .about-photo-wrap .photo-credit {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1;
  }

  .photo-credit {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 8px 0 0;
  }

  .about-open-ending {
    max-width: 100%;
    margin-top: 48px;
  }

  .about-middle-media {
    margin-top: 0;
  }

  .about-middle-copy {
    padding-top: 0;
  }

  .about-middle-title {
    font-size: 48px;
    margin-bottom: 48px;
  }

  .about-middle-extra {
    max-width: 100%;
    margin-top: 48px;
  }

  .about-middle-photo-credit {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    display: block;
    margin-top: 8px;
    font-size: 12px;
  }

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

  .contact-gallery img { height: 230px; }

  .faq-question {
  padding: 14px 0 14px 62px;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(14px + .82em);
  width: 46px;
  height: 1px;
  background: #3f3f3f;
}

.faq-answer {
  padding: 0 0 20px 62px;
}
}


@media (max-width: 520px) {
  .header-actions { gap: 8px; }

  .lang-link span { display: none; }

  .brand-main { font-size: 1.55rem; }

  .brand-sub { font-size: .78rem; }
  .analysis-list li {
    padding-left: 34px;
  }


  .container,
  .header-top,
  .nav-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .hero-frame {
    width: 100%;
    min-height: 255px;
  }

  .hero-overlay-copy {
    padding: 0 20px;
    transform: translateY(-10px);
  }

  .hero-overlay-kicker {
    font-size: 22px;
    line-height: 1.25;
  }

  .hero-overlay-title {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: .055em;
  }

  .section { padding: 54px 0; }

  .display-title {
    font-size: 1.75rem;
    letter-spacing: .12em;
  }

  .home-title {
    font-size: 25px;
    letter-spacing: .065em;
  }

  .home-title span,
  .analysis-intro-lead span {
    white-space: normal;
  }

  .analysis-benefit-lead br,
  .analysis-season-copy p br {
    display: none;
  }

  .analysis-benefit-title { font-size: 34px; }

  .analysis-content-title {
    font-size: 24px;
    letter-spacing: .07em;
  }

  .analysis-season-title {
    font-size: clamp(18px, 5.2vw, 24px);
    letter-spacing: .045em;
  }
  

  .analysis-detail-block .analysis-subtitle,
  .analysis-detail-block .analysis-price,
  .analysis-process-title {
    font-size: 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 841px) {
  .reviews-page-title,
  .reviews-page-subtitle,
  .reviews-carousel {
    padding-left: 28px;
  }
}

@media (max-width: 840px) {
  .reviews-hero {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .reviews-page-title {
    font-size: clamp(28px, 5vw, 43px);
    letter-spacing: .08em;
  }

  .reviews-page-subtitle {
    font-size: clamp(30px, 7vw, 39.4666666666px);
  }

  .review-entry {
    padding-bottom: 64px;
  }

  .reviews-carousel,
  .review-card {
    min-height: auto;
  }

  .review-quote-mark {
    left: 0;
    top: 0;
    font-size: 300px;
    transform: scale(1.55);
  }

  .review-content {
    width: 100%;
    margin-left: 0;
    padding-top: 188px;
  }

  .review-line {
    width: 132px;
    margin-bottom: 36px;
  }

  .review-text,
  .review-author {
    font-size: 16px;
  }

  .review-arrow {
    display: none;
  }
}

@media (max-width: 520px) {
  .reviews-hero {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .review-quote-mark {
    font-size: 240px;
    transform: scale(1.42);
  }

  .review-content {
    padding-top: 150px;
  }
}


/* Legal policy page */
.legal-page {
  padding-top: 82px;
  padding-bottom: 94px;
}

.legal-page-title {
  white-space: normal;
  margin-bottom: 54px;
}

.legal-policy-content {
  max-width: 900px;
}

.legal-policy-content h2 {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--text);
  margin: 42px 0 16px;
}

.legal-policy-content h3 {
  font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--text);
  margin: 28px 0 12px;
}

.legal-policy-content p,
.legal-policy-content li {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  letter-spacing: .01em;
  color: var(--text);
}

.legal-policy-content p {
  margin: 0 0 16px;
}

.legal-policy-content ul {
  margin: 0 0 24px 22px;
  padding: 0;
}

.legal-policy-content a {
  color: var(--text);
  text-underline-offset: 4px;
}

@media (max-width: 840px) {
  .legal-page {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .legal-page-title {
    font-size: clamp(27px, 6vw, 38px);
    line-height: 1.25;
    letter-spacing: .08em;
    margin-bottom: 38px;
  }

  .legal-policy-content h2 {
    font-size: 23px;
    margin-top: 34px;
  }

  .legal-policy-content h3 {
    font-size: 19px;
  }

  .legal-policy-content p,
  .legal-policy-content li {
    font-size: 16px;
    line-height: 1.62;
  }
}

@media (max-width: 520px) {
  .legal-page {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .legal-page-title {
    font-size: 28px;
    letter-spacing: .065em;
  }

  .legal-policy-content ul {
    margin-left: 18px;
  }
}


/* Legal pages r02 - compact title/body treatment based on supplied legal-page visual */
.legal-page {
  padding-top: 48px;
  padding-bottom: 54px;
}

.legal-page-title {
  font-family: 'Tenor Sans', 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: .30em;
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 16px;
  white-space: normal;
}

.legal-policy-content,
.legal-text-body {
  max-width: none;
  width: 100%;
}

.legal-policy-content h2,
.legal-policy-content h3,
.legal-text-body h2,
.legal-text-body h3 {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: .015em;
  color: var(--text);
  margin: 14px 0 3px;
}

.legal-policy-content p,
.legal-policy-content li,
.legal-text-body p,
.legal-text-body li {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13.2px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: .012em;
  color: var(--text);
}

.legal-policy-content p,
.legal-text-body p {
  margin: 0 0 8px;
}

.legal-policy-content ul,
.legal-text-body ul {
  margin: 0 0 10px 20px;
  padding: 0;
}

.legal-policy-content li,
.legal-text-body li {
  margin: 0;
  padding-left: 1px;
}

.legal-policy-content a,
.legal-text-body a {
  color: var(--text);
  text-underline-offset: 3px;
}

/* Button letter-spacing alignment: all site buttons match the Kişisel Renk Analizi / İletişim button */
.btn,
.btn.secondary,
.analysis-contact-btn,
.analysis-season-btn,
.faq-contact-btn {
  letter-spacing: .14em;
}

@media (max-width: 840px) {
  .legal-page {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .legal-page-title {
    font-size: clamp(24px, 5.2vw, 30px);
    line-height: 1.22;
    letter-spacing: .18em;
    margin-bottom: 16px;
  }

  .legal-policy-content h2,
  .legal-policy-content h3,
  .legal-text-body h2,
  .legal-text-body h3 {
    font-size: 14px;
    line-height: 1.24;
    margin: 15px 0 4px;
  }

  .legal-policy-content p,
  .legal-policy-content li,
  .legal-text-body p,
  .legal-text-body li {
    font-size: 13.5px;
    line-height: 1.27;
  }
}

@media (max-width: 520px) {
  .legal-page {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .legal-page-title {
    font-size: 22px;
    letter-spacing: .12em;
  }

  .legal-policy-content ul,
  .legal-text-body ul {
    margin-left: 18px;
  }
}

/* Legal pages r04 - requested typography lock */
.legal-page-title {
  font-size: 42.93338px;
  line-height: 1.4;
  letter-spacing: .15em;
  margin-bottom: 22px;
}

.legal-policy-content,
.legal-text-body,
.legal-policy-content h2,
.legal-policy-content h3,
.legal-policy-content p,
.legal-policy-content li,
.legal-text-body h2,
.legal-text-body h3,
.legal-text-body p,
.legal-text-body li {
  font-family: 'Helvetica World', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18.4px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text);
}

.legal-policy-content h2,
.legal-policy-content h3,
.legal-text-body h2,
.legal-text-body h3 {
  line-height: 1.32;
  margin: 22px 0 6px;
}

.legal-policy-content p,
.legal-policy-content li,
.legal-text-body p,
.legal-text-body li {
  line-height: 1.34;
}

.legal-policy-content p,
.legal-text-body p {
  margin: 0 0 10px;
}

.legal-policy-content ul,
.legal-text-body ul {
  margin: 0 0 14px 24px;
  padding: 0;
}

@media (max-width: 840px) {
  .legal-page-title {
    font-size: 42.93338px;
    line-height: 1.4;
    letter-spacing: .15em;
    margin-bottom: 22px;
  }

  .legal-policy-content,
  .legal-text-body,
  .legal-policy-content h2,
  .legal-policy-content h3,
  .legal-policy-content p,
  .legal-policy-content li,
  .legal-text-body h2,
  .legal-text-body h3,
  .legal-text-body p,
  .legal-text-body li {
    font-size: 18.4px;
    font-style: normal;
    font-weight: 400;
  }
}

@media (max-width: 520px) {
  .legal-page-title {
    font-size: 42.93338px;
    line-height: 1.4;
    letter-spacing: .15em;
    margin-bottom: 22px;
  }

  .legal-policy-content,
  .legal-text-body,
  .legal-policy-content h2,
  .legal-policy-content h3,
  .legal-policy-content p,
  .legal-policy-content li,
  .legal-text-body h2,
  .legal-text-body h3,
  .legal-text-body p,
  .legal-text-body li {
    font-size: 18.4px;
    font-style: normal;
    font-weight: 400;
  }
}

/* Legal pages r05 - desktop text inset alignment */
@media (min-width: 841px) {
  .legal-page-title,
  .legal-policy-content,
  .legal-text-body {
    padding-left: 28px;
  }
}

/* R15 Reviews desktop manual controls - minimal fix, structure preserved */
@media (min-width: 841px) {
  .reviews-carousel {
    /*
      TIRNAK AYARI
      left azalırsa sola gider, artarsa sağa gider.
      top azalırsa yukarı çıkar, artarsa aşağı iner.
    */
    --review-quote-left: -10px;
    --review-quote-top: -200px;
    --review-quote-size: 730px;

    /*
      ÇİZGİ + YORUM METNİ GRUBU
      text-left: çizgi ve yorumun soldan başlangıcı
      text-right: yorum kutusunun sağ sınırı
      text-top: çizgi ve yorum grubunun yukarı/aşağı konumu
    */
    --review-text-left: 290px;
    --review-text-right: 1062px;
    --review-text-top: 110px;

    /*
      ÇİZGİ AYARI
      width: çizgi uzunluğu
      thickness: çizgi kalınlığı
      gap: çizgi ile yorum metni arası boşluk
    */
    --review-line-width: 198px;
    --review-line-thickness: 1px;
    --review-line-gap: 30px;

    /*
      OKLAR
      arrow-top: iki oku birlikte yukarı/aşağı taşır
      left-arrow-x: sol oku sağa/sola taşır
      right-arrow-x: sağ oku sağa/sola taşır
    */
    --review-arrow-top: 165px;
    --review-left-arrow-x: 185px;
    --review-right-arrow-x: 1005px;
  }

  /* Yorumlar bölümünde arka plan her zaman açık renk kalır. */
  .review-entry,
  .review-entry.is-alt {
    background: #fcf7f1;
  }

  /* Tırnak işareti: her yorumda aynı renk kalır. */
  .review-quote-mark,
  .review-entry.is-alt .review-quote-mark {
    left: var(--review-quote-left);
    top: var(--review-quote-top);

    font-family: 'TT Ramillas', 'Tenor Sans', 'Times New Roman', serif;
    font-size: var(--review-quote-size);
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 400;
    color: #e7e1da;
    transform: none;
    transform-origin: left top;
  }

  /* Çizgi + yorum metni grubu */
  .review-content {
    margin-left: var(--review-text-left);
    padding-top: var(--review-text-top);
    width: calc(var(--review-text-right) - var(--review-text-left));
    max-width: calc(var(--review-text-right) - var(--review-text-left));
  }

  /* Çizgi */
  .review-line {
    width: var(--review-line-width);
    height: var(--review-line-thickness);
    background: #0f0f0f;
    margin: 0 0 var(--review-line-gap);
  }

  .review-text,
  .review-author {
    letter-spacing: 0;
  }

  /*
    Oklar:
    Buton alanı geniş bırakıldı; okun çevresine gelince de hover çalışır.
    Font-size değiştirmiyoruz, sadece transform ile estetik büyütüyoruz.
  */
  .review-arrow {
    top: var(--review-arrow-top);
    width: 180px;
    height: 240px;
    display: flex;
    align-items: center;
    color: #3f3f3f;
    font-size: 30px;
    line-height: 1;
    opacity: .94;
    border-radius: 999px;
    transform: scale(1);
    transform-origin: center center;
    transition:
      transform .26s cubic-bezier(.2, .8, .2, 1),
      opacity .22s ease,
      color .22s ease;
    will-change: transform;
  }

  .review-arrow:hover,
  .review-arrow:focus-visible {
    transform: scale(1.14);
    opacity: 1;
    color: #0f0f0f;
  }

  .review-arrow-prev {
    left: var(--review-left-arrow-x);
    justify-content: flex-start;
  }

  .review-arrow-next {
    left: var(--review-right-arrow-x);
    right: auto;
    justify-content: flex-end;
  }
}

/* R16 Kişisel Renk Analizi responsive final patch */
@media (max-width: 1100px) {
  .analysis-page-title {
    white-space: normal;
    max-width: 860px;
    font-size: clamp(32px, 4.4vw, 42.93338px);
    line-height: 1.24;
    letter-spacing: .105em;
    overflow-wrap: anywhere;
  }

  .analysis-intro-lead {
    max-width: 860px;
  }

  .analysis-intro-lead span {
    white-space: normal;
  }

  .analysis-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 46px;
    margin-top: 52px !important;
  }

  .analysis-hero-grid > :first-child {
    order: 2;
  }

  .analysis-hero-grid > :last-child {
    order: 1;
  }

  .analysis-detail-block {
    transform: none;
    max-width: 820px;
  }

  .analysis-side-intro br {
    display: none;
  }

  .phone-mockup {
    width: clamp(224px, 34vw, 266px);
    transform: none;
  }

  .cards-3.analysis-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3.4vw, 42px);
    margin-top: 92px;
  }

  .analysis-benefits h3 {
    font-size: clamp(28px, 3.3vw, 39.2px);
    line-height: 1.12;
    min-height: 2.24em;
  }

  .analysis-benefits p {
    font-size: clamp(16px, 2vw, 18px);
  }

  .analysis-season-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .analysis-season-title {
    white-space: normal;
    max-width: 900px;
  }

  .analysis-season-block .analysis-season-subtitle {
    margin-bottom: 62px;
  }

  .analysis-season-block .analysis-season-script {
    transform: none;
    margin: 72px 0 42px;
    text-align: left;
  }

  .analysis-season-grid .season-wheel {
    max-width: min(420px, 72vw);
    justify-self: center;
  }
}

@media (max-width: 840px) {
  .analysis-page-title {
    font-size: clamp(27px, 6.3vw, 36px);
    line-height: 1.24;
    letter-spacing: .075em;
    margin-bottom: 24px;
  }

  .analysis-intro-lead,
  .analysis-side-intro,
  .analysis-process-copy p,
  .analysis-benefit-lead,
  .analysis-benefits p,
  .analysis-list,
  .analysis-list li,
  .analysis-season-copy p {
    font-size: 17px;
    line-height: 1.46;
    letter-spacing: .01em;
  }

  .analysis-hero-grid {
    gap: 42px;
    margin-top: 42px !important;
  }

  .analysis-detail-block .analysis-subtitle,
  .analysis-detail-block .analysis-price {
    font-size: clamp(25px, 5.7vw, 31px);
    line-height: 1.22;
  }

  .analysis-contact-btn,
  .analysis-season-btn {
    width: min(100%, 330px);
    min-height: 64px;
    font-size: 17px;
    letter-spacing: .105em;
    margin-top: 34px;
  }

  .analysis-side-intro {
    margin-top: 28px !important;
  }

  .analysis-process-title {
    font-size: clamp(25px, 5.7vw, 31px);
    margin: 58px 0 28px;
  }

  .analysis-process-copy {
    row-gap: 28px;
  }

  .analysis-process-copy p {
    padding-left: 54px;
  }

  .analysis-process-copy p::before {
    left: 0;
    top: .78em;
    width: 36px;
  }

  .phone-mockup {
    width: clamp(218px, 58vw, 258px);
    margin-top: 2px;
  }

  .analysis-benefit-title {
    font-size: clamp(36px, 9vw, 54px);
    line-height: 1.12;
    margin-bottom: 26px;
  }

  .analysis-benefit-lead br {
    display: none;
  }

  .cards-3.analysis-benefits {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 58px;
    max-width: 680px;
  }

  .analysis-benefits h3 {
    min-height: 0;
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .spark {
    margin: 70px 0 44px;
  }

  .spark img {
    width: 54px;
  }

  .analysis-content-title {
    font-size: clamp(25px, 6.2vw, 34px);
    line-height: 1.25;
    letter-spacing: .075em;
    margin-bottom: 38px;
  }

  .analysis-list {
    gap: 20px;
  }

  .analysis-list li {
    padding-left: 38px;
  }

  .analysis-season-title {
    font-size: clamp(23px, 5.8vw, 34px);
    line-height: 1.28;
    letter-spacing: .075em;
    white-space: normal;
  }

  .analysis-season-subtitle,
  .analysis-season-subtitle em {
    font-size: clamp(30px, 7.4vw, 39.4667px);
    line-height: 1.14;
  }

  .analysis-season-block .analysis-season-subtitle {
    margin-bottom: 42px;
  }

  .analysis-season-copy {
    gap: 18px;
  }

  .analysis-season-copy p br {
    display: none;
  }

  .analysis-season-block .analysis-season-script {
    font-size: clamp(40px, 10vw, 54.6667px);
    line-height: 1.08;
    text-align: center;
    margin: 54px 0 34px;
  }

  .analysis-season-grid .season-wheel {
    max-width: min(360px, 86vw);
  }
}

@media (max-width: 520px) {
  .analysis-page-title {
    font-size: clamp(24px, 7vw, 29px);
    line-height: 1.25;
    letter-spacing: .06em;
  }

  .analysis-intro-lead,
  .analysis-side-intro,
  .analysis-process-copy p,
  .analysis-benefit-lead,
  .analysis-benefits p,
  .analysis-list,
  .analysis-list li,
  .analysis-season-copy p {
    font-size: 16px;
    line-height: 1.48;
  }

  .analysis-hero-grid {
    margin-top: 34px !important;
  }

  .analysis-detail-block .analysis-subtitle,
  .analysis-detail-block .analysis-price,
  .analysis-process-title {
    font-size: 24px;
  }

  .analysis-process-title {
    margin-top: 50px;
  }

  .analysis-process-copy p {
    padding-left: 44px;
  }

  .analysis-process-copy p::before {
    width: 28px;
  }

  .analysis-contact-btn,
  .analysis-season-btn {
    width: 100%;
    min-height: 62px;
    font-size: 16px;
    letter-spacing: .085em;
    padding-left: 16px;
    padding-right: 16px;
  }

  .phone-mockup {
    width: min(226px, 72vw);
  }

  .analysis-benefit-title {
    font-size: clamp(34px, 10vw, 42px);
  }

  .cards-3.analysis-benefits {
    gap: 30px;
    margin-top: 48px;
  }

  .analysis-content-title {
    font-size: clamp(23px, 7vw, 28px);
    letter-spacing: .055em;
  }

  .analysis-list li {
    padding-left: 32px;
  }

  .analysis-season-title {
    font-size: clamp(21px, 6.2vw, 25px);
    letter-spacing: .045em;
  }

  .analysis-season-block .analysis-season-subtitle {
    margin-bottom: 34px;
  }

  .analysis-season-block .analysis-season-script {
    font-size: clamp(38px, 11vw, 48px);
    margin: 46px 0 30px;
  }

  .analysis-season-grid .season-wheel {
    max-width: min(310px, 88vw);
  }
}

/* R17 Global responsive completion patch */
@media (max-width: 1100px) {
  html,
  body {
    overflow-x: hidden;
  }

  .section {
    padding-top: clamp(58px, 7vw, 92px);
    padding-bottom: clamp(58px, 7vw, 92px);
  }

  .display-title,
  .reviews-page-title,
  .faq-page-title,
  .faq-contact-title,
  .contact-page-title,
  .about-page-title,
  .legal-page-title {
    max-width: 100%;
    line-height: 1.24;
    letter-spacing: .095em;
    overflow-wrap: anywhere;
  }

  .display-title {
    font-size: clamp(31px, 4.4vw, 48px);
  }

  .header-top {
    min-height: 104px;
    padding-top: 22px;
  }

  .brand-main {
    font-size: clamp(1.45rem, 3vw, 2rem);
  }

  .brand-sub {
    font-size: clamp(.76rem, 1.3vw, .92rem);
  }

  .nav-list {
    gap: clamp(10px, 1.8vw, 20px);
  }

  .nav-list a {
    font-size: clamp(12px, 1.35vw, 15px);
    letter-spacing: .035em;
  }

  .hero-frame {
    min-height: clamp(300px, 39vw, 500px);
  }

  .hero-overlay-copy {
    transform: translateY(-22px);
  }

  .hero-overlay-title {
    font-size: clamp(40px, 5.8vw, 72px);
    letter-spacing: .075em;
  }

  .hero-overlay-kicker {
    font-size: clamp(24px, 3.3vw, 40px);
  }

  .home-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .76fr);
    gap: clamp(38px, 6vw, 72px);
  }

  .home-title {
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.28;
    margin-bottom: clamp(48px, 6vw, 82px);
  }

  .script-statement,
  .script,
  .large-script {
    transform: none;
  }

  .vase-wrap {
    width: clamp(230px, 30vw, 340px);
    transform: translateY(42px);
  }

  .about-page-title {
    font-size: clamp(31px, 4.2vw, 42.93338px);
    line-height: 1.25;
  }

  .about-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    gap: clamp(38px, 5vw, 66px);
  }

  .about-middle-grid {
    grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 72px);
  }

  .about-middle-title {
    font-size: clamp(44px, 5.8vw, 54.6667px);
    margin-bottom: clamp(42px, 5vw, 64px);
  }

  .about-middle-media {
    margin-top: 42px;
  }

  .about-open-ending {
    max-width: 100%;
  }

  .two-column,
  .two-column.reverse,
  .season-grid {
    gap: clamp(38px, 6vw, 72px);
  }

  .cards-3 {
    gap: clamp(24px, 3.5vw, 42px);
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-question {
    font-size: clamp(18px, 2.15vw, 22px);
  }

  .faq-answer p {
    font-size: clamp(17px, 2vw, 22px);
  }

  .contact-hero {
    padding-bottom: clamp(96px, 13vw, 160px);
  }

  .contact-gallery img {
    height: clamp(220px, 25vw, 290px);
  }

  .review-entry,
  .review-entry.is-alt {
    background: #fcf7f1;
  }

  .legal-page {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .footer-links {
    font-size: clamp(15px, 1.7vw, 20px);
  }
}

@media (max-width: 840px) {
  .header-top {
    min-height: 92px;
    padding-top: 18px;
    align-items: flex-start;
  }

  .header-actions {
    gap: 10px;
  }

  .menu-bar {
    position: relative;
    z-index: 20;
  }

  .nav-inner {
    min-height: 58px;
  }

  .nav-list {
    top: 58px;
    left: 0;
    right: 0;
    padding: 8px 0;
    box-shadow: 0 18px 34px rgba(15, 15, 15, .08);
  }

  .nav-list a {
    padding: 14px 18px;
    font-size: 14px;
    letter-spacing: .045em;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .container,
  .header-top,
  .nav-inner,
  .hero-frame {
    width: min(100% - 36px, var(--max));
  }

  .display-title,
  .reviews-page-title,
  .faq-page-title,
  .faq-contact-title,
  .contact-page-title,
  .about-page-title,
  .legal-page-title {
    font-size: clamp(28px, 6.2vw, 38px);
    line-height: 1.25;
    letter-spacing: .075em;
  }

  .hero-frame {
    width: min(100% - 28px, var(--max));
    min-height: clamp(280px, 60vw, 390px);
  }

  .hero-overlay-copy {
    padding: 0 20px;
    transform: translateY(-12px);
  }

  .hero-overlay-kicker {
    font-size: clamp(22px, 5.5vw, 32px);
    line-height: 1.2;
  }

  .hero-overlay-title {
    font-size: clamp(32px, 8.2vw, 52px);
    line-height: 1.16;
    letter-spacing: .055em;
  }

  .home-intro-grid,
  .two-column,
  .two-column.reverse,
  .season-grid,
  .about-intro-grid,
  .about-middle-grid,
  .about-hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-copy {
    max-width: 100%;
  }

  .home-title {
    font-size: clamp(27px, 6.8vw, 36px);
    line-height: 1.27;
    letter-spacing: .07em;
    margin-bottom: 38px;
  }

  .home-title span {
    white-space: normal;
  }

  .home-copy p:not(.script-statement) {
    font-size: 17px;
    line-height: 1.48;
    letter-spacing: .01em;
  }

  .script-statement,
  .script,
  .large-script {
    font-size: clamp(40px, 10vw, 54.6667px);
    line-height: 1.08;
    text-align: center;
    margin: 30px 0 22px;
  }

  .vase-wrap {
    width: min(340px, 76vw);
    transform: none;
    margin: 6px auto 0;
  }

  .about-page-section {
    padding-top: 54px;
  }

  .about-page-title {
    margin-bottom: 38px;
  }

  .about-intro-copy p,
  .about-quote,
  .about-open-ending p,
  .about-middle-text p,
  .about-middle-extra p,
  .text-block p,
  .lead,
  .price,
  .eyebrow {
    font-size: 16.5px;
    line-height: 1.48;
    letter-spacing: .01em;
  }

  .about-quote {
    margin: 28px auto;
    text-align: center;
  }

  .about-photo-wrap,
  .about-middle-media {
    max-width: min(460px, 100%);
    margin-inline: auto;
  }

  .about-photo-wrap img,
  .about-middle-media img {
    max-height: none;
    width: 100%;
    height: auto;
  }

  .about-open-ending {
    margin-top: 44px;
  }

  .about-open-ending .about-colors-script,
  .about-middle-title {
    font-size: clamp(40px, 10vw, 54.6667px);
    margin: 42px 0 32px;
  }

  .about-open-ending .about-colors-note {
    margin-bottom: 52px;
  }

  .about-middle-section {
    padding-top: 54px;
  }

  .about-middle-copy {
    padding-top: 0;
  }

  .about-middle-extra {
    margin-top: 44px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .spark {
    margin: 64px 0 42px;
  }

  .faq-page-subtitle,
  .faq-contact-subtitle {
    font-size: clamp(30px, 7.4vw, 39.4667px);
    margin-bottom: 44px;
  }

  .faq-question {
    padding: 15px 0 15px 58px;
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: .01em;
  }

  .faq-question::before {
    top: calc(15px + .78em);
    width: 42px;
  }

  .faq-answer {
    padding: 0 0 20px 58px;
  }

  .faq-answer p {
    font-size: 16.5px;
    line-height: 1.5;
    letter-spacing: .01em;
  }

  .faq-contact-btn {
    width: min(100%, 330px);
    min-height: 62px;
    margin-left: 0;
  }

  .contact-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact-page-list,
  .contact-page-list a,
  .contact-faq-note,
  .contact-list {
    font-size: 17px;
    line-height: 1.5;
  }

  .contact-list {
    gap: 10px;
  }

  .contact-collage-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

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

  .contact-gallery img {
    height: 220px;
  }

  .reviews-hero {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .reviews-page-subtitle {
    font-size: clamp(30px, 7.2vw, 39.4667px);
    line-height: 1.16;
  }

  .review-entry {
    padding-bottom: 58px;
  }

  .reviews-carousel,
  .review-card {
    min-height: auto;
  }

  .review-quote-mark,
  .review-entry.is-alt .review-quote-mark {
    left: 0;
    top: 0;
    font-size: clamp(260px, 56vw, 340px);
    line-height: 1.15;
    color: #e7e1da;
    transform: none;
  }

  .review-content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-top: clamp(142px, 36vw, 220px);
  }

  .review-line {
    width: 148px;
    height: 1.5px;
    background: #0f0f0f;
    margin-bottom: 28px;
  }

  .review-text,
  .review-author {
    font-size: 16.5px;
    line-height: 1.5;
    letter-spacing: .01em;
  }

  .review-author {
    margin-top: 30px;
  }

  .review-arrow {
    display: none;
  }

  .placeholder {
    min-height: 50vh;
    padding: 56px 0;
  }

  .placeholder h1 {
    font-size: clamp(38px, 10vw, 64px);
  }

  .placeholder p {
    font-size: 17px;
  }

  .legal-page {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .legal-page-title {
    font-size: clamp(27px, 6.2vw, 38px);
    line-height: 1.28;
    letter-spacing: .075em;
    margin-bottom: 30px;
  }

  .legal-policy-content,
  .legal-text-body,
  .legal-policy-content h2,
  .legal-policy-content h3,
  .legal-policy-content p,
  .legal-policy-content li,
  .legal-text-body h2,
  .legal-text-body h3,
  .legal-text-body p,
  .legal-text-body li {
    font-size: 16px;
    line-height: 1.48;
  }

  .footer-inner {
    width: calc(100% - 32px);
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-links {
    justify-content: center;
    font-size: 14px;
    gap: 6px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .social-band {
    padding: 18px 0 22px;
  }

  .social-band p {
    font-size: 15px;
  }

  .social-band .ig-color,
  .social-band .ig-color img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 520px) {
  .container,
  .header-top,
  .nav-inner,
  .footer-inner {
    width: calc(100% - 30px);
  }

  .header-top {
    min-height: 86px;
  }

  .brand-main {
    font-size: 1.42rem;
  }

  .brand-sub {
    font-size: .74rem;
  }

  .lang-link {
    font-size: 13px;
  }

  .hero-frame {
    width: 100%;
    min-height: 255px;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .display-title,
  .reviews-page-title,
  .faq-page-title,
  .faq-contact-title,
  .contact-page-title,
  .about-page-title,
  .legal-page-title {
    font-size: clamp(24px, 7.2vw, 30px);
    letter-spacing: .055em;
  }

  .home-title {
    font-size: clamp(24px, 7vw, 29px);
    letter-spacing: .055em;
  }

  .home-copy p:not(.script-statement),
  .about-intro-copy p,
  .about-quote,
  .about-open-ending p,
  .about-middle-text p,
  .about-middle-extra p,
  .text-block p,
  .lead,
  .contact-page-list,
  .contact-page-list a,
  .contact-faq-note {
    font-size: 16px;
    line-height: 1.5;
  }

  .script-statement,
  .script,
  .large-script,
  .about-open-ending .about-colors-script,
  .about-middle-title {
    font-size: clamp(38px, 11vw, 48px);
  }

  .vase-wrap {
    width: min(300px, 82vw);
  }

  .faq-question {
    padding-left: 48px;
    font-size: 16px;
  }

  .faq-question::before {
    width: 32px;
  }

  .faq-answer {
    padding-left: 48px;
  }

  .faq-answer p {
    font-size: 16px;
  }

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

  .contact-gallery img {
    height: auto;
    max-height: none;
  }

  .review-quote-mark,
  .review-entry.is-alt .review-quote-mark {
    font-size: clamp(220px, 66vw, 280px);
  }

  .review-content {
    padding-top: clamp(124px, 40vw, 170px);
  }

  .review-line {
    width: 118px;
    height: 1.5px;
    margin-bottom: 24px;
  }

  .review-text,
  .review-author {
    font-size: 16px;
  }

  .legal-policy-content,
  .legal-text-body,
  .legal-policy-content h2,
  .legal-policy-content h3,
  .legal-policy-content p,
  .legal-policy-content li,
  .legal-text-body h2,
  .legal-text-body h3,
  .legal-text-body p,
  .legal-text-body li {
    font-size: 15.5px;
  }

  .footer-links {
    font-size: 13px;
  }
}

/* R18 Mobile surgical fixes */
@media (max-width: 840px) {
  /* Yorumlar: mobilde oklar gizlenmez; slider fonksiyonu korunur. */
  .reviews-carousel {
    padding-bottom: 70px;
  }

  .review-entry,
  .review-entry.is-alt {
    background: #fcf7f1;
  }

  .review-quote-mark,
  .review-entry.is-alt .review-quote-mark {
    color: #e7e1da;
  }

  .review-line {
    background: #0f0f0f;
  }

  .review-arrow {
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    z-index: 6;
    color: #3f3f3f;
    background: transparent;
    border: 0;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
    opacity: .96;
    transform: scale(1);
    transform-origin: center center;
    transition:
      transform .24s cubic-bezier(.2, .8, .2, 1),
      opacity .2s ease,
      color .2s ease;
    will-change: transform;
  }

  .review-arrow:hover,
  .review-arrow:focus-visible,
  .review-arrow:active {
    transform: scale(1.14);
    opacity: 1;
    color: #0f0f0f;
  }

  .review-arrow-prev {
    left: 0;
    right: auto;
  }

  .review-arrow-next {
    left: auto;
    right: 0;
  }

  /* Mobil CTA butonları tek satırda kalır. */
  .btn {
    white-space: nowrap;
    min-height: 62px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: clamp(15px, 4.2vw, 17px);
    letter-spacing: .045em;
  }

  .home-copy .btn {
    font-size: clamp(14.5px, 4.1vw, 17px);
    letter-spacing: .035em;
    padding-left: 12px;
    padding-right: 12px;
  }

  .faq-contact-btn {
    width: min(100%, 330px);
    max-width: 100%;
    font-size: clamp(14px, 3.95vw, 16px);
    letter-spacing: .02em;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Hakkımda başlık: mevcut <br> korunur; satır içi kırılma engellenir. */
  .about-page-title {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    font-size: clamp(19px, 5.4vw, 30px);
    line-height: 1.34;
    letter-spacing: .035em;
  }
}

@media (max-width: 520px) {
  .btn {
    min-height: 60px;
    font-size: 15px;
    letter-spacing: .025em;
    padding-left: 11px;
    padding-right: 11px;
  }

  .home-copy .btn {
    font-size: 14.5px;
    letter-spacing: .01em;
    padding-left: 10px;
    padding-right: 10px;
  }

  .faq-contact-btn {
    font-size: 13.8px;
    letter-spacing: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .about-page-title {
    font-size: clamp(18px, 5.7vw, 22px);
    line-height: 1.34;
    letter-spacing: .018em;
  }

  .reviews-carousel {
    padding-bottom: 66px;
  }

  .review-arrow {
    width: 50px;
    height: 50px;
    font-size: 27px;
  }
}

@media (max-width: 340px) {
  .home-copy .btn {
    font-size: 13.8px;
    letter-spacing: 0;
  }

  .faq-contact-btn {
    font-size: 13px;
    letter-spacing: -.01em;
  }

  .about-page-title {
    font-size: 18px;
    letter-spacing: 0;
  }
}
