:root {
  --navy: #173763;
  --navy-dark: #0d2444;
  --navy-soft: #e9eef6;
  --gold: #f6b51d;
  --gold-dark: #cf8d00;
  --ink: #152238;
  --muted: #657287;
  --line: #dbe2ec;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --shadow: 0 18px 46px rgba(13, 36, 68, 0.12);
  --container: 1180px;
  --radius: 8px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", Arial, sans-serif;
  letter-spacing: 0;
  color: var(--navy-dark);
  overflow-wrap: break-word;
}

h1 {
  font-size: 3.35rem;
  line-height: 1.08;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.18;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

h4 {
  font-size: 1rem;
  line-height: 1.32;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  max-width: calc(100vw - 48px);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-heading-center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-heading-split {
  grid-template-columns: 0.92fr 1fr;
  align-items: end;
  gap: 48px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 55, 99, 0.18);
  background: #ffffff;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--navy-dark);
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(246, 181, 29, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc947;
}

.button-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--navy-dark);
  background: #ffffff;
}

.button-icon {
  font-size: 1.12rem;
  line-height: 1;
}

.top-bar {
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy-dark);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 42px;
  font-size: 0.9rem;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.top-social a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 55, 99, 0.09);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand-logo-header {
  width: auto;
  height: 66px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  min-width: 0;
}

.site-nav a,
.nav-dropdown-trigger {
  font-weight: 800;
  color: var(--navy-dark);
}

.site-nav > a:not(.button),
.nav-dropdown-trigger {
  position: relative;
  padding: 30px 0;
}

.site-nav > a:not(.button)::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a.is-active::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  background: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -22px;
  display: grid;
  min-width: 310px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--muted);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--navy-dark);
  background: var(--navy-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--navy-dark);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 78svh;
  color: #ffffff;
  isolation: isolate;
}

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

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: hero-fade 18s infinite;
}

.hero-slide-one {
  background-image: url("assets/images/feature-1.jpg");
  animation-delay: 0s;
}

.hero-slide-two {
  background-image: url("assets/images/service-2.jpg");
  animation-delay: 6s;
}

.hero-slide-three {
  background-image: url("assets/images/service-5.jpg");
  animation-delay: 12s;
}

@keyframes hero-fade {
  0%,
  34% {
    opacity: 1;
  }

  42%,
  100% {
    opacity: 0;
  }
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 36, 68, 0.94), rgba(13, 36, 68, 0.78) 44%, rgba(13, 36, 68, 0.28)),
    linear-gradient(180deg, rgba(13, 36, 68, 0.08), rgba(13, 36, 68, 0.26));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 54px;
  min-height: 78svh;
  padding: 88px 0 76px;
}

.hero-content {
  max-width: 760px;
  min-width: 0;
}

.hero-content h1 {
  margin-top: 20px;
  max-width: 780px;
  color: #ffffff;
}

.hero-content p {
  margin-top: 22px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

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

.hero-panel {
  align-self: end;
  width: 100%;
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.28rem;
  line-height: 1.35;
}

.hero-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.hero-panel li {
  position: relative;
  padding-left: 20px;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.about-section,
.advisor-section,
.faq-section {
  background: #ffffff;
}

.about-grid,
.appointment-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 560px;
}

.about-image-main,
.about-image-small,
.testimonial-image img,
.advisor-card img,
.blog-card img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-image-main {
  width: 78%;
  min-height: 520px;
  box-shadow: var(--shadow);
}

.about-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 245px;
  border: 8px solid #ffffff;
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  right: 36px;
  top: 48px;
  width: 210px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow);
}

.experience-card span {
  font-weight: 800;
  text-transform: uppercase;
}

.experience-card strong {
  display: block;
  margin: 6px 0;
  font-family: "Sora", Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.experience-card p {
  color: rgba(13, 36, 68, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-copy {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.lead {
  font-size: 1.05rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.mini-icon,
.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.benefit-item p {
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.call-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--navy-soft);
}

.call-strip span {
  color: var(--muted);
  font-weight: 800;
}

.call-strip a {
  color: var(--navy-dark);
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

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

.service-categories {
  display: grid;
  gap: 34px;
}

.service-category {
  display: grid;
  gap: 18px;
}

.service-category-heading {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.service-category-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  font-family: "Sora", Arial, sans-serif;
  font-weight: 800;
}

.service-category-heading p {
  margin-top: 8px;
  max-width: 850px;
}

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

.service-mini-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  min-height: 164px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(13, 36, 68, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-mini-card:hover,
.service-mini-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(246, 181, 29, 0.7);
  box-shadow: var(--shadow);
}

.service-mini-card img {
  width: 112px;
  height: 136px;
  border-radius: var(--radius);
  object-fit: cover;
}

.service-mini-card > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.service-mini-card p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.service-mini-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-mini-action::after {
  content: "->";
}

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

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(13, 36, 68, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.service-card img {
  height: 205px;
  object-fit: cover;
}

.service-body {
  position: relative;
  display: grid;
  gap: 14px;
  flex: 1;
  padding: 30px 24px 26px;
}

.service-icon {
  position: absolute;
  top: -26px;
  left: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 10px 20px rgba(13, 36, 68, 0.14);
}

.service-body h3 {
  margin-top: 8px;
}

.service-body p {
  min-height: 104px;
}

.service-category-card .service-body p {
  min-height: 0;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 2px 0 4px;
  padding: 0;
  list-style: none;
  counter-reset: service-item;
}

.service-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.service-list li::before {
  content: counter(service-item);
  counter-increment: service-item;
  position: absolute;
  top: 0.05rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-list strong {
  color: var(--navy-dark);
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy-dark);
}

.service-detail-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 36, 68, 0.94), rgba(13, 36, 68, 0.66));
}

.service-detail-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 94px 0;
}

.service-detail-hero h1 {
  margin-top: 18px;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.service-detail-hero p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}

.service-detail-content,
.service-detail-aside {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(13, 36, 68, 0.06);
}

.service-detail-content {
  padding: 34px;
}

.service-detail-content h2 {
  font-size: 1.7rem;
}

.service-detail-content > p {
  margin-top: 16px;
}

.detail-point-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.detail-point-list li {
  position: relative;
  padding: 16px 16px 16px 48px;
  border-radius: var(--radius);
  background: var(--navy-soft);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.detail-point-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.service-detail-aside {
  overflow: hidden;
}

.service-detail-aside img {
  height: 230px;
  object-fit: cover;
}

.aside-body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.aside-body a:not(.button) {
  color: var(--navy);
  font-weight: 800;
}

.related-services {
  display: grid;
  gap: 10px;
}

.related-services a {
  display: block;
  padding: 11px 12px;
  border-radius: var(--radius);
  background: var(--navy-soft);
  color: var(--navy-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-body a,
.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--navy);
  font-weight: 800;
}

.cta-band {
  padding: 48px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(13, 36, 68, 0.94), rgba(23, 55, 99, 0.88)),
    url("assets/images/service-1.jpg") center/cover no-repeat;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  max-width: 790px;
  color: #ffffff;
  font-size: 2rem;
}

.cta-band p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  min-height: 230px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-card h3 {
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.advisor-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.advisor-card img {
  height: 345px;
}

.advisor-card > div {
  padding: 20px;
}

.advisor-card p {
  margin-top: 6px;
}

.testimonial-section {
  background: var(--navy-soft);
}

.testimonial-image img {
  min-height: 560px;
  box-shadow: var(--shadow);
}

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

.quote-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(13, 36, 68, 0.08);
}

.quote-card > p {
  color: var(--ink);
}

.quote-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.quote-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
}

.quote-user strong {
  display: block;
  color: var(--navy-dark);
}

.quote-user span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-mark {
  display: block;
  margin-top: 8px;
  color: rgba(246, 181, 29, 0.42);
  font-family: "Sora", Arial, sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  text-align: right;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.control-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
}

.appointment-section {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(13, 36, 68, 0.96), rgba(13, 36, 68, 0.82)),
    url("assets/images/service-2.jpg") center/cover no-repeat;
}

.appointment-copy h2 {
  margin-top: 18px;
  color: #ffffff;
  min-width: 0;
}

.appointment-copy p {
  margin-top: 18px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

.quote-form {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-dark);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--ink);
  outline: 0;
}

.quote-form input,
.quote-form select {
  min-height: 50px;
  padding: 0 14px;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246, 181, 29, 0.16);
}

.quote-form .button {
  justify-self: start;
  border: 0;
}

.form-status {
  min-height: 24px;
  color: var(--navy);
  font-weight: 800;
}

.blog-section {
  background: var(--bg);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.blog-card img {
  height: 230px;
}

.blog-card > div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-card span {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.blog-page-section {
  background: var(--bg);
}

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

.blog-list-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(13, 36, 68, 0.06);
}

.blog-list-card img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.blog-list-card > div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px 22px 24px 0;
}

.blog-list-card span,
.blog-detail-copy > .eyebrow {
  color: var(--gold-dark);
}

.blog-list-card a {
  display: inline-flex;
  gap: 8px;
  width: max-content;
  color: var(--navy);
  font-weight: 800;
}

.blog-detail-article:empty {
  display: none;
}

.blog-detail-article {
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(13, 36, 68, 0.08);
}

.blog-detail-image {
  height: 430px;
  object-fit: cover;
}

.blog-detail-copy {
  display: grid;
  gap: 22px;
  padding: 36px;
}

.blog-detail-copy section {
  display: grid;
  gap: 10px;
}

.blog-detail-copy .button {
  width: max-content;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-item.is-open {
  border-color: var(--navy);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  color: var(--navy-dark);
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  padding: 0 24px 22px;
}

.site-footer {
  padding: 72px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-dark);
}

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

.brand-footer {
  width: 210px;
  padding: 12px;
  border-radius: var(--radius);
  background: #ffffff;
}

.brand-logo-footer {
  height: auto;
}

.footer-brand-block p {
  margin-top: 18px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1.08rem;
}

.site-footer ul {
  display: grid;
  gap: 11px;
}

.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1120px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .site-nav {
    gap: 18px;
  }

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

  .hero-panel {
    max-width: 460px;
  }

  .about-grid,
  .appointment-grid,
  .testimonial-grid,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

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

  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .blog-list-card > div {
    padding: 0 22px 24px;
  }

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

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

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

@media (max-width: 940px) {
  :root {
    --header-height: 78px;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .top-social {
    display: none;
  }

  .brand-logo-header {
    height: 58px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    max-width: calc(100vw - 48px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.button),
  .nav-dropdown-trigger {
    padding: 13px 10px;
  }

  .site-nav > a:not(.button)::after,
  .nav-dropdown-trigger::after {
    display: none;
  }

  .header-cta {
    margin-top: 10px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 9px 10px;
    font-size: 0.92rem;
  }
}

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

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .top-bar-inner {
    min-height: auto;
    padding: 10px 0;
  }

  .top-contact {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px 12px;
  }

  .top-contact span {
    display: none;
  }

  .top-contact a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 68px 0 56px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content h1,
  .hero-content p,
  .hero-panel strong,
  .hero-panel li,
  .service-detail-hero h1,
  .service-detail-hero p,
  .service-detail-hero .eyebrow,
  .service-detail-content p,
  .detail-point-list li {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .cta-band-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    width: 100%;
  }

  .button,
  .quote-form .button {
    width: 100%;
  }

  .hero-panel {
    align-self: auto;
    overflow: hidden;
  }

  .hero-panel strong {
    font-size: 1.14rem;
  }

  .about-media {
    min-height: 480px;
  }

  .about-image-main {
    width: 88%;
    min-height: 430px;
  }

  .about-image-small {
    width: 54%;
    height: 190px;
    border-width: 6px;
  }

  .experience-card {
    top: 24px;
    right: 0;
    width: 178px;
    padding: 18px;
  }

  .benefit-grid,
  .service-grid,
  .service-mini-grid,
  .advisor-grid,
  .blog-grid,
  .blog-list-grid,
  .testimonial-stage,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .service-body p {
    min-height: 0;
  }

  .service-category-heading,
  .service-mini-card {
    grid-template-columns: 1fr;
  }

  .service-mini-card img {
    width: 100%;
    height: 190px;
  }

  .service-detail-hero-inner {
    padding: 70px 0;
  }

  .service-detail-hero .eyebrow {
    display: inline-flex;
    max-width: 100%;
    line-height: 1.35;
    white-space: normal;
  }

  .service-detail-content {
    padding: 24px;
  }

  .section-action {
    align-items: stretch;
  }

  .blog-detail-image {
    height: 260px;
  }

  .blog-detail-copy {
    padding: 24px;
  }

  .blog-detail-copy .button {
    width: 100%;
  }

  .testimonial-image img {
    min-height: 360px;
  }

  .quote-card[data-card="1"] {
    display: none;
  }

  .quote-form {
    padding: 20px;
  }

  .brand-footer {
    width: 180px;
  }
}

@media (max-width: 520px) {
  .brand-logo-header {
    height: 50px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  h1 {
    font-size: 1.78rem;
    line-height: 1.15;
  }

  h2 {
    font-size: 1.5rem;
  }

  .eyebrow {
    width: auto;
    font-size: 0.78rem;
  }

  .about-image-main {
    width: 100%;
  }

  .service-category-heading {
    padding: 18px;
  }

  .about-image-small {
    position: relative;
    width: 100%;
    height: 210px;
    margin-top: 14px;
    border: 0;
  }

  .about-media {
    min-height: 0;
  }

  .experience-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 14px;
  }
}

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

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

  .hero-slide-one {
    opacity: 1;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
