:root {
  --ink: #112250;
  --muted: #5f6780;
  --paper: #f5f0e9;
  --white: #ffffff;
  --sapphire: #3c507d;
  --royal: #112250;
  --quicksand: #e0c58f;
  --swan: #f5f0e9;
  --shellstone: #d9cbc2;
  --teal: #3c507d;
  --teal-dark: #112250;
  --gold: #e0c58f;
  --line: rgba(60, 80, 125, 0.18);
  --shadow: 0 22px 48px rgba(17, 34, 80, 0.16);
  --glass: rgba(245, 240, 233, 0.66);
  --glass-strong: rgba(245, 240, 233, 0.84);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(60, 80, 125, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(224, 197, 143, 0.18), transparent 34%),
    var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(245, 240, 233, 0.72);
  border-bottom: 1px solid rgba(60, 80, 125, 0.14);
  box-shadow: 0 12px 32px rgba(17, 34, 80, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(17, 34, 80, 0.12);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
}

.brand strong {
  font-weight: 650;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #2a3b40;
  font-weight: 600;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-dark);
  background: rgba(224, 197, 143, 0.28);
}

.main-nav .nav-cta {
  color: var(--white);
  background: var(--teal);
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-travel-consulting.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 34, 80, 0.92) 0%, rgba(17, 34, 80, 0.72) 42%, rgba(17, 34, 80, 0.18) 76%),
    linear-gradient(0deg, rgba(17, 34, 80, 0.28), rgba(17, 34, 80, 0.08));
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 76px clamp(18px, 5vw, 56px);
  color: var(--white);
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 650;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sapphire), var(--royal));
  box-shadow: 0 14px 28px rgba(17, 34, 80, 0.26);
}

.btn.primary:hover {
  background: var(--teal-dark);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(224, 197, 143, 0.52);
  background: rgba(245, 240, 233, 0.12);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 84px clamp(18px, 5vw, 56px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin: 8px 0;
  font-weight: 600;
  font-size: 1.12rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.family-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding-top: 28px;
  padding-bottom: 68px;
}

.family-image {
  overflow: hidden;
  border: 1px solid rgba(224, 197, 143, 0.34);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.family-image img {
  width: 100%;
  height: clamp(320px, 34vw, 460px);
  object-fit: cover;
  object-position: center 42%;
}

.family-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--royal);
  font-weight: 650;
  border-bottom: 1px solid var(--quicksand);
}

.service-strip article,
.service-card,
.testimonial-grid article,
.map-frame,
.contact-form {
  border: 1px solid rgba(60, 80, 125, 0.16);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-strip article {
  padding: 22px;
}

.service-strip span,
.process-list span,
.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(224, 197, 143, 0.38);
  font-weight: 700;
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-strip p,
.benefit p,
.service-card li,
.page-hero p,
.about-copy p,
.testimonial-grid p,
.testimonial-grid span,
.form-note {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefit {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.benefit strong {
  font-size: 1.08rem;
  font-weight: 650;
}

.testimonials {
  padding-top: 36px;
}

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

.testimonial-grid article {
  padding: clamp(22px, 4vw, 30px);
}

.testimonial-photo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(17, 34, 80, 0.16);
  margin-bottom: 18px;
}

.testimonial-grid p {
  margin: 0 0 22px;
  font-size: 1.02rem;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  font-weight: 650;
}

.testimonial-grid span {
  font-size: 0.9rem;
}

.cta-band {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(17, 34, 80, 0.94), rgba(60, 80, 125, 0.9));
  border-radius: var(--radius);
  border: 1px solid rgba(224, 197, 143, 0.28);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cta-band h2 {
  max-width: 680px;
}

.page-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 76px clamp(18px, 5vw, 56px) 44px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.08;
}

.page-hero p:last-child {
  max-width: 720px;
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.service-card {
  padding: clamp(22px, 4vw, 34px);
}

.service-card h2 {
  margin-top: 14px;
  font-size: 1.55rem;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.service-card li + li {
  margin-top: 8px;
}

.process {
  padding-top: 36px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-list div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 12px 28px rgba(17, 34, 80, 0.08);
  backdrop-filter: blur(16px);
}

.about-contact {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: start;
  padding-top: 28px;
}

.about-copy {
  padding-right: 18px;
}

.about-photo {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-photo img {
  width: 100%;
  height: clamp(340px, 36vw, 460px);
  object-fit: cover;
  object-position: center 18%;
}

.about-photo figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.info-list {
  margin-top: 26px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: rgba(245, 240, 233, 0.74);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.info-list p {
  margin: 0;
}

.info-list p + p {
  margin-top: 10px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
}

.contact-form h2 {
  font-size: 1.55rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(60, 80, 125, 0.2);
  border-color: var(--sapphire);
}

.map-section {
  padding-top: 20px;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #1b8f54;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(27, 143, 84, 0.34);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 56px);
  color: #d8e5e2;
  background: #10262a;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--glass-strong);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

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

  .main-nav a {
    padding: 12px 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 34, 37, 0.9), rgba(6, 34, 37, 0.5));
  }

  .service-strip,
  .testimonial-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .family-section,
  .about-contact {
    grid-template-columns: 1fr;
  }

  .family-section {
    gap: 24px;
  }

  .family-image img {
    height: 360px;
    object-position: center 38%;
  }

  .about-photo img {
    height: 360px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .service-strip,
  .service-grid,
  .testimonial-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .family-section {
    padding-top: 22px;
    padding-bottom: 46px;
  }

  .family-image img {
    height: 255px;
    object-position: center 35%;
  }

  .about-photo img {
    height: 280px;
    object-position: center 16%;
  }

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

  .page-hero {
    padding-top: 54px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }
}
