.hero {
  position: relative;
  min-height: max(620px, 100svh);
  display: flex;
  align-items: center;
  color: var(--cream);
  background-size: cover;
  background-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 16, 13, 0.55) 0%, rgba(18, 16, 13, 0.3) 45%, rgba(18, 16, 13, 0.75) 100%);
}

.hero__content {
  position: relative;
  max-width: 700px;
  padding-top: calc(var(--nav-h) + 16px);
  padding-bottom: 48px;
}

.hero__eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  color: var(--cream);
  margin: 22px 0 26px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(250, 246, 240, 0.85);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-height: 780px), (max-width: 560px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(250, 246, 240, 0.5);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

.credentials {
  background: var(--ink);
  padding: 30px 0;
}

.credentials__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  flex-wrap: wrap;
  text-align: center;
}

.credentials__row span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.75);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

@media (min-width: 1024px) {
  .intro {
    grid-template-columns: 1.3fr 1fr;
  }
}

.intro__media {
  position: relative;
  isolation: isolate;
}

.intro__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.intro__media-frame {
  position: absolute;
  top: 18px;
  left: -18px;
  right: 18px;
  bottom: -18px;
  background: var(--taupe);
  border: 1px solid var(--gold);
  z-index: 0;
}

.intro__body h2 {
  margin: 18px 0 24px;
}

.intro__body p {
  margin-bottom: 18px;
}

.intro__body {
  text-align: center;
}

.intro__body .eyebrow {
  justify-content: center;
}

.intro__body p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.intro__body .btn {
  margin-top: 20px;
}

.services {
  background: var(--paper);
}

.services__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.services__head h2 {
  margin: 18px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--paper);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
}

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

.process {
  background: var(--taupe);
}

.process__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.process__head h2 {
  margin: 18px 0;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.process-step {
  text-align: center;
}

.process-step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.92rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-strip img {
  width: 100%;
  height: clamp(200px, 26vw, 340px);
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-strip a {
  overflow: hidden;
  display: block;
}

.gallery-strip a:hover img {
  transform: scale(1.06);
}

.testimonial {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.6vw + 1rem, 2.2rem);
  font-style: italic;
  font-weight: 400;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--cream);
}

.testimonial cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }
}

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

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