/* ============================================
   ADEM CONSULTING LTD — Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

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

:root {
  /* Brand colors — inspired by the logo */
  --navy-900: #0a1729;
  --navy-800: #0f2240;
  --navy-700: #1a2f54;
  --navy-600: #2a4373;
  --navy-500: #3d5a8a;

  --gold-700: #8a6a2f;
  --gold-600: #a0823f;
  --gold-500: #c9a961;
  --gold-400: #d8bd7e;
  --gold-300: #e6cf9c;

  --cream-100: #fdfbf6;
  --cream-200: #f8f4ec;
  --cream-300: #ede5d3;

  --sage-500: #9bb3a8;
  --sage-300: #c3d3cb;
  --sage-100: #e6ede9;

  --ink: #0a1729;
  --ink-soft: #2a3548;
  --ink-mute: #5a6577;
  --line: #e7e2d5;
  --white: #ffffff;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  /* Sizes — fluid */
  --fs-hero: clamp(2.5rem, 6vw + 1rem, 5.5rem);
  --fs-h1: clamp(2rem, 4vw + 0.5rem, 3.75rem);
  --fs-h2: clamp(1.65rem, 2.5vw + 0.5rem, 2.75rem);
  --fs-h3: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  --fs-lead: clamp(1.05rem, 0.5vw + 0.9rem, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container: 1280px;
  --container-wide: 1440px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10, 23, 41, 0.06);
  --shadow: 0 8px 32px rgba(10, 23, 41, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 23, 41, 0.12);
  --shadow-gold: 0 12px 40px rgba(201, 169, 97, 0.25);

  --transition: 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-slow: 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Typography ---------- */
.font-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--navy-900);
}

h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
}

p {
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container,
  .container-wide {
    padding: 0 2.5rem;
  }
}

.section {
  padding: var(--sp-9) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--sp-10) 0;
  }
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--sp-7);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 0.75rem;
}

.section-head .lead {
  margin-top: 1rem;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--cream-200);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-500);
}

.lang-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream-200);
  border-radius: var(--radius-pill);
  opacity: 0.7;
  transition: all var(--transition);
}

.lang-btn:hover {
  opacity: 1;
}

.lang-btn.active {
  background: var(--gold-500);
  color: var(--navy-900);
  opacity: 1;
}

@media (max-width: 640px) {
  .topbar-left .topbar-item:not(:first-child) {
    display: none;
  }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(253, 251, 246, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width var(--transition), left var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-900);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 24px;
  left: calc(50% - 12px);
}

.nav-cta {
  margin-left: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--navy-900);
  transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 85vw);
    background: var(--cream-100);
    flex-direction: column;
    align-items: stretch;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-lg);
    z-index: 90;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin: 1rem 0 0;
    text-align: center;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--navy-900);
  color: var(--cream-100);
}

.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
}

.btn-outline:hover {
  background: var(--navy-900);
  color: var(--cream-100);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  color: var(--gold-600);
}

.btn-ghost .arrow {
  transition: transform var(--transition);
}

.btn-ghost:hover .arrow {
  transform: translateX(6px);
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* ---------- Hero — Home ---------- */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: var(--cream-100);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-text h1 {
  font-size: var(--fs-hero);
  margin-top: 1.5rem;
  line-height: 1.05;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold-600);
  font-weight: 400;
}

.hero-text .lead {
  margin-top: 1.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1;
}

.trust-stat-label {
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.hero-image-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--cream-100);
  box-shadow: var(--shadow-lg);
}

.hero-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 1.2rem;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.15;
  transform: rotate(-8deg);
  box-shadow: var(--shadow);
}

@media (max-width: 540px) {
  .hero-image-accent {
    width: 40%;
    bottom: -2rem;
    left: -1rem;
    border-width: 6px;
  }
  .hero-badge {
    width: 90px;
    height: 90px;
    font-size: 0.72rem;
    top: -1rem;
    right: -0.5rem;
  }
  .hero-trust {
    gap: 1.5rem;
  }
}

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--cream-100);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(155, 179, 168, 0.1), transparent 50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
}

.page-hero h1 {
  color: var(--cream-100);
  margin-top: 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 400;
}

.page-hero .lead {
  color: rgba(253, 251, 246, 0.8);
  margin-top: 1.25rem;
  max-width: 540px;
}

.page-hero .eyebrow {
  color: var(--gold-400);
}
.page-hero .eyebrow::before {
  background: var(--gold-400);
}

.crumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(253, 251, 246, 0.6);
  margin-bottom: 0.5rem;
}

.crumb a:hover {
  color: var(--gold-400);
}

.page-hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--cream-200);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  color: var(--gold-600);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy-900);
  color: var(--gold-400);
  transform: scale(1.05) rotate(-3deg);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy-900);
  text-transform: uppercase;
}

.service-card .service-link .arrow {
  transition: transform var(--transition);
}

.service-card:hover .service-link {
  color: var(--gold-600);
}

.service-card:hover .service-link .arrow {
  transform: translateX(4px);
}

/* ---------- Why us / Features ---------- */
.features {
  background: var(--navy-900);
  color: var(--cream-100);
}

.features h2 {
  color: var(--cream-100);
}

.features p {
  color: rgba(253, 251, 246, 0.75);
}

.features .eyebrow {
  color: var(--gold-400);
}
.features .eyebrow::before {
  background: var(--gold-400);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(253, 251, 246, 0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.feature:hover {
  border-color: var(--gold-500);
  background: rgba(201, 169, 97, 0.04);
}

.feature-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-400);
  display: block;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.25rem;
  color: var(--cream-100);
  margin-bottom: 0.6rem;
}

.feature p {
  font-size: 0.92rem;
}

/* ---------- About / Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.story.reverse {
  grid-template-columns: 1.1fr 1fr;
}

@media (max-width: 900px) {
  .story,
  .story.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story.reverse > div:first-child {
    order: 2;
  }
}

.story-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 23, 41, 0.3));
}

.story-stat {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--cream-100);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: var(--shadow);
}

.story-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1;
}

.story-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.4rem;
}

.story-text h2 {
  margin-top: 0.75rem;
}

.story-text p {
  margin-top: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.story-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.story-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.story-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-top: 0.6rem;
  flex-shrink: 0;
}

/* ---------- Process steps ---------- */
.process {
  background: var(--cream-200);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.92rem;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-300);
  opacity: 0.5;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--ink-mute);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold-500);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .cta-strip {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    text-align: center;
  }
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 50%, rgba(201, 169, 97, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-strip h2 {
  color: var(--cream-100);
  position: relative;
}

.cta-strip h2 em {
  color: var(--gold-400);
  font-style: italic;
}

.cta-strip p {
  color: rgba(253, 251, 246, 0.8);
  margin-top: 1rem;
  position: relative;
}

.cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

@media (max-width: 768px) {
  .cta-strip-actions {
    align-items: center;
  }
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 3rem auto 0;
}

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

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy-900);
  transition: color var(--transition);
}

.faq-q:hover {
  color: var(--gold-600);
}

.faq-q .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-a-inner {
  padding-bottom: 1.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ---------- Partners / Logos ---------- */
.partners {
  padding: 4rem 0;
  background: var(--cream-200);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2.5rem;
}

.partners-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.7;
}

.partner-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy-700);
  letter-spacing: 0.05em;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--cream-200);
  margin-bottom: 0.85rem;
  transition: all var(--transition);
}

.contact-info-card:hover {
  background: var(--navy-900);
  color: var(--cream-100);
}

.contact-info-card:hover .contact-info-label,
.contact-info-card:hover .contact-info-value {
  color: inherit;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--gold-600);
  border-radius: var(--radius);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--gold-500);
  color: var(--navy-900);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-weight: 500;
  color: var(--navy-900);
  font-size: 0.98rem;
  line-height: 1.4;
}

/* ---------- Packages ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.package-card:hover .package-image img {
  transform: scale(1.08);
}

.package-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 23, 41, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cream-100);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
}

.package-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-loc {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.package-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.package-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.package-price-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
}

.package-price span {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.85rem;
}

.blog-category {
  color: var(--gold-600);
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.blog-card p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--navy-900);
  text-transform: uppercase;
}

.blog-card:hover .blog-read {
  color: var(--gold-600);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--cream-200);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand-name {
  color: var(--cream-100);
}

.footer-about {
  font-size: 0.92rem;
  margin-top: 1.5rem;
  color: rgba(253, 251, 246, 0.7);
  line-height: 1.7;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(253, 251, 246, 0.08);
  color: var(--cream-200);
  transition: all var(--transition);
}

.footer-social:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

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

.footer-col a {
  font-size: 0.92rem;
  color: rgba(253, 251, 246, 0.7);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-contact {
  font-size: 0.92rem;
  color: rgba(253, 251, 246, 0.7);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 251, 246, 0.1);
  font-size: 0.85rem;
  color: rgba(253, 251, 246, 0.5);
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

/* ---------- WhatsApp floating ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all var(--transition);
}

.fab-whatsapp:hover {
  transform: scale(1.08);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
}

/* ---------- Article pages ---------- */
.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(253, 251, 246, 0.15);
  font-size: 0.85rem;
  color: rgba(253, 251, 246, 0.7);
}

.article-meta-bar .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-400);
  opacity: 0.6;
}

.article-cat-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold-400);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.article-body {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.article-intro {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--navy-900);
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold-500);
}

.article-body h2 {
  font-size: 1.75rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body p strong,
.article-body li strong {
  color: var(--navy-900);
  font-weight: 600;
}

.article-body ul,
.article-body ol {
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
}

.article-body ul li::marker {
  color: var(--gold-500);
}

.article-body ol {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.article-body ol > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
}

.article-body ol > li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--cream-200);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy-900);
  line-height: 1.5;
}

.article-body a {
  color: var(--gold-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.article-body a:hover {
  color: var(--navy-900);
}

.article-callout {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: var(--navy-900);
  color: var(--cream-100);
  border-radius: var(--radius-lg);
}

.article-callout h3 {
  color: var(--cream-100);
  margin-top: 0;
}

.article-callout p {
  color: rgba(253, 251, 246, 0.85);
  margin-bottom: 1.25rem;
}

.article-callout .btn {
  margin-top: 0.5rem;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.article-toc {
  background: var(--cream-200);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.article-toc h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
}

.article-toc ul {
  list-style: none;
}

.article-toc li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.article-toc a {
  color: var(--ink-soft);
  display: block;
  padding-left: 0.75rem;
  border-left: 2px solid var(--line);
  transition: all var(--transition);
}

.article-toc a:hover {
  color: var(--navy-900);
  border-left-color: var(--gold-500);
}

.article-share {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.article-share h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--cream-200);
  color: var(--navy-900);
  border-radius: 50%;
  transition: all var(--transition);
}

.share-btn:hover {
  background: var(--navy-900);
  color: var(--gold-400);
}

.share-btn svg {
  width: 16px;
  height: 16px;
}

.related-articles {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.related-articles-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}

.related-articles-head h3 {
  font-size: 1.6rem;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
