:root {
  --restore-ink: #181818;
  --restore-cream: #f6f1ec;
  --restore-gold: #bd9768;
  --restore-white: #ffffff;
}

.restore-page {
  background: var(--restore-white);
  color: var(--restore-ink);
}

.restore-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.restore-narrow {
  width: min(760px, calc(100% - 48px));
}

.restore-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.24)), url('https://bebrazilianwax.com/wp-content/uploads/2016/01/home_beauty2_subheader.jpg') center/cover no-repeat;
  color: #fff;
  padding: 96px 0;
}

.restore-hero h1 {
  max-width: 820px;
  margin: 10px 0 24px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -.025em;
}

.restore-lead {
  max-width: 720px;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.55;
}

.restore-eyebrow {
  color: var(--restore-gold);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.restore-section {
  padding: 88px 0;
}

.restore-heading-row,
.restore-contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}

.restore-section h2,
.restore-split h2,
.restore-cta h2 {
  margin: 8px 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.restore-grid {
  display: grid;
  gap: 22px;
}

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

.restore-card,
.restore-step {
  min-height: 250px;
  padding: 34px;
  border: 1px solid #ded8d1;
  color: var(--restore-ink);
  background: #fff;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.restore-card:hover {
  transform: translateY(-4px);
  border-color: var(--restore-gold);
}

.restore-card span,
.restore-step span {
  color: var(--restore-gold);
  font-size: 14px;
  font-weight: 700;
}

.restore-card h3,
.restore-step h3 {
  margin: 45px 0 14px;
  font-size: 24px;
}

.restore-card-static:hover {
  transform: none;
}

.restore-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--restore-cream);
}

.restore-split-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.restore-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(40px, 8vw, 120px);
}

.restore-text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--restore-ink);
  font-weight: 700;
  letter-spacing: .08em;
}

.restore-cta {
  padding: 74px 0;
  text-align: center;
  background: var(--restore-ink);
  color: #fff;
}

.restore-cta h2 {
  color: #fff;
}

.restore-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.restore-button {
  display: inline-block;
  border: 1px solid var(--restore-gold);
  background: var(--restore-gold);
  color: #fff !important;
  padding: 15px 24px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
}

.restore-button-outline {
  background: transparent;
}

.restore-callout,
.restore-note {
  padding: 42px;
  border-left: 4px solid var(--restore-gold);
  background: var(--restore-cream);
  margin-bottom: 44px;
}

.restore-note {
  margin: 36px 0 0;
}

.restore-small {
  margin-top: 18px;
  font-size: 14px;
}

.restore-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.restore-gallery figure {
  margin: 0;
  background: var(--restore-cream);
}

.restore-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.restore-gallery figcaption {
  padding: 16px 20px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.restore-contact {
  align-items: start;
  margin-bottom: 0;
}

.restore-contact > div {
  min-height: 260px;
  padding: 40px;
  border: 1px solid #ded8d1;
}

.restore-contact h2 a {
  color: var(--restore-ink);
}

.restore-promo {
  display: block;
  max-width: 100%;
  margin: 0 auto 34px;
}

.restore-form {
  display: grid;
  gap: 12px;
}

.restore-form label {
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.restore-form input,
.restore-form select,
.restore-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c9c2bb;
  background: #fff;
  padding: 14px;
  color: #181818;
  font: inherit;
}

.restore-footer-band {
  padding: 26px 24px 32px;
  text-align: center;
  background: #000;
  color: #fff;
}

.restore-footer-band img {
  max-width: min(100%, 1100px);
  height: auto;
  margin-bottom: 12px;
}

.restore-footer-band a {
  color: #fff;
}

@media (max-width: 860px) {
  .restore-grid-3,
  .restore-heading-row,
  .restore-contact,
  .restore-split {
    grid-template-columns: 1fr;
  }

  .restore-heading-row {
    gap: 10px;
  }

  .restore-split-image img {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .restore-inner,
  .restore-narrow {
    width: min(100% - 30px, 1120px);
  }

  .restore-hero {
    min-height: 360px;
    padding: 70px 0;
  }

  .restore-section {
    padding: 58px 0;
  }

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

  .restore-callout,
  .restore-note,
  .restore-contact > div,
  .restore-card,
  .restore-step {
    padding: 28px;
  }
}
