:root {
  --color-primary: #5e7f9e;
  --color-primary-dark: #4a667f;
  --color-primary-soft: #e6e8eb;
  --color-accent: #d7cec2;
  --color-text: #2b2f33;
  --color-text-soft: #62686f;
  --color-border: #ddd5cb;
  --color-surface: #f7f5f1;
  --color-surface-alt: #eeebe6;
  --color-hero-overlay: rgba(43, 47, 51, 0.58);
  --shadow-soft: 0 28px 60px rgba(43, 47, 51, 0.1);
  --shadow-card: 0 16px 32px rgba(43, 47, 51, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container-width: 1240px;
  --transition-fast: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-label--light {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 600;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

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

.button--primary,
.button--header-cta {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(94, 127, 158, 0.22);
}

.button--light {
  background: #fff;
  color: var(--color-text);
}

.button--ghost-light {
  border-color: rgba(215, 206, 194, 0.92);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.button--ghost {
  border-color: var(--color-border);
  color: var(--color-primary);
  background: #fff;
}

.button--accent {
  background: var(--color-accent);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(94, 127, 158, 0.12);
}

.site-header__top {
  border-bottom: 1px solid rgba(43, 47, 51, 0.08);
}

.site-header__top-inner,
.site-header__nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__top-inner {
  min-height: 92px;
}

.brand-lockup {
  flex: 0 0 auto;
}

.brand-lockup img {
  width: 220px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(12%) saturate(956%) hue-rotate(166deg) brightness(92%) contrast(87%);
}

.site-meta-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  flex: 1 1 auto;
}

.site-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-meta-item__icon,
.nav-utility,
.footer-socials a,
.testimonial-card__avatar,
.floating-actions__button--square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-meta-item__icon {
  width: 42px;
  height: 42px;
  color: var(--color-primary);
}

.site-meta-item strong,
.site-meta-item a,
.site-meta-item span {
  display: block;
}

.site-meta-item strong {
  font-size: 14px;
  line-height: 1.2;
}

.site-meta-item span,
.site-meta-item a {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.35;
}

.site-header__nav-inner {
  min-height: 58px;
  justify-content: space-between;
}

.primary-nav {
  flex: 1 1 auto;
}

.primary-menu,
.footer-menu-list,
.footer-legal-menu,
.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-menu a {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover {
  color: var(--color-primary);
}

.nav-utilities {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-utility,
.footer-socials a {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.nav-utility svg,
.site-meta-item__icon svg,
.footer-socials svg,
.footer-contact-list svg,
.floating-actions__button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-utility:hover,
.footer-socials a:hover {
  background: var(--color-primary);
  color: #fff;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.mobile-menu-panel[hidden] {
  display: none !important;
}

.mobile-menu-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-primary-dark);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hero-section {
  position: relative;
  min-height: 760px;
  color: #fff;
}

.hero-section__background,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-section__background {
  background:
    url("../img/hero-muhsin.png") center center / cover no-repeat;
}

.hero-section__overlay {
  background:
    linear-gradient(90deg, rgba(27, 26, 29, 0.68) 0%, rgba(27, 26, 29, 0.38) 34%, rgba(27, 26, 29, 0.08) 62%, rgba(27, 26, 29, 0) 100%);
}

.hero-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding: 76px 0 0;
}

.hero-section__content {
  max-width: 620px;
  padding-bottom: 48px;
}

.hero-section__panel {
  max-width: 600px;
  padding: 30px 34px 34px;
  background: linear-gradient(180deg, rgba(8, 11, 20, 0.54) 0%, rgba(8, 11, 20, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(10, 15, 35, 0.24);
  backdrop-filter: blur(6px);
}

.hero-section__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-section h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-shadow: 0 6px 22px rgba(8, 13, 32, 0.28);
}

.hero-section p {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 20px;
  line-height: 1.65;
}

.hero-section__actions {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.about-section,
.mako-section,
.specialties-section,
.testimonials-section,
.content-shell {
  padding: 110px 0;
}

.about-section__grid {
  display: grid;
  grid-template-columns: minmax(320px, 540px) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  padding: 28px 28px 0;
  background:
    linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.about-photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(74, 102, 127, 0) 0%, rgba(74, 102, 127, 0.62) 100%);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.about-section__content h2,
.section-heading h2,
.testimonials-section__footer h2,
.footer-cta h2,
.content-shell h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-section__content p,
.testimonials-section__footer p,
.content-shell__body,
.post-card__body p {
  color: var(--color-text-soft);
  font-size: 21px;
}

.about-section__summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 8px;
}

.about-summary-card {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.about-summary-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 28px;
  line-height: 1;
}

.about-summary-card span {
  display: block;
  margin-top: 8px;
  color: var(--color-text-soft);
  font-size: 15px;
}

.about-section__highlights {
  margin: 34px 0 28px;
}

.about-section__highlights h3 {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.about-section__highlights ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-section__highlights li {
  position: relative;
  padding-left: 32px;
  color: var(--color-text-soft);
  font-size: 20px;
}

.about-section__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(94, 127, 158, 0.12);
}

.stats-band {
  position: relative;
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(74, 102, 127, 0.94) 0%, rgba(43, 47, 51, 0.96) 100%),
    url("../img/footer-bg.jpg") center/cover no-repeat;
  color: #fff;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(94, 127, 158, 0.18), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(215, 206, 194, 0.12), transparent 28%);
}

.stats-band__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mako-section {
  background:
    linear-gradient(180deg, #f7f5f1 0%, #eeebe6 100%);
}

.mako-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.mako-section__content h2 {
  margin: 0 0 20px;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mako-section__content p {
  margin: 0 0 18px;
  color: var(--color-text-soft);
  font-size: 18px;
}

.mako-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 24%, rgba(94, 127, 158, 0.16), rgba(94, 127, 158, 0) 42%),
    linear-gradient(180deg, #f7f5f1 0%, #e6e8eb 100%);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.mako-image-card img {
  width: 100%;
  max-width: 420px;
  max-height: 580px;
  object-fit: contain;
}

.stat-box {
  padding: 10px 28px;
  text-align: center;
}

.stat-box + .stat-box {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.stat-box__value {
  display: block;
  color: #d7cec2;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-box__label {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
}

.specialties-section {
  position: relative;
  background:
    linear-gradient(180deg, #f7f5f1 0%, #f7f5f1 72%, #ffffff 72%);
}

.specialties-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(247, 245, 241, 0) 70%);
  opacity: 0.8;
}

.section-heading {
  max-width: 900px;
}

.section-heading--center {
  margin: 0 auto 52px;
  text-align: center;
}

.specialty-grid,
.testimonial-grid,
.post-grid {
  display: grid;
  gap: 22px;
}

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

.specialty-card,
.testimonial-card,
.post-card {
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.specialty-card {
  overflow: hidden;
  border-radius: 24px;
}

.specialty-card__image {
  display: block;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
}

.specialty-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.specialty-card:hover .specialty-card__image img {
  transform: scale(1.05);
}

.specialty-card__body {
  padding: 20px 20px 24px;
}

.specialty-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.specialty-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 16px;
}

.testimonials-section {
  padding-top: 72px;
  padding-bottom: 120px;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonial-marquee 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

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

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

.testimonial-card--marquee {
  width: min(380px, calc(100vw - 52px));
  min-height: 300px;
  border-radius: 24px;
}

.testimonial-card__stars {
  color: var(--color-accent);
  letter-spacing: 0.22em;
  font-size: 22px;
}

.testimonial-card p {
  margin: 12px 0 26px;
  color: var(--color-text-soft);
  font-size: 18px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-card__meta {
  display: grid;
  gap: 2px;
}

.testimonial-card__meta span {
  color: var(--color-text-soft);
  font-size: 13px;
}

.testimonial-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d7cec2 0%, #b9ac9e 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.testimonials-section__footer {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  margin-top: 36px;
}

.footer-cta {
  padding: 40px 0 0;
  background: #fff;
}

.footer-cta__panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 40px;
  padding: 52px 58px;
  background:
    linear-gradient(180deg, rgba(74, 102, 127, 0.92) 0%, rgba(43, 47, 51, 0.92) 100%),
    url("../img/footer-bg.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.footer-cta__panel::after {
  content: "";
  position: absolute;
  inset: -18% -10% auto auto;
  width: 440px;
  height: 440px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 68%);
}

.footer-cta__content {
  position: relative;
  z-index: 1;
}

.footer-cta h2,
.footer-cta .section-label--light,
.site-footer__column h3,
.site-footer__column strong {
  color: #fff;
}

.footer-cta__content strong {
  display: block;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 800;
}

.footer-cta__content p {
  max-width: 540px;
  margin: 12px 0 26px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
}

.site-footer__main {
  margin-top: 110px;
  padding: 84px 0 28px;
  background:
    linear-gradient(180deg, rgba(74, 102, 127, 0.95) 0%, rgba(43, 47, 51, 0.97) 100%),
    url("../img/footer-bg.jpg") center/cover no-repeat;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 32px;
}

.footer-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.site-footer__column p,
.footer-hours span,
.footer-menu-list a,
.footer-legal-menu a,
.footer-contact-list a,
.footer-contact-list span {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__column h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer-quick-links .button {
  min-width: 0;
}

.footer-hours {
  display: grid;
  gap: 6px;
  margin-top: 26px;
}

.footer-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(215, 206, 194, 0.34);
}

.footer-inline-form input {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.footer-inline-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-inline-form button {
  min-width: 106px;
  border: 0;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-menu-list,
.footer-legal-menu,
.footer-contact-list {
  display: grid;
  gap: 12px;
}

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

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-legal-menu {
  grid-auto-flow: column;
  justify-content: start;
}

.floating-actions {
  position: fixed;
  right: 0;
  bottom: 28px;
  z-index: 50;
  display: grid;
  gap: 12px;
}

.floating-actions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 18px 28px rgba(43, 47, 51, 0.22);
}

.floating-actions__button--square {
  width: 46px;
  min-width: 46px;
  margin-left: auto;
  padding: 0;
}

.floating-actions__button--square svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#ast-scroll-top,
.ast-scroll-top-icon,
.ast-scroll-top-wrapper,
.ast-scroll-to-top-right,
.ast-scroll-to-top-left {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


.content-shell {
  background: #f7f5f1;
}

.content-shell__article,
.content-shell__header {
  max-width: 920px;
}

.breadcrumb-bar {
  border-top: 1px solid rgba(94, 127, 158, 0.12);
  border-bottom: 1px solid rgba(94, 127, 158, 0.12);
  background: #eeebe6;
}

.breadcrumb-bar__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  color: var(--color-text-soft);
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-bar__nav a:hover {
  color: var(--color-primary);
}

.breadcrumb-bar__current {
  color: var(--color-primary);
}

.page-detail__split,
.contact-page-grid,
.page-detail__stack {
  display: grid;
  gap: 24px;
}

.page-detail__split {
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  align-items: start;
}

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

.contact-map-card {
  grid-column: 1 / -1;
}

.contact-map-card__head {
  margin-bottom: 18px;
}

.contact-map-card__head h2 {
  margin-bottom: 10px;
}

.contact-map-card__head p {
  margin: 0;
  color: var(--color-text-soft);
}

.contact-map-card__frame {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.contact-map-card__frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.page-detail__stack {
  margin-top: 28px;
}

.page-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.content-shell--about-page {
  background:
    linear-gradient(180deg, #f7f5f1 0%, #ffffff 100%);
}

.page-banner,
.about-page-banner {
  padding: 84px 0 92px;
  background:
    linear-gradient(180deg, rgba(74, 102, 127, 0.92) 0%, rgba(43, 47, 51, 0.94) 100%),
    url("../img/footer-bg.jpg") center/cover no-repeat;
}

.page-banner__inner,
.about-page-banner__inner {
  color: #fff;
}

.page-banner__inner h1,
.about-page-banner__inner h1 {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(54px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 26px rgba(3, 8, 38, 0.22);
}

.page-banner__inner p,
.about-page-banner__inner p {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

.page-banner__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb-bar,
.breadcrumb-bar__nav,
.breadcrumb-bar__nav a,
.breadcrumb-bar__current {
  color: #ffffff;
}

.about-page-hero {
  padding: 76px 0 34px;
}

.about-page-hero__grid,
.about-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 36px;
  align-items: center;
}

.about-page-hero__copy h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.about-page-hero__copy p {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--color-text-soft);
  font-size: 20px;
}

.about-page-hero__highlights,
.about-sidebar-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-page-hero__highlights li,
.about-sidebar-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  border-radius: 18px;
  background: rgba(94, 127, 158, 0.08);
  color: var(--color-text);
  font-weight: 600;
}

.about-page-hero__highlights li::before,
.about-sidebar-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(215, 206, 194, 0.18);
}

.about-photo-card--about-page {
  min-height: 560px;
}

.about-page-section {
  padding: 84px 0 110px;
}

.about-page-layout {
  align-items: start;
}

.about-page-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.about-page-showcase__content h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-page-showcase__content p {
  margin: 18px 0 0;
  color: var(--color-text-soft);
  font-size: 18px;
}

.about-page-showcase__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.about-page-showcase__fact {
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(230, 232, 235, 0.82) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.about-page-showcase__fact strong {
  display: block;
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1;
}

.about-page-showcase__fact span {
  display: block;
  margin-top: 8px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.about-page-article {
  display: grid;
  gap: 26px;
}

.about-info-card,
.about-text-panel,
.about-sidebar-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.about-info-card {
  padding: 34px 36px;
}

.about-info-card h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-info-card p {
  margin: 18px 0 0;
  color: var(--color-text-soft);
  font-size: 18px;
}

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

.about-cv-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(230, 232, 235, 0.8) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.about-cv-item strong {
  color: var(--color-primary);
  font-size: 15px;
}

.about-cv-item span {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

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

.about-text-panel {
  padding: 30px 30px 32px;
}

.about-text-panel h3,
.about-sidebar-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.about-text-panel p,
.about-sidebar-card p {
  margin: 16px 0 0;
  color: var(--color-text-soft);
  font-size: 17px;
}

.about-page-sidebar {
  position: sticky;
  top: 120px;
}

.about-sidebar-card {
  padding: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
}

.content-shell__article {
  margin: 0 auto;
}

.content-shell__header {
  margin: 0 0 28px;
}

.content-shell__body {
  background: #fff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.content-shell__body > *:first-child {
  margin-top: 0;
}

.content-shell__lead {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 500;
}

.content-shell--archive-page,
.content-shell--single-entry {
  background:
    linear-gradient(180deg, #f7f5f1 0%, #ffffff 100%);
}

.archive-hero {
  padding: 74px 0 28px;
}

.archive-hero__box {
  max-width: 920px;
  padding: 36px 40px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.archive-hero__box h1,
.archive-section__head h2,
.single-entry-hero h1,
.single-entry-sidebar-card h2,
.single-entry-faq h2,
.single-entry-seo-block h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.single-entry-sidebar-card h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

.archive-hero__box p,
.archive-section__head p,
.single-entry-hero p {
  margin: 16px 0 0;
  color: var(--color-text-soft);
  font-size: 19px;
}

.archive-section {
  padding: 24px 0 110px;
}

.archive-section--related {
  padding-top: 0;
}

.archive-section__head {
  max-width: 860px;
  margin-bottom: 30px;
}

.archive-post-grid {
  gap: 24px;
}

.archive-post-card {
  border-radius: 26px;
}

.archive-post-card .post-card__image {
  background: linear-gradient(135deg, rgba(94, 127, 158, 0.14), rgba(215, 206, 194, 0.18));
}

.archive-post-card .post-card__body {
  padding: 24px;
}

.archive-pagination {
  margin-top: 30px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-right: 8px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  font-weight: 600;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--color-primary);
  color: #fff;
}

.single-entry-hero {
  padding: 74px 0 24px;
}

.single-entry-hero p {
  max-width: 860px;
}

.single-entry-section {
  padding: 8px 0 100px;
}

.single-entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 32px;
  align-items: start;
}

.single-entry-article {
  min-width: 0;
}

.single-entry-featured-image,
.single-entry-content,
.single-entry-sidebar-card,
.single-entry-seo-block,
.single-entry-note,
.single-entry-faq,
.single-entry-toc {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.single-entry-featured-image {
  overflow: hidden;
  margin-bottom: 24px;
}

.single-entry-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-entry-toc {
  margin-bottom: 24px;
  padding: 24px 26px;
}

.single-entry-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 17px;
}

.single-entry-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.single-entry-toc a {
  color: var(--color-text);
  font-weight: 500;
}

.single-entry-toc .is-h3 a {
  padding-left: 16px;
  color: var(--color-text-soft);
}

.single-entry-content {
  padding: 34px 36px;
}

.single-entry-content h2,
.single-entry-content h3 {
  margin-top: 0;
  color: var(--color-text);
  line-height: 1.18;
}

.single-entry-content h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.single-entry-content h3 {
  font-size: 24px;
}

.single-entry-content p,
.single-entry-content li {
  color: var(--color-text-soft);
  font-size: 18px;
}

.single-entry-content ul,
.single-entry-content ol {
  padding-left: 22px;
}

.single-entry-seo-block,
.single-entry-note,
.single-entry-faq {
  margin-top: 24px;
  padding: 28px 30px;
}

.single-entry-seo-block p,
.single-entry-note p,
.single-entry-faq p,
.single-entry-sidebar-card p {
  margin: 14px 0 0;
  color: var(--color-text-soft);
  font-size: 17px;
}

.single-entry-faq__items {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.single-entry-faq details {
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fbf9f6;
}

.single-entry-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text);
}

.single-entry-note strong {
  color: var(--color-primary);
  font-size: 18px;
}

.single-entry-sidebar {
  position: sticky;
  top: 118px;
}

.single-entry-sidebar-card {
  padding: 28px;
}

.single-entry-sidebar-card + .single-entry-sidebar-card {
  margin-top: 18px;
}

.single-entry-sidebar-card--soft {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
}

.single-entry-sidebar-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

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

.post-card {
  overflow: hidden;
  border-radius: 24px;
}

.post-card__image {
  display: block;
  aspect-ratio: 1.35 / 1;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 22px;
}

.post-card__body h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.text-link {
  color: var(--color-primary);
  font-weight: 600;
}

@keyframes testimonial-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 11px), 0, 0);
  }
}

@media (max-width: 1280px) {
  .site-meta-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section__inner {
    padding-top: 56px;
  }

  .mako-section__grid {
    grid-template-columns: 1fr;
  }

  .about-page-hero__grid,
  .about-page-layout,
  .about-page-showcase,
  .single-entry-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 1024px) {
  .site-header__top-inner {
    min-height: 72px;
    padding: 10px 0;
    gap: 12px;
    justify-content: space-between;
  }

  .site-meta-bar {
    display: none;
  }

  .brand-lockup img {
    width: 168px;
  }

  .site-header__top-inner .button--header-cta {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .primary-nav,
  .nav-utilities {
    display: none;
  }

  .mobile-menu-toggle,
  .site-shell.is-menu-open .mobile-menu-panel {
    display: block;
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    background: rgba(43, 47, 51, 0.78);
    backdrop-filter: blur(8px);
    z-index: 60;
  }

  .mobile-menu-panel__inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    padding: 28px 22px;
    background: #f7f5f1;
    border-left: 1px solid rgba(94, 127, 158, 0.18);
    box-shadow: -24px 0 44px rgba(43, 47, 51, 0.22);
  }

  .mobile-menu-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .mobile-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(94, 127, 158, 0.12);
    border: 1px solid rgba(94, 127, 158, 0.2);
    border-radius: 12px;
    color: var(--color-primary-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu,
  .mobile-menu li {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(22, 32, 74, 0.08);
  }

  .mobile-menu-panel__actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-section {
    min-height: 660px;
  }

  .hero-section__inner,
  .about-section__grid,
  .mako-section__grid,
  .about-text-panels,
  .single-entry-layout,
  .testimonials-section__footer,
  .footer-cta__panel,
  .page-detail__split {
    grid-template-columns: 1fr;
  }

  .hero-section__inner {
    min-height: 660px;
    padding: 44px 0 28px;
    align-items: flex-end;
  }

  .hero-section__content {
    padding-bottom: 24px;
  }

  .stats-band__grid,
  .testimonial-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-box:nth-child(3) {
    border-left: 0;
  }
}

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

  .site-header {
    background: #f7f5f1;
    backdrop-filter: none;
  }

  .site-header__top {
    border-bottom: 1px solid rgba(94, 127, 158, 0.12);
  }

  .site-header__top-inner,
  .site-header__nav-inner {
    gap: 10px;
  }

  .site-header__top-inner {
    min-height: 58px;
    padding: 8px 0;
    justify-content: space-between;
  }

  .brand-lockup img {
    width: 132px;
  }

  .site-header__top-inner .button--header-cta {
    display: none;
  }

  .site-header__nav-inner {
    min-height: 52px;
    justify-content: space-between;
  }

  .nav-utilities {
    display: flex;
    margin-left: auto;
    gap: 6px;
  }

  .mobile-menu-panel {
    background: rgba(43, 47, 51, 0.94);
  }

  .mobile-menu-panel__inner {
    width: 100vw;
    max-width: 100vw;
    padding: 20px 18px 28px;
    background: #f7f5f1;
    border-left: 0;
    box-shadow: none;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-menu-toggle span {
    width: 22px;
    margin: 4px auto;
  }

  .nav-utility {
    display: flex;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(94, 127, 158, 0.16);
    border-radius: 10px;
  }

  .nav-utility svg {
    width: 20px;
    height: 20px;
  }

  .hero-section__panel {
    width: min(100%, 336px);
    max-width: 336px;
    padding: 22px 18px 20px;
    background: linear-gradient(180deg, rgba(43, 47, 51, 0.62) 0%, rgba(43, 47, 51, 0.38) 100%);
    backdrop-filter: blur(4px);
  }

  .hero-section__background {
    background-size: auto 72%;
    background-position: center bottom;
    background-color: #6e685f;
  }

  .hero-section__overlay {
    background:
      linear-gradient(180deg, rgba(43, 47, 51, 0.78) 0%, rgba(43, 47, 51, 0.54) 38%, rgba(43, 47, 51, 0.12) 72%, rgba(43, 47, 51, 0) 100%);
  }

  .about-section__summary-grid {
    grid-template-columns: 1fr;
  }

  .about-cv-grid {
    grid-template-columns: 1fr;
  }

  .about-page-showcase__facts {
    grid-template-columns: 1fr;
  }

  .hero-section__content,
  .about-section__content,
  .content-shell__body {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section__content {
    max-width: 100%;
    width: 100%;
    padding-bottom: 0;
  }

  .hero-section h1,
  .about-section__content h2,
  .section-heading h2,
  .testimonials-section__footer h2,
  .footer-cta h2,
  .content-shell h1 {
    font-size: 30px;
  }

  .hero-section p,
  .about-section__content p,
  .testimonials-section__footer p,
  .content-shell__body,
  .post-card__body p {
    font-size: 15px;
  }

  .hero-section__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    align-items: flex-start;
  }

  .hero-section,
  .hero-section__inner {
    min-height: 640px;
  }

  .hero-section__inner {
    align-items: flex-start;
    padding: 28px 0 24px;
  }

  .hero-section__eyebrow {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .hero-section p {
    max-width: 100%;
    margin-top: 14px;
    line-height: 1.55;
  }

  .hero-section__actions .button {
    min-width: 190px;
  }

  .about-photo-card {
    min-height: 430px;
  }

  .mako-image-card {
    min-height: 420px;
    padding: 24px;
  }

  .stats-band__grid,
  .specialty-grid,
  .testimonial-grid,
  .post-grid,
  .site-footer__grid,
  .site-footer__bottom,
  .contact-page-grid,
  .about-text-panels {
    grid-template-columns: 1fr;
  }

  .stat-box {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .stat-box:first-child {
    border-top: 0;
  }

  .footer-cta__panel,
  .content-shell__body,
  .archive-hero__box,
  .single-entry-content,
  .single-entry-sidebar-card,
  .single-entry-seo-block,
  .single-entry-note,
  .single-entry-faq,
  .single-entry-toc {
    padding: 28px 22px;
  }

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

  .archive-hero,
  .single-entry-hero {
    padding-top: 54px;
  }

  .about-info-card,
  .about-text-panel,
  .about-sidebar-card {
    padding: 24px 22px;
  }

  .about-page-sidebar,
  .single-entry-sidebar {
    position: static;
  }

  .footer-inline-form {
    grid-template-columns: 1fr;
  }

  .footer-legal-menu {
    grid-auto-flow: row;
  }

  .floating-actions__button--square {
    display: none;
  }

}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .specialty-card__image img {
    transition: none;
  }

  .testimonial-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
  }
}
