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

:root {
  --navy: #0F1D3F;
  --navy-light: #1A2D54;
  --navy-dark: #091229;
  --gold: #C8A961;
  --gold-light: #D4BA7A;
  --gold-dark: #B8943E;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-50: #FAFAF9;
  --gray-100: #F5F5F4;
  --gray-200: #E7E5E4;
  --gray-300: #D6D3D1;
  --gray-400: #A8A29E;
  --gray-500: #78716C;
  --gray-600: #57534E;
  --gray-700: #44403C;
  --gray-800: #292524;
  --gray-900: #1C1917;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 100;
  font-size: 0.875rem;
  border-radius: 0 0 4px 4px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.logo__mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}

.logo__mark::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: var(--white);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5'%3E%3Cpath d='M12 2v8m0 0l3-3m-3 3l-3-3'/%3E%3Cpath d='M12 10a3 3 0 0 0-3 3v2h6v-2a3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5'%3E%3Cpath d='M12 2v8m0 0l3-3m-3 3l-3-3'/%3E%3Cpath d='M12 10a3 3 0 0 0-3 3v2h6v-2a3 3 0 0 0-3-3z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.logo__mark--light {
  background: var(--navy);
}

.logo__mark--light::before {
  background: var(--gold);
}

.logo__amp {
  color: var(--gold);
  font-style: italic;
}

.logo--light {
  color: var(--white);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-600);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.nav__cta {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}

.mobile-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

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

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

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 169, 97, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn--outline.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ─── Section shared ─── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 18, 41, 0.88) 0%,
    rgba(15, 29, 63, 0.78) 50%,
    rgba(15, 29, 63, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.hero__br {
  display: none;
}

.hero__accent {
  color: var(--gold);
  font-style: italic;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__trust span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero__dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}

/* ─── Services ─── */
.services {
  padding: 7rem 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(15, 29, 63, 0.08);
  transform: translateY(-2px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  color: var(--navy);
  transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-card__icon {
  background: var(--navy);
  color: var(--gold);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── About ─── */
.about {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,97,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.about__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.about__badge-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.about__badge-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.about__content {
  position: relative;
  z-index: 1;
}

.about__content .section-tag {
  color: var(--gold);
}

.about__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__values {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.about__value-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Areas ─── */
.areas {
  padding: 7rem 0;
  background: var(--off-white);
}

.areas__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.areas__desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 440px;
}

.areas__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.areas__column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.area-link {
  font-size: 0.9375rem;
  color: var(--gray-600);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 400;
}

.area-link:first-child {
  border-top: 1px solid var(--gray-200);
}

.area-link:hover {
  color: var(--navy);
  padding-left: 0.75rem;
}

/* ─── Process ─── */
.process {
  padding: 7rem 0;
  background: var(--white);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--gray-200);
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease-out);
}

.process__step:hover .process__step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.process__step-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process__step-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── CTA Strip ─── */
.cta-strip {
  padding: 5rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,169,97,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-strip__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.cta-strip__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
  padding: 7rem 0;
  background: var(--off-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  transition: color 0.2s;
}

.contact__detail:hover {
  color: var(--navy);
}

.contact__detail svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact__hours-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact__hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
}

.contact__hours-list li span:first-child {
  font-weight: 500;
  color: var(--gray-700);
}

/* ─── Form ─── */
.contact__form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(15, 29, 63, 0.06);
  border: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 169, 97, 0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #166534;
}

.form-success svg {
  color: #22C55E;
  flex-shrink: 0;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 300px;
}

.site-footer__title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.site-footer__links ul,
.site-footer__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer__links a,
.site-footer__contact a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: var(--gold);
}

.site-footer__contact li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.site-footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Mobile menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  padding: 1rem 2rem;
  transition: color 0.2s;
}

.mobile-menu__link:hover {
  color: var(--gold);
}

.mobile-menu__phone {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--gold-dark);
  font-weight: 500;
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .process__steps::before {
    display: none;
  }

  .about__inner,
  .areas__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .nav,
  .nav__cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero__content {
    padding: 7rem 1.5rem 3rem;
  }

  .hero__br {
    display: block;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .services {
    padding: 5rem 0;
  }

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

  .process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip__actions .btn {
    justify-content: center;
  }

  .contact__form-wrap {
    padding: 1.75rem;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

@media (max-width: 480px) {
  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero__dot {
    display: none;
  }
}
