:root {
  --black: #111827;
  --black-2: #1f2937;
  --green: #14b8a6;
  --green-dark: #0f766e;
  --green-soft: #e0f2f1;
  --accent: #f59e0b;
  --white: #ffffff;
  --paper: #f7fafc;
  --muted: #4b5563;
  --line: rgba(20, 184, 166, 0.22);
  --soft-line: rgba(17, 24, 39, 0.11);
  --shadow: 0 22px 55px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(17, 24, 39, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 7px;
  object-fit: contain;
  background: var(--white);
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: calc(100vh - 83px);
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--black);
}

.home-hero {
  background-image:
    linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.72) 44%, rgba(17, 24, 39, 0.3)),
    url("https://images.pexels.com/photos/30688593/pexels-photo-30688593.jpeg?auto=compress&cs=tinysrgb&w=1900");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--black), transparent);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: clamp(74px, 10vw, 142px) clamp(20px, 6vw, 72px) clamp(150px, 13vw, 198px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 6.6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(29px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.24;
}

.hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(245, 158, 11, 0.72);
  background: rgba(245, 158, 11, 0.12);
}

.hero-stats {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(650px, calc(100% - 40px));
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.88);
  box-shadow: var(--shadow);
}

.hero-stats article {
  min-height: 106px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: var(--white);
  background: var(--green-dark);
}

.quick-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 6vw, 72px);
}

.split,
.image-feature,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split p,
.image-feature p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
}

.page-hero {
  padding: clamp(76px, 11vw, 132px) clamp(20px, 6vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.28), transparent 28%),
    linear-gradient(135deg, var(--black), var(--black-2));
}

.page-hero h1 {
  max-width: 980px;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 30px;
}

.black-panel {
  color: var(--white);
  background: var(--black);
}

.black-panel h2,
.black-panel h3 {
  color: var(--white);
}

.black-panel p {
  color: rgba(255, 255, 255, 0.74);
}

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

.card-grid article,
.job-card,
.contact-form,
.values-panel article {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.black-panel .card-grid article {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
}

.card-grid article,
.job-card,
.values-panel article {
  padding: 26px;
}

.image-feature {
  background: var(--white);
}

.image-feature img {
  height: min(58vw, 560px);
  min-height: 330px;
  object-fit: cover;
  border-radius: 8px;
}

.text-link,
.job-card a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(20, 184, 166, 0.24), transparent 30%),
    var(--black-2);
}

.cta-band h2 {
  margin-bottom: 0;
}

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

.values-panel span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.jobs-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.filter {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  color: var(--black);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.filter.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.job-card p,
.values-panel p {
  color: var(--muted);
}

.job-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.job-card.is-hidden {
  display: none;
}

.process {
  color: var(--white);
  background: var(--black);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--green);
}

.timeline article {
  position: relative;
  padding: 32px 24px 0 0;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -55px 0 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.timeline p {
  color: rgba(255, 255, 255, 0.74);
}

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

.gallery-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--white);
}

.gallery-grid figcaption {
  padding: 16px;
  color: var(--accent);
  font-weight: 900;
}

.contact-section {
  align-items: start;
  background: var(--white);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: var(--green-dark);
  font-weight: 900;
}

.contact-details a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--black);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .card-grid,
  .job-list,
  .gallery-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--black);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .home-hero {
    background-image:
      linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.68) 48%, rgba(17, 24, 39, 0.95)),
      url("https://images.pexels.com/photos/30688593/pexels-photo-30688593.jpeg?auto=compress&cs=tinysrgb&w=1100");
  }

  .hero-copy {
    padding: 72px 20px 260px;
  }

  .hero-stats {
    left: 20px;
    right: 20px;
    grid-template-columns: 1fr;
  }

  .hero-stats article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split,
  .image-feature,
  .contact-section,
  .values-panel,
  .jobs-heading {
    grid-template-columns: 1fr;
  }

  .jobs-heading,
  .cta-band {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand small {
    max-width: 190px;
  }

  h1 {
    font-size: 38px;
  }

  .quick-strip,
  .card-grid,
  .job-list,
  .gallery-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline {
    border-top: 0;
  }

  .timeline article {
    padding: 0 0 0 58px;
  }

  .timeline span {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .filters {
    margin-top: 16px;
  }

  .site-footer {
    flex-direction: column;
  }
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 83px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
  background-image:
    linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.72) 44%, rgba(17, 24, 39, 0.26)),
    var(--slide-image);
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-copy {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  padding: clamp(74px, 10vw, 142px) clamp(20px, 6vw, 72px) clamp(155px, 13vw, 205px);
}

.slide-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.slider-controls {
  position: absolute;
  left: clamp(20px, 6vw, 72px);
  bottom: 104px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 38px;
  height: 8px;
  border: 1px solid rgba(245, 158, 11, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--accent);
}

.quick-strip {
  grid-template-columns: repeat(5, 1fr);
}

.photo-split img,
.contact-photo {
  width: 100%;
  height: min(48vw, 520px);
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services-preview {
  background: var(--white);
}

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

.service-card-grid article {
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.service-card-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card-grid h3,
.service-card-grid p {
  padding-inline: 22px;
}

.service-card-grid h3 {
  margin-top: 20px;
}

.service-card-grid p {
  padding-bottom: 24px;
  color: var(--muted);
}

.inline-action {
  margin-top: 26px;
}

.photo-page {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: grid;
  align-content: end;
  background-size: cover;
  background-position: center;
}

.photo-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.68), rgba(17, 24, 39, 0.24));
}

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

.about-hero {
  background-image: url("https://images.pexels.com/photos/30688593/pexels-photo-30688593.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.services-hero {
  background-image: url("https://images.pexels.com/photos/9301316/pexels-photo-9301316.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.jobs-hero {
  background-image: url("https://images.pexels.com/photos/11293626/pexels-photo-11293626.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.gallery-hero {
  background-image: url("https://images.pexels.com/photos/9489091/pexels-photo-9489091.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.contact-hero {
  background-image: url("https://images.pexels.com/photos/7654401/pexels-photo-7654401.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-detail-list article {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.service-detail-list img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 8px;
}

.service-detail-list span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.service-detail-list p {
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.site-footer div {
  gap: 8px;
}

.footer-col {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.footer-col:last-child {
  border-right: 0;
  padding-right: 0;
}

.footer-contact img {
  width: 78px;
  height: 78px;
  margin-bottom: 8px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 5px;
}

.footer-col h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--accent);
}

.footer-col li span,
.footer-col li a {
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .service-card-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .slide {
    background-image:
      linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.66) 48%, rgba(17, 24, 39, 0.95)),
      var(--slide-image);
  }

  .slide-copy {
    padding: 72px 20px 275px;
  }

  .slider-controls {
    left: 20px;
    bottom: 225px;
  }

  .service-detail-list article,
  .service-card-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 24px;
  }

  .footer-col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .quick-strip {
    grid-template-columns: 1fr;
  }

  .service-detail-list img,
  .service-card-grid img,
  .photo-split img,
  .contact-photo {
    height: 260px;
    min-height: 0;
  }
}

@media (hover: hover) {
  .button,
  .filter,
  .site-nav a,
  .text-link,
  .social-links a {
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .button:hover,
  .filter:hover,
  .social-links a:hover {
    transform: translateY(-2px);
  }

  .button.primary:hover {
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.36);
  }
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    align-items: center;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 11px;
  }

  .site-nav {
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    overflow: hidden;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 7px;
  }

  .site-nav a:hover,
  .site-nav a.active {
    color: var(--white);
    background: rgba(20, 184, 166, 0.18);
  }

  .hero-slider,
  .hero {
    min-height: 720px;
  }

  .slide-copy,
  .hero-copy {
    padding: 72px 20px 250px;
  }

  .slide-copy p:not(.eyebrow),
  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-stats {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
  }

  .hero-stats article {
    padding: 14px 16px;
  }

  .hero-stats strong {
    font-size: 24px;
  }

  .slider-controls {
    left: 20px;
    bottom: 210px;
  }

  .section {
    padding: 54px 18px;
  }

  .page-hero,
  .photo-page {
    min-height: 340px;
    padding-inline: 18px;
  }

  .cta-band {
    align-items: start;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .button,
  .filter {
    width: 100%;
  }

  .hero-actions,
  .filters {
    gap: 10px;
  }

  .hero-slider,
  .hero {
    min-height: 760px;
  }

  .slide {
    background-position: center top;
  }

  .slide-copy,
  .hero-copy {
    padding: 58px 16px 300px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
  }

  .hero-stats span {
    margin-top: 4px;
    font-size: 13px;
  }

  .slider-controls {
    bottom: 260px;
  }

  .quick-strip span {
    min-height: 54px;
  }

  .card-grid article,
  .job-card,
  .values-panel article,
  .contact-form,
  .service-detail-list article {
    padding: 20px;
  }

  .gallery-grid img {
    height: 230px;
  }

  .service-card-grid img,
  .service-detail-list img,
  .photo-split img,
  .image-feature img,
  .contact-photo {
    height: 245px;
    min-height: 0;
  }

  .photo-page::before,
  .slide {
    background-position: center;
  }

  .site-footer {
    padding: 28px 18px;
  }
}

@media (max-width: 380px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    max-width: 180px;
  }

  h1 {
    font-size: 31px;
  }

  .slide-copy,
  .hero-copy {
    padding-bottom: 315px;
  }

  .slider-controls {
    bottom: 274px;
  }
}
