/* Summit Asset Acquisition — palette from brand logo (navy, forest green, cream) */
:root {
  --navy: #1a3348;
  --navy-deep: #142a3d;
  --green: #2f6a4a;
  --green-hover: #255340;
  --green-soft: rgba(47, 106, 74, 0.14);
  --green-muted: #5a9074;
  --cream: #f7f4ec;
  --cream-dark: #ebe6db;
  --white: #ffffff;
  --bg: var(--cream);
  --bg-elevated: var(--cream-dark);
  --surface: var(--white);
  --border: rgba(26, 51, 72, 0.12);
  --text: var(--navy);
  --text-muted: #4a5f6e;
  --accent: var(--green);
  --accent-soft: var(--green-soft);
  --accent-hover: var(--green-hover);
  --success: var(--green);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --radius: 12px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px rgba(26, 51, 72, 0.12);
  --shadow-photo: 0 28px 64px rgba(26, 51, 72, 0.14), 0 12px 24px rgba(26, 51, 72, 0.06);
  --max: 1120px;
  --content-pad-x: clamp(1rem, 4vw, 1.75rem);
  --header-h: 118px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

/* Logo height is set explicitly — don't let `height: auto` collapse reserved space */
img.logo-img {
  height: clamp(68px, 15vw, 112px);
  width: auto;
  max-height: 112px;
  display: block;
  flex-shrink: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

/* Layout — header + main share same width & horizontal padding (aligns logo with banners) */
.wrap,
.header-inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--content-pad-x);
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--green-soft);
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.logo span {
  color: var(--accent);
}

.footer-brand img.logo-img {
  height: clamp(52px, 11vw, 88px);
  max-height: 88px;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: var(--radius);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--navy);
  background: var(--accent-soft);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile nav */
@media (max-width: 768px) {
  :root {
    --header-h: 108px;
  }

  /* backdrop-filter traps position:fixed children inside the header on mobile */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-inner {
    position: relative;
    z-index: 102;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 103;
    flex-shrink: 0;
    touch-action: manipulation;
  }

  .nav-desktop {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    width: 100%;
    max-width: none;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 2rem;
    gap: 0.25rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-photo);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .nav-desktop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-desktop a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Main */
main {
  padding-block: 2.5rem 4rem;
}

@media (min-width: 768px) {
  main {
    padding-block: 3.5rem 5rem;
  }
}

/* Footer */
.site-footer {
  border-top: 3px solid var(--green);
  padding: 2.5rem 0;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 28ch;
}

.footer-col h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-muted);
  margin: 0 0 1rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Typography */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

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

/* Hero */
.hero {
  padding-block: 1rem 2rem;
}

@media (min-width: 768px) {
  .hero {
    padding-block: 2rem 3rem;
  }
}

.hero--photo {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #0d1e2e;
  color: var(--white);
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow-photo);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero--photo::before,
.hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero--photo::before {
  inset: -6%;
  background-image: url("assets/photo-hero-skyline.png");
  background-size: cover;
  background-position: center 35%;
  animation: hero-photo-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero--photo::after {
  background-image: linear-gradient(
    118deg,
    rgba(10, 28, 42, 0.94) 0%,
    rgba(20, 42, 61, 0.82) 42%,
    rgba(26, 51, 72, 0.45) 100%
  );
}

.hero--photo > * {
  position: relative;
  z-index: 1;
}

@keyframes hero-photo-drift {
  from {
    transform: scale(1.02) translate3d(-1.5%, -1%, 0);
  }

  to {
    transform: scale(1.1) translate3d(2%, 1.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--photo::before {
    animation: none;
    transform: scale(1.04);
  }
}

.hero.hero--photo .hero-badge {
  color: #b5d4c4;
}

.hero.hero--photo h1 {
  color: var(--white);
  max-width: 20ch;
}

.hero.hero--photo .hero-slogan {
  color: #8fd4ae;
}

.hero.hero--photo p {
  color: rgba(255, 255, 255, 0.9);
}

.hero.hero--photo .hero-note {
  color: rgba(255, 255, 255, 0.78);
}

.hero.hero--photo .hero-note a {
  color: #c5ebd6;
}

.hero.hero--photo .hero-note a:hover {
  color: var(--white);
}

.hero.hero--photo a {
  color: #c5ebd6;
}

.hero.hero--photo a:hover {
  color: var(--white);
}

.hero.hero--photo .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero.hero--photo .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  max-width: 18ch;
  color: var(--navy);
}

.hero-slogan {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2rem;
}

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

.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Photo + text rows */
.media-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .media-split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .media-split--reverse .media-split__img {
    order: 1;
  }

  .media-split--reverse .media-split__body {
    order: 0;
  }
}

.media-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  border: 1px solid rgba(26, 51, 72, 0.1);
  background-color: var(--cream-dark);
}

.media-split__img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.figure-banner {
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  border: 1px solid rgba(26, 51, 72, 0.1);
  background-color: var(--cream-dark);
}

.figure-banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.figure-banner--portrait img {
  max-height: min(58vh, 520px);
  object-position: center 22%;
}

.figure-banner--consulting-ws img {
  object-position: center 38%;
  max-height: min(420px, 52vw);
}

@media (min-width: 900px) {
  .figure-banner--consulting-ws img {
    max-height: 440px;
  }
}

/* Visible by default; fade-in only when JS is active (avoids blank photos if script fails to load) */
.fade-content {
  opacity: 1;
  visibility: visible;
  filter: none;
}

.js .fade-content {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    filter 1s ease,
    visibility 1s;
  will-change: opacity, filter;
}

.js .fade-content--blur {
  filter: blur(10px);
}

.js .fade-content--delay {
  transition-delay: 120ms;
}

.js .fade-content.is-visible {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .fade-content {
    opacity: 1;
    visibility: visible;
    filter: none;
    transition: none;
  }
}

.questionnaire-sub {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.questionnaire-sub a {
  font-weight: 600;
}

/* Cards grid */
.cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(47, 106, 74, 0.28);
  box-shadow: var(--shadow-photo);
}

.card-link {
  display: block;
  height: 100%;
  padding: 1.5rem;
  color: inherit;
  border-radius: inherit;
  transform-style: preserve-3d;
  will-change: transform;
}

.card-link:hover {
  color: inherit;
}

.card-link:focus-visible {
  outline: 3px solid rgba(47, 106, 74, 0.32);
  outline-offset: 4px;
}

.tilted-card-figure {
  perspective: 800px;
}

.tilted-card-inner {
  position: relative;
  transition: transform 0.18s ease;
}

.tilted-card-caption {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  background-color: var(--white);
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(26, 51, 72, 0.14);
  transform: translate3d(-50%, -50%, 30px);
  transition: opacity 0.15s ease;
}

.tilted-card-figure.is-tilting .tilted-card-caption {
  opacity: 1;
}

.card h2 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.25rem;
}

.card-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 600;
}

@media (max-width: 640px), (prefers-reduced-motion: reduce) {
  .tilted-card-inner {
    transform: none !important;
  }

  .tilted-card-caption {
    display: none;
  }
}

/* Steps */
.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: step;
}

.step-item {
  display: grid;
  gap: 0.5rem 1.25rem;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  counter-increment: step;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num::before {
  content: counter(step);
}

.step-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  color: var(--navy);
}

.step-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* CTA strip */
.cta-strip {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--white);
}

.cta-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
}

/* Why grid */
.why-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-item {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.why-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
}

.why-item h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.why-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-info h2 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--navy);
}

.contact-info h2:first-of-type {
  margin-top: 0;
}

.contact-info p,
.contact-info a {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Primary CTA in sidebar: white label (beats .contact-info a link color) */
.contact-info a.btn-primary,
.contact-info a.btn-primary:hover {
  color: var(--white);
}

#discovery a.btn-primary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.form-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  min-height: 1.25rem;
}

.form-status.success {
  color: var(--success);
}

/* About */
.about-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 820px) {
  .about-hero {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 3rem;
  }
}

.about-copy .page-title {
  max-width: 12ch;
}

.about-photo {
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 0;
  justify-self: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-dark);
  border: 1px solid rgba(26, 51, 72, 0.12);
  box-shadow: var(--shadow-photo);
}

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

.about-card {
  max-width: 860px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-card p {
  margin: 0;
  color: var(--text-muted);
}

.about-card p + p {
  margin-top: 1.25rem;
}

/* Consulting top CTA */
.consulting-hero {
  margin-bottom: 2.5rem;
}

.consulting-hero .btn-lg {
  margin-top: 1rem;
}

/* Utility */
.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;
}

/* Mobile polish */
@media (max-width: 640px) {
  :root {
    --content-pad-x: 1rem;
    --header-h: 88px;
    --radius-lg: 16px;
  }

  img.logo-img {
    height: 64px;
    max-height: 64px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    gap: 0.75rem;
  }

  .nav-desktop {
    overflow-y: auto;
  }

  main {
    padding-block: 1.5rem 3rem;
  }

  .page-title {
    font-size: clamp(2rem, 11vw, 2.45rem);
  }

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

  .lead {
    margin-bottom: 1.5rem;
  }

  .hero--photo {
    padding: 1.5rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.15rem, 13vw, 2.85rem);
  }

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

  .hero-actions .btn,
  .consulting-hero .btn,
  .contact-info .btn,
  .cta-strip .btn {
    width: 100%;
  }

  .media-split {
    gap: 1.25rem;
    margin: 1.75rem 0;
  }

  .media-split__img img {
    min-height: 200px;
    max-height: 320px;
  }

  .figure-banner {
    margin: 1.5rem 0;
  }

  .figure-banner img {
    max-height: 320px;
  }

  .figure-banner--portrait img {
    max-height: 420px;
  }

  .cards {
    gap: 1rem;
    margin-top: 2rem;
  }

  .card-link {
    padding: 1.25rem;
  }

  .steps {
    margin-top: 1.5rem;
  }

  .step-item {
    grid-template-columns: 1fr;
    padding: 1.25rem 0;
  }

  .step-num {
    margin-bottom: 0.25rem;
  }

  .cta-strip {
    align-items: stretch;
    margin-top: 2rem;
    padding: 1.35rem;
  }

  .cta-strip > div {
    width: 100%;
  }

  .cta-strip .questionnaire-sub {
    text-align: left !important;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .about-hero {
    gap: 1.5rem;
    margin-bottom: 1.75rem;
  }

  .about-copy .page-title {
    max-width: none;
  }

  .about-photo {
    width: min(72vw, 260px);
  }

  .about-card {
    padding: 1.25rem;
  }

  .site-footer {
    padding: 2rem 0;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-brand p {
    max-width: none;
  }
}

@media (max-width: 380px) {
  img.logo-img {
    height: 56px;
    max-height: 56px;
  }

  .btn,
  .btn-lg {
    padding-inline: 1rem;
  }

  .nav-desktop a {
    padding-inline: 0.85rem;
  }
}
