/* ============================================
   HILLTOP CONTRACTORS - BASE STYLES
   Reverse-engineered from hilltopcontractorsllc.com
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1b1b1b;
  -webkit-font-smoothing: antialiased;
  background-color: #161616;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

/* --- NAV --- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s;
}

.nav--solid {
  position: relative;
  background-color: #161616;
}

.nav__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  color: #f7f7f7;
  line-height: 1.2;
}

.nav__logo:hover { color: #fff; }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: #f7f7f7;
  cursor: pointer;
  padding: 6px;
}

.nav__links {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav__link {
  display: block;
  padding: 6px 6px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.071em;
  text-transform: uppercase;
  color: #f7f7f7;
}

.nav__link:hover { color: #f7f7f7; }
.nav__link--active { font-weight: 700; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

.nav__phone {
  color: #f7f7f7;
  font-size: 14px;
  letter-spacing: 0.071em;
  white-space: nowrap;
}

.nav__phone:hover { color: #fff; }

.nav__social {
  display: flex;
  align-items: center;
  color: #f7f7f7;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav__social:hover { opacity: 1; }

/* Sticky nav — darkens as you scroll */
.nav.sticky {
  position: fixed;
  background-color: rgba(22, 22, 22, 0.9);
}

/* Nav separator line (fades on scroll) */
.nav__separator {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  transition: opacity 0.3s;
  padding: 0 24px;
}

.nav.sticky .nav__separator {
  opacity: 0;
}

/* --- HERO --- */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  background-color: #161616;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 56px 24px 72px;
  position: relative;
  transition: background-image 1s ease-in-out;
}

.hero__content {
  max-width: 95%;
  margin: 0 auto;
  transition: transform 0.05s linear, opacity 0.05s linear;
  will-change: transform, opacity;
}

.hero__tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__phone {
  margin-top: 24px;
  text-align: center;
  transition: transform 0.05s linear, opacity 0.05s linear;
  will-change: transform, opacity;
}

.hero__phone a {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}

.hero__phone a:hover { color: #c6c6c6; }

/* --- SECTIONS --- */
.section {
  padding: 56px 0;
}

.section--white { background-color: #fff; }
.section--light { background-color: #f6f6f6; }
.section--dark  { background-color: #161616; color: #f7f7f7; }

/* --- ALOHA INTRO --- */
.section--aloha {
  padding-top: 40px;
  padding-bottom: 0;
}

.aloha-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #ad8c8c;
  text-align: center;
  line-height: 1.4;
}

.section__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: #ad8c8c;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}

.section__heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: #e2e2e2;
  margin: 24px auto 0;
}

.section__heading--alt {
  color: #ab8585;
}

.section__heading--alt::after {
  background-color: #dadada;
}

#intro.section {
  padding-top: 48px;
  padding-bottom: 16px;
}
#intro .section__heading {
  margin-bottom: 0;
}

#services.section {
  padding-top: 24px;
  padding-bottom: 24px;
}

#projects.section {
  padding-top: 24px;
}

/* --- VIDEO --- */
.video-wrapper {
  max-height: 620px;
  overflow: hidden;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  background: #ddd;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- SOCIAL --- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-links__icon {
  color: #8f6e6e;
  transition: color 0.2s;
}

.social-links__icon:hover { color: #474747; }

/* --- CONTACT --- */
.contact-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-form {
  flex: 1 1 50%;
}

.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info__heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #151515;
  margin: 0 0 4px;
}

.contact-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #575757;
  line-height: 1.5;
}

.contact-info__item a {
  color: #826c6c;
  text-decoration: none;
}

.contact-info__item a:hover { color: #404040; }

.contact-info__item strong {
  color: #151515;
  font-weight: 700;
}

.contact-info__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #826c6c;
}

.contact-info__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-form__title {
  font-size: 22px;
  font-weight: 400;
  color: #151515;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 24px; }
.form-group--center { text-align: center; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 23px 16px 7px;
  border: 1px solid #dadada;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #474747;
  background: #fff;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: inset 0 0 0 1px currentColor;
}

.form-group textarea {
  resize: vertical;
  line-height: 1.75;
  padding: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  min-height: 56px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.071em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background-color: #dadada;
  color: #525252;
  width: 100%;
}

.btn--primary:hover { background-color: #ccc; }

.contact-info__name {
  font-size: 22px;
  font-weight: 400;
  color: #151515;
  margin-bottom: 24px;
}

.contact-info__address {
  color: #575757;
  margin-bottom: 24px;
  line-height: 1.5;
}

.contact-info__phone a {
  color: #826c6c;
}

.contact-info__phone a:hover { color: #404040; }

.contact-info__phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-info__phone-link {
  color: #826c6c;
}

.contact-info__phone-link:hover { color: #404040; }

.contact-info__social {
  display: flex;
  align-items: center;
  color: #826c6c;
  transition: color 0.2s;
}

.contact-info__social:hover { color: #404040; }

.contact-info__license {
  color: #826c6c;
}

.map-banner {
  margin-top: 40px;
  padding-bottom: 30%;
  position: relative;
  background: #e0e0e0;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-banner p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #888;
}

/* --- FOOTER --- */
.footer {
  background-color: #161616;
  padding: 56px 0;
  text-align: center;
  color: #a9a9a9;
  font-size: 14px;
}

.footer__copyright { margin-bottom: 8px; }
.footer__license { margin-bottom: 24px; }

.footer__hr {
  border: none;
  border-bottom: 1px solid #2a2a2a;
  width: 50px;
  margin: 0 auto 24px;
}

.footer__powered { font-size: 14px; }
.footer__powered a { color: #fff; }
.footer__powered a:hover { color: #c6c6c6; }

/* --- SERVICES PAGE --- */
.header--compact {
  /* No hero, just the nav */
}

.section--services-content {
  padding-top: 56px;
}

.services-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.services-image {
  flex: 1 1 33%;
}

.services-image img {
  width: 100%;
  border-radius: 0;
}

.services-text {
  flex: 1 1 60%;
}

.services-block { margin-bottom: 24px; }

.services-block__heading {
  font-size: 22px;
  font-weight: 400;
  color: #1b1b1b;
  margin-bottom: 12px;
  line-height: 1.25;
}

.services-block p {
  color: #5e5e5e;
  line-height: 1.5;
}

/* --- GALLERY --- */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
}

.gallery-grid img {
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
  margin: 4px;
  cursor: pointer;
  border-radius: 0;
  height: auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 1023px) {
  .hero__tagline { font-size: 28px; }
  .hero__content { max-width: 80%; }
}

@media (max-width: 767px) {
  .section { padding: 40px 0; }

  .nav__hamburger { display: block; }
  .nav__right { display: none; }

  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 22, 22, 0.95);
    padding: 16px 0;
  }

  .nav__links.open { display: flex; }

  .nav__link {
    padding: 12px 24px;
    width: 100%;
  }

  .hero {
    min-height: 60vh;
  }

  .hero__tagline { font-size: 18px; white-space: normal; }
  .hero__content { max-width: 100%; }
  .section__heading { font-size: 32px; }
  .aloha-text { font-size: 18px; }

  .portfolio-box { height: 300px; }
  .portfolio-box__title { font-size: 36px; }

  .contact-grid { flex-direction: column; }
  .contact-form,
  .contact-info { flex: 1 1 100%; }

  .services-grid { flex-direction: column; }
  .services-image { flex: 1 1 100%; }
  .services-text { flex: 1 1 100%; }

  .gallery-grid img {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 1536px) {
  body { font-size: 18px; }
  .hero__tagline { font-size: 40px; }
  .section__heading { font-size: 48px; }
  .nav__logo { font-size: 23px; }
}

/* --- SEO content additions --- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.aloha-subtext {
  max-width: 880px;
  margin: 18px auto 0;
  text-align: center;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.faq-list {
  max-width: 820px;
  margin: 24px auto 0;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 16px 20px;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
}

.faq-item p {
  margin-top: 10px;
  color: #444;
  line-height: 1.6;
}

/* ============================================
   HOMEPAGE COMPONENTS
   ============================================ */

/* Cream / dark section variants */
.section--cream { background-color: #f5f2ed; }
.section--dark { background-color: #111418; color: #fff; }

/* Eyebrow label (small uppercase tracked) */
.eyebrow {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a4d68;
  margin-bottom: 14px;
}
.eyebrow--center { display: block; text-align: center; }

/* Centered section heading variant */
.section__heading--center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: #0a4d68; color: #fff; border-color: #0a4d68; }
.btn--primary:hover { background: #093e54; border-color: #093e54; color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost:hover { background: #fff; color: #111418; }
.btn--ghost-dark { background: transparent; color: #1b1b1b; border-color: #1b1b1b; }
.btn--ghost-dark:hover { background: #1b1b1b; color: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: #fff; color: #111418; border-color: #fff; }

/* Inline link arrow */
.link-arrow {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a4d68;
  border-bottom: 2px solid #0a4d68;
  padding-bottom: 4px;
  transition: opacity 0.2s;
}
.link-arrow:hover { opacity: 0.7; }

/* HERO (homepage) */
.hero--stone {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #161616;
  padding: 80px 24px;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(100%);
  transition: transform 1.1s ease-in-out;
  will-change: transform;
}
.hero__slide--active { transform: translateX(0); }
.hero__slide--exit { transform: translateX(-100%); }
.hero__slide--no-transition { transition: none; }
.hero--stone .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero--stone .hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  color: #fff;
}
.hero__eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 18px;
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.5;
  color: #f0f0f0;
  margin-bottom: 32px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* INTRO block */
.intro-block {
  max-width: 760px;
  text-align: center;
}
.intro-block--below {
  margin: 48px auto 0;
}
.intro-body {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-top: 18px;
  text-align: center;
}

/* SERVICES cards */
.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.service-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.service-card__img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}
.service-card__body { padding: 22px 22px 26px; }
.service-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: #1b1b1b;
}
.service-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}

.center-cta {
  text-align: center;
  margin-top: 36px;
}

/* STATS strip */
.stats-strip {
  background-color: #111418;
  color: #fff;
  padding: 56px 0;
}
.stats-strip__inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat__label {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9c9c9;
}

/* CTA BANNER */
.cta-banner {
  background: #0a4d68;
  color: #fff;
  padding: 64px 0;
}
.cta-banner__inner { text-align: center; }
.cta-banner__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  margin-bottom: 12px;
}
.cta-banner__sub {
  font-size: 16px;
  color: #d8e8ee;
  margin-bottom: 28px;
}
.cta-banner__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero__title { font-size: 40px; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__inner { gap: 40px; }
  .stat__num { font-size: 40px; }
}
@media (max-width: 600px) {
  .hero--stone { min-height: 78vh; padding: 64px 20px; }
  .hero__title { font-size: 30px; }
  .hero__sub { font-size: 16px; }
  .services-cards { grid-template-columns: 1fr; }
  .cta-banner__title { font-size: 26px; }
  .stats-strip__inner { gap: 32px; }
}

/* --- SERVICES PAGE EXTENSIONS --- */

.services-hero {
  padding-top: 64px;
  padding-bottom: 32px;
}
.services-hero .section__heading { margin-bottom: 18px; }
.services-hero__lede {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
}
.services-hero__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.services-anchornav {
  background-color: #fff;
  border-top: 1px solid #ece7df;
  border-bottom: 1px solid #ece7df;
}
.services-anchornav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 18px 0;
}
.services-anchornav__list a {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0a4d68;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}
.services-anchornav__list a:hover { border-bottom-color: #ad8c8c; }

.trust-strip { padding: 36px 0; background-color: #f5f2ed; }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-strip__item {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #4a4a4a;
}
.trust-strip__item strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #ad8c8c;
  margin-bottom: 6px;
}
@media (max-width: 768px) { .trust-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-strip__grid { grid-template-columns: 1fr; } }

.services-grid--reverse { flex-direction: row-reverse; }
@media (max-width: 768px) { .services-grid--reverse { flex-direction: column; } }

.services-block__sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #ad8c8c;
  margin: 18px 0 6px;
}

.cross-link {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  background-color: #f5f2ed;
  border: 1px solid #e3dccf;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #0a4d68;
  text-decoration: none;
  transition: background-color .15s ease;
}
.cross-link:hover { background-color: #ece7df; }

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
@media (max-width: 960px) { .services-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid-3 { grid-template-columns: 1fr; } }

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.area-grid__col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: #ad8c8c;
  margin: 0 0 14px;
  text-align: center;
}
.area-grid__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.area-grid__col li {
  padding: 4px 0;
  font-size: 15px;
  color: #4a4a4a;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 0 8px;
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ad8c8c;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: #2a2a2a;
  margin: 0 0 6px;
}
.process-step p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 960px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

.gallery-grid--captioned {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-figure {
  margin: 0;
  background-color: #fff;
  border: 1px solid #ece7df;
  overflow: hidden;
}
.gallery-figure img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.gallery-figcaption {
  padding: 10px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #4a4a4a;
  letter-spacing: 0.3px;
}
@media (max-width: 960px) { .gallery-grid--captioned { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid--captioned { grid-template-columns: 1fr; } }

