/* ─── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #BE3A28;
  --cream:  #F5EDE0;
  --black:  #0D0D0D;
  --dark:   #111111;
  --mid:    #2A2A2A;
  --grey:   #6B6B6B;
  --light:  #F9F6F1;
  --white:  #FFFFFF;
  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1300px;
  padding: 0 10px 0 22px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 13, 0.52);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.55);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28), 0 1px 0 rgba(255,255,255,0.06) inset;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
}

/* SVG F icon drawn in CSS/SVG */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo-text span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.btn-book:hover {
  background: #a63220;
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
  background: #25D366;
  transform: translateY(-1px);
}

.btn-whatsapp svg { width: 18px; height: 18px; }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--black);
  max-width: 820px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero-headline .cycle-wrapper {
  display: block;
  position: relative;
  height: 1.25em;
  overflow: hidden;
}

.cycle-word {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  display: block;
  opacity: 0;
  transform: translateY(105%);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.cycle-word.active {
  opacity: 1;
  transform: translateY(0);
}

.cycle-word.exit {
  opacity: 0;
  transform: translateY(-105%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.7, 0, 0.84, 0);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.65;
  color: #4A4A4A;
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(13,13,13,0.25);
  letter-spacing: 0.01em;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: #25D366;
  color: #25D366;
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
}



/* ─── Services Strip ─────────────────────────────────── */
.services-strip {
  background: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(13,13,13,0.08);
  border-bottom: 1px solid rgba(13,13,13,0.08);
  position: relative;
}

/* Fade edges */
.services-strip::before,
.services-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.services-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.services-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.services-strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: strip-scroll 32s linear infinite;
  white-space: nowrap;
}

.strip-item {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(13,13,13,0.45);
  padding: 0 28px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.strip-item:hover { color: var(--black); }

.strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0.6;
}

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section Shared ──────────────────────────────────── */
.section {
  padding: 96px 80px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #4A4A4A;
  max-width: 580px;
}

.section-body.light { color: rgba(255,255,255,0.65); }

/* ─── Services Accordion ──────────────────────────────── */
.services-section {
  background: var(--light);
  padding: 96px 80px;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.services-intro .section-body {
  margin-top: 16px;
}

.services-intro .btn-primary {
  margin-top: 36px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-top: 1px solid rgba(13,13,13,0.12);
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(13,13,13,0.12);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  transition: color 0.2s;
}

.accordion-header:hover .accordion-title {
  color: var(--red);
}

.accordion-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--black);
  transition: color 0.2s;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,13,13,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}

.accordion-icon svg { width: 12px; height: 12px; }
.accordion-item.open .accordion-icon svg path { stroke: white; }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 200px;
}

.accordion-body-inner {
  padding-bottom: 20px;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  color: #5A5A5A;
}

/* ─── Results / Stats ─────────────────────────────────── */
.results-section {
  background: var(--black);
  padding: 96px 80px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}

.result-card {
  background: #1C1C1C;
  padding: 48px;
  border-radius: 20px;
  transition: background 0.3s;
}

.result-card:hover {
  background: #242424;
}

.result-client {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.result-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.result-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

.result-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-number span {
  color: var(--red);
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  max-width: 120px;
  line-height: 1.4;
}

.result-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.result-link:hover {
  color: var(--red);
  border-color: var(--red);
}

/* Award badge in results */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 24px;
}

.award-badge-icon {
  font-size: 18px;
}

.award-badge-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.award-badge-text strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

/* ─── About ───────────────────────────────────────────── */
.about-section {
  background: var(--cream);
  padding: 96px 80px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photo-card {
  border-radius: 16px;
  overflow: hidden;
  background: #1A1A1A;
  aspect-ratio: 3/4;
  position: relative;
  display: block;
}

.photo-card:first-child {
  margin-top: 40px;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.photo-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.photo-role {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

.about-content .section-label { margin-bottom: 16px; }

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.about-content p strong {
  color: var(--black);
  font-weight: 500;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(190,58,40,0.08);
  border: 1px solid rgba(190,58,40,0.18);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  margin-top: 8px;
}

/* ─── Testimonials ────────────────────────────────────── */
.testimonials-section {
  background: var(--light);
  padding: 96px 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.testimonial-quote {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #3A3A3A;
  flex: 1;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 0.6;
  display: block;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}

.author-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.author-title {
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}

/* ─── CTA Close ───────────────────────────────────────── */
.cta-section {
  background: var(--black);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.04em;
  user-select: none;
  white-space: nowrap;
}

.cta-section .section-label {
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 68px);
}

.cta-section .section-title span {
  color: var(--red);
}

.cta-section p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary-light:hover {
  background: #a63220;
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 15px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  letter-spacing: 0.01em;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline-light:hover {
  border-color: #25D366;
  color: #25D366;
  transform: translateY(-2px);
}

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  background: #080808;
  padding: 56px 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo span { color: var(--red); }

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

/* ─── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Keyframes ───────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Floating WhatsApp ───────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}

.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.float-whatsapp svg { width: 26px; height: 26px; }

/* ─── Footer Logo Image ───────────────────────────────── */
.footer-logo-img {
  margin-top: 20px;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-logo-img:hover { opacity: 1; }

/* ─── Mobile Nav Hamburger ────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 92px;
  left: 24px;
  right: 24px;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--white); }

/* ─── Responsive: Tablet (≤900px) ────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .btn-whatsapp { display: none; }

  .hero { padding: 130px 40px 72px; }

  .services-section { padding: 72px 40px; }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 40px;
  }

  .results-section { padding: 72px 40px; }
  .results-grid { grid-template-columns: 1fr; }

  .about-section { padding: 72px 40px; }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 40px;
  }
  .about-photos {
    grid-template-columns: 1fr 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials-section { padding: 72px 40px; }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .cta-section { padding: 88px 40px; }

  .footer { padding: 48px 40px 36px; }
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-brand { max-width: 100%; }
  .footer-nav { gap: 40px; }
}

/* ─── Responsive: Mobile (≤600px) ────────────────────── */
@media (max-width: 600px) {
  .nav {
    width: calc(100% - 32px);
    padding: 0 8px 0 18px;
    height: 56px;
  }

  .hero {
    padding: 110px 24px 64px;
    min-height: 100svh;
  }
  .hero-headline { margin-bottom: 24px; }
  .hero-sub { max-width: 100%; margin-bottom: 36px; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .services-strip { padding: 22px 0; }
  .services-section { padding: 64px 24px; }
  .services-layout { gap: 40px; margin-top: 32px; }
  .services-intro .btn-primary { width: 100%; justify-content: center; }

  .results-section { padding: 64px 24px; }
  .result-card { padding: 32px 28px; }
  .result-stats { gap: 24px; }
  .stat-number { font-size: 32px; }

  .about-section { padding: 64px 24px; }
  .about-photos {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .photo-card:first-child { margin-top: 24px; }
  .about-content .btn-primary { width: 100%; justify-content: center; }

  .testimonials-section { padding: 64px 24px; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .cta-section { padding: 72px 24px; }
  .cta-section .section-title { font-size: clamp(30px, 8vw, 48px); }
  .cta-section p { font-size: 15px; }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary-light,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .footer { padding: 40px 24px 32px; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* "Also worked with" row */
  [class*="result-card"] ~ div[style] {
    padding: 20px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  padding: 160px 80px 100px;
  position: relative;
  overflow: hidden;
}
.page-hero--dark { background: var(--black); }
.page-hero--cream { background: var(--cream); }

.page-hero-inner { max-width: 860px; }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.page-hero-title--dark { color: var(--black); }

.page-hero-title span { color: var(--red); }

.page-hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}
.page-hero-sub--dark { color: #4A4A4A; }

/* ─── Services Detail ────────────────────────────────────────── */
.services-detail-section {
  background: var(--light);
  padding: 0 80px 80px;
}

.service-block {
  padding: 64px 0;
  border-bottom: 1px solid rgba(13,13,13,0.08);
}
.service-block:first-child { padding-top: 80px; }

.service-block-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
}

.service-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
}

.service-block-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
}

.service-block-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.service-block-desc p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.service-block-includes h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}

.service-block-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-block-includes ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  padding-left: 16px;
  position: relative;
}

.service-block-includes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ─── Retainer Section ───────────────────────────────────────── */
.retainer-section {
  background: var(--cream);
  padding: 96px 80px;
}

.retainer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.retainer-content .section-title { margin-bottom: 24px; }

.retainer-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.retainer-content p strong { color: var(--black); font-weight: 500; }

.retainer-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(13,13,13,0.06);
  transition: box-shadow 0.2s;
}
.pillar-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }

.pillar-icon { font-size: 24px; margin-bottom: 12px; }

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #5A5A5A;
}

/* ─── About — Team ───────────────────────────────────────────── */
.about-team-section {
  background: var(--cream);
  padding: 96px 80px;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.team-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.team-card--reverse { grid-template-columns: 1fr 380px; }
.team-card--reverse .team-photo { order: 2; }
.team-card--reverse .team-info  { order: 1; }

.team-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  background: #1A1A1A;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-photo-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.team-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  transition: background 0.2s;
}
.team-social:hover { background: var(--red); }

.team-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 8px;
}

.team-role {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.team-info p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: #4A4A4A;
  margin-bottom: 16px;
}

/* ─── Story Section ──────────────────────────────────────────── */
.story-section {
  background: var(--black);
  padding: 96px 80px;
}

.story-inner { max-width: 800px; }
.story-inner .section-label { color: rgba(255,255,255,0.4); }
.story-inner .section-title { color: var(--white); margin-bottom: 40px; }

.story-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

/* ─── Values Section ─────────────────────────────────────────── */
.values-section {
  background: var(--light);
  padding: 96px 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(13,13,13,0.06);
}

.value-number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.value-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #5A5A5A;
}

/* ─── Location Section ───────────────────────────────────────── */
.location-section {
  background: var(--cream);
  padding: 96px 80px;
}

.location-inner { max-width: 640px; }
.location-inner .section-title { margin-bottom: 24px; }
.location-inner p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: #4A4A4A;
}

/* ─── Blog ───────────────────────────────────────────────────── */
.blog-section {
  background: var(--light);
  padding: 80px 80px 96px;
}

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

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
.blog-card-image--placeholder span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(190,58,40,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--grey);
  font-weight: 400;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.blog-card-title a { color: var(--black); transition: color 0.2s; }
.blog-card-title a:hover { color: var(--red); }

.blog-card-excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #5A5A5A;
  flex: 1;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid rgba(13,13,13,0.2);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.blog-read-more:hover { color: var(--red); border-color: var(--red); }

.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.blog-pagination .nav-links { display: flex; gap: 8px; }
.blog-pagination .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  border: 1.5px solid rgba(13,13,13,0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  font-size: 16px;
  color: var(--grey);
}

/* ─── Single Post ────────────────────────────────────────────── */
.post-hero {
  background: var(--black);
  padding: 160px 80px 80px;
}

.post-hero-inner { max-width: 800px; }

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.post-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(190,58,40,0.15);
  padding: 5px 12px;
  border-radius: 100px;
}

.post-date, .post-read-time {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.post-excerpt {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
}

.post-featured-image {
  max-height: 560px;
  overflow: hidden;
}
.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-content-section {
  background: var(--cream);
  padding: 80px 0;
}

.post-content-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px;
}

.post-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #333;
}
.post-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--black); margin: 48px 0 16px; letter-spacing: -0.02em; }
.post-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--black); margin: 36px 0 14px; }
.post-body p { margin-bottom: 24px; }
.post-body strong { color: var(--black); font-weight: 500; }
.post-body a { color: var(--red); border-bottom: 1px solid rgba(190,58,40,0.3); transition: border-color 0.2s; }
.post-body a:hover { border-color: var(--red); }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 24px; }
.post-body li { margin-bottom: 8px; line-height: 1.7; }
.post-body blockquote { border-left: 3px solid var(--red); padding: 4px 0 4px 24px; margin: 36px 0; font-style: italic; color: #555; font-size: 18px; }
.post-body img { border-radius: 12px; margin: 32px 0; }
.post-body hr { border: none; border-top: 1px solid rgba(13,13,13,0.1); margin: 48px 0; }

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(13,13,13,0.08);
}

.post-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  background: rgba(13,13,13,0.05);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.post-tag:hover { background: var(--black); color: var(--white); }

.post-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 56px;
  padding: 28px;
  background: var(--light);
  border-radius: 16px;
}

.author-bio-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.author-bio-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.author-bio-role {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.author-bio-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #5A5A5A;
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(13,13,13,0.08);
}

.post-nav-next { text-align: right; }

.post-nav-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}

.post-nav-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  transition: color 0.2s;
}
.post-nav-title:hover { color: var(--red); }

/* ─── Inner Page Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .page-hero { padding: 130px 40px 72px; }
  .services-detail-section { padding: 0 40px 64px; }
  .service-block-body { grid-template-columns: 1fr; gap: 40px; }
  .retainer-section { padding: 72px 40px; }
  .retainer-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-team-section { padding: 72px 40px; }
  .team-card { grid-template-columns: 1fr; gap: 40px; }
  .team-card--reverse { grid-template-columns: 1fr; }
  .team-card--reverse .team-photo { order: 1; }
  .team-card--reverse .team-info  { order: 2; }
  .team-photo { max-width: 400px; aspect-ratio: 1/1; }
  .story-section { padding: 72px 40px; }
  .values-section { padding: 72px 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .location-section { padding: 72px 40px; }
  .blog-section { padding: 64px 40px 80px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .post-hero { padding: 130px 40px 64px; }
  .post-content-inner { padding: 0 24px; }
  .post-nav { grid-template-columns: 1fr; gap: 16px; }
  .post-nav-next { text-align: left; }
}

@media (max-width: 600px) {
  .page-hero { padding: 110px 24px 56px; }
  .services-detail-section { padding: 0 24px 48px; }
  .service-block { padding: 48px 0; }
  .retainer-section { padding: 64px 24px; }
  .retainer-pillars { grid-template-columns: 1fr; }
  .about-team-section { padding: 64px 24px; }
  .story-section { padding: 64px 24px; }
  .values-section { padding: 64px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .location-section { padding: 64px 24px; }
  .blog-section { padding: 48px 24px 64px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-hero { padding: 110px 24px 48px; }
  .post-content-section { padding: 56px 0; }
  .post-content-inner { padding: 0 20px; }
  .post-author-bio { flex-direction: column; }
}
