/* ============================================================
   Shine in Antalya — Shared Stylesheet
   Hygge meets the Mediterranean
   ============================================================ */

:root {
  --plum: #9A64CE;
  --plum-deep: #7d4eb0;
  --plum-soft: #ad7dd6;
  --cream: #f5f5f5;
  --rose: #DE8DA9;
  --ink: #3d3d3d;
  --ink-soft: #2a2a2a;
  --wa-green: #25D366;

  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Work Sans", -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--plum);
  color: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Subtle grain texture for warmth/depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Warm rose-tinted glow */
body::after {
  content: "";
  position: fixed;
  top: -20%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle at center, rgba(222, 141, 169, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 2; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1280px, 92%); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn .arrow { transition: transform 0.4s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 245, 245, 0.4);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(154, 100, 206, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-mark { color: var(--rose); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid rgba(245, 245, 245, 0.25);
  padding-left: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-lang a {
  opacity: 0.55;
  transition: opacity 0.3s, color 0.3s;
}
.nav-lang a.active {
  opacity: 1;
  color: var(--rose);
}
.nav-lang a:hover { opacity: 1; }
.nav-lang .divider { opacity: 0.3; }

.nav-cta { padding: 11px 22px; font-size: 12px; }

@media (max-width: 1000px) {
  .nav-links li.hide-md { display: none; }
}
@media (max-width: 800px) {
  .nav-links li.hide-sm { display: none; }
  .nav-lang { padding-left: 0; border-left: none; }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  padding: 160px 0 80px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-greeting {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--rose);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.2s ease forwards;
}

.hero h1 {
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1.2s 0.4s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.hero h1 .small-line {
  display: block;
  font-size: 0.36em;
  letter-spacing: 0.04em;
  font-style: italic;
  margin-top: 18px;
  opacity: 0.92;
  color: var(--cream);
}

.hero-lede {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.88);
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1.2s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s 0.9s ease forwards;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  opacity: 0;
  animation: fadeIn 1.6s 0.6s ease forwards;
}
.hero-visual .frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.hero-visual .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(154, 100, 206, 0.18), transparent 50%, rgba(222, 141, 169, 0.18));
  mix-blend-mode: multiply;
}

.hero-tag {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--cream);
  color: var(--ink-soft);
  padding: 22px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  max-width: 240px;
  box-shadow: 0 30px 60px rgba(40, 20, 60, 0.25);
}
.hero-tag .tag-label {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-marquee {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(245, 245, 245, 0.18);
  border-bottom: 1px solid rgba(245, 245, 245, 0.18);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(245, 245, 245, 0.82);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track span::after {
  content: "✦";
  color: var(--rose);
  font-style: normal;
  font-size: 14px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding-top: 130px; }
  .hero-marquee { display: none; }
}

/* ===================== SECTIONS ===================== */
section { padding: 130px 0; position: relative; }
@media (max-width: 700px) { section { padding: 80px 0; } }

/* ===================== TRUST STRIP ===================== */
.trust {
  padding: 56px 0;
  border-top: 1px solid rgba(245, 245, 245, 0.12);
  border-bottom: 1px solid rgba(245, 245, 245, 0.12);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.trust-item { display: flex; align-items: flex-start; gap: 18px; }
.trust-num {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--rose);
  line-height: 1;
  padding-top: 4px;
}
.trust-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.92);
}
.trust-text strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--cream);
}
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ===================== PHILOSOPHY ===================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.philosophy-text h2 {
  font-size: clamp(40px, 5.4vw, 70px);
  margin: 24px 0 36px;
  font-weight: 400;
}
.philosophy-text h2 em { font-style: italic; color: var(--rose); }
.philosophy-text p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(245, 245, 245, 0.88);
  font-weight: 300;
  margin-bottom: 22px;
}
.philosophy-pull {
  margin-top: 44px;
  padding: 32px 36px;
  border-left: 2px solid var(--rose);
  background: rgba(245, 245, 245, 0.05);
}
.philosophy-pull p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--cream);
  margin: 0;
  font-weight: 400;
}
.philosophy-pull cite {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

.philosophy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.philosophy-visual .ph { overflow: hidden; position: relative; }
.philosophy-visual .ph img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-visual .ph-1 { grid-row: span 2; }
.philosophy-visual .ph-3 {
  background: var(--rose);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.philosophy-visual .ph-3 .num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
}
.philosophy-visual .ph-3 .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 60px; }
  .philosophy-visual { order: -1; }
}

/* ===================== SERVICES ===================== */
.services { background: var(--plum-deep); position: relative; }
.services::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 245, 245, 0.2), transparent);
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.services-intro h2 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  font-weight: 400;
}
.services-intro h2 em { font-style: italic; color: var(--rose); }
.services-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.85);
  font-weight: 300;
}
@media (max-width: 800px) { .services-intro { grid-template-columns: 1fr; gap: 32px; } }

.service-block {
  border-top: 1px solid rgba(245, 245, 245, 0.18);
  padding: 56px 0;
  display: grid;
  grid-template-columns: 0.4fr 0.7fr 1fr 0.4fr;
  gap: 40px;
  align-items: start;
  transition: padding 0.4s ease;
}
.service-block:last-of-type { border-bottom: 1px solid rgba(245, 245, 245, 0.18); }
.service-block:hover { padding-left: 16px; padding-right: 16px; }

.service-num {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--rose);
  letter-spacing: 0.05em;
}
.service-cat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.65);
  padding-top: 8px;
}
.service-content h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
}
.service-content h3 em { font-style: italic; color: var(--rose); }
.service-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.82);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.service-list li {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cream);
  padding: 7px 14px;
  border: 1px solid rgba(245, 245, 245, 0.28);
  border-radius: 100px;
}
.service-arrow {
  text-align: right;
  padding-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--rose);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.service-block:hover .service-arrow { opacity: 1; transform: translateX(6px); }

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .service-block:hover { padding-left: 0; padding-right: 0; }
  .service-arrow { display: none; }
}

/* ===================== LANGUAGE SUPPORT ===================== */
.language { padding: 140px 0; }
.language-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  align-items: center;
}
.language-visual { position: relative; }
.language-visual .img-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.language-visual .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}
.language-card {
  position: absolute;
  bottom: -36px;
  right: -36px;
  background: var(--cream);
  color: var(--ink-soft);
  padding: 28px 32px;
  width: 280px;
  box-shadow: 0 30px 60px rgba(40, 20, 60, 0.3);
}
.language-card .flag-row { display: flex; gap: 6px; margin-bottom: 14px; }
.language-card .flag {
  width: 28px;
  height: 20px;
  overflow: hidden;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.language-card h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 500;
}
.language-card p {
  font-size: 13px;
  line-height: 1.5;
  color: #5a5a5a;
}

.language-text h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  margin: 24px 0 32px;
  font-weight: 400;
  line-height: 1;
}
.language-text h2 em { font-style: italic; color: var(--rose); }
.language-text > p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(245, 245, 245, 0.88);
  font-weight: 300;
  margin-bottom: 28px;
}

.lang-features { display: grid; gap: 20px; margin-top: 36px; }
.lang-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.12);
}
.lang-feature:last-child { border-bottom: none; }
.lang-feature .lf-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--rose);
  line-height: 1;
}
.lang-feature .lf-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.92);
}
.lang-feature .lf-text strong {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .language-grid { grid-template-columns: 1fr; gap: 80px; }
  .language-card { right: 16px; bottom: -24px; width: 240px; }
}

/* ===================== EXPERIENCE ===================== */
.experience { background: var(--plum-deep); }
.exp-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.exp-head .eyebrow { justify-content: center; }
.exp-head .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose);
}
.exp-head h2 {
  font-size: clamp(40px, 5.6vw, 76px);
  margin: 24px 0 28px;
  font-weight: 400;
  line-height: 1;
}
.exp-head h2 em { font-style: italic; color: var(--rose); }
.exp-head p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 245, 245, 0.85);
  font-weight: 300;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.exp-card {
  border: 1px solid rgba(245, 245, 245, 0.18);
  padding: 36px 32px 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.exp-card:hover {
  border-color: rgba(245, 245, 245, 0.4);
  transform: translateY(-4px);
}
.exp-card:hover::before { transform: scaleX(1); }
.exp-card .exp-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--rose);
}
.exp-card h4 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
}
.exp-card h4 em { font-style: italic; color: var(--rose); }
.exp-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.82);
  font-weight: 300;
}
@media (max-width: 800px) { .exp-grid { grid-template-columns: 1fr; } }

/* ===================== JOURNEY ===================== */
.journey-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.journey-text h2 {
  font-size: clamp(40px, 5.4vw, 70px);
  margin: 24px 0 28px;
  font-weight: 400;
  line-height: 1;
}
.journey-text h2 em { font-style: italic; color: var(--rose); }
.journey-text > p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.85);
  font-weight: 300;
  margin-bottom: 32px;
}
.journey-steps { list-style: none; counter-reset: step; }
.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(245, 245, 245, 0.15);
  counter-increment: step;
  align-items: start;
}
.journey-step:last-child { border-bottom: 1px solid rgba(245, 245, 245, 0.15); }
.journey-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--rose);
  line-height: 1;
}
.journey-step h5 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--cream);
}
.journey-step p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.82);
  font-weight: 300;
}
@media (max-width: 900px) {
  .journey-grid { grid-template-columns: 1fr; gap: 56px; }
  .journey-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .journey-step::before { font-size: 26px; }
}

/* ===================== TESTIMONIAL ===================== */
.testimonial {
  background: var(--plum-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  max-width: 1400px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(222, 141, 169, 0.18), transparent 65%);
  pointer-events: none;
}
.testimonial-inner { max-width: 880px; margin: 0 auto; position: relative; }
.testimonial .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 110px;
  color: var(--rose);
  line-height: 0.5;
  margin-bottom: 12px;
  display: block;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 44px);
  font-style: italic;
  line-height: 1.3;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 40px;
}
.testimonial cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.testimonial cite::before, .testimonial cite::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose);
}

/* ===================== CTA ===================== */
.cta { padding: 140px 0; }
.cta-card {
  background: var(--cream);
  color: var(--ink-soft);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(222, 141, 169, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-card .eyebrow { color: var(--rose); }
.cta-card .eyebrow::before { background: var(--rose); }
.cta-card h2 {
  font-size: clamp(40px, 5.2vw, 68px);
  color: var(--ink-soft);
  line-height: 1;
  margin: 22px 0 28px;
  font-weight: 400;
}
.cta-card h2 em { font-style: italic; color: var(--rose); }
.cta-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 24px;
  max-width: 460px;
}
.cta-contact-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #d8d8d8;
  font-size: 13px;
  color: #555;
}
.cta-contact-row a {
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.3s;
}
.cta-contact-row a:hover { color: var(--rose); }
.cta-contact-row strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
  font-weight: 500;
}

.cta-form { display: grid; gap: 18px; position: relative; z-index: 1; }
.cta-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
  font-weight: 500;
}
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #c8c8c8;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  outline: none;
  transition: border-color 0.3s;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  border-color: var(--rose);
}
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-form .btn { margin-top: 12px; width: fit-content; }
@media (max-width: 900px) {
  .cta-card { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
  .cta-form .row { grid-template-columns: 1fr; }
}

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid rgba(245, 245, 245, 0.15);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.7);
  max-width: 340px;
  font-weight: 300;
}
.footer-col h6 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.82);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(245, 245, 245, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.6);
  letter-spacing: 0.04em;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
}
.whatsapp-fab .wa-tooltip {
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(40, 20, 60, 0.2);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.whatsapp-fab .wa-tooltip small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  font-weight: 500;
  margin-bottom: 2px;
}
.whatsapp-fab .wa-pill {
  position: relative;
  background: var(--wa-green);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.whatsapp-fab .wa-pill::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s ease-out infinite;
}
.whatsapp-fab .wa-pill::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.4s 1.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-fab:hover .wa-pill {
  transform: scale(1.06);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0,0,0,0.2);
}
.whatsapp-fab:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-fab .wa-icon { width: 30px; height: 30px; color: white; }

@media (max-width: 600px) {
  .whatsapp-fab { bottom: 20px; right: 20px; }
  .whatsapp-fab .wa-tooltip { display: none; }
  .whatsapp-fab .wa-pill { width: 56px; height: 56px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   MOBILE REFINEMENTS — iPhone & narrow viewport polish
   ============================================================ */

/* Belt-and-braces against iOS horizontal scroll */
html { overflow-x: hidden; }

/* Respect iPhone safe areas (notch, Dynamic Island, home indicator) */
@supports (padding: max(0px)) {
  .whatsapp-fab {
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
  }
  .nav-inner {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* Disable hover side-effects on touch devices (prevents sticky-shift on scroll) */
@media (hover: none) {
  .service-block:hover { padding-left: 0; padding-right: 0; transform: none; }
  .exp-card:hover { transform: none; }
  .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
  .btn-ghost:hover { background: transparent; color: var(--cream); border-color: rgba(245,245,245,0.4); }
}

@media (max-width: 700px) {
  /* HERO — iPhone-friendly type & spacing */
  .hero {
    padding: 110px 0 56px;
    min-height: auto;
  }
  .hero-grid { gap: 44px; }
  .hero-greeting {
    font-size: 13px;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(38px, 10vw, 56px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .hero h1 .small-line {
    font-size: 15px;
    margin-top: 14px;
    line-height: 1.45;
  }
  .hero-lede {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .hero-actions { gap: 10px; }
  .hero-actions .btn {
    padding: 14px 20px;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    flex: 1 1 auto;
    justify-content: center;
  }

  /* Hero tag — keep inside viewport bounds (was left:-28px → overflow) */
  .hero-tag {
    bottom: -14px;
    left: 12px;
    right: 28px;
    max-width: none;
    padding: 18px 22px;
    font-size: 15px;
    line-height: 1.35;
  }

  /* TRUST */
  .trust { padding: 40px 0; }
  .trust-grid { gap: 26px; }
  .trust-num { font-size: 24px; }
  .trust-text { font-size: 13.5px; }

  /* PHILOSOPHY */
  .philosophy-text h2 { font-size: 38px; margin: 18px 0 24px; }
  .philosophy-text p { font-size: 15px; }
  .philosophy-pull { margin-top: 28px; padding: 22px 24px; }
  .philosophy-pull p { font-size: 18px; line-height: 1.5; }
  .philosophy-visual { grid-template-rows: 180px 180px; gap: 12px; }

  /* SERVICES */
  .services-intro { margin-bottom: 48px; gap: 22px; }
  .services-intro h2 { font-size: 40px; }
  .services-intro p { font-size: 14.5px; }
  .service-block { padding: 32px 0; gap: 10px; }
  .service-num { font-size: 14px; }
  .service-cat { font-size: 10px; letter-spacing: 0.2em; }
  .service-content h3 { font-size: 26px; margin-bottom: 14px; }
  .service-content p { font-size: 14px; line-height: 1.7; }
  .service-list li { font-size: 11.5px; padding: 6px 12px; }

  /* LANGUAGE */
  .language { padding: 100px 0; }
  .language-grid { gap: 56px; }
  .language-card {
    right: 12px;
    bottom: -20px;
    width: 220px;
    padding: 22px 24px;
  }
  .language-card h4 { font-size: 18px; }
  .language-card p { font-size: 12.5px; }
  .language-text h2 { font-size: 38px; margin: 18px 0 22px; }
  .language-text > p { font-size: 15px; }
  .lang-feature .lf-text { font-size: 14px; }

  /* EXPERIENCE */
  .exp-head { margin-bottom: 56px; }
  .exp-head h2 { font-size: 40px; margin: 20px 0 22px; }
  .exp-head p { font-size: 15.5px; }
  .exp-card { padding: 28px 24px 30px; }
  .exp-card h4 { font-size: 22px; }
  .exp-card p { font-size: 13.5px; }

  /* JOURNEY */
  .journey-text h2 { font-size: 38px; margin: 18px 0 22px; }
  .journey-step { padding: 22px 0; gap: 14px; grid-template-columns: 50px 1fr; }
  .journey-step::before { font-size: 22px; }
  .journey-step h5 { font-size: 20px; }
  .journey-step p { font-size: 14px; }

  /* TESTIMONIAL */
  .testimonial blockquote { font-size: 22px; line-height: 1.4; margin-bottom: 32px; }
  .testimonial .quote-mark { font-size: 80px; margin-bottom: 8px; }

  /* CTA / CONTACT */
  .cta { padding: 80px 0; }
  .cta-card { padding: 48px 24px; gap: 36px; }
  .cta-card h2 { font-size: 36px; margin: 18px 0 20px; }
  .cta-card > div > p { font-size: 14.5px; }
  .cta-contact-row {
    gap: 18px;
    margin-top: 22px;
    padding-top: 22px;
    flex-direction: column;
  }
  /* Critical: 16px+ prevents iOS auto-zoom on input focus */
  .cta-form input,
  .cta-form select,
  .cta-form textarea { font-size: 16px; }
  .cta-form .row { gap: 20px; }

  /* FOOTER */
  footer { padding: 56px 0 28px; }
  .footer-grid { gap: 32px; margin-bottom: 36px; }
  .footer-bottom {
    font-size: 11px;
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }
}

/* iPhone SE / very small screens */
@media (max-width: 380px) {
  .hero h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .language-card { width: 200px; right: 8px; padding: 18px 20px; }
  .cta-card { padding: 40px 20px; }
  .cta-card h2 { font-size: 32px; }
}
