:root {
  --surface: #f8f9fa;
  --surface-low: #f3f4f5;
  --surface-card: #ffffff;
  --surface-muted: #e7e8e9;
  --primary: #00113a;
  --primary-soft: #17306f;
  --secondary: #775a19;
  --secondary-bright: #ffdea5;
  --secondary-strong: #cca830;
  --text: #191c1d;
  --text-soft: #444650;
  --outline: #c5c6d2;
  --footer: #172554;
  --success: #25d366;
  --shadow-soft: 0 18px 42px rgba(0, 17, 58, 0.08);
  --shadow-strong: 0 28px 70px rgba(0, 17, 58, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shell: min(1240px, calc(100vw - 40px));
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(204, 168, 48, 0.35);
  outline-offset: 4px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 2000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: 16px;
}

.navbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 17, 58, 0.08);
}

.site-header.is-scrolled .navbar {
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
  max-width: 18rem;
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  text-transform: uppercase;
}

.brand-mark-frame {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0.95rem;
  box-shadow: 0 14px 28px rgba(0, 17, 58, 0.14);
  background: #000;
}

.brand-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.36) translateY(-13%);
  transform-origin: center top;
}

.brand-copy strong,
.brand-copy span {
  letter-spacing: 0.05em;
}

.brand-copy strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
}

.brand-copy span {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  color: rgba(0, 17, 58, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border: 0;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 17, 58, 0.16);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 17, 58, 0.18);
}

.button-gold {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.button-glass {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-large {
  min-width: 18rem;
  min-height: 68px;
  padding-inline: 1.7rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.nav-cta {
  min-width: 9.5rem;
  padding-inline: 1.8rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-button,
.menu-close {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
  border-radius: 999px;
}

.menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 17, 58, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(340px, 88vw);
  height: 100dvh;
  padding: 1.2rem;
  background: #fff;
  box-shadow: -32px 0 80px rgba(0, 17, 58, 0.15);
}

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

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.mobile-menu__links {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-menu__links a {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.mobile-menu__links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  background: var(--primary);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 17, 58, 0.94) 0%, rgba(0, 17, 58, 0.82) 26%, rgba(0, 17, 58, 0.42) 52%, rgba(0, 17, 58, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 17, 58, 0.14), rgba(0, 17, 58, 0.08));
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-copy {
  max-width: 34rem;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 6.6vw, 5.25rem);
  line-height: 0.99;
}

.hero h1 span {
  color: var(--secondary-bright);
}

.hero-text {
  max-width: 31rem;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 300;
}

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

.section,
.trust-section {
  padding: 5.5rem 0;
}

.trust-section {
  background: var(--surface);
}

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

.trust-card {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding: 2rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 58px rgba(0, 17, 58, 0.14);
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  color: var(--secondary);
  font-size: 2.75rem;
  line-height: 1;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.trust-card h2 {
  font-size: 1.05rem;
}

.trust-card p,
.section-heading p,
.service-panel p,
.feature-item p,
.process-step p,
.review-card p,
.contact-copy p,
.footer-brand p,
.footer-block li,
.footer-block a {
  color: var(--text-soft);
}

.trust-card p {
  margin: 0;
  font-size: 0.92rem;
}

.services-section,
.process-section {
  background: var(--surface-low);
}

.about-section,
.contact-section {
  position: relative;
  background: #fff;
  overflow: clip;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1;
  color: var(--primary);
}

.section-heading--center {
  text-align: center;
}

.section-heading--center p {
  max-width: 42rem;
  margin: 1rem auto 0;
}

.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

.section-bar {
  display: block;
  width: 6rem;
  height: 4px;
  margin-top: 1rem;
  background: var(--secondary-strong);
  border-radius: 999px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: min-content;
  gap: 1.5rem;
}

.service-panel {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface-card);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 17, 58, 0.12);
}

.service-panel--wide {
  grid-column: span 8;
  height: 400px;
  color: #fff;
}

.service-panel--short {
  height: 350px;
}

.service-panel--copy {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.35rem 2.45rem;
}

.service-panel--copy-tall {
  height: 400px;
}

.service-panel--copy-short {
  height: 350px;
}

.service-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-panel:hover > img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.95rem 2.1rem 1.85rem;
  background: linear-gradient(180deg, rgba(0, 17, 58, 0) 0%, rgba(0, 17, 58, 0.46) 40%, rgba(0, 17, 58, 0.92) 100%);
}

.service-overlay .material-symbols-outlined,
.service-panel--copy .material-symbols-outlined {
  margin-bottom: 1.25rem;
  color: var(--secondary-bright);
  font-size: 2rem;
}

.service-overlay h3,
.service-panel--copy h3,
.feature-item h3,
.process-step h3,
.footer-block h2 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.service-overlay p {
  max-width: 29rem;
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.service-panel--copy p {
  max-width: 17rem;
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.service-panel--copy a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
}

.service-panel--copy:hover a {
  gap: 0.8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-media {
  position: relative;
  max-width: 34rem;
}

.about-glow {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 17rem;
  height: 17rem;
  border-radius: 999px;
  background: rgba(119, 90, 25, 0.14);
  filter: blur(60px);
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
}

.about-badge {
  position: absolute;
  right: -24px;
  bottom: -24px;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 24px 50px rgba(0, 17, 58, 0.22);
}

.about-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  line-height: 0.95;
}

.about-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  padding: 0.3rem 0;
  transition: transform 220ms ease;
}

.feature-item:hover {
  transform: translateX(6px);
}

.feature-item .material-symbols-outlined {
  display: none;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface-low);
  color: var(--secondary);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-icon svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-item:hover .feature-icon {
  background: rgba(119, 90, 25, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(0, 17, 58, 0.08);
}

.feature-item p {
  margin: 0.5rem 0 0;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(197, 198, 210, 0.7);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  transition: transform 220ms ease;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-icon {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 1.6rem;
  border: 4px solid var(--surface-muted);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.process-icon .material-symbols-outlined {
  color: var(--secondary);
  font-size: 2rem;
}

.process-step--accent .process-icon {
  border-color: rgba(204, 168, 48, 0.3);
  background: var(--secondary);
}

.process-step--accent .material-symbols-outlined {
  color: #fff;
}

.process-step p {
  max-width: 19rem;
  margin: 0.65rem auto 0;
}

.reviews-section {
  background: linear-gradient(180deg, var(--primary) 0%, #0b1e57 100%);
  color: #fff;
}

.review-stars {
  display: inline-flex;
  gap: 0.15rem;
  margin-top: 1rem;
}

.review-stars__star {
  display: inline-flex;
}

.review-stars__star svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: var(--secondary-bright);
}

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

.review-card {
  margin: 0;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  transition: background-color 220ms ease, transform 220ms ease;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.review-rating {
  color: var(--secondary-bright);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  font-weight: 300;
}

.review-card footer {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-section {
  padding-bottom: 6rem;
}

.contact-wedge {
  position: absolute;
  top: 0;
  right: -8vw;
  width: 34vw;
  height: 100%;
  background: rgba(119, 90, 25, 0.06);
  transform: skewX(-12deg);
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-copy {
  max-width: 35rem;
}

.contact-copy p {
  max-width: 28rem;
  margin: 1rem 0 0;
  font-size: 1.1rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 22px 42px rgba(0, 17, 58, 0.18);
}

.social-link svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.cta-icon {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
}

.cta-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-link--wa {
  background: var(--success);
}

.social-link--ig {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.site-footer {
  padding: 4rem 0 1.6rem;
  background: linear-gradient(180deg, var(--footer) 0%, #050814 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-frame {
  width: 5.6rem;
  height: 5.6rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #000;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.36) translateY(-13%);
  transform-origin: center top;
}

.footer-brand strong {
  display: block;
  max-width: 18ch;
  color: #eab308;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-block h2 {
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 1.2rem;
}

.footer-block ul {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-block li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-block .material-symbols-outlined {
  color: #eab308;
  font-size: 1.1rem;
}

.footer-block a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-block a:hover {
  color: #fff;
}

.footer-blocked,
.footer-blocked .material-symbols-outlined {
  color: #f87171;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button,
  .menu-close {
    display: grid;
    position: relative;
  }

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

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

  .footer-grid {
    display: grid;
  }

  .contact-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 10px;
  }

  .navbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 0.85rem 0.95rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 17, 58, 0.76) 0%, rgba(0, 17, 58, 0.64) 36%, rgba(0, 17, 58, 0.4) 68%, rgba(0, 17, 58, 0.68) 100%);
  }

  .hero-shell {
    align-items: end;
    padding-top: 7rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    max-width: 10.5ch;
  }

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

  .service-panel--wide,
  .service-panel--copy {
    grid-column: auto;
  }

  .service-panel--wide,
  .service-panel--short,
  .service-panel--copy-tall,
  .service-panel--copy-short {
    height: auto;
    min-height: 320px;
  }

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

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

@media (max-width: 640px) {
  :root {
    --shell: min(1240px, calc(100vw - 24px));
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark-frame {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.8rem;
  }

  .footer-brand-lockup {
    gap: 0.8rem;
  }

  .footer-logo-frame {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 0.9rem;
  }

  .brand-copy strong {
    font-size: 0.68rem;
  }

  .brand-copy span {
    font-size: 0.52rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: 92svh;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-text,
  .contact-copy,
  .contact-copy p {
    max-width: 100%;
  }

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

  .contact-actions,
  .button-large,
  .social-link {
    width: 100%;
  }

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

  .trust-card {
    padding: 1.85rem 1.2rem;
  }

  .trust-card h2 {
    font-size: 1.2rem;
  }

  .contact-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .contact-copy p {
    font-size: 1rem;
  }

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

  .service-panel--wide {
    min-height: 360px;
  }

  .service-panel--copy {
    min-height: 280px;
    padding: 1.8rem;
  }

  .service-panel--copy-tall,
  .service-panel--copy-short,
  .service-panel--short {
    min-height: 280px;
  }

  .about-media img {
    aspect-ratio: 4 / 4.8;
  }

  .about-badge {
    right: 12px;
    bottom: 12px;
  }

  .contact-wedge {
    width: 55vw;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}
