:root {
  --about-ink: #18322a;
  --about-muted: #5e6d67;
  --about-green: #174f38;
  --about-green-deep: #0e3928;
  --about-gold: #d6a94f;
  --about-gold-soft: #f5ead2;
  --about-cream: #f7f4ec;
  --about-white: #ffffff;
  --about-line: #dfe8e2;
  --about-shadow: 0 18px 50px rgba(20, 55, 42, 0.1);
  --about-radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--about-white);
  color: var(--about-ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--about-gold);
  color: #102d22;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(23, 79, 56, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 25px rgba(18, 52, 39, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--about-ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

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

.links a {
  position: relative;
  padding: 10px 12px;
  color: #30453d;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.links a::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--about-gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.links a:hover::after,
.links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.links a[aria-current="page"] {
  color: var(--about-green);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 23px;
  height: 2px;
  display: block;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--about-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.about-hero {
  min-height: min(77vh, 760px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background-image: url("/splendorsafari/assets/uploads/hero/52228763044_7b6f46d206_k-1-1536x1153-68d2a17469603.jpg");
  background-position: center 52%;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 29, 20, 0.9) 0%, rgba(7, 37, 25, 0.74) 42%, rgba(8, 30, 23, 0.22) 76%),
    linear-gradient(0deg, rgba(8, 35, 25, 0.7) 0%, transparent 52%);
}

.hero-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(90px, 15vh, 150px) 0 clamp(72px, 10vh, 110px);
  color: var(--about-white);
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--about-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1cf82;
}

.eyebrow span {
  width: 36px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.hero-content h1,
.section h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-content h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  line-height: 0.96;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--about-gold);
  color: #173126;
}

.button-primary:hover {
  background: #e5bd69;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 112px;
}

.intro-copy {
  color: var(--about-muted);
  font-size: 1rem;
}

.intro-copy p {
  margin: 0 0 22px;
}

.intro-copy p:first-child {
  color: #314b41;
  font-size: 1.15rem;
}

.service-section {
  background: var(--about-cream);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--about-muted);
}

.center-heading.compact {
  margin-bottom: 56px;
}

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

.service-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(23, 79, 56, 0.1);
  border-radius: var(--about-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 32px rgba(25, 62, 47, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--about-shadow);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--about-gold-soft);
  color: var(--about-green);
  font-size: 1.15rem;
}

.service-card h3 {
  margin: 24px 0 10px;
  color: var(--about-ink);
  font-size: 1.08rem;
}

.service-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.9rem;
}

.why-section {
  background: var(--about-green-deep);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.why-heading {
  position: sticky;
  top: 112px;
}

.kicker.light {
  color: #e2bd6d;
}

.why-heading h2 {
  color: #fff;
}

.why-heading > p:not(.kicker) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #efcc80;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link i {
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.reason-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.reason {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.reason > span {
  color: #e2bd6d;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.15rem;
}

.reason h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.05rem;
}

.reason p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.process-section {
  overflow: hidden;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 23px;
  right: 8%;
  left: 8%;
  z-index: -1;
  height: 1px;
  background: var(--about-line);
  content: "";
}

.process-list li {
  background: #fff;
}

.process-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #cbdad1;
  border-radius: 50%;
  background: #fff;
  color: var(--about-green);
  font-weight: 700;
  box-shadow: 0 0 0 8px #fff;
}

.process-list h3 {
  margin: 24px 0 9px;
  color: var(--about-ink);
  font-size: 1.02rem;
}

.process-list p {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.88rem;
}

.values-section {
  background: #eef4f0;
}

.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.values-lead {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--about-muted);
}

.value-points {
  display: grid;
  gap: 14px;
}

.value-points article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(23, 79, 56, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
}

.value-points i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--about-gold-soft);
  color: var(--about-green);
}

.value-points h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.value-points p {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.87rem;
}

.contact-section {
  background: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 60px;
  align-items: center;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 169, 79, 0.18), transparent 28%),
    var(--about-green);
  color: #fff;
  box-shadow: var(--about-shadow);
}

.contact-copy h2 {
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.contact-copy > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-actions a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(3px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--about-gold);
  color: var(--about-green-deep);
}

.contact-actions small,
.contact-actions strong {
  display: block;
}

.contact-actions small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.9rem;
}

.site-footer {
  padding: 35px 0;
  border-top: 1px solid var(--about-line);
  background: #f7f9f7;
}

.footer-shell {
  width: min(1160px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}

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

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span,
.site-footer p {
  color: var(--about-muted);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #3d5149;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

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

.site-footer p {
  margin: 0;
  text-align: right;
}

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

  .links {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    border-bottom: 1px solid var(--about-line);
    background: #fff;
    transition: max-height 0.28s ease, padding 0.28s ease;
  }

  .navbar.open .links {
    max-height: 340px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .links a {
    padding: 12px 2px;
    border-bottom: 1px solid #edf1ee;
  }

  .links a::after {
    right: auto;
    bottom: 7px;
    left: 2px;
    width: 34px;
  }

  .navbar.open .nav-toggle .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar.open .nav-toggle .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar.open .nav-toggle .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .intro-grid,
  .why-grid,
  .values-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .why-heading {
    position: static;
  }

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

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 30px;
  }

  .process-list::before {
    display: none;
  }

  .contact-card {
    gap: 34px;
  }

  .footer-shell {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .navbar {
    padding: 0 14px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .about-hero {
    min-height: 670px;
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 29, 20, 0.9), rgba(8, 35, 25, 0.5)), linear-gradient(0deg, rgba(8, 35, 25, 0.78), transparent 60%);
  }

  .hero-content h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

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

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

  .service-card {
    min-height: 0;
  }

  .reason {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .value-points article {
    grid-template-columns: 40px 1fr;
    gap: 13px;
    padding: 18px;
  }

  .contact-card {
    width: calc(100% - 24px);
    padding: 32px 20px;
    border-radius: 22px;
  }

  .contact-actions strong {
    font-size: 0.78rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

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