:root {
  --ink: #17211c;
  --muted: #66736d;
  --paper: #fffdf8;
  --surface: #ffffff;
  --field: #fbf1ee;
  --line: #ead7d1;
  --leaf: #216342;
  --leaf-dark: #103925;
  --teal: #067b78;
  --saffron: #e0a72f;
  --brick: #9f3f32;
  --brick-dark: #6f261e;
  --cream: #fff7ec;
  --shadow: 0 20px 55px rgba(111, 38, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans Bengali", "Nirmala UI", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  background:
    linear-gradient(135deg, rgba(159, 63, 50, 0.08) 0 25%, transparent 25% 50%, rgba(159, 63, 50, 0.05) 50% 75%, transparent 75%),
    var(--paper);
  background-size: 42px 42px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
}

h1 {
  max-width: 980px;
  font-size: clamp(34px, 6vw, 72px);
  letter-spacing: 0;
}

h2 {
  color: var(--brick-dark);
  font-size: clamp(27px, 4vw, 46px);
  letter-spacing: 0;
}

h3 {
  color: var(--brick-dark);
}

.container,
.nav-wrap,
.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 247, 236, 0.96);
  border-bottom: 3px solid var(--brick);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow: 0 8px 22px rgba(111, 38, 30, 0.14);
}

.brand-name,
.brand-subtitle {
  display: block;
  line-height: 1.25;
}

.brand-name {
  color: var(--brick-dark);
  font-size: 16px;
  font-weight: 900;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.footer-links a {
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  border-radius: 999px;
  color: #5c3b34;
  padding: 10px 13px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--brick);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brick);
  font-size: 22px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--brick-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(55, 18, 14, 0.9) 0%, rgba(111, 38, 30, 0.78) 48%, rgba(111, 38, 30, 0.2) 100%),
    url("../img/office1.jpeg") center / cover;
  box-shadow: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--brick);
}

.page-hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 38px;
  align-items: end;
  padding: 86px 0 64px;
}

.hero-content {
  max-width: 830px;
  color: #fff;
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 13px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 247, 236, 0.94);
  color: var(--brick-dark);
  padding: 7px 12px;
  box-shadow: 0 10px 28px rgba(55, 18, 14, 0.18);
}

.hero-content p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
}

.btn-primary {
  background: var(--brick);
  color: #fff;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.identity-card {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.94);
  color: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.identity-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.identity-card strong {
  display: block;
  color: var(--brick-dark);
  font-size: 21px;
  line-height: 1.25;
}

.identity-card span {
  display: block;
  margin-top: 8px;
  color: #72564e;
  font-weight: 800;
}

.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: -30px auto 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--brick);
  box-shadow: var(--shadow);
  transform: none;
}

.quick-info div {
  min-height: 118px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: 22px;
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span,
.contact-list dt {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 900;
}

.quick-info strong,
.contact-list dd {
  display: block;
  margin: 5px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.section {
  padding: 74px 0;
}

.section-muted {
  background: rgba(159, 63, 50, 0.06);
  border-block: 1px solid rgba(159, 63, 50, 0.14);
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title p,
.panel p,
.legal-content p,
.legal-content li,
.service-card p,
.gallery-card p {
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.about-intro .panel {
  order: 2;
}

.about-intro .feature-photo {
  order: 1;
}

.goals-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 34px;
  align-items: center;
}

.panel,
.service-card,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(111, 38, 30, 0.08);
}

.panel-pad {
  padding: 30px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(159, 63, 50, 0.08), #fff 36%);
  padding: 17px 18px 17px 50px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow: inset 0 0 0 5px #f4d8d1;
}

.feature-list strong {
  display: block;
  color: var(--brick-dark);
  font-size: 18px;
}

.feature-photo,
.photo-grid img,
.goals-photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-photo {
  height: 440px;
}

.goals-photo {
  height: 390px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.photo-grid img {
  height: 320px;
}

.photo-grid img:first-child {
  grid-row: span 2;
  height: 658px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(111, 38, 30, 0.95), rgba(159, 63, 50, 0.62)),
    url("../img/bulding.jpeg") center / cover;
  color: #fff;
  padding: 92px 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(111, 38, 30, 0.95), rgba(224, 167, 47, 0.38)),
    url("../img/workshop.jpeg") center / cover;
}

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(111, 38, 30, 0.94), rgba(159, 63, 50, 0.54)),
    url("../img/workshop.jpeg") center / cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 218px;
  border-top: 5px solid var(--brick);
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.gallery-card:hover,
.gallery-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(111, 38, 30, 0.16);
}

.service-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fbebe7;
  color: var(--brick);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.service-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 52px;
  border: 1px solid rgba(159, 63, 50, 0.22);
  border-left: 6px solid var(--brick);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7ec, #fff);
  color: var(--ink);
  padding: 30px;
  box-shadow: 0 18px 42px rgba(111, 38, 30, 0.1);
}

.service-highlight h2 {
  color: var(--brick-dark);
  font-size: 30px;
}

.service-highlight p:last-child {
  margin-bottom: 0;
  color: #6f5b54;
}

.service-highlight .eyebrow {
  color: var(--brick);
}

.service-highlight .btn-primary {
  box-shadow: 0 10px 24px rgba(159, 63, 50, 0.22);
}

.gallery-status {
  min-height: 28px;
  margin: -12px 0 22px;
  color: var(--brick);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-card:focus {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card div {
  padding: 18px 20px 20px;
}

.gallery-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(40, 12, 9, 0.94);
  padding: 28px;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 0;
}

.gallery-lightbox-close {
  top: 18px;
  right: 18px;
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after,
.gallery-lightbox-arrow::before {
  content: "";
  position: absolute;
}

.gallery-lightbox-close::before,
.gallery-lightbox-close::after {
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.gallery-lightbox-close::before {
  transform: rotate(45deg);
}

.gallery-lightbox-close::after {
  transform: rotate(-45deg);
}

.gallery-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-arrow::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-lightbox-prev {
  left: 18px;
}

.gallery-lightbox-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.gallery-lightbox-next {
  right: 18px;
}

.gallery-lightbox-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.gallery-lightbox-caption {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
}

.contact-list dd {
  margin-left: 0;
  font-size: 17px;
}

.contact-list dt {
  color: var(--brick);
}

.contact-list dd {
  color: var(--brick-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--brick-dark);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  color: var(--brick);
  font-weight: 900;
}

.map-section {
  margin: 34px 0 -82px;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.legal-content {
  max-width: 930px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

.site-footer {
  border-top: 4px solid var(--brick);
  background: #fff7ec;
  color: var(--ink);
  padding: 42px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.5fr) minmax(220px, 0.55fr);
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 4px;
  box-shadow: 0 12px 26px rgba(111, 38, 30, 0.1);
}

.footer-brand strong {
  display: block;
  color: var(--brick-dark);
  font-size: 19px;
  line-height: 1.35;
}

.footer-brand p,
.footer-credit {
  color: #705c54;
}

.footer-brand p {
  margin: 8px 0 0;
}

.home-footer .footer-brand p {
  max-width: 500px;
  font-size: 17px;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(159, 63, 50, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--brick);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus {
  background: var(--brick);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-social .social-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.footer-heading,
.footer-contact > span {
  display: block;
  margin-bottom: 12px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-contact a {
  color: #3e312d;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-credit {
  margin: 0;
  font-size: 14px;
}

.footer-credit a {
  color: var(--brick);
  font-weight: 900;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  justify-content: start;
}

.footer-links a {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3e312d;
  padding: 0;
  font-size: 14px;
  white-space: nowrap;
}

.footer-links a.active {
  background: transparent;
  color: var(--brick);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  border-top: 1px solid rgba(159, 63, 50, 0.18);
  padding: 16px 0;
}

.footer-copy {
  color: #705c54;
  font-size: 14px;
  text-align: right;
}

.footer-copy .copy-brand {
  color: var(--brick);
  font-weight: 900;
}

.home-footer .footer-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(190px, 0.38fr) minmax(440px, 0.9fr);
}

.home-footer .footer-brand {
  align-items: flex-start;
}

.footer-address {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  margin-top: 9px;
}

.footer-address p {
  margin: 0;
}

.footer-address b {
  color: var(--brick-dark);
}

.footer-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  color: var(--brick);
  margin-bottom: 0;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.home-footer .footer-contact {
  justify-self: end;
  min-width: 440px;
}

.home-footer .footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-footer .footer-contact .footer-address {
  margin: 0 0 10px;
  align-items: start;
}

.home-footer .footer-contact .footer-address .footer-icon {
  margin-top: 2px;
}

.home-footer .footer-address p {
  transform: translateY(-1px);
  font-size: 13px;
  line-height: 1.55;
}

.footer-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.home-footer .footer-grid > div:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.home-footer .footer-contact {
  grid-column: 3;
  grid-row: 1;
}

.home-footer .footer-links {
  grid-template-columns: 1fr;
}

.home-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.home-footer .link-arrow {
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--brick);
  border-right: 2px solid var(--brick);
  border-radius: 1px;
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 8px;
    padding: 13px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(55, 18, 14, 0.88), rgba(111, 38, 30, 0.7)),
      url("../img/office1.jpeg") center / cover;
  }

  .hero::after {
    display: block;
  }

  .hero-inner,
  .quick-info,
  .grid-2,
  .goals-layout,
  .contact-layout,
  .service-grid,
  .gallery-grid,
  .footer-grid,
  .service-highlight,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .quick-info div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .identity-card {
    max-width: 420px;
  }

  .feature-photo,
  .goals-photo,
  .photo-grid img,
  .photo-grid img:first-child {
    height: 320px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    justify-content: flex-start;
  }

  .site-footer {
    overflow: hidden;
  }

  .home-footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .home-footer .footer-brand {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .home-footer .footer-brand img {
    width: 52px;
    height: 52px;
  }

  .home-footer .footer-brand strong {
    font-size: 18px;
    line-height: 1.28;
  }

  .home-footer .footer-brand p {
    max-width: none;
    font-size: 15px;
    line-height: 1.65;
  }

  .home-footer .footer-social {
    margin-top: 14px;
  }

  .home-footer .footer-contact {
    min-width: 0;
    width: 100%;
  }

  .home-footer .footer-contact a,
  .footer-phone-row {
    max-width: 100%;
  }

  .footer-phone-row {
    gap: 14px;
  }

  .home-footer .footer-address {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .home-footer .footer-address p {
    overflow-wrap: anywhere;
  }

  .home-footer .footer-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-footer .footer-links a {
    white-space: normal;
  }

  .home-footer .footer-grid > div:nth-child(3),
  .home-footer .footer-contact {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }

  .about-intro .panel,
  .about-intro .feature-photo {
    order: initial;
  }
}

@media (max-width: 540px) {
  .brand-name {
    font-size: 14px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-inner,
  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .page-hero {
    padding: 64px 0;
  }

  .hero-content p,
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .panel-pad,
  .service-highlight {
    padding: 22px;
  }
}
