@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --maroon: #5d0018;
  --maroon-2: #741f2a;
  --rust: #ba7253;
  --rust-2: #c57d5c;
  --salmon: #ffffff;
  --salmon-2: #f2f2f2;
  --paper: #2f2f2f;
  --ink: #221f20;
  --muted: #695f5c;
  --line: #ddbdb1;
  --shadow: 0 18px 40px rgba(110, 56, 39, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--salmon);
}

a {
  text-decoration: none;
}

.section-salmon {
  background: var(--salmon);
}

.topbar {
  background: var(--maroon);
  color: #fff;
  font-size: 0.98rem;
}

.topbar-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.topbar-item i {
  font-size: 1.1rem;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.topbar-social a,
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon);
  color: #fff;
  font-size: 1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar-social a:hover,
.footer-social a:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.main-nav {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  width: 110px;
  height: auto;
  display: block;
}

.navbar-nav .nav-link {
  color: #5d4d48;
  font-weight: 500;
  padding: 0.65rem 0.85rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--maroon);
}

.navbar-nav .nav-link.active {
  text-decoration: underline;
  text-underline-offset: 0.45rem;
  text-decoration-thickness: 2px;
}

.nav-cta {
  padding: 0.9rem 1.6rem;
}

.btn-brand,
.btn-outline-brand:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
  box-shadow: 0 10px 22px rgba(93, 0, 24, 0.28);
}

.btn-brand:hover {
  background: var(--maroon-2);
  border-color: var(--maroon-2);
  color: #fff;
}

.btn-outline-brand {
  border: 1px solid var(--ink);
  color: var(--rust);
  background: transparent;
}

.btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  background: #7b5a46;
}

.hero-bg,
.consultation-aside .aside-photo img,
.about-media img,
.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-position: 50% 20%;
}

.hero-bg-flip {
  transform: scaleX(-1);
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(130, 63, 43, 0.72) 0%, rgba(130, 63, 43, 0.45) 28%, rgba(130, 63, 43, 0.05) 100%),
    linear-gradient(180deg, rgba(97, 36, 24, 0.18), rgba(97, 36, 24, 0.14));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 9rem;
  padding-bottom: 6rem;
  color: #fff;
  max-width: 1250px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #7d4d37;
  padding: 0.35rem 1.05rem;
  font-size: 1rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.hero h1 {
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 0.97;
  max-width: 860px;
  margin: 0 0 1.55rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.45;
  margin-bottom: 2.2rem;
}

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

.hero-actions .btn {
  min-width: 215px;
  padding: 1rem 1.5rem;
  font-weight: 600;
}

.about-section,
.services-section,
.value-section,
.steps-section,
.faq-section,
.consultation-section,
.stories-section {
  padding: 2rem 0;
}

.about-media-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.about-media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 520px;
  background: #fff;
  position: relative;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.about-stats {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem 1.2rem;
  min-height: 180px;
}

.stat-card h3,
.service-card h3,
.step-card h3,
.story-author strong {
  margin: 0;
  font-weight: 600;
}

.stat-card h3 {
  font-size: 1.15rem;
  margin: 0.65rem 0 0.45rem;
}

.stat-card p,
.service-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.stat-icon {
  width: 30px;
  height: 30px;
  color: var(--maroon);
  font-size: 1.1rem;
}

.about-copy {
  max-width: 560px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.about-copy h2,
.value-copy h2,
.section-title,
.section-heading h2,
.stories-heading h2 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.lead-copy {
  font-size: 1.05rem;
  color: #231f20;
  line-height: 1.65;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-decor {
  position: absolute;
  right: 0;
  top: 35%;
  width: 290px;
  height: 180px;
  pointer-events: none;
}

.about-decor .circle {
  position: absolute;
  right: 38px;
  top: 14px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1.5px dashed rgba(93, 0, 24, 0.18);
}

.about-decor .swoosh {
  position: absolute;
  right: 0;
  top: 72px;
  width: 260px;
  height: 68px;
  border-bottom: 1.5px dashed rgba(93, 0, 24, 0.18);
  border-right: 1.5px dashed rgba(93, 0, 24, 0.18);
  border-radius: 0 0 140px 0;
  transform: rotate(2deg);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 980px;
  margin: 0 auto 2rem;
}

.service-grid {
  margin-top: 2.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(113, 88, 82, 0.22);
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(120, 87, 66, 0.1);
  padding: 1.15rem 1.15rem;
  min-height: 104px;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.service-card i {
  color: var(--maroon);
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 0.1rem;
  flex: 0 0 auto;
}

.service-card h3 {
  font-size: 1.02rem;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.value-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.value-copy {
  max-width: 560px;
}

.value-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.value-copy h2 span {
  color: var(--maroon);
}

.value-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #4f4745;
  line-height: 1.55;
}

.check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--maroon);
  font-size: 1.1rem;
}

.check-list strong {
  color: #2a2524;
}

.consult-text {
  font-size: 1.05rem;
  color: #231f20 !important;
  font-weight: 500;
  margin: 1.25rem 0 1.3rem;
}

.steps-section .section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--maroon);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.steps-wrap {
  position: relative;
  padding-top: 4rem;
}

.steps-line {
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 6.1rem;
  border-top: 2px dashed rgba(89, 66, 58, 0.45);
}

.step-card {
  text-align: center;
  padding: 1rem 0.5rem 0;
}

.step-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 2.1rem;
  background: var(--maroon-2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  border: 6px solid #fff;
  box-shadow: 0 12px 18px rgba(79, 37, 26, 0.25);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--muted);
  margin: 0;
  max-width: 300px;
  margin-inline: auto;
}

.faq-wrap {
  max-width: 760px;
}

.custom-accordion .accordion-item {
  background: #fff;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(131, 93, 83, 0.08);
  margin-bottom: 1rem;
}

.custom-accordion .accordion-button {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--maroon);
  background: #fff;
  box-shadow: none;
  padding: 1.15rem 1.35rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--maroon);
}

.custom-accordion .accordion-button::after {
  background-size: 1rem;
}

.custom-accordion .accordion-body {
  color: var(--muted);
  line-height: 1.65;
  padding: 0 1.35rem 1.25rem;
}

.consultation-panel {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f7f0ee;
}

.consultation-aside {
  position: relative;
  min-height: 770px;
  background: linear-gradient(180deg, rgba(186, 114, 83, 0.96) 0%, rgba(186, 114, 83, 0.88) 58%, rgba(186, 114, 83, 0.1) 100%);
  color: #fff;
}

.consultation-aside::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 340px;
  background: linear-gradient(180deg, rgba(122, 53, 34, 0) 0%, rgba(122, 53, 34, 0.22) 40%, rgba(122, 53, 34, 0.48) 100%);
  z-index: 1;
}

.aside-content {
  position: relative;
  z-index: 2;
  padding: 3rem 3rem 2rem;
}

.aside-content h2 {
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.6rem;
}

.aside-content p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.02rem;
}

.contact-list i {
  font-size: 1.2rem;
}

.aside-photo {
  position: absolute;
  inset: auto 0 0 0;
  height: 370px;
}

.aside-photo img {
  filter: saturate(0.8) sepia(0.35) hue-rotate(335deg) brightness(0.82) contrast(1.05);
  opacity: 0.72;
}

.consultation-aside .aside-photo img {
  object-fit: contain;
  object-position: center center;
}

.consultation-form-area {
  padding: 2.3rem 2.5rem 2.4rem;
}

.consultation-form .form-label {
  font-size: 0.95rem;
  color: #342f2d;
  margin-bottom: 0.45rem;
}

.consultation-form .form-control,
.consultation-form .form-select {
  min-height: 54px;
  border-radius: 11px;
  border: 1px solid #e1c1b9;
  background: #fff;
}

.consultation-form textarea.form-control {
  min-height: 130px;
}

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

.option-pill {
  border: 1px solid #e1c1b9;
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  color: #403633;
  font-size: 0.95rem;
}

.option-pill input,
.radio-row input {
  accent-color: var(--maroon);
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #403633;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-submit {
  min-height: 56px;
  font-weight: 600;
}

.form-note {
  text-align: center;
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.stories-heading {
  margin-bottom: 2.6rem;
}

.stories-heading h2 {
  color: var(--maroon);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

.stories-heading p {
  color: #574f4c;
  max-width: 700px;
  line-height: 1.55;
}

.story-card {
  background: rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(131, 93, 83, 0.08);
  padding: 1.8rem 1.9rem 1.6rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.story-card p {
  color: #2f2b2a;
  line-height: 1.55;
  margin: 1rem 0 1.8rem;
}

.stars {
  color: #e1b48b;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
}

.story-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #4b4341;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d7c2c2;
  color: var(--maroon);
  font-weight: 600;
}

.story-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.story-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(93, 0, 24, 0.35);
}

.story-dots span.active {
  width: 9px;
  height: 9px;
  background: var(--rust);
  margin-top: -1.5px;
}

.site-footer {
  background: var(--maroon);
  color: #fff;
  padding: 4rem 0 1rem;
}

.footer-logo {
  width: 125px;
  height: auto;
  background: #fff;
  padding: 0.45rem 0.25rem;
  display: block;
}

.footer-blurb {
  margin: 1rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
}

.site-footer h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffeadf;
  margin-bottom: 1.4rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-note {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.newsletter-form {
  max-width: 310px;
}

.newsletter-form .form-control {
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  margin-bottom: 0.7rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(93, 0, 24, 0.82) 0%, rgba(93, 0, 24, 0.62) 40%, rgba(93, 0, 24, 0.25) 100%),
    linear-gradient(180deg, rgba(34, 31, 32, 0.08), rgba(34, 31, 32, 0.22));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0;
}

.page-hero__copy {
  max-width: 760px;
}

.page-hero .hero-pill {
  margin-bottom: 1.4rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.page-hero-about {
  background-image: url("assets/about-hero.png");
}

.page-hero-services {
  background-image: url("assets/services-hero.png");
}

.page-hero-consultation {
  background-image: url("assets/consultation-hero.png");
  background-position: center 38%;
}

.page-hero-careers {
  background-image: url("assets/careers-hero.png");
}

.page-hero-contact {
  background-image: url("assets/contact-hero.png");
}

.page-section {
  padding: 3.75rem 0;
}

.section-title-left {
  text-align: left;
  max-width: none;
  margin-left: 0;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.info-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.value-list,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list li,
.detail-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.95rem;
  color: #4f4745;
  line-height: 1.6;
}

.value-list li::before,
.detail-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--maroon);
  font-size: 1.1rem;
}

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

.support-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(113, 88, 82, 0.22);
  padding: 1.15rem;
  display: flex;
  gap: 0.9rem;
  box-shadow: 0 10px 18px rgba(120, 87, 66, 0.1);
}

.support-item i {
  color: var(--maroon);
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.support-item h4 {
  font-size: 1.02rem;
  margin: 0 0 0.2rem;
  font-weight: 600;
}

.support-item p {
  margin: 0;
  color: var(--muted);
}

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

.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-card i {
  color: var(--maroon);
  font-size: 1.4rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin: 0.9rem 0 0.4rem;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.career-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.career-card .badge {
  background: rgba(186, 114, 83, 0.15);
  color: var(--maroon);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
}

.career-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.career-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.page-cta {
  background: linear-gradient(90deg, var(--maroon) 0%, var(--maroon-2) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.page-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.page-cta p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.page-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.page-image {
  border-radius: 26px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: var(--shadow);
}

.page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1200px) {
  .topbar-inner,
  .main-nav .container-xl,
  .site-footer .container-xl {
    width: 90%;
    max-width: 90%;
  }

  .hero-content,
  main section .container-xl {
    width: 80%;
    max-width: 80%;
  }
}

@media (max-width: 1199.98px) {
  .hero {
    min-height: 760px;
  }

  .steps-line {
    left: 8%;
    right: 8%;
  }

  .consultation-aside {
    min-height: 680px;
  }
}

@media (max-width: 991.98px) {
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.7rem 0;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }

  .nav-cta {
    margin-top: 0.8rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .about-media {
    height: 460px;
  }

  .about-copy,
  .value-copy {
    max-width: none;
    margin-left: 0;
  }

  .about-decor {
    display: none;
  }

  .value-image {
    min-height: 420px;
  }

  .steps-line {
    display: none;
  }

  .consultation-aside {
    min-height: auto;
  }

  .consultation-aside::before,
  .aside-photo {
    display: none;
  }

  .consultation-form-area {
    padding: 2rem 1.25rem 1.5rem;
  }

  .page-split,
  .contact-grid,
  .career-grid {
    grid-template-columns: 1fr;
  }

  .page-image {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-top: 5.8rem;
  }

  .hero-pill {
    font-size: 0.92rem;
  }

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

  .about-section,
  .services-section,
  .value-section,
  .steps-section,
  .faq-section,
  .consultation-section,
  .stories-section {
    padding: 2rem 0;
  }

  .page-section {
    padding: 3rem 0;
  }

  .page-hero {
    min-height: 300px;
  }

  .page-hero__inner {
    padding: 2.5rem 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
    position: static;
    margin-top: 1rem;
  }

  .about-media-wrap {
    padding-bottom: 0;
  }

  .about-media {
    height: 360px;
  }

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

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

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

  .footer-logo {
    width: 115px;
  }

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

/* =============================================
   HERO ENTRANCE ANIMATIONS
   ============================================= */
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-pill      { animation: heroSlideIn 0.75s ease 0.15s both; }
.hero h1        { animation: heroSlideIn 0.8s  ease 0.35s both; }
.hero p         { animation: heroSlideIn 0.75s ease 0.55s both; }
.hero-actions   { animation: heroSlideIn 0.75s ease 0.70s both; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* =============================================
   MARQUEE BAND
   ============================================= */
.marquee-band {
  background: var(--maroon);
  overflow: hidden;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee-inner {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marqueeScroll 42s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 2rem;
  white-space: nowrap;
}
.marquee-inner span i { color: var(--rust-2); font-size: 0.95rem; }
.marquee-dot {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 1.1rem;
  padding: 0 0.25rem !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-2) 100%);
  padding: 3rem 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-band-item {
  padding: 1rem 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-item .snum {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-band-item .slabel {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
@media (max-width: 767.98px) {
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band-item:nth-child(2) { border-right: none; }
  .stat-band-item:nth-child(3),
  .stat-band-item:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.12); }
}

/* =============================================
   CONSULTATION MODAL
   ============================================= */
.consult-modal-content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
}
.consult-modal-header {
  background: var(--maroon);
  color: #fff;
  border-bottom: none;
  padding: 1.35rem 1.8rem;
  align-items: flex-start;
}
.consult-modal-header .modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}
.consult-modal-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.2rem;
}
.consult-modal-aside {
  background: linear-gradient(170deg, rgba(186, 114, 83, 0.96) 0%, rgba(186, 114, 83, 0.82) 100%);
  color: #fff;
  height: 100%;
  min-height: 400px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.consult-modal-aside p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* =============================================
   HERO CAROUSEL SLIDER
   ============================================= */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-carousel .carousel-inner {
  height: 100%;
}
/* Absolutely stack items so fade crossfade works correctly */
.hero-carousel .carousel-item {
  position: absolute !important;
  inset: 0;
  float: none;
  margin-right: 0;
  height: 100%;
}

/* Left / right arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  background: rgba(93, 0, 24, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: background 0.22s ease, transform 0.22s ease;
}
.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--maroon);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
  outline: none;
}
.hero-arrow i { font-size: 1.4rem; }
.hero-arrow-prev { left: 1.75rem; }
.hero-arrow-next { right: 1.75rem; }

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.active,
.hero-dot:hover {
  background: #fff;
  transform: scale(1.4);
}

@media (max-width: 767.98px) {
  .hero-arrow {
    width: 42px;
    height: 42px;
  }
  .hero-arrow i { font-size: 1.15rem; }
  .hero-arrow-prev { left: 0.8rem; }
  .hero-arrow-next { right: 0.8rem; }
  .hero-dots { bottom: 1.2rem; }
}
