/* ── Custom Properties ─────────────────────────────── */
:root {
  --cream: #F5F0EA;
  --stone: #EAE3D8;
  --white: #FDFAF6;
  --ink:   #1A1714;
  --rust:  #BE5F18;
  --gold:  #9E7C18;
  --deep:  #3A1C08;
  /* Brown scale — lightest at the top, darkening toward the footer */
  --brown-1: #8A5626;
  --brown-2: #794A1E;
  --brown-3: #6A3B18;
  --brown-4: #5C3214;
  --brown-5: #4E2A10;
  --brown-6: #43240D;
  --mid:   #6B6158;
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Reveal animation (JS adds .visible) ───────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Photo placeholder ─────────────────────────────── */
.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--stone);
}

.photo-placeholder::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  border-radius: 2px;
}

.photo-placeholder::after {
  content: attr(data-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

/* ── NAV ───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: var(--cream);
  border-bottom-color: rgba(158, 124, 24, 0.2);
}

.nav-logo img { height: 70px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--rust); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
}

/* ── MOBILE MENU ───────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin-bottom: 28px; }

.mobile-menu ul a {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu ul a:hover { color: var(--rust); }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--mid);
  cursor: pointer;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  padding: 120px 48px 72px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: var(--cream);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-heading em {
  font-style: italic;
  color: var(--rust);
}

.hero-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.cta-btn {
  display: inline-block;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--rust);
  padding: 15px 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.cta-btn:hover { background: var(--deep); }

.hero-right {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.hero-right .photo-placeholder { min-height: 480px; }

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

/* ── INFO STRIP ────────────────────────────────────── */
.info-strip {
  padding: 18px 48px;
  background: var(--brown-1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.info-strip span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.7);
  padding: 4px 28px 4px 0;
}

.info-strip span + span {
  padding-left: 28px;
  border-left: 1px solid rgba(253, 250, 246, 0.25);
}

/* ── ABOUT ─────────────────────────────────────────── */
.about {
  padding: 64px 48px;
  background: var(--white);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  max-width: 760px;
  margin-bottom: 56px;
}

.about-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
  font-variant-ligatures: no-common-ligatures;
}

.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 18px;
}

.person {
  margin-bottom: 0;
  padding-bottom: 0;
}

.person-name {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.person-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}

.person-iwi {
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
}

.person-bio {
  font-size: 13px;
  line-height: 1.75;
  color: var(--mid);
  margin-top: 14px;
}

.person-quals {
  list-style: none;
  margin-top: 12px;
}

.person-quals li {
  font-size: 12px;
  color: var(--mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.65;
  margin-bottom: 2px;
}

.person-quals li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 2px;
}

.about-sometimes {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  margin-top: 24px;
  font-style: italic;
}

.person-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  overflow: hidden;
}

.person-photo .photo-placeholder {
  min-height: 100%;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* ── HERO ADDITIONS ──────────────────────────────── */
.hero-sub {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--rust);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-sometimes {
  font-size: 14px;
  line-height: 1.85;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

/* ── WHAT GUIDES OUR WORK ────────────────────────── */
.guiding {
  background: var(--brown-2);
  padding: 64px 48px;
}

.guiding-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.guiding .section-label {
  color: var(--gold);
}

.guiding .section-label::before {
  background: var(--gold);
}

.guiding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 40px;
}

.guiding-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.guiding-item p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(253, 250, 246, 0.75);
}

/* ── AVAILABILITY ────────────────────────────────── */
.availability {
  background: var(--white);
  padding: 64px 48px;
}

.availability-inner {
  max-width: 760px;
}

.availability-inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}

.availability-inner p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 18px;
}

.availability-list {
  list-style: none;
  margin-top: 24px;
}

.availability-list li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid rgba(158, 124, 24, 0.15);
}

.availability-list li:last-child {
  border-bottom: none;
}

.availability-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 14px;
}

/* ── CONTACT QUOTE ───────────────────────────────── */
.contact-quote {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gold);
  margin-bottom: 32px;
}

/* ── PARTNERS / WORKED ALONGSIDE ─────────────────── */
.partners {
  background: var(--stone);
  padding: 56px 48px;
}

.partners-inner {
  max-width: 900px;
}

.partners-list {
  list-style: none;
  margin-bottom: 40px;
}

.partners-list li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mid);
  padding: 8px 0 8px 22px;
  position: relative;
}

.partners-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 12px;
}

.affiliations-label {
  margin-top: 16px;
}

.logo-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 20px;
  margin-bottom: 12px;
}

.logo-grid img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── TRUSTED BY STRIP (landing page) ─────────────── */
.trusted-strip {
  padding: 32px 48px;
  background: var(--white);
  border-bottom: 1px solid rgba(158, 124, 24, 0.1);
  text-align: center;
}

.trusted-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.trusted-heading {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  text-align: center;
  margin-bottom: 24px;
}

.trusted-heading--affiliations {
  margin-top: 32px;
}

.trusted-inner img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}

.trusted-inner img:hover {
  transform: translateY(-2px);
}

/* ── SINGLE TESTIMONIAL BAND ─────────────────────── */
.testimonial-band--single {
  justify-content: center;
  text-align: center;
}

.testimonial-band--single .testi {
  border-left: none;
  padding-left: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* ── WHY WORK WITH US ──────────────────────────────── */
.why {
  background: var(--stone);
  padding: 64px 48px;
}

.why-inner {
  max-width: 900px;
}

.why-because {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 32px;
}

.why-intro {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--mid);
  margin-bottom: 28px;
}

.why-list {
  list-style: none;
}

.why-list li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  padding: 14px 0 14px 22px;
  position: relative;
  border-bottom: 1px solid rgba(158, 124, 24, 0.15);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 18px;
}

@media (max-width: 767px) {
  .why { padding: 64px 24px; }
}

/* ── SERVICES ──────────────────────────────────────── */
.service { padding: 64px 48px; }
.service--cream { background: var(--cream); }
.service--stone { background: var(--stone); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.service-grid--flip .service-content { order: 2; }
.service-grid--flip .service-photo   { order: 1; }

.service-num {
  font-family: 'Fraunces', serif;
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--rust);
  flex-shrink: 0;
}

.service-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-sub {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 28px;
}

.capabilities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.capabilities-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}

.capabilities-label + .capabilities { margin-bottom: 24px; }
.capabilities + .capabilities-label { margin-top: 4px; }

.capabilities li {
  font-size: 13px;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.capabilities li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 3px;
}

.service-photo {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.service-photo .photo-placeholder { min-height: 420px; }

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

/* ── TESTIMONIAL BANDS ─────────────────────────────── */
.testimonial-band {
  background: var(--brown-3);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

/* Progressive darkening of the testimonial bands down the page */
.testimonial-band--tb3 { background: var(--brown-3); }
.testimonial-band--tb4 { background: var(--brown-4); }
.testimonial-band--tb5 { background: var(--brown-5); }
.testimonial-band--tb6 { background: var(--brown-6); }

.testi {
  padding-left: 20px;
  border-left: 1px solid rgba(158, 124, 24, 0.3);
}

.testi blockquote {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 14px;
}

.testi cite {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  opacity: 0.75;
}

/* ── SECTION LABEL (reusable) ──────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--rust);
  flex-shrink: 0;
}

/* ── CONTACT ───────────────────────────────────────── */
.contact {
  padding: 64px 48px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 40px;
}

.contact-person { margin-bottom: 28px; }

.contact-person strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-role {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}

.contact-person a {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-person a:hover { color: var(--rust); }

.contact-location {
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(158, 124, 24, 0.2);
}

/* Form */
.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(107, 97, 88, 0.3);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107, 97, 88, 0.45); }

.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--rust); }

.form-group textarea { height: 110px; }

.contact-form .cta-btn { animation: none; opacity: 1; margin-top: 8px; }

.form-status {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 18px;
}

.form-status.success {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--rust);
}

.form-status.error { color: #9a3a12; }

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--deep);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(0.85);
}

.footer-nav { display: flex; gap: 28px; }

.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: rgba(253, 250, 246, 0.8); }

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(253, 250, 246, 0.3);
}

/* ── MOBILE (max-width: 767px) ─────────────────────── */
@media (max-width: 767px) {
  #nav { padding: 8px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
    gap: 40px;
  }

  .hero-right { height: 280px; }
  .hero-right .photo-placeholder { min-height: 280px; }

  .info-strip {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .info-strip span + span {
    padding-left: 0;
    border-left: none;
  }

  .about { padding: 64px 24px; }

  .about-text { margin-bottom: 40px; }

  .about-people {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-people .person {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(158, 124, 24, 0.18);
  }

  .about-people .person:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .service { padding: 64px 24px; }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-grid--flip .service-content { order: 1; }
  .service-grid--flip .service-photo   { order: 2; }

  .service-photo { height: 260px; }
  .service-photo .photo-placeholder { min-height: 260px; }

  .testimonial-band { padding: 40px 24px; }

  .contact { padding: 64px 24px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trusted-strip { padding: 24px; }
  .trusted-inner { gap: 24px; }
  .trusted-inner img { height: 44px; }

  .logo-grid { gap: 24px; }
  .logo-grid img { height: 36px; }

  .guiding { padding: 64px 24px; }

  .guiding-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .availability { padding: 64px 24px; }

  .partners { padding: 48px 24px; }

  footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
