/* Welcome, homepage FAQ, and global editorial footer */
.home-hero {
  position: relative;
  background: #211f1a;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  min-height: clamp(680px, 78vh, 850px);
}

.home-hero__content {
  display: flex;
  align-items: center;
  padding: clamp(70px, 8vw, 120px) clamp(30px, 7vw, 110px);
  background:
    radial-gradient(circle at 18% 20%, rgba(222, 174, 48, .1), transparent 31%),
    #211f1a;
}

.home-hero__content-inner {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #e1b23a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-hero__eyebrow > i {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.home-hero h1 {
  max-width: 820px;
  margin: 30px 0 28px;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(62px, 7.2vw, 112px);
  font-weight: 500;
  line-height: .85;
  letter-spacing: -.052em;
}

.home-hero h1 em {
  color: #e0b03a;
  font-weight: 400;
}

.home-hero__content-inner > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255,250,240,.67);
  font-size: 15px;
  line-height: 1.85;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.home-hero__primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 225px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  background: #e1b23a;
  color: #211f1a;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.home-hero__primary:hover {
  background: #fffaf0;
  color: #211f1a;
  transform: translateY(-2px);
}

.home-hero__secondary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,250,240,.72);
  font-size: 12px;
  font-weight: 600;
}

.home-hero__secondary > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}

.home-hero__secondary:hover {
  color: #fffaf0;
}

.home-hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.home-hero__avatars {
  display: flex;
}

.home-hero__avatars span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-right: -7px;
  place-items: center;
  border: 2px solid #211f1a;
  border-radius: 50%;
  background: #f0e3c8;
  color: #28241e;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.home-hero__avatars span:nth-child(2) {
  background: #d9aa35;
}

.home-hero__trust p,
.home-hero__trust strong,
.home-hero__trust small {
  display: block;
  margin: 0;
}

.home-hero__trust strong {
  color: #fffaf0;
  font-size: 11px;
}

.home-hero__trust small {
  margin-top: 3px;
  color: rgba(255,250,240,.43);
  font-size: 9px;
  letter-spacing: .035em;
}

.home-hero__visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.home-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}

.home-hero:hover .home-hero__visual > img {
  transform: scale(1.025);
}

.home-hero__visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,14,.05) 45%, rgba(20,18,14,.72) 100%);
}

.home-hero__availability {
  position: absolute;
  top: 36px;
  right: 36px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(25,22,17,.58);
  color: #fff;
  backdrop-filter: blur(12px);
}

.home-hero__availability > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ed18b;
  box-shadow: 0 0 0 4px rgba(94,209,139,.15);
}

.home-hero__availability small,
.home-hero__availability strong {
  display: block;
}

.home-hero__availability small {
  color: rgba(255,255,255,.65);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-hero__availability strong {
  font-size: 10px;
}

.home-hero__quote {
  position: absolute;
  right: clamp(25px, 5vw, 74px);
  bottom: 62px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.home-hero__quote > span {
  height: 38px;
  color: #e1b23a;
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.home-hero__quote p {
  margin: 0;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.05;
}

.home-hero__image-index {
  position: absolute;
  bottom: 23px;
  left: 25px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-hero__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.15fr;
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.13);
  background: #211f1a;
}

.home-hero__rail > div,
.home-hero__rail > a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 20px clamp(18px, 3vw, 44px);
  border-right: 1px solid rgba(255,255,255,.12);
}

.home-hero__rail > div > span {
  color: #d9aa35;
  font-family: var(--font-display);
  font-size: 15px;
}

.home-hero__rail p,
.home-hero__rail strong,
.home-hero__rail small {
  display: block;
  margin: 0;
}

.home-hero__rail strong {
  color: #fffaf0;
  font-size: 11px;
}

.home-hero__rail small {
  margin-top: 3px;
  color: rgba(255,250,240,.42);
  font-size: 9px;
}

.home-hero__rail > a {
  border-right: 0;
  background: #dbaa31;
  color: #211f1a;
}

.home-hero__rail > a i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(33,31,26,.25);
  border-radius: 50%;
}

.home-hero__rail > a strong,
.home-hero__rail > a small {
  color: #211f1a;
}

/* Editorial service directory */
.services-editorial {
  position: relative;
  padding: clamp(90px, 10vw, 145px) 0;
  background: #fbf8f1;
}

.services-editorial__header {
  display: grid;
  grid-template-columns: .6fr 1.15fr .75fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  margin-bottom: 62px;
}

.services-editorial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #946400;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.services-editorial__eyebrow::before {
  content: "";
  width: 29px;
  height: 1px;
  background: currentColor;
}

.services-editorial__header > div > p {
  margin: 22px 0 0;
  color: #716858;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
}

.services-editorial__header h2 {
  margin: 0;
  color: #242019;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.045em;
}

.services-editorial__header h2 em {
  color: #a57208;
  font-weight: 400;
}

.services-editorial__header > p {
  margin: 0 0 5px;
  color: #706858;
  font-size: 13px;
  line-height: 1.8;
}

.services-editorial__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(205px, auto);
  border-top: 1px solid #d9cfbb;
  border-left: 1px solid #d9cfbb;
}

.services-editorial__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 25px;
  overflow: hidden;
  border-right: 1px solid #d9cfbb;
  border-bottom: 1px solid #d9cfbb;
  background: #fbf8f1;
  transition: color .28s ease, background .28s ease, transform .28s ease;
}

.services-editorial__item--featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: clamp(30px, 4vw, 50px);
  background: #25221d;
}

.services-editorial__feature-image {
  position: absolute;
  inset: 0 0 auto;
  height: 47%;
  margin: 0;
  overflow: hidden;
}

.services-editorial__feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,20,16,.04) 35%, #25221d 100%);
}

.services-editorial__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.services-editorial__item--featured:hover .services-editorial__feature-image img {
  transform: scale(1.035);
}

.services-editorial__item--featured .services-editorial__number,
.services-editorial__item--featured > div {
  position: relative;
  z-index: 1;
}

.services-editorial__item--featured > i {
  z-index: 1;
}

/* Override the legacy #our-services rule that forces every child to black. */
#our-services .services-editorial__item--featured h3,
#our-services .services-editorial__item--featured p {
  color: #fffaf0 !important;
}

#our-services .services-editorial__item--featured .services-editorial__number,
#our-services .services-editorial__item--featured > i {
  color: #e1b23a !important;
}

#our-services .services-editorial__item--featured:hover > i {
  color: #f3ca59 !important;
}

.services-editorial__number {
  color: #9d741c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.services-editorial__item > i {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #a97910;
  font-size: 36px;
  transition: transform .3s ease, color .3s ease;
}

.services-editorial__item h3 {
  max-width: 230px;
  margin: 55px 0 8px;
  color: #29251f;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 600;
  line-height: 1.05;
}

.services-editorial__item p {
  max-width: 270px;
  margin: 0;
  color: #756d5e;
  font-size: 10px;
  line-height: 1.65;
}

.services-editorial__item--featured > i {
  top: 42px;
  right: 42px;
  color: #dbaa31;
  font-size: 66px;
}

.services-editorial__item--featured h3 {
  max-width: 460px;
  margin-top: 160px;
  color: #fffaf0;
  font-size: clamp(38px, 4vw, 58px);
}

.services-editorial__item--featured p {
  max-width: 480px;
  color: rgba(255,250,240,.78) !important;
  font-size: 12px;
}

.services-editorial__item:hover:not(.services-editorial__item--featured) {
  z-index: 1;
  background: #eee3cc;
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(39,31,19,.1);
}

.services-editorial__item:hover > i {
  color: #29251f;
  transform: rotate(-5deg) scale(1.08);
}

.services-editorial__item--featured:hover > i {
  color: #fffaf0;
}

.services-editorial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
}

.services-editorial__footer p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #665e50;
  font-size: 11px;
}

.services-editorial__footer p > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: #e8b829;
  color: #242019;
  font-size: 10px;
}

.services-editorial__footer > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid #29251f;
  color: #29251f;
  font-size: 12px;
  font-weight: 700;
}

.services-editorial__footer > a:hover {
  color: #946400;
  border-color: #946400;
}

@media (max-width: 1199px) {
  .home-hero__grid {
    min-height: 680px;
  }

  .home-hero__content {
    padding-inline: 45px;
  }

  .services-editorial__header {
    grid-template-columns: .7fr 1.3fr;
  }

  .services-editorial__header > p {
    grid-column: 2;
  }
}

@media (max-width: 991px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    min-height: 660px;
  }

  .home-hero__content-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .home-hero__visual {
    min-height: 620px;
  }

  .home-hero__rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-editorial__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-editorial__item--featured {
    grid-row: span 1;
    min-height: 390px;
  }

  .services-editorial__item--featured h3 {
    margin-top: 120px;
  }
}

@media (max-width: 767px) {
  .home-hero__content {
    min-height: auto;
    padding: 88px 24px 72px;
  }

  .home-hero h1 {
    font-size: clamp(55px, 16vw, 78px);
  }

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

  .home-hero__primary {
    width: 100%;
  }

  .home-hero__visual {
    min-height: 520px;
  }

  .home-hero__availability {
    top: 22px;
    right: 18px;
  }

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

  .home-hero__rail > div,
  .home-hero__rail > a {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .services-editorial__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-editorial__header > p {
    grid-column: auto;
  }

  .services-editorial__grid {
    grid-template-columns: 1fr;
  }

  .services-editorial__item--featured {
    grid-column: auto;
    min-height: 380px;
  }

  .services-editorial__item {
    min-height: 210px;
  }

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

.welcome-editorial {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0 70px;
  background: #eee3cc;
  color: #242019;
}

.welcome-editorial__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 92px;
  background: #b78a25;
}

.welcome-editorial__header {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  padding-bottom: clamp(52px, 7vw, 88px);
  border-bottom: 1px solid rgba(58, 48, 31, .22);
}

.welcome-editorial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #936300;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.welcome-editorial__eyebrow::before {
  content: "";
  width: 31px;
  height: 1px;
  background: currentColor;
}

.welcome-editorial__index {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 55px 0 0;
  color: #766d5d;
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
}

.welcome-editorial__index strong {
  color: #b88a24;
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .12em;
}

.welcome-editorial__header h2 {
  max-width: 870px;
  margin: 0;
  color: #242019;
  font-family: var(--font-display);
  font-size: clamp(54px, 7.2vw, 102px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.048em;
}

.welcome-editorial__header h2 em {
  color: #a27209;
  font-weight: 400;
}

.welcome-editorial__body {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  padding-top: clamp(50px, 7vw, 84px);
}

.welcome-editorial__promise {
  position: relative;
  min-height: 350px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border-radius: 2px 42px 2px 2px;
  background: #25221d;
  box-shadow: 0 28px 70px rgba(43, 34, 20, .2);
}

.welcome-editorial__promise::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(225, 177, 50, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(225, 177, 50, .04), 0 0 0 70px rgba(225, 177, 50, .025);
}

.welcome-editorial__quote-mark {
  display: block;
  height: 68px;
  color: #e0b03a;
  font-family: Georgia, serif;
  font-size: 94px;
  line-height: 1;
}

.welcome-editorial__promise > p {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 28px 0 58px;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.05;
}

.welcome-editorial__signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.welcome-editorial__signature > span {
  width: 28px;
  height: 1px;
  background: #e0b03a;
}

.welcome-editorial__signature small {
  color: rgba(255,250,240,.52);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.welcome-editorial__content {
  padding-top: 6px;
}

.welcome-editorial__content > p {
  max-width: 800px;
  margin: 0 0 20px;
  color: #625a4c;
  font-size: 14px;
  line-height: 1.9;
}

.welcome-editorial__content .welcome-editorial__lead {
  margin-bottom: 22px;
  color: #2d2923;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
}

.welcome-editorial__outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(58, 48, 31, .22);
  border-left: 1px solid rgba(58, 48, 31, .22);
}

.welcome-editorial__outcomes article {
  min-height: 164px;
  padding: 25px 28px;
  border-right: 1px solid rgba(58, 48, 31, .22);
  border-bottom: 1px solid rgba(58, 48, 31, .22);
  transition: background .25s ease, transform .25s ease;
}

.welcome-editorial__outcomes article:hover {
  background: rgba(255,255,255,.32);
  transform: translateY(-3px);
}

.welcome-editorial__outcomes article > span {
  color: #a9760b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.welcome-editorial__outcomes h3 {
  margin: 21px 0 7px;
  color: #29251f;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
}

.welcome-editorial__outcomes p {
  max-width: 250px;
  margin: 0;
  color: #746b5b;
  font-size: 11px;
  line-height: 1.65;
}

.welcome-editorial__actions {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 36px;
}

.welcome-editorial__text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid #2c2821;
  color: #2c2821;
  font-size: 12px;
  font-weight: 700;
}

.welcome-editorial__text-link i {
  font-size: 10px;
  transition: transform .2s ease;
}

.welcome-editorial__text-link:hover {
  color: #936300;
  border-color: #936300;
}

.welcome-editorial__text-link:hover i {
  transform: translateX(4px);
}

.welcome-editorial__circle-link {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #dcae34;
  color: #242019;
  transition: background .2s ease, transform .2s ease;
}

.welcome-editorial__circle-link:hover {
  color: #fff;
  background: #242019;
  transform: translateY(3px);
}

.welcome-editorial__actions > span {
  color: #736a5a;
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
}

.welcome-editorial__word {
  margin: 70px 0 -5vw;
  overflow: hidden;
  color: rgba(55, 47, 34, .045);
  font-family: var(--font-display);
  font-size: clamp(115px, 18vw, 265px);
  font-weight: 600;
  line-height: .65;
  letter-spacing: -.06em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

/* Founder profile */
.restorer-editorial {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 11vw, 155px) 0;
  background: #fbf8f1;
  color: #29251f;
}

.restorer-editorial::after {
  content: "R";
  position: absolute;
  right: -30px;
  bottom: -155px;
  color: rgba(46, 39, 28, .035);
  font-family: var(--font-display);
  font-size: 520px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.restorer-editorial__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 90px);
  padding-bottom: clamp(45px, 5vw, 68px);
  border-bottom: 1px solid #d9cfbb;
}

.restorer-editorial__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #986700;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.restorer-editorial__eyebrow::before {
  content: "";
  width: 31px;
  height: 1px;
  background: currentColor;
}

.restorer-editorial__header small {
  display: block;
  margin-top: 26px;
  color: #706858;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
}

.restorer-editorial__header h2 {
  max-width: 920px;
  margin: 0;
  color: #28241e;
  font-family: var(--font-display);
  font-size: clamp(53px, 6.5vw, 90px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.047em;
}

.restorer-editorial__header h2 em {
  color: #a57208;
  font-weight: 400;
}

.restorer-editorial__profile {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: center;
}

.restorer-editorial__portrait {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 100px 2px 2px 2px;
  background: #28241e;
}

.restorer-editorial__portrait > img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}

.restorer-editorial__portrait:hover > img {
  transform: scale(1.025);
}

.restorer-editorial__portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24,21,17,.78) 100%);
}

.restorer-editorial__portrait > p {
  position: absolute;
  right: 35px;
  bottom: 38px;
  left: 35px;
  margin: 0;
}

.restorer-editorial__portrait > p span,
.restorer-editorial__portrait > p strong {
  display: block;
}

.restorer-editorial__portrait > p span {
  margin-bottom: 7px;
  color: #e1b23a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.restorer-editorial__portrait > p strong {
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 500;
}

.restorer-editorial__seal {
  position: absolute;
  top: 31px;
  right: 30px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(31,28,23,.52);
  color: #fffaf0;
  text-align: center;
  backdrop-filter: blur(10px);
}

.restorer-editorial__seal span {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.restorer-editorial__seal i {
  margin: 5px 0;
  color: #e1b23a;
  font-size: 14px;
}

.restorer-editorial__content blockquote {
  position: relative;
  margin: 0 0 34px;
  padding: 0 0 34px 55px;
  border-bottom: 1px solid #d9cfbb;
}

.restorer-editorial__content blockquote > span {
  position: absolute;
  top: -12px;
  left: 0;
  color: #d9aa31;
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1;
}

.restorer-editorial__content blockquote p {
  margin: 0;
  color: #2d2923;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.2;
}

.restorer-editorial__content > p {
  margin: 0 0 18px;
  color: #655d50;
  font-size: 16px;
  line-height: 1.8;
}

.restorer-editorial__content .restorer-editorial__intro {
  color: #2d2923;
  font-size: 18px;
  font-weight: 600;
}

.restorer-editorial__credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 35px;
  border-top: 1px solid #d9cfbb;
  border-left: 1px solid #d9cfbb;
}

.restorer-editorial__credentials article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  min-height: 126px;
  padding: 23px;
  border-right: 1px solid #d9cfbb;
  border-bottom: 1px solid #d9cfbb;
  transition: background .2s ease;
}

.restorer-editorial__credentials article:hover {
  background: #f1e6d0;
}

.restorer-editorial__credentials article > span {
  color: #a67409;
  font-family: var(--font-display);
  font-size: 17px;
}

.restorer-editorial__credentials strong,
.restorer-editorial__credentials small {
  display: block;
}

.restorer-editorial__credentials strong {
  margin-bottom: 6px;
  color: #302b24;
  font-size: 14px;
}

.restorer-editorial__credentials small {
  color: #766d5e;
  font-size: 13px;
  line-height: 1.5;
}

.restorer-editorial__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.restorer-editorial__focus span {
  padding: 8px 13px;
  border: 1px solid #cfc3aa;
  border-radius: 999px;
  color: #5f5749;
  font-size: 13px;
}

.restorer-editorial__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.restorer-editorial__primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 190px;
  min-height: 55px;
  padding: 0 21px;
  border-radius: 999px;
  background: #28241e;
  color: #fffaf0;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.restorer-editorial__primary:hover {
  background: #e1b23a;
  color: #28241e;
  transform: translateY(-2px);
}

.restorer-editorial__secondary {
  padding-bottom: 5px;
  border-bottom: 1px solid #3b352d;
  color: #3b352d;
  font-size: 14px;
  font-weight: 700;
}

.restorer-editorial__secondary:hover {
  color: #996800;
  border-color: #996800;
}

@media (max-width: 1199px) {
  .restorer-editorial__profile {
    gap: 55px;
  }

  .restorer-editorial__portrait,
  .restorer-editorial__portrait > img {
    min-height: 670px;
    height: 670px;
  }
}

@media (max-width: 991px) {
  .restorer-editorial__header,
  .restorer-editorial__profile {
    grid-template-columns: 1fr;
  }

  .restorer-editorial__portrait {
    max-width: 680px;
  }
}

@media (max-width: 575px) {
  .restorer-editorial__header h2 {
    font-size: 48px;
  }

  .restorer-editorial__portrait,
  .restorer-editorial__portrait > img {
    min-height: 540px;
    height: 540px;
  }

  .restorer-editorial__portrait {
    border-radius: 55px 2px 2px 2px;
  }

  .restorer-editorial__seal {
    width: 92px;
    height: 92px;
  }

  .restorer-editorial__content blockquote {
    padding-left: 42px;
  }

  .restorer-editorial__credentials {
    grid-template-columns: 1fr;
  }

  .restorer-editorial__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .restorer-editorial__primary {
    width: 100%;
  }

  .restorer-editorial__secondary {
    align-self: flex-start;
  }
}

@media (max-width: 991px) {
  .welcome-editorial__header,
  .welcome-editorial__body {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .welcome-editorial__index {
    margin-top: 24px;
  }

  .welcome-editorial__promise {
    min-height: 290px;
  }
}

@media (max-width: 575px) {
  .welcome-editorial {
    padding-top: 92px;
  }

  .welcome-editorial__line {
    left: 26px;
    height: 56px;
  }

  .welcome-editorial__header h2 {
    font-size: 49px;
  }

  .welcome-editorial__outcomes {
    grid-template-columns: 1fr;
  }

  .welcome-editorial__outcomes article {
    min-height: 140px;
  }

  .welcome-editorial__actions {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .welcome-editorial__text-link {
    width: 100%;
    margin-bottom: 10px;
  }
}

.homepage-faq {
  position: relative;
  padding: 120px 0 !important;
  overflow-x: clip;
  overflow-y: visible;
  background: #fbf8f1 !important;
}

.homepage-faq::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(188, 142, 28, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(188, 142, 28, .035), 0 0 0 110px rgba(188, 142, 28, .025);
  pointer-events: none;
}

.homepage-faq__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.homepage-faq__intro {
  position: sticky;
  top: 120px;
}

.homepage-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #a66f00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.homepage-faq__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.homepage-faq__intro h2 {
  max-width: 500px;
  margin: 24px 0 22px;
  color: #242019 !important;
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
}

.homepage-faq__intro > p {
  max-width: 470px;
  margin: 0;
  color: #6f675a !important;
  font-size: 15px;
  line-height: 1.85;
}

.homepage-faq__support-card {
  display: grid;
  grid-template-columns: 48px 1fr 42px;
  gap: 14px;
  align-items: center;
  max-width: 470px;
  margin-top: 42px;
  padding: 18px;
  border: 1px solid #e4d7bb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(44, 35, 21, .08);
}

.homepage-faq__support-icon,
.homepage-faq__support-card > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
}

.homepage-faq__support-icon {
  background: #f5ead1;
  color: #9c6900;
}

.homepage-faq__support-card small,
.homepage-faq__support-card strong {
  display: block;
}

.homepage-faq__support-card small {
  color: #857b6b;
  font-size: 11px;
}

.homepage-faq__support-card strong {
  margin-top: 2px;
  color: #242019;
  font-family: var(--font-display);
  font-size: 20px;
}

.homepage-faq__support-card > a {
  background: #1f9d55;
  color: #fff;
  font-size: 19px;
  transition: transform .2s ease, background .2s ease;
}

.homepage-faq__support-card > a:hover {
  color: #fff;
  background: #167c42;
  transform: translateY(-2px);
}

.homepage-faq .accrodion-grp {
  counter-reset: none;
  border-top: 1px solid #d8cdb8;
}

.homepage-faq .faq-one__faq .accrodion {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #d8cdb8 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.homepage-faq .accrodion-title {
  display: grid;
  grid-template-columns: 42px 1fr 38px;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 25px 4px !important;
  cursor: pointer;
}

.homepage-faq__number {
  color: #b98a21;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.homepage-faq .accrodion-title h4 {
  margin: 0 !important;
  padding: 0 !important;
  color: #29251f !important;
  font-family: var(--font-display) !important;
  font-size: clamp(23px, 2.2vw, 30px) !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
}

.homepage-faq .accrodion-title h4::before,
.homepage-faq .accrodion-title h4::after {
  display: none !important;
}

.homepage-faq__toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid #cabd9f;
  border-radius: 50%;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.homepage-faq__toggle::before,
.homepage-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #29251f;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, background .25s ease;
}

.homepage-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.homepage-faq .accrodion.active .homepage-faq__toggle {
  border-color: #29251f;
  background: #29251f;
  transform: rotate(180deg);
}

.homepage-faq .accrodion.active .homepage-faq__toggle::before,
.homepage-faq .accrodion.active .homepage-faq__toggle::after {
  background: #fff;
}

.homepage-faq .accrodion.active .homepage-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.homepage-faq .accrodion-content {
  width: 100%;
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 0 60px 30px 64px !important;
  border: 0 !important;
  background: transparent !important;
}

.homepage-faq .accrodion-content .inner {
  padding: 0 !important;
}

.homepage-faq .accrodion-content p {
  max-width: 620px;
  margin: 0 !important;
  color: #6f675a !important;
  font-size: 14px !important;
  line-height: 1.85 !important;
}

/* Editorial footer */
.footer-editorial {
  position: relative;
  overflow: hidden;
  padding: 0 0 28px;
  background: #1d1b17;
  color: #f9f4e9;
}

.footer-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(rgba(255,255,255,.18) .65px, transparent .65px);
  background-size: 10px 10px;
  pointer-events: none;
}

.footer-editorial .container {
  position: relative;
  z-index: 1;
}

.footer-editorial__cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 48px;
  align-items: end;
  padding: 76px 0 66px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.footer-editorial__cta-copy > span,
.footer-editorial__nav > span,
.footer-editorial__contact > span {
  display: block;
  color: #d6a92f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-editorial__cta h2 {
  max-width: 780px;
  margin: 16px 0 0;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.035em;
}

.footer-editorial__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 225px;
}

.footer-editorial__primary-btn,
.footer-editorial__whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.footer-editorial__primary-btn {
  background: #e8b829;
  color: #1d1b17;
}

.footer-editorial__whatsapp-btn {
  gap: 11px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  color: #fffaf0;
}

.footer-editorial__primary-btn:hover,
.footer-editorial__whatsapp-btn:hover {
  color: #1d1b17;
  background: #fffaf0;
  transform: translateY(-2px);
}

.footer-editorial__main {
  display: grid;
  grid-template-columns: 1.45fr .7fr .8fr 1.35fr;
  gap: clamp(32px, 5vw, 72px);
  padding: 64px 0 55px;
}

.footer-editorial__logo {
  display: inline-block;
  margin-bottom: 23px;
}

.footer-editorial__logo img {
  width: auto;
  max-width: 168px;
  max-height: 68px;
}

.footer-editorial__brand > p {
  max-width: 310px;
  margin: 0;
  color: rgba(255,250,240,.62);
  font-size: 13px;
  line-height: 1.8;
}

.footer-editorial__availability {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 27px;
}

.footer-editorial__availability > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #56c482;
  box-shadow: 0 0 0 5px rgba(86,196,130,.12);
}

.footer-editorial__availability p,
.footer-editorial__availability strong,
.footer-editorial__availability small {
  display: block;
  margin: 0;
}

.footer-editorial__availability strong {
  color: #fffaf0;
  font-size: 11px;
}

.footer-editorial__availability small {
  margin-top: 1px;
  color: rgba(255,250,240,.45);
  font-size: 10px;
}

.footer-editorial__nav,
.footer-editorial__contact {
  padding-top: 8px;
}

.footer-editorial__nav > span,
.footer-editorial__contact > span {
  margin-bottom: 25px;
}

.footer-editorial__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  color: rgba(255,250,240,.68);
  font-size: 13px;
}

.footer-editorial__nav a i {
  opacity: 0;
  font-size: 8px;
  transform: rotate(45deg) translate(-3px, 3px);
  transition: opacity .2s ease, transform .2s ease;
}

.footer-editorial__nav a:hover {
  color: #fffaf0;
}

.footer-editorial__nav a:hover i {
  opacity: 1;
  transform: rotate(45deg) translate(0, 0);
}

.footer-editorial__contact-link,
.footer-editorial__hours {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fffaf0;
}

.footer-editorial__contact-link > i,
.footer-editorial__hours > i {
  width: 18px;
  color: #d6a92f;
  text-align: center;
}

.footer-editorial__contact-link small,
.footer-editorial__contact-link strong,
.footer-editorial__hours small,
.footer-editorial__hours strong {
  display: block;
}

.footer-editorial__contact-link small,
.footer-editorial__hours small {
  margin-bottom: 2px;
  color: rgba(255,250,240,.43);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-editorial__contact-link strong,
.footer-editorial__hours strong {
  color: #fffaf0;
  font-size: 11px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.footer-editorial__wordmark {
  margin: 0 0 -2.2vw;
  overflow: hidden;
  color: rgba(255,255,255,.045);
  font-family: var(--font-display);
  font-size: clamp(120px, 21vw, 310px);
  font-weight: 600;
  line-height: .67;
  letter-spacing: -.075em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.footer-editorial__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-editorial__bottom p,
.footer-editorial__bottom span,
.footer-editorial__bottom a {
  margin: 0;
  color: rgba(255,250,240,.42);
  font-size: 10px;
  letter-spacing: .05em;
}

.footer-editorial__bottom > div {
  display: flex;
  gap: 24px;
}

.footer-editorial__bottom a:hover {
  color: #fffaf0;
}

@media (max-width: 1199px) {
  .homepage-faq__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .homepage-faq__intro {
    position: static;
  }
}

@media (max-width: 991px) {

  .footer-editorial__cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-editorial__cta-actions {
    flex-direction: row;
  }

  .footer-editorial__cta-actions a {
    min-width: 220px;
  }

  .footer-editorial__main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-editorial__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .homepage-faq {
    padding: 82px 0 !important;
  }

  .homepage-faq .accrodion-title {
    grid-template-columns: 30px 1fr 34px;
    gap: 10px;
    min-height: 96px;
  }

  .homepage-faq .accrodion-content {
    padding: 0 44px 26px 40px !important;
  }

  .footer-editorial__cta {
    padding: 62px 0 50px;
  }

  .footer-editorial__cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-editorial__brand,
  .footer-editorial__contact {
    grid-column: 1 / -1;
  }

  .footer-editorial__wordmark {
    margin-bottom: -1vw;
  }
}

@media (max-width: 480px) {
  .homepage-faq__intro h2 {
    font-size: 42px;
  }

  .homepage-faq__support-card {
    grid-template-columns: 42px 1fr 38px;
    padding: 14px;
  }

  .homepage-faq .accrodion-title h4 {
    font-size: 21px !important;
  }

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

  .footer-editorial__brand,
  .footer-editorial__contact {
    grid-column: auto;
  }

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