:root {
  --navy-950: #06131f;
  --navy-900: #071827;
  --navy-800: #0b2338;
  --navy-700: #123b57;
  --gold-600: #b8893d;
  --gold-500: #d3a95f;
  --gold-400: #e2c17f;
  --cream-100: #faf8f2;
  --cream-200: #f3eee4;
  --cream-300: #e9e0d0;
  --white: #ffffff;
  --ink: #132333;
  --muted: #62707d;
  --green: #167b54;
  --shadow-soft: 0 24px 70px rgba(7, 24, 39, 0.1);
  --shadow-card: 0 16px 50px rgba(7, 24, 39, 0.08);
  --container: 1180px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  color: var(--navy-950);
  background: var(--gold-400);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(250, 248, 242, 0.93);
  border-color: rgba(7, 24, 39, 0.08);
  box-shadow: 0 10px 34px rgba(7, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(211, 169, 95, 0.65);
  border-radius: 50%;
  place-items: center;
}

.brand-mark svg {
  width: 31px;
  fill: none;
  stroke: var(--gold-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-copy {
  display: flex;
  line-height: 1;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  letter-spacing: 0.16em;
}

.brand-copy small {
  color: var(--gold-500);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding-block: 27px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.025em;
  opacity: 0.84;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transition: inset var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  right: 0;
  left: 0;
}

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 750;
}

.button svg,
.text-link svg,
.trust-link svg,
.reviews-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg,
.trust-link a:hover svg,
.reviews-link a:hover svg {
  transform: translateX(4px);
}

.button-sm {
  min-height: 42px;
  padding: 0 19px;
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 14px 30px rgba(211, 169, 95, 0.18);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-400);
  box-shadow: 0 18px 36px rgba(211, 169, 95, 0.28);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.button-navy {
  color: var(--white);
  background: var(--navy-900);
}

.button-navy:hover,
.button-navy:focus-visible {
  background: var(--navy-700);
  box-shadow: 0 18px 32px rgba(7, 24, 39, 0.16);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
  align-items: center;
}

.hero-media,
.hero-shade,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-horizon.png");
  background-repeat: no-repeat;
  background-position: 58% center;
  background-size: cover;
  transform: scale(1.012);
  animation: hero-settle 1.5s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 17, 29, 0.98) 0%, rgba(4, 17, 29, 0.91) 28%, rgba(4, 17, 29, 0.48) 59%, rgba(4, 17, 29, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 17, 29, 0.75) 0%, transparent 37%, rgba(4, 17, 29, 0.25) 100%);
}

.hero-pattern {
  width: 46vw;
  opacity: 0.16;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(226, 193, 127, 0.22) 48%, rgba(226, 193, 127, 0.22) 50%, transparent 51%),
    linear-gradient(-30deg, transparent 47%, rgba(226, 193, 127, 0.22) 48%, rgba(226, 193, 127, 0.22) 50%, transparent 51%);
  background-size: 44px 76px;
  mask-image: linear-gradient(90deg, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 105px;
  grid-template-columns: minmax(0, 700px) 1fr;
  align-items: end;
  gap: 45px;
}

.hero-copy {
  max-width: 705px;
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  color: var(--gold-600);
  align-items: center;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-400);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 26px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 6.4vw, 6.1rem);
}

h2 {
  color: var(--navy-950);
  font-size: clamp(2.6rem, 4.7vw, 4.55rem);
}

h1 em,
h2 em {
  color: var(--gold-500);
  font-weight: 600;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 38px;
  gap: 13px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.hero-points span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(211, 169, 95, 0.13);
}

.hero-note {
  display: flex;
  width: min(100%, 302px);
  margin-left: auto;
  padding: 19px 21px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(5, 20, 32, 0.45);
  backdrop-filter: blur(14px);
  align-items: center;
  gap: 14px;
}

.hero-note-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  color: var(--gold-400);
  border-radius: 50%;
  background: rgba(211, 169, 95, 0.12);
  place-items: center;
}

.hero-note-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.hero-note div {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.hero-note small,
.hero-note span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.hero-note strong {
  margin: 2px 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: max(20px, calc((100vw - var(--container)) / 2));
  display: flex;
  color: rgba(255, 255, 255, 0.5);
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.hero-scroll span::after {
  position: absolute;
  top: -12px;
  left: 0;
  width: 1px;
  height: 12px;
  content: "";
  background: var(--gold-400);
  animation: scroll-hint 1.8s ease-in-out infinite;
}

.trust-strip {
  color: var(--white);
  background: var(--navy-900);
}

.trust-grid {
  display: grid;
  min-height: 122px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  gap: 16px;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-value {
  color: var(--gold-400);
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
}

.trust-value span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 15px;
}

.trust-item div:last-child {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
}

.trust-item small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.trust-link {
  border-right: 0;
  justify-content: flex-end;
}

.trust-link a,
.reviews-link a {
  display: inline-flex;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 130px 0;
}

.about {
  background:
    radial-gradient(circle at 89% 12%, rgba(211, 169, 95, 0.12), transparent 18%),
    var(--cream-100);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  max-width: 455px;
  padding: 0 28px 35px 0;
}

.about-visual::before {
  position: absolute;
  z-index: 0;
  top: -26px;
  right: 4px;
  width: 78%;
  height: 85%;
  content: "";
  border: 1px solid rgba(184, 137, 61, 0.28);
  border-radius: 220px 220px 20px 20px;
}

.arch-image {
  position: relative;
  z-index: 1;
  min-height: 570px;
  border-radius: 240px 240px 20px 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.arch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
  position: absolute;
  inset: 0;
}

.arch-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 24, 39, 0.48), transparent 45%);
}

.about-badge {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: 0;
  display: flex;
  min-width: 225px;
  padding: 21px 24px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-card);
  align-items: center;
  gap: 14px;
}

.about-badge svg {
  width: 32px;
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 1.7;
}

.about-badge span {
  display: flex;
  flex-direction: column;
}

.about-badge small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-badge strong {
  font-family: "Playfair Display", serif;
  font-size: 19px;
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cream-100);
  border-radius: 50%;
  background: var(--gold-500);
}

.dot-one {
  top: 7%;
  right: 0;
}

.dot-two {
  right: 4%;
  bottom: 22%;
}

.section-copy > p:not(.eyebrow),
.section-heading > p,
.clarity-copy > p,
.faq-intro > p {
  color: var(--muted);
}

.section-copy .lead,
.clarity-copy .lead {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.8;
}

.value-list {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--cream-300);
}

.value-list article {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-300);
  grid-template-columns: 48px 1fr;
  gap: 6px;
}

.value-list article > span {
  color: var(--gold-600);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.value-list h3,
.value-list p {
  margin: 0;
}

.value-list h3 {
  color: var(--navy-900);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}

.value-list p {
  color: var(--muted);
  font-size: 12px;
}

.services {
  background: var(--cream-200);
}

.section-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 7px;
  font-size: 14px;
}

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

.service-card {
  position: relative;
  min-height: 520px;
  padding: 34px 38px;
  background: var(--cream-100);
  box-shadow: 0 0 0 rgba(7, 24, 39, 0);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.service-card:hover {
  z-index: 2;
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy-900);
  font-family: "Playfair Display", serif;
  font-size: 33px;
  line-height: 1.15;
}

.service-card > p:not(.service-kicker) {
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
}

.service-card ul {
  display: grid;
  margin: 24px 0 32px;
  padding: 0;
  color: var(--ink);
  gap: 8px;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-card li::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--gold-500);
}

.service-index {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 30px;
  color: rgba(7, 24, 39, 0.32);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.service-kicker {
  margin-bottom: 8px;
  color: var(--gold-600);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  padding: 0 0 5px;
  cursor: pointer;
  color: var(--navy-900);
  border: 0;
  border-bottom: 1px solid rgba(7, 24, 39, 0.22);
  background: transparent;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
}

.service-dark {
  color: var(--white);
  background: var(--navy-900);
}

.service-dark h3,
.service-dark .text-link,
.service-dark ul {
  color: var(--white);
}

.service-dark > p:not(.service-kicker) {
  color: rgba(255, 255, 255, 0.58);
}

.service-dark .text-link {
  border-color: rgba(255, 255, 255, 0.3);
}

.service-dark .service-index {
  color: rgba(255, 255, 255, 0.25);
}

.service-illustration {
  position: relative;
  height: 145px;
  margin: -34px -38px 32px;
  background: #e9dec8;
  overflow: hidden;
}

.service-illustration::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50%;
  content: "";
  background: linear-gradient(transparent, rgba(7, 24, 39, 0.08));
}

.illustration-umrah {
  background: linear-gradient(145deg, #e8d6b2, #c8a76d);
}

.illustration-umrah .sun {
  position: absolute;
  top: 26px;
  right: 20%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 251, 228, 0.55);
  box-shadow: 0 0 45px rgba(255, 245, 194, 0.7);
}

.illustration-umrah .kaaba {
  position: absolute;
  z-index: 2;
  right: 27%;
  bottom: 0;
  width: 94px;
  height: 92px;
  background: var(--navy-950);
  clip-path: polygon(10% 14%, 100% 0, 100% 100%, 0 100%, 0 25%);
}

.illustration-umrah .kaaba::before {
  position: absolute;
  top: 29px;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
  background: var(--gold-500);
}

.arc {
  position: absolute;
  bottom: -30px;
  border: 1px solid rgba(7, 24, 39, 0.2);
  border-radius: 50%;
}

.arc-a {
  left: -20px;
  width: 200px;
  height: 110px;
}

.arc-b {
  right: -50px;
  width: 260px;
  height: 128px;
}

.illustration-family {
  background: linear-gradient(145deg, #d8e4df, #9ebeb4);
}

.illustration-family .moon {
  position: absolute;
  top: 18px;
  right: 18%;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #f8efcf;
  box-shadow: -10px 0 0 3px #acc8bf inset;
}

.person {
  position: absolute;
  z-index: 2;
  bottom: -6px;
  width: 58px;
  height: 100px;
  border-radius: 30px 30px 9px 9px;
  background: var(--navy-900);
}

.person::before {
  position: absolute;
  top: -17px;
  left: 15px;
  width: 30px;
  height: 30px;
  content: "";
  border-radius: 50%;
  background: #ead0ad;
}

.person-a { right: 31%; }
.person-b { right: 18%; height: 79px; background: var(--gold-600); transform: scale(0.84); }
.person-c { right: 43%; height: 92px; background: #f4efe4; }

.illustration-plus {
  background: linear-gradient(145deg, #ccdbe9, #849db4);
}

.illustration-plus .globe {
  position: absolute;
  top: 20px;
  right: 20%;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(7, 24, 39, 0.35);
  border-radius: 50%;
}

.illustration-plus .globe::before,
.illustration-plus .globe::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(7, 24, 39, 0.24);
  border-radius: 50%;
}

.illustration-plus .globe::before { inset: 0 30px; }
.illustration-plus .globe::after { inset: 34px 0; }

.illustration-plus .route {
  position: absolute;
  z-index: 2;
  top: 35px;
  right: 31%;
  width: 175px;
  height: 75px;
  border-top: 2px dashed rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.illustration-plus .plane {
  position: absolute;
  z-index: 3;
  top: 19px;
  right: 51%;
  color: var(--navy-900);
  font-size: 30px;
}

.illustration-corporate {
  background: linear-gradient(145deg, #132f46, #244d69);
}

.illustration-corporate .building {
  position: absolute;
  right: 27%;
  bottom: 0;
  width: 115px;
  height: 118px;
  border: 1px solid rgba(226, 193, 127, 0.5);
  background:
    repeating-linear-gradient(90deg, transparent 0 19px, rgba(226, 193, 127, 0.18) 20px 22px),
    repeating-linear-gradient(0deg, transparent 0 19px, rgba(226, 193, 127, 0.18) 20px 22px);
}

.illustration-corporate .star {
  position: absolute;
  top: 25px;
  right: 17%;
  color: var(--gold-400);
  font-size: 27px;
}

.illustration-corporate .path-line {
  position: absolute;
  right: 48%;
  bottom: 23px;
  width: 180px;
  height: 70px;
  border-bottom: 1px dashed rgba(226, 193, 127, 0.55);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.service-note {
  display: flex;
  max-width: 720px;
  margin: 34px auto 0;
  color: var(--muted);
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 11px;
}

.service-note svg {
  width: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-600);
  stroke-width: 1.7;
}

.journey {
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.journey::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44%;
  content: "";
  opacity: 0.22;
  background-image: linear-gradient(30deg, transparent 48%, rgba(211, 169, 95, 0.22) 49%, transparent 51%);
  background-size: 48px 84px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.journey-orb {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 600px;
  height: 600px;
  opacity: 0.08;
  border: 1px solid var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(211, 169, 95, 0.16), 0 0 0 150px rgba(211, 169, 95, 0.08);
}

.section-heading-light {
  position: relative;
}

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

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.55);
}

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.journey-steps::before {
  position: absolute;
  top: 31px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.journey-steps article {
  position: relative;
  min-height: 280px;
  padding: 0 34px 0 0;
}

.journey-steps article:not(:first-child) {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  display: grid;
  position: relative;
  z-index: 2;
  width: 63px;
  height: 63px;
  margin-bottom: 38px;
  color: var(--navy-950);
  border: 6px solid var(--navy-950);
  border-radius: 50%;
  background: var(--gold-500);
  place-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.step-icon {
  margin-bottom: 17px;
}

.step-icon svg {
  width: 29px;
  fill: none;
  stroke: var(--gold-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.journey-steps h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.journey-steps p {
  max-width: 240px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.clarity {
  background: var(--cream-100);
}

.clarity-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1.18fr);
  gap: 100px;
}

.clarity-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.clarity-copy h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.35rem);
}

.clarity-copy .button {
  margin-top: 16px;
}

.clarity-list {
  display: grid;
}

.clarity-list article {
  display: grid;
  padding: 27px 0;
  border-bottom: 1px solid var(--cream-300);
  grid-template-columns: 58px 1fr;
  gap: 15px;
}

.clarity-list article:first-child {
  padding-top: 0;
}

.clarity-list article > span {
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--gold-600);
  border: 1px solid var(--cream-300);
  border-radius: 50%;
  place-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.clarity-list h3,
.clarity-list p {
  margin: 0;
}

.clarity-list h3 {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
}

.clarity-list p {
  color: var(--muted);
  font-size: 13px;
}

.testimonials {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 85%, rgba(211, 169, 95, 0.16), transparent 22%),
    var(--navy-800);
}

.testimonials::before {
  position: absolute;
  top: 72px;
  right: 7%;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(226, 193, 127, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(226, 193, 127, 0.035), 0 0 0 64px rgba(226, 193, 127, 0.02);
}

.reviews-heading {
  position: relative;
  display: flex;
  margin-bottom: 64px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.reviews-heading h2 {
  margin-bottom: 0;
  color: var(--white);
}

.rating-summary {
  display: flex;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: 15px;
}

.rating-summary > strong {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
}

.rating-summary div {
  display: flex;
  flex-direction: column;
}

.rating-summary span,
.stars {
  color: var(--gold-400);
  letter-spacing: 0.1em;
  font-size: 12px;
}

.rating-summary small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

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

.testimonial-card {
  position: relative;
  min-height: 390px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
}

.testimonial-raised {
  transform: translateY(-20px);
  background: rgba(255, 255, 255, 0.08);
}

.quote-mark {
  height: 42px;
  color: var(--gold-500);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.review-summary {
  margin: 22px 0 38px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.6;
}

.testimonial-card footer {
  position: absolute;
  right: 35px;
  bottom: 32px;
  left: 35px;
  display: flex;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  align-items: center;
  gap: 12px;
}

.testimonial-card footer > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--navy-950);
  border-radius: 50%;
  background: var(--gold-500);
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.testimonial-card footer div {
  display: flex;
  flex-direction: column;
}

.testimonial-card footer strong {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}

.testimonial-card footer small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.reviews-link {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

.faq {
  background: var(--cream-100);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
  gap: 100px;
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.faq-intro > p {
  margin-bottom: 25px;
  font-size: 13px;
}

.text-link-dark {
  color: var(--navy-900);
}

.accordion {
  border-top: 1px solid var(--cream-300);
}

.accordion-item {
  border-bottom: 1px solid var(--cream-300);
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 78px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.accordion-item button > span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--cream-300);
  border-radius: 50%;
}

.accordion-item button > span::before,
.accordion-item button > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--gold-600);
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.accordion-item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open button > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  display: grid;
  max-height: 0;
  opacity: 0;
  transition: max-height 330ms ease, opacity 250ms ease;
  overflow: hidden;
}

.accordion-item.is-open .accordion-panel {
  max-height: 170px;
  opacity: 1;
}

.accordion-panel p {
  max-width: 630px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  padding: 0 0 130px;
  background: var(--cream-100);
}

.contact-shell {
  position: relative;
  display: grid;
  padding: 82px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
  grid-template-columns: minmax(320px, 0.9fr) minmax(400px, 1.1fr);
  gap: 90px;
  overflow: hidden;
}

.contact-shell::before {
  position: absolute;
  top: -220px;
  left: -160px;
  width: 520px;
  height: 520px;
  content: "";
  opacity: 0.13;
  border: 1px solid var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(211, 169, 95, 0.12), 0 0 0 128px rgba(211, 169, 95, 0.07);
}

.contact-copy,
.consultation-form {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.contact-details {
  display: grid;
  margin-top: 46px;
  gap: 13px;
}

.contact-details a {
  display: flex;
  max-width: 390px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  gap: 14px;
}

.contact-details a > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--gold-400);
  border: 1px solid rgba(226, 193, 127, 0.24);
  border-radius: 50%;
  place-items: center;
}

.contact-details svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-details div {
  display: flex;
  flex-direction: column;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.contact-details strong {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
}

.consultation-form {
  padding: 37px;
  color: var(--ink);
  background: var(--cream-100);
}

.form-head {
  display: flex;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-300);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.form-head span {
  color: var(--navy-900);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
}

.form-head small {
  color: var(--muted);
  font-size: 9px;
}

.consultation-form label {
  display: grid;
  margin-bottom: 16px;
  gap: 7px;
}

.consultation-form label > span {
  color: var(--navy-900);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--cream-300);
  border-radius: 0;
  outline: 0;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.consultation-form input,
.consultation-form select {
  height: 48px;
  padding: 0 14px;
}

.consultation-form textarea {
  padding: 12px 14px;
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(211, 169, 95, 0.12);
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: #9ba3aa;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 9px;
}

.site-footer {
  color: var(--white);
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  padding: 78px 0 54px;
  grid-template-columns: 0.95fr 1.45fr;
  gap: 90px;
}

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

.footer-brand > p {
  max-width: 355px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--gold-400);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

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

.footer-bottom {
  display: flex;
  min-height: 74px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(22, 123, 84, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
  place-items: center;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 0 18px 38px rgba(22, 123, 84, 0.4);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.toast {
  position: fixed;
  z-index: 1100;
  right: 24px;
  bottom: 94px;
  max-width: 320px;
  padding: 13px 16px;
  color: var(--white);
  border-radius: 10px;
  background: var(--navy-900);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  font-size: 11px;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-raised[data-reveal] {
  transform: translateY(6px);
}

.testimonial-raised[data-reveal].is-visible {
  transform: translateY(-20px);
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.012); }
}

@keyframes scroll-hint {
  0% { transform: translateY(0); }
  75%, 100% { transform: translateY(48px); }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 19px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .about-grid,
  .clarity-grid,
  .faq-grid {
    gap: 55px;
  }

  .about-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .arch-image {
    min-height: 500px;
  }

  .contact-shell {
    padding: 62px;
    gap: 55px;
  }

  .journey-steps article,
  .journey-steps article:not(:first-child) {
    padding-right: 19px;
    padding-left: 19px;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-open .nav-toggle {
    color: var(--white);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 390px);
    height: 100dvh;
    margin: 0;
    padding: 110px 38px 38px;
    color: var(--white);
    background: var(--navy-950);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateX(105%);
    transition: opacity 300ms ease, transform 300ms ease;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

  .main-nav.is-open {
    z-index: 1;
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav a {
    padding: 17px 0;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    opacity: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-note {
    display: none;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:first-child,
  .trust-item {
    padding: 20px;
  }

  .trust-link {
    justify-content: flex-start;
  }

  .section {
    padding: 100px 0;
  }

  .about-grid,
  .clarity-grid,
  .faq-grid,
  .contact-shell,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: min(100%, 480px);
    margin: 0 auto;
  }

  .about-grid {
    gap: 80px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading > p {
    max-width: 610px;
  }

  .service-card {
    min-height: 510px;
  }

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .journey-steps::before {
    display: none;
  }

  .journey-steps article:nth-child(3) {
    border-left: 0;
  }

  .clarity-copy {
    position: static;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 340px;
  }

  .testimonial-raised,
  .testimonial-raised[data-reveal],
  .testimonial-raised[data-reveal].is-visible {
    transform: none;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact {
    padding-bottom: 90px;
  }

  .contact-shell {
    padding: 60px;
  }

  .consultation-form {
    padding: 34px;
  }

  .footer-top {
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 17, 29, 0.97), rgba(4, 17, 29, 0.62)), linear-gradient(0deg, rgba(4, 17, 29, 0.82), transparent 55%);
  }

  .hero-content {
    padding-top: 84px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-value {
    width: 70px;
  }

  .section {
    padding: 82px 0;
  }

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

  .arch-image {
    min-height: 460px;
  }

  .about-badge {
    right: 0;
    min-width: 205px;
  }

  .about-grid {
    gap: 70px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 30px 27px;
  }

  .service-illustration {
    margin: -30px -27px 28px;
  }

  .service-card h3 {
    font-size: 29px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-steps article,
  .journey-steps article:not(:first-child) {
    min-height: 0;
    padding: 0 0 30px 82px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .step-icon {
    margin-top: 4px;
  }

  .clarity-grid,
  .faq-grid {
    gap: 62px;
  }

  .clarity-list article {
    grid-template-columns: 48px 1fr;
  }

  .rating-summary {
    width: 100%;
  }

  .testimonial-card {
    min-height: 380px;
    padding: 28px;
  }

  .testimonial-card footer {
    right: 28px;
    bottom: 27px;
    left: 28px;
  }

  .review-summary {
    font-size: 18px;
  }

  .accordion-item button {
    min-height: 74px;
    font-size: 13px;
  }

  .contact {
    padding-bottom: 70px;
  }

  .contact-shell {
    width: 100%;
    padding: 58px 22px 22px;
    gap: 42px;
  }

  .consultation-form {
    padding: 25px 20px;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .toast {
    right: 16px;
    bottom: 80px;
    left: 16px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
