:root {
  --bg: #F8F4EF;
  --primary: #8B5E3C;
  --dark: #2E241D;
  --accent: #D4B08A;
  --white: #FFFFFF;
  --muted: rgba(46, 36, 29, .68);
  --line: rgba(139, 94, 60, .16);
  --shadow: 0 26px 70px rgba(46, 36, 29, .09);
  --shadow-soft: 0 18px 45px rgba(46, 36, 29, .07);
  --font-family-Rufina: "Rufina", "Playfair Display", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.78;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(212, 176, 138, .12), transparent 24%),
    radial-gradient(circle at 85% 42%, rgba(139, 94, 60, .08), transparent 26%);
  pointer-events: none;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.section-space {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 24px clamp(24px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(46, 36, 29, .5), rgba(46, 36, 29, 0));
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}

.site-header.is-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(46, 36, 29, .94);
  box-shadow: 0 14px 40px rgba(22, 13, 8, .18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  min-width: max-content;
  line-height: 1;
}

.brand img {
  width: auto;
  height: 64px;
  object-fit: contain;
}

.brand strong {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand strong::after {
  content: "*";
  position: absolute;
  top: -8px;
  right: -18px;
  color: var(--accent);
  font-family: "Playfair Display", serif;
}

.brand span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 46px);
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, .88);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.is-active::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--primary);
  
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}

.nav-cta {
  min-height: 44px;
  background: var(--white);
  color: var(--primary);
  border-color: rgba(255, 255, 255, .4);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .04em;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(139, 94, 60, .24);
}

.rolling-btn {
  --button-height: 54px;

  position: relative;
  display: inline-block;
  min-width: 245px;
  height: var(--button-height);
  min-height: var(--button-height);
  padding: 0;
  overflow: hidden;
  background: #a56c4e;
  border: 1px solid #a56c4e;
  color: #fff;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.rolling-btn__track {
  display: block;
  height: calc(var(--button-height) * 2);
  transform: translateY(0);
  transition: transform .45s cubic-bezier(.76, 0, .24, 1);
}

.rolling-btn__content {
  width: 100%;
  height: var(--button-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rolling-btn__icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #a56c4e;
  background: #fff;
  border-radius: 50%;
  font-size: 9px;
  line-height: 1;
  transition: transform .45s cubic-bezier(.76, 0, .24, 1);
}

.rolling-btn__icon i,
.appointment-btn__icon i {
  display: inline-block;
  line-height: 1;
}

.rolling-btn:hover,
.rolling-btn:focus-visible {
  color: #fff;
  transform: none;
  box-shadow: none;
  outline: none;
}

.rolling-btn:hover .rolling-btn__track,
.rolling-btn:focus-visible .rolling-btn__track {
  transform: translateY(calc(var(--button-height) * -1));
}

.rolling-btn:hover .rolling-btn__icon,
.rolling-btn:focus-visible .rolling-btn__icon {
  transform: rotate(360deg);
}

.appointment-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 48px;
  padding: 0 28px;
  border: 1px solid #a66d50;
  border-radius: 0;
  background: transparent;
  color: #a66d50;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: color .22s ease, border-color .22s ease, transform .25s ease;
}

.appointment-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3%;
  top: -15%;
  width: 106%;
  height: 130%;
  background: #a66d50;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 68% 84%, 37% 78%, 0 84%);
  transform: translateY(-100%);
  transition: transform .42s cubic-bezier(.65, 0, .35, 1);
}

.appointment-btn__content {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  transition: color .22s ease;
}

.appointment-btn__icon {
  font-size: 11px;
  line-height: 1;
}

.service-actions .appointment-btn__icon {
  font-size: 14px;
}

.appointment-btn:hover::before,
.appointment-btn:focus-visible::before {
  transform: translateY(0);
}

.appointment-btn:hover,
.appointment-btn:focus-visible {
  color: #fff;
  outline: none;
}

.appointment-btn.rolling-btn {
  display: inline-block;
  padding: 0;
}

.appointment-btn.rolling-btn::before {
  display: none;
}

.appointment-btn.rolling-btn .rolling-btn__content {
  color: #fff;
}

.appointment-btn.nav-cta {
  min-height: 0;
  min-width: 230px;
  height: 56px;
  background: rgba(255, 255, 255, .96);
  color: #a66d50;
  border-color: rgba(255, 255, 255, .96);
  font-size: 15px;
}

.appointment-btn.nav-cta:hover,
.appointment-btn.nav-cta:focus-visible {
  color: #fff;
  border-color: #a66d50;
}

.appointment-btn--light {
  border-color: rgba(255, 255, 255, .78);
  color: #fff;
}

.appointment-btn--light::before {
  background: #a66d50;
}

.appointment-btn--light:hover,
.appointment-btn--light:focus-visible {
  border-color: #a66d50;
  color: #fff;
}

.btn-light {
  background: rgba(139, 94, 60, .08);
  color: var(--primary);
  border-color: rgba(139, 94, 60, .16);
}

.btn-ghost {
  min-width: 258px;
  min-height: 58px;
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .9);
  border-radius: 0;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  gap: 10px;
}

.btn-ghost::before {
  content: none;
}

.btn-ghost i {
  font-size: 15px;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #a66d50;
  border-color: #a66d50;
  color: #fff;
  box-shadow: none;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-hero {
  min-height: 42px;
  padding: 0 22px;
  background: rgba(139, 94, 60, .78);
  border-color: rgba(255, 255, 255, .32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  top: 92px;
  left: 24px;
  right: 24px;
  z-index: 29;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--primary);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  --hero-image: url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=2400&q=90");
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(var(--parallax, 0px)) scale(1.08);
  transition: transform .08s linear, filter .45s ease;
}

.hero.is-hovering .hero-bg {
  filter: saturate(1.04) contrast(1.04) brightness(.92);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 52%, rgba(212, 176, 138, .12), transparent 28%),
    linear-gradient(180deg, rgba(22, 14, 10, .6), rgba(22, 14, 10, .28) 38%, rgba(22, 14, 10, .74)),
    linear-gradient(90deg, rgba(22, 14, 10, .58), rgba(22, 14, 10, .12), rgba(22, 14, 10, .58));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1640px, calc(100% - 40px));
  padding-top: 60px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .95);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .11em;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  background: url("images/leaf-left-white.svg") center/contain no-repeat;
  vertical-align: middle;
}

.hero-kicker::after {
  background-image: url("images/leaf-right-white.svg");
}

.subtitle {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  /* font-family: "Playfair Display", Georgia, serif; */
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  /* text-transform: uppercase; */
  text-shadow: 0 18px 44px rgba(0, 0, 0, .34);
}

.hero-title {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  column-gap: clamp(54px, 6.6vw, 128px);
  row-gap: 22px;
  margin: 0 auto;
  max-width: 1560px;
  font-family: "Italiana", "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 4.65vw, 86px);
  font-weight: 400;
  line-height: 1.05;
}

.hero-word {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 0;
  color: rgba(255, 255, 255, .46);
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  transition: color .35s ease, opacity .35s ease, text-shadow .35s ease;
}

.hero-word::before {
  display: none;
}

.hero-word:hover,
.hero-word:focus-visible,
.hero-word.is-active {
  color: rgba(255, 255, 255, .96);
  text-shadow: 0 18px 42px rgba(0, 0, 0, .46);
}

.hero-word:hover::before,
.hero-word:focus-visible::before,
.hero-word.is-active::before {
  display: none;
}

.hero-title:hover .hero-word:not(:hover):not(.is-active) {
  opacity: .68;
}

h2 {
  color: var(--dark);
  font-size: 48px;
}

h3 {
  color: var(--primary);
  font-size: 30px;
}

.hero .btn {
  margin-top: 0;
}

.hero-description {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 54px;
}

.section-intro {
  max-width: 750px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-intro > p:not(.subtitle) {
  margin: 18px auto 0;
  color: var(--muted);
  max-width: 680px;
}

.categories {
  position: relative;
  padding-bottom: 62px;
  overflow: hidden;
}

.categories::before,
.categories::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 160px;
  height: 260px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .65;
  pointer-events: none;
}

.categories::before {
  left: -38px;
  bottom: 125px;
  background-image: url("images/leaf-1.svg");
}

.categories::after {
  right: -18px;
  top: 155px;
  background-image: url("images/leaf-2.svg");
}

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

.categories .subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgb(162, 98, 71);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
}

.categories .subtitle::before,
.categories .subtitle::after,
.services .subtitle::before,
.services .subtitle::after,
.testimonials .subtitle::before,
.testimonials .subtitle::after,
.blog-heading .subtitle::before,
.blog-heading .subtitle::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  margin: 0;
  background: url("images/leaf-left.svg") center/contain no-repeat;
  vertical-align: middle;
}

.categories .subtitle::after,
.services .subtitle::after,
.testimonials .subtitle::after,
.blog-heading .subtitle::after {
  background-image: url("images/leaf-right.svg");
}

.categories .section-intro {
  max-width: 820px;
  margin-bottom: 66px;
}

.categories .section-intro h2 {
  color: #000;
  font-family: "Rufina", Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.12;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  max-width: 1040px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  width: 100%;
  aspect-ratio: 220 / 325;
  min-height: 325px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}

.category-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.category-card img {
  height: 100%;
  min-height: 325px;
  transition: transform .7s ease;
}

.category-card:hover img,
.service-card:hover img,
.promo-panel:hover,
.about-media:hover img {
  transform: scale(1.06);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(46, 36, 29, .82));
}

.category-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 38px;
  z-index: 1;
  text-align: center;
}

.category-card h3 {
  color: var(--white);
  font-family: "Rufina", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.12;
}

.category-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  line-height: 1.45;
}

.stats {
  padding: 10px 0 10px;
}

.stats-grid,
.brand-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  min-height: 165px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stat-card:last-child,
.brand-stats-grid article:last-child {
  border-right: 0;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.stat-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.stat-card strong,
.brand-stats-grid strong {
  color: var(--dark);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.stat-card p,
.brand-stats-grid span {
  margin: 8px 0 0;
  color: #000;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
}

.stats-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 50px;
}

.stats-divider span {
  display: block;
  height: 1px;
  background: rgba(162, 98, 71, .2);
}

.stats-divider img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.services {
  padding-top: 110px;
}

.services .subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgb(162, 98, 71);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .18em;
}

.services .section-intro {
  max-width: 820px;
  margin-bottom: 82px;
}

.services .section-intro h2 {
  color: #000;
  font-family: "Rufina", Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

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

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, .96fr);
  gap: 74px;
  align-items: center;
  min-height: 450px;
  padding: 66px 70px;
  border: 1px solid rgba(46, 36, 29, .18);
  border-radius: 0;
  background: transparent;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.service-card:hover {
  background: #d4b08a6b;
  border-color: rgba(46, 36, 29, .08);
}

.service-card.reverse {
  grid-template-columns: minmax(520px, .96fr) minmax(0, 1fr);
}

.service-card.reverse .service-copy {
  order: 2;
}

.service-card.reverse .service-image {
  order: 1;
}

.service-copy {
  padding: 0;
}

.service-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.service-title img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.service-title h3 {
  color: rgb(162, 98, 71);
  font-family: "Rufina", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.08;
}

.service-price {
  min-height: 112px;
  padding-left: 30px;
  border-left: 1px solid rgba(46, 36, 29, .18);
  color: var(--dark);
}

.service-price span,
.service-price strong {
  display: block;
}

.service-price span {
  color: var(--dark);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.45;
}

.service-price strong {
  margin-top: 4px;
  color: rgb(162, 98, 71);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.service-benefit {
  position: relative;
  margin: 0 0 14px;
  padding-left: 30px;
  color: var(--dark);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.service-benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 14px;
  height: 14px;
  border: 4px solid rgb(162, 98, 71);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-includes {
  margin: 0 0 20px;
  color: var(--dark);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.service-copy > p:not(.service-benefit):not(.service-includes) {
  margin: 0;
  color: var(--dark);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.services-1{
  padding-top: 48px;
}

.service-image {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 999px;
}

.reverse .service-image {
  border-radius: 999px;
}

.service-image img {
  height: 100%;
  min-height: 330px;
  transition: transform .7s ease;
}

.promo {
  padding: 72px 0 120px;
}

.promo-panel {
  /* min-height: 640px; */
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 76px;
  /* border-radius: 10px; */
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .28) 54%, rgba(0, 0, 0, .18)),
    url("images/newbaner-06.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  transition: transform .7s ease;
}

.promo-panel > div {
  max-width: 660px;
}

.promo-panel h2,
.about h2 {
  color: var(--white);
}

.promo-panel h2 {
  font-family: "Rufina", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.12;
}

.promo-panel p:not(.subtitle),
.about-copy p {
  color: rgba(255, 255, 255, .78);
}

.promo-panel p {
  margin: 24px 0 0;
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.promo-panel p strong {
  color: var(--white);
  font-weight: 800;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 32px;
}

.promo-actions .btn {
  /* min-width: 300px;
  min-height: 64px; */
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 400;
}

.promo-actions .appointment-btn {
  min-width: 300px;
  height: 64px;
  font-size: 16px;
  letter-spacing: .08em;
}

.promo-actions .btn-ghost {
  background: rgba(255, 255, 255, .02);
  border-color: rgba(255, 255, 255, .72);
}

.promo-actions .btn-ghost:hover,
.promo-actions .btn-ghost:focus-visible {
  background: #a66d50;
  border-color: #a66d50;
}

.about {
  background: #A26247;
  color: var(--white);
  overflow: hidden;
}

.about.section-space {
  padding: 74px 0 88px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(520px, 560px);
  justify-content: center;
  gap: 76px;
  align-items: start;
}

.about-heading {
  max-width: 910px;
  margin: 0 auto 62px;
  text-align: center;
}

.about-heading .subtitle {
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
}

.about-heading .subtitle::before,
.about-heading .subtitle::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  margin: 0 8px;
  background: url("images/leaf-left-white.svg") center/contain no-repeat;
  vertical-align: middle;
}

.about-heading .subtitle::after {
  background-image: url("images/leaf-right-white.svg");
}

.about-heading h2 {
  color: var(--white);
  font-family: "Rufina", Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.16;
}

.about-copy {
  padding-top: 22px;
}

.about-copy p {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin: 34px 0 100px;
}

.about-actions .btn {
  min-width: 206px;
  min-height: 52px;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  font-weight: 600;
}

.booking-request {
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking-request span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, .68);
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  font-size: 24px;
}

.booking-request p {
  margin: 0;
  font-size: 17px;
  line-height: 1.42;
}

.about-small-media {
  display: grid;
  grid-template-columns: 310px 210px;
  gap: 34px;
  align-items: end;
}

.about-small-media img {
  height: 240px;
  border-radius: 50% 50% 0 0;
  transition: transform .7s ease;
}

.about-small-media:hover img,
.about-media:hover > img {
  transform: translateY(-12px) scale(1.035);
}

.about-media {
  position: relative;
  overflow: visible;
  margin-top: 18px;
}

.about-media > img {
  height: 562px;
  width: 560px;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  transition: transform .7s ease;
}

.experience-badge {
  position: static;
  display: grid;
  gap: 9px;
  color: var(--white);
  text-align: left;
  padding-bottom: 10px;
}

.experience-badge strong {
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge span {
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.experience-badge .badge-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  border-radius: 4px;
}

.experience-badge .badge-icon::before,
.experience-badge .badge-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 2px;
  background: var(--white);
}

.experience-badge .badge-icon::before {
  top: 8px;
}

.experience-badge .badge-icon::after {
  top: 15px;
}

.studio-link {
  position: absolute;
  right: 18px;
  bottom: -37px;
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .8);
}

.studio-link::after {
  content: " ↗";
}

.rotating-badge {
  position: absolute;
  left: -68px;
  top: 47%;
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #A26247;
  box-shadow: 0 18px 38px rgba(46, 36, 29, .14);
}

.badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateBadge 14s linear infinite;
}

.badge-ring text {
  fill: #A26247;
  font-family: "Rufina", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.rotating-badge i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #F8F4EF;
  color: #A26247;
  font-style: normal;
  font-size: 26px;
}

.rotating-badge i::before,
.rotating-badge i::after {
  content: "";
  position: absolute;
  bottom: 16px;
  width: 18px;
  height: 28px;
  border-radius: 18px 18px 4px 4px;
  background: #A26247;
  transform-origin: bottom center;
}

.rotating-badge i::before {
  left: 18px;
  transform: rotate(-35deg);
}

.rotating-badge i::after {
  right: 18px;
  transform: rotate(35deg);
}

.rotating-badge i {
  background:
    radial-gradient(ellipse at 50% 66%, #A26247 0 15px, transparent 16px),
    #F8F4EF;
}

@keyframes rotateBadge {
  to {
    transform: rotate(360deg);
  }
}

.brand-stats {
  padding: 58px 0 70px;
  background: var(--primary);
  color: var(--white);
}

.brand-stats-grid article {
  padding: 12px 36px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.brand-stats-grid strong {
  color: var(--white);
}

.brand-stats-grid span {
  display: block;
  color: rgba(255, 255, 255, .72);
}

.testimonials {
  position: relative;
  overflow: hidden;
  padding-top: 128px;
  padding-bottom: 92px;
}

.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 170px;
  height: 280px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .72;
  pointer-events: none;
}

.testimonials::before {
  left: -24px;
  bottom: 130px;
  background-image: url("images/leaf-1.svg");
}

.testimonials::after {
  right: -18px;
  top: 122px;
  background-image: url("images/leaf-2.svg");
}

.testimonials .container {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials .section-intro {
  max-width: 860px;
  margin-bottom: 70px;
}

.testimonials .subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgb(162, 98, 71);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .16em;
}

.testimonials .section-intro h2 {
  color: #000;
  font-family: "Rufina", Georgia, serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.12;
}

.testimonial-grid {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: testimonialSlide 44s linear infinite;
  will-change: transform;
}

.testimonial-grid:hover {
  animation-play-state: paused;
}

.testimonial-card {
  display: grid;
  grid-template-rows: 1fr auto;
  flex: 0 0 380px;
  /* min-height: 488px; */
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.stars {
  color: #F3A137;
  font-size: 16px;
  letter-spacing: .05em;
  padding: 54px 54px 0;
}

.testimonial-card p {
  /* margin: 28px 0 0; */
  padding: 0 34px 8px;
  color: #2E3037;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.guest {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 90px;
  padding: 15px 25px;
  background: rgba(248, 244, 239, .72);
}

.guest img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.guest strong,
.guest span {
  display: block;
}

.guest strong {
  color: rgb(162, 98, 71);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.guest span {
  color: rgb(162, 98, 71);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dots span {
  width: 16px;
  height: 16px;
  border: 1px solid rgb(162, 98, 71);
  border-radius: 50%;
}

.testimonial-dots .is-active {
  background: rgb(162, 98, 71);
}

@keyframes testimonialSlide {
  to {
    transform: translateX(calc(-50% - 16px));
  }
}

.booking {
  padding-top: 40px;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  padding: 0;
  border: 1px solid rgba(46, 36, 29, .16);
  background: rgba(255, 255, 255, .58);
  box-shadow: var(--shadow-soft);
}

.booking-form {
  padding: 72px clamp(34px, 6vw, 104px) 84px;
  text-align: center;
}

.booking-form h2 {
  color: #000;
  font-family: "Rufina", Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
}

.booking-form > p:not(.subtitle) {
  margin: 10px 0 42px;
  color: #4f433d;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.booking form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(46, 36, 29, .34);
  border-radius: 0;
  background: rgba(255, 255, 255, .72);
  color: #5b514b;
  padding: 14px 20px;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  outline: none;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 176, 138, .18);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-wide.appointment-btn {
  --button-height: 52px;
  width: 100%;
  height: 52px;
  margin-top: 0;
  background: #a66d50;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
}

.contact-panel {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 680px;
  padding: 72px 56px;
  background:
    #A26247;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("images/leaf-2.svg") 50% 50% / 430px auto no-repeat;
  filter: brightness(0) invert(1);
  opacity: .08;
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-icon {
  position: relative;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
}

.contact-icon::before,
.contact-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .9);
  transform-origin: left center;
}

.contact-icon::before {
  width: 2px;
  height: 10px;
  left: 15px;
  top: 7px;
}

.contact-icon::after {
  width: 8px;
  height: 2px;
  left: 15px;
  top: 16px;
  transform: rotate(32deg);
}

.contact-panel h3 {
  color: var(--white);
  margin-bottom: 34px;
  font-family: "Rufina", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.contact-panel p strong {
  color: var(--white);
  font-weight: 600;
}

.contact-divider {
  width: 1px;
  height: 32px;
  margin: 28px 0;
  background: rgba(255, 255, 255, .45);
}

.contact-panel .btn {
  min-width: 248px;
  min-height: 54px;
  margin-top: 44px;
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .8);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
}

.blog-posts {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 88px;
}

.blog-heading {
  margin: 0 auto 56px;
  text-align: center;
}

.blog-heading .subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgb(162, 98, 71);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}

.blog-heading h2 {
  color: #000;
  font-family: "Rufina", Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
}

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

.blog-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .9fr);
  gap: 50px;
  /* align-items: center;
  min-height: 498px; */
  padding: 30px;
  background: rgba(255, 255, 255, .88);
}

.blog-image {
  margin: 0;
  overflow: hidden;
  width: 241px;
  height: 241px;
}

.blog-image img {
  height: 397px;
  object-fit: cover;
  transition: transform .7s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  display: grid;
  align-content: start;
  /* min-height: 397px; */
}

.blog-meta {
  margin: 0 0 34px;
  color: #4f5965;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.blog-meta span {
  color: rgb(162, 98, 71);
}

.blog-meta strong {
  color: rgb(162, 98, 71);
  font-weight: 700;
}

.blog-content h3 {
  max-width: 380px;
  color: #000;
  font-family: "Rufina", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
}

.blog-arrow {
  display: grid;
  place-items: center;
  align-self: end;
  width: 56px;
  height: 56px;
  margin-top: auto;
  border-radius: 50%;
  background: #A26247;
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  transition: transform .3s ease, background .3s ease;
}

.blog-arrow:hover,
.blog-arrow:focus-visible {
  background: var(--primary);
  transform: translateY(-4px);
  outline: none;
}

.blog-actions {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.blog-actions .btn {
  --button-height: 64px;
  min-width: 244px;
  height: var(--button-height);
  min-height: 64px;
  background: #A26247;
  border-color: #A26247;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .09em;
}

.instagram-feed {
  padding-top: 78px;
  padding-bottom: 126px;
  overflow: hidden;
}

.instagram-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.instagram-heading h2 {
  color: #000;
  font-family: "Rufina", Georgia, serif;
  font-size: 45px;
  font-weight: 400;
  line-height: .98;
}

.social-tabs {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 7px;
  color: #A26247;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.social-tabs span {
  width: 2px;
  height: 24px;
  background: #1b4f63;
}

.social-tabs a {
  transition: color .25s ease;
}

.social-tabs a:hover,
.social-tabs a:focus-visible {
  color: var(--dark);
  outline: none;
}

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

.instagram-tile {
  display: block;
  height: 376px;
  overflow: hidden;
  background: var(--white);
}

.instagram-tile img {
  height: 100%;
  transition: transform .7s ease, filter .7s ease;
}

.instagram-tile:hover img,
.instagram-tile:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.newsletter-offer {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 94px 0 104px;
  border-top: 1px solid rgba(46, 36, 29, .18);
  border-bottom: 1px solid rgba(46, 36, 29, .12);
}

.newsletter-offer::before,
.newsletter-offer::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.newsletter-offer::before {
  left: 12%;
  top: -8px;
  width: 190px;
  height: 220px;
  background-image: url("images/leaf-1.svg");
  opacity: .9;
  transform: rotate(-16deg);
}

.newsletter-offer::after {
  right: 12%;
  bottom: -50px;
  width: 205px;
  height: 260px;
  background-image: url("images/leaf-2.svg");
  opacity: .9;
  transform: rotate(14deg);
}

.newsletter-offer .container {
  position: relative;
  z-index: 1;
}

.newsletter-offer__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-offer__content h2 {
  color: #000;
  font-family: "Rufina", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.12;
}

.newsletter-offer__content p {
  margin: 12px 0 34px;
  color: #2E3037;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.newsletter-offer__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  max-width: 706px;
  margin: 0 auto;
  border: 1px solid rgba(46, 36, 29, .22);
  background: rgba(255, 255, 255, .48);
}

.newsletter-offer__field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 18px;
  color: #A26247;
}

.newsletter-offer__field input {
  min-height: 60px;
  border: 0;
  background: transparent;
  color: #000;
  padding: 0;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 17px;
  box-shadow: none;
}

.newsletter-offer__field input:focus {
  box-shadow: none;
}

.newsletter-offer__field input::placeholder {
  color: #000;
  opacity: 1;
}

.newsletter-offer__form button {
  --button-height: 62px;
  width: 100%;
  min-width: 0;
  min-height: 62px;
  height: var(--button-height);
  border: 1px solid #A26247;
  background: #A26247;
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.newsletter-offer__form button:hover,
.newsletter-offer__form button:focus-visible {
  background: var(--primary);
  outline: none;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 118px 0 38px;
  background:
    linear-gradient(180deg, rgba(46, 24, 14, .44), rgba(46, 24, 14, .72)),
    url("images/footer-bg.png") repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
}

.footer-logo {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin-bottom: 54px;
  color: var(--white);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-logo img {
  width: min(115px, 72vw);
  height: auto;
  object-fit: contain;
}

.footer-logo strong {
  position: relative;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .22em;
}

.footer-logo strong::after {
  content: "*";
  position: absolute;
  top: -8px;
  right: -20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.footer-logo span {
  margin-top: 10px;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
}

.footer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, .35fr) minmax(210px, .45fr);
  gap: 72px;
  padding: 68px 68px 72px;
  background: rgba(248, 244, 239, .86);
  backdrop-filter: blur(2px);
  color: #000;
}

.footer-contact {
  display: grid;
}

.footer-contact__row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 6px;
  align-items: start;
  padding: 0 0 36px;
  color: #000;
}

.footer-contact__row + .footer-contact__row {
  padding-top: 32px;
  border-top: 1px solid rgba(46, 36, 29, .32);
}

.footer-contact__row span {
  padding-top: 11px;
  color: #3a3a3a;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.footer-contact__row strong {
  color: #000;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: .01em;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 21px;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: #000;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links a {
  color: #000;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact__row:hover strong,
.footer-contact__row:focus-visible strong {
  color: #A26247;
  outline: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
  color: var(--white);
}

.footer-bottom p {
  margin: 0;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.footer-bottom p:last-child {
  justify-self: end;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--white);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: background .3s ease, transform .3s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: #A26247;
  transform: translateY(-3px);
  outline: none;
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 26px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 16px 38px rgba(46, 36, 29, .18);
  font-size: 12px;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  right: 34px;
  bottom: 30px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: transform .3s ease, background .3s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-4px);
  outline: none;
}

.about-page {
  background: #A4674D;
}

.about-header {
  position: fixed;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #754A36;
  box-shadow: none;
}

.about-header.is-scrolled {
  background: rgba(117, 74, 54, .96);
}

.nav-links a.is-active {
  color: #fff;
}

.nav-links a.is-active::after {
  width: 100%;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  padding: 126px 0 44px;
  overflow: hidden;
  background: #A4674D;
  color: #fff;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-hero__copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-family-Rufina);
  font-size: clamp(58px, 6vw, 116px);
  font-weight: 500;
  line-height: .96;
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .66);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.about-breadcrumb strong {
  color: #fff;
  font-weight: 400;
}

.about-hero__copy p {
  max-width: 930px;
  margin: 42px auto 0;
  color: #fff;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0;
}

.about-hero__gallery {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  align-items: end;
  gap: clamp(24px, 3vw, 68px);
  margin-top: clamp(76px, 8vw, 140px);
}

.about-hero__photo {
  margin: 0;
  overflow: hidden;
  background: rgba(46, 36, 29, .24);
  box-shadow: 0 24px 54px rgba(44, 24, 14, .14);
}

.about-hero__photo img {
  height: 330px;
  object-fit: cover;
  transition: transform .7s ease;
}

.about-hero__photo:hover img {
  transform: scale(1.045);
}

.about-hero__photo--left {
  transform: rotate(-5deg);
  transform-origin: center bottom;
}

.about-hero__photo--right {
  transform: rotate(5deg);
  transform-origin: center bottom;
}

.about-hero__photo--center img {
  height: 325px;
}

.about-hero__leaf {
  position: absolute;
  z-index: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) invert(1);
  opacity: .94;
  pointer-events: none;
}

.about-hero__leaf--left {
  left: -42px;
  top: 305px;
  width: 205px;
  height: 265px;
  background-image: url("images/leaf-1.svg");
  transform: rotate(4deg);
}

.about-hero__leaf--right {
  right: -8px;
  top: 104px;
  width: 178px;
  height: 330px;
  background-image: url("images/leaf-2.svg");
  transform: rotate(-8deg);
}

.about-why {
  position: relative;
  overflow: hidden;
  padding: 0px 0 96px;
  background:
    radial-gradient(circle at 78% 14%, rgba(164, 103, 77, .07), transparent 22%),
    #FCF8F4;
  color: #19100B;
}

.about-why::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  pointer-events: none;
  background-image: radial-gradient(rgba(46, 36, 29, .15) .7px, transparent .7px);
  background-size: 4px 4px;
}

.about-why .container {
  position: relative;
  z-index: 1;
}

.about-why__intro {
  max-width: 690px;
  margin: 0 auto 64px;
  text-align: center;
}

.about-why__intro .about-story__label {
  justify-content: center;
  margin-bottom: 16px;
}

.about-why__intro h2 {
  margin: 0;
  color: #050302;
  font-family: "Playfair Display", "Rufina", serif;
  font-size: clamp(42px, 3.35vw, 64px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 52px;
  row-gap: 50px;
}

.about-why__item {
  /* padding-bottom: 34px; */
  border-bottom: 1px solid rgba(164, 103, 77, .24);
}

.about-why__item:nth-child(6) {
  border-bottom-color: #A4674D;
}

.about-why__title {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 62px;
}

.about-why__title i {
  color: #A4674D;
  font-size: 34px;
  line-height: 1;
  -webkit-text-stroke: .7px #A4674D;
}

.about-why__title h3 {
  margin: 0;
  color: #19100B;
  font-family: "Playfair Display", "Rufina", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.14;
}

.about-why__item p {
  /* margin: 27px 0 0; */
  color: rgba(25, 16, 11, .66);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

.about-why__leaf {
  position: absolute;
  z-index: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .7;
  pointer-events: none;
}

.about-why__leaf--left {
  left: -45px;
  bottom: 130px;
  width: 188px;
  height: 280px;
  background-image: url("images/leaf-1.svg");
  transform: rotate(2deg);
}

.about-why__leaf--right {
  right: -26px;
  top: 76px;
  width: 174px;
  height: 315px;
  background-image: url("images/leaf-2.svg");
  transform: rotate(-4deg);
}

.about-story {
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 20% 12%, rgba(164, 103, 77, .08), transparent 24%),
    radial-gradient(circle at 80% 76%, rgba(212, 176, 138, .12), transparent 26%),
    #FCF8F4;
  color: #19100B;
}

.about-team {
  position: relative;
  overflow: hidden;
  /* padding: 84px 0 106px; */
  background:
    radial-gradient(circle at 50% 8%, rgba(164, 103, 77, .06), transparent 25%),
    #FCF8F4;
  color: #19100B;
}

.about-team::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  pointer-events: none;
  background-image: radial-gradient(rgba(46, 36, 29, .15) .7px, transparent .7px);
  background-size: 4px 4px;
}

.about-team .container {
  position: relative;
  z-index: 1;
}

.about-team__intro {
  max-width: 760px;
  margin: 0 auto 62px;
  text-align: center;
}

.about-team__intro .about-story__label {
  justify-content: center;
  margin-bottom: 16px;
}

.about-team__intro h2 {
  margin: 0;
  color: #050302;
  font-family: "Playfair Display", "Rufina", serif;
  font-size: clamp(48px, 3.8vw, 74px);
  font-weight: 500;
  line-height: 1.05;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 70px);
  align-items: start;
}

.about-team__card {
  text-align: center;
}

.about-team__photo {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1 / 1.5;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: #DED0C8;
}

.about-team__photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .65s ease, filter .65s ease;
}

.about-team__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(164, 103, 77, .72);
  opacity: 0;
  transition: opacity .36s ease;
}

.about-team__overlay a {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #A4674D;
  font-size: 17px;
  transform: translateY(10px);
  transition: transform .36s ease, background .25s ease, color .25s ease;
}

.about-team__card:hover .about-team__photo img,
.about-team__card:focus-within .about-team__photo img {
  transform: scale(1.035);
  filter: saturate(.82);
}

.about-team__card:hover .about-team__overlay,
.about-team__card:focus-within .about-team__overlay {
  opacity: 1;
}

.about-team__card:hover .about-team__overlay a,
.about-team__card:focus-within .about-team__overlay a {
  transform: translateY(0);
}

.about-team__overlay a:hover,
.about-team__overlay a:focus-visible {
  background: #A4674D;
  color: #fff;
  outline: none;
}

.about-team__card h3 {
  margin: 30px 0 0;
  color: #19100B;
  font-family: var(--font-family-Rufina);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.about-team__card p {
  margin: 12px 0 0;
  color: rgba(25, 16, 11, .62);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.about-testimonials {
  background:
    radial-gradient(circle at 22% 20%, rgba(164, 103, 77, .06), transparent 24%),
    #F8F4EF;
}

.about-testimonials .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-testimonials .testimonial-card {
  min-height: 330px;
}

.about-testimonials .stars {
  color: #F3A137;
}

.about-story::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .48;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(46, 36, 29, .16) .7px, transparent .7px);
  background-size: 4px 4px;
}

.about-story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  gap: clamp(64px, 7vw, 132px);
  align-items: start;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(164, 103, 77, .22);
}

.about-story__copy {
  max-width: 650px;
}

.about-story__heading {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.about-story__heading img {
  width: 100px;
  margin-top: 48px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(46, 36, 29, .14));
}

.about-story__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #A4674D;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-story__label::before,
.about-story__label::after {
  content: "";
  width: 12px;
  height: 17px;
  background: url("images/leaf-left.svg") center/contain no-repeat;
  opacity: .9;
}

.about-story__label::after {
  background-image: url("images/leaf-right.svg");
}

.about-story h2 {
  max-width: 540px;
  margin: 0;
  color: #050302;
  font-family: "Playfair Display", "Rufina", serif;
  font-size: clamp(44px, 3.55vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-story__copy > p {
  max-width: 620px;
  margin: 46px 0 0;
  color: rgba(25, 16, 11, .68);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

.about-story__copy > p a {
  color: #A4674D;
  border-bottom: 1px solid rgba(164, 103, 77, .42);
  font-weight: 500;
}

.about-story__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.about-story__btn {
  min-width: 178px;
  min-height: 52px;
  background: #A4674D;
  border-color: #A4674D;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
}

.about-story__phone {
  display: inline-grid;
  grid-template-columns: 38px auto;
  gap: 14px;
  align-items: center;
  color: #A4674D;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.about-story__phone i {
  color: rgba(164, 103, 77, .38);
  font-size: 32px;
}

.about-story__phone strong {
  display: block;
  margin-top: 4px;
  color: #A4674D;
  font-size: 16px;
  font-weight: 400;
}

.about-story__experience {
  display: grid;
  grid-template-columns: 44px auto 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(164, 103, 77, .22);
  color: #A4674D;
  font-family: "Jost", "Poppins", Arial, sans-serif;
}

.about-story__experience i {
  font-size: 37px;
}

.about-story__experience strong {
  color: #A4674D;
  font-size: 58px;
  font-weight: 700;
  line-height: .9;
}

.about-story__experience span {
  color: #A4674D;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.about-story__media {
  position: relative;
  margin: 0;
  padding-top: 0;
}

.about-story__media > img {
  width: 100%;
  height: 562px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(46, 36, 29, .1);
  transition: transform .7s ease;
}

.about-story__media:hover > img {
  transform: translateY(-10px) scale(1.025);
}

.about-story__badge {
  position: absolute;
  left: -74px;
  top: 48%;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(164, 103, 77, .64);
  border-radius: 50%;
  background: rgba(252, 248, 244, .9);
  color: #A4674D;
  box-shadow: 0 18px 38px rgba(46, 36, 29, .08);
  transform: translateY(-50%);
}

.about-story__badge img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
}

.about-story__badge-ring {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  animation: aboutBadgeSpin 18s linear infinite;
}

.about-story__badge-ring text {
  fill: #A4674D;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.about-story__media figcaption {
  margin-top: 18px;
  text-align: right;
}

.about-story__media figcaption a {
  color: #A4674D;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: color .25s ease;
}

.about-story__media figcaption a:hover,
.about-story__media figcaption a:focus-visible {
  color: var(--primary);
  outline: none;
}

.services-detail-page {
  background: #f9f2eb;
}

.service-detail-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 168px 0 92px;
  color: #fff;
  background-image: url("images/banner-service-details.jpg");
  background-position: center;
  background-size: cover;
}

.service-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 15, 9, .78), rgba(41, 22, 14, .58) 46%, rgba(30, 16, 11, .78)),
    linear-gradient(180deg, rgba(11, 6, 4, .44), rgba(11, 6, 4, .28) 42%, rgba(22, 12, 8, .7));
}

.service-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

.service-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .78);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.service-detail-breadcrumb a:hover,
.service-detail-breadcrumb a:focus-visible {
  color: #fff;
  outline: none;
}

.service-detail-breadcrumb strong {
  color: #fff;
  font-weight: 500;
}

.service-detail-hero__copy {
  max-width: 1030px;
}

.service-detail-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(56px, 6.6vw, 104px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}

.service-detail-hero__copy p {
  max-width: 930px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .94);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.service-detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1080px;
  margin-top: 52px;
}

.service-detail-facts article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 7px;
  padding: 0 clamp(18px, 2vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, .34);
  font-family: "Jost", "Poppins", Arial, sans-serif;
}

.service-detail-facts article:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-detail-facts i {
  margin-top: 2px;
  color: #fff;
  font-size: 22px;
}

.service-detail-facts strong,
.service-detail-facts span {
  display: block;
}

.service-detail-facts strong {
  margin-bottom: 9px;
  color: #fff;
  font-size: 23px;
  line-height: 1.1;
}

.service-detail-facts span {
  color: rgba(255, 255, 255, .94);
  font-size: 22px;
  line-height: 1.35;
}

.service-detail-scroll {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 60px;
  margin-top: 118px;
  border-radius: 999px;
  background: #fff;
  color: #a66d50;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
  transition: transform .28s ease, background .28s ease, color .28s ease;
}

.service-detail-scroll:hover,
.service-detail-scroll:focus-visible {
  transform: translateY(6px);
  background: #a66d50;
  color: #fff;
  outline: none;
}

.service-overview {
  position: relative;
  overflow: hidden;
}

.service-overview::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 300px;
  height: 300px;
  background: url("images/leaf-2.svg") center / contain no-repeat;
  opacity: .08;
  pointer-events: none;
}

.service-overview__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}

.service-overview__copy h2,
.service-section-heading h2,
.service-pricing__copy h2,
.service-faq__intro h2,
.service-cta h2 {
  margin: 0;
  color: #211711;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-overview__copy p {
  max-width: 820px;
  margin: 26px 0 0;
  color: rgba(46, 36, 29, .72);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.78;
}

.service-overview__panel {
  padding: 44px 42px;
  border: 1px solid rgba(139, 94, 60, .16);
  border-radius: 28px;
  background: #fffaf5;
  box-shadow: var(--shadow-soft);
}

.service-overview__panel img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 28px;
}

.service-overview__eyebrow {
  margin: 0 0 10px;
  color: #a26247;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-overview__panel h3 {
  margin: 0 0 22px;
  color: #a26247;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.18;
}

.service-overview__panel ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-overview__panel li {
  position: relative;
  padding-left: 30px;
  color: rgba(46, 36, 29, .76);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.service-overview__panel li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0;
  color: #a26247;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.service-benefits {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: #a26247;
  color: #fff;
}

.service-benefits::before,
.service-benefits::after {
  content: "";
  position: absolute;
  width: 245px;
  height: 245px;
  background: url("images/leaf-1.svg") center / contain no-repeat;
  opacity: .1;
  pointer-events: none;
}

.service-benefits::before {
  left: -82px;
  bottom: 20px;
}

.service-benefits::after {
  right: -70px;
  top: 26px;
  transform: rotate(180deg);
}

.service-benefits .container {
  position: relative;
  z-index: 1;
}

.service-section-heading {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.service-benefits .about-story__label,
.service-cta .about-story__label {
  justify-content: center;
  color: #fff;
}

.service-benefits .about-story__label::before,
.service-benefits .about-story__label::after,
.service-cta .about-story__label::before,
.service-cta .about-story__label::after {
  filter: brightness(0) invert(1);
}

.service-benefits .service-section-heading h2,
.service-cta h2 {
  color: #fff;
}

.service-section-heading > p:not(.about-story__label) {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(46, 36, 29, .68);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.65;
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-benefit-card {
  min-height: 315px;
  padding: 34px 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 58px rgba(41, 22, 14, .12);
  transition: transform .35s ease, background .35s ease;
}

.service-benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .13);
}

.service-benefit-card i {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fff;
  color: #a26247;
  font-size: 25px;
}

.service-benefit-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.18;
}

.service-benefit-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

.service-gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: 250px;
  gap: 24px;
}

.service-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.service-gallery__item--large {
  grid-row: span 2;
}

.service-gallery__item img {
  height: 100%;
  transition: transform .65s ease;
}

.service-gallery__item:hover img {
  transform: scale(1.06);
}

.service-pricing {
  padding: 104px 0;
  background: #fffaf5;
}

.service-pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.service-pricing__copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(46, 36, 29, .7);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.7;
}

.service-pricing__table {
  overflow: hidden;
  border: 1px solid rgba(139, 94, 60, .16);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-pricing__row {
  display: grid;
  grid-template-columns: 1.25fr .75fr .72fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px 28px;
  border-top: 1px solid rgba(139, 94, 60, .12);
  color: rgba(46, 36, 29, .78);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.service-pricing__row:first-child {
  border-top: 0;
}

.service-pricing__row--head {
  min-height: 66px;
  background: #a26247;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-pricing__row span:first-child {
  font-weight: 700;
}

.service-cta {
  padding: 112px 0;
  background:
    linear-gradient(180deg, rgba(50, 27, 17, .82), rgba(50, 27, 17, .82)),
    url("images/banner-service-details.jpg") center / cover fixed;
  color: #fff;
  text-align: center;
}

.service-cta__inner {
  max-width: 1040px;
}

.service-cta h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(38px, 4.2vw, 66px);
}

.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 42px;
}

.service-cta .appointment-btn,
.service-cta .rolling-btn {
  min-width: 210px;
}

.service-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1fr);
  gap: clamp(42px, 6vw, 94px);
  align-items: start;
}

.service-faq__list {
  display: grid;
  gap: 16px;
}

.service-faq details {
  border: 1px solid rgba(139, 94, 60, .16);
  border-radius: 22px;
  background: #fffaf5;
  box-shadow: 0 16px 34px rgba(46, 36, 29, .05);
}

.service-faq summary {
  position: relative;
  cursor: pointer;
  padding: 24px 66px 24px 26px;
  color: #211711;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 25px;
  line-height: 1.25;
  list-style: none;
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #a26247;
  color: #fff;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 24px;
  transform: translateY(-50%);
}

.service-faq details[open] summary::after {
  content: "-";
}

.service-faq details p {
  margin: 0;
  padding: 0 26px 26px;
  color: rgba(46, 36, 29, .7);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.68;
}

.service-faq summary:focus-visible {
  outline: 3px solid rgba(164, 98, 71, .28);
  outline-offset: 3px;
  border-radius: 20px;
}

@keyframes aboutBadgeSpin {
  to {
    transform: rotate(360deg);
  }
}

.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity .85s ease, transform .85s ease;
}

.fade-up {
  transform: translateY(36px);
}

.fade-left {
  transform: translateX(-44px);
}

.fade-right {
  transform: translateX(44px);
}

.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .category-grid,
  .stats-grid,
  .brand-stats-grid,
  .blog-grid,
  .instagram-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card.reverse,
  .about-grid,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .service-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-card.reverse .service-copy,
  .service-card.reverse .service-image {
    order: initial;
  }

  .service-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-price {
    min-height: 0;
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid rgba(46, 36, 29, .18);
  }

  .about-media img {
    height: 460px;
  }

  .about-media > img {
    width: 100%;
  }

  .testimonial-grid {
    gap: 28px;
  }

  .testimonial-card {
    flex-basis: 340px;
  }

  .testimonial-card p {
    font-size: 16px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .stars,
  .guest {
    padding-left: 32px;
    padding-right: 32px;
  }

  .about-small-media {
    grid-template-columns: minmax(210px, 300px) minmax(150px, 190px);
    gap: 28px;
  }

  .rotating-badge {
    left: 22px;
    top: auto;
    bottom: 22px;
  }

  .booking-form {
    padding: 56px;
  }

  .contact-panel {
    min-height: 560px;
  }

  .blog-grid {
    gap: 28px;
  }

  .blog-card {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 34px;
  }

  .blog-image img {
    height: 320px;
  }

  .blog-content {
    min-height: 280px;
  }

  .blog-content h3 {
    font-size: 34px;
  }

  .instagram-heading {
    align-items: start;
  }

  .instagram-heading h2 {
    font-size: 45px;
  }

  .social-tabs {
    gap: 20px;
    font-size: 14px;
  }

  .instagram-tile {
    height: 330px;
  }

  .newsletter-offer::before {
    left: 3%;
    width: 150px;
    height: 180px;
  }

  .newsletter-offer::after {
    right: 3%;
    width: 160px;
    height: 210px;
  }

  .newsletter-offer__content h2 {
    font-size: 42px;
  }

  .footer {
    padding-top: 88px;
  }

  .footer-panel {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 48px;
  }

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

  .footer-contact__row strong {
    font-size: 32px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom p:last-child {
    justify-self: center;
  }

  .about-hero {
    padding-top: 116px;
  }

  .about-hero__copy p {
    max-width: 780px;
  }

  .about-hero__gallery {
    gap: 22px;
    margin-top: 78px;
  }

  .about-hero__photo img,
  .about-hero__photo--center img {
    height: 250px;
  }

  .about-hero__leaf--left {
    left: -78px;
  }

  .about-hero__leaf--right {
    right: -62px;
  }

  .about-story {
    padding: 84px 0 86px;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-story__copy {
    max-width: none;
  }

  .about-story__media {
    max-width: 760px;
    margin-left: auto;
  }

  .about-story__media > img {
    height: 430px;
  }

  .about-story__badge {
    left: -34px;
  }

  .about-why {
    padding: 72px 0 82px;
  }

  .about-why__intro {
    margin-bottom: 50px;
  }

  .about-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    row-gap: 40px;
  }

  .about-why__title h3 {
    font-size: 24px;
  }

  .about-why__leaf--right {
    right: -78px;
  }

  .about-team {
    padding: 76px 0 88px;
  }

  .about-team__intro {
    margin-bottom: 52px;
  }

  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px;
  }

  .about-team__photo {
    width: min(100%, 310px);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, 1320px);
  }

  .section-space {
    padding: 82px 0;
  }

  .site-header {
    padding: 16px;
  }

  .brand img {
    height: 52px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-title {
    font-size: 42px;
    column-gap: 28px;
    row-gap: 12px;
  }

  h2 {
    font-size: 34px;
  }

  .services .section-intro h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 26px;
  }

  .testimonials {
    padding-top: 84px;
  }

  .testimonials .section-intro h2 {
    font-size: 38px;
  }

  .testimonial-card {
    flex-basis: calc(100vw - 64px);
    min-height: 0;
  }

  .testimonial-card p {
    font-size: 15px;
    padding-bottom: 34px;
  }

  .guest {
    min-height: 132px;
    gap: 18px;
  }

  .guest img {
    width: 72px;
    height: 72px;
  }

  .guest strong {
    font-size: 16px;
  }

  .guest span {
    font-size: 15px;
  }

  .hero-content {
    padding-top: 30px;
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .hero-word {
    white-space: normal;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    gap: 12px;
  }

  .category-grid,
  .stats-grid,
  .brand-stats-grid,
  .testimonial-grid,
  .blog-grid,
  .instagram-grid,
  .footer-grid,
  .booking form {
    grid-template-columns: 1fr;
  }

  .category-card {
    width: min(292px, 100%);
    margin: 0 auto;
  }

  .stat-card,
  .brand-stats-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-divider {
    gap: 14px;
    margin-top: 58px;
  }

  .stats-divider img {
    width: 132px;
  }

  .service-card {
    min-height: 0;
    padding: 28px;
    gap: 28px;
  }

  .service-copy {
    padding: 0;
  }

  .service-image,
  .service-image img {
    min-height: 290px;
  }

  .service-title {
    align-items: flex-start;
  }

  .service-title img {
    width: 58px;
    height: 58px;
  }

  .service-title h3 {
    font-size: 32px;
  }

  .service-benefit,
  .service-includes,
  .service-copy > p:not(.service-benefit):not(.service-includes) {
    font-size: 17px;
  }

  .promo {
    padding-bottom: 82px;
  }

  .promo-panel {
    min-height: 500px;
    padding: 34px;
  }

  .promo-panel h2 {
    font-size: 34px;
  }

  .promo-panel p {
    font-size: 18px;
  }

  .promo-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .promo-actions .appointment-btn {
    width: 100%;
    min-width: 0;
  }

  .about-grid {
    gap: 48px;
  }

  .about-heading {
    margin-bottom: 42px;
  }

  .about-heading h2 {
    font-size: 36px;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-copy p {
    font-size: 16px;
  }

  .about-actions {
    gap: 20px;
    margin-bottom: 48px;
  }

  .about-actions .btn {
    width: 100%;
  }

  .about-small-media {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-small-media img {
    height: 260px;
    border-radius: 32px;
  }

  .about-media > img {
    height: 380px;
  }

  .experience-badge {
    text-align: left;
  }

  .rotating-badge {
    width: 112px;
    height: 112px;
  }

  .badge-ring text {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .studio-link {
    position: static;
    display: inline-flex;
    margin-top: 18px;
  }

  .booking {
    padding-top: 0;
  }

  .booking-form,
  .contact-panel {
    padding: 34px 24px;
  }

  .booking-form h2 {
    font-size: 34px;
  }

  .booking-form > p:not(.subtitle) {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .contact-panel {
    min-height: 520px;
  }

  .blog-posts {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .blog-heading {
    margin-bottom: 36px;
  }

  .blog-heading h2 {
    font-size: 40px;
  }

  .blog-card {
    padding: 24px;
  }

  .blog-image img {
    height: 260px;
  }

  .blog-content {
    min-height: 250px;
  }

  .blog-meta {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .blog-content h3 {
    font-size: 30px;
  }

  .blog-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .instagram-feed {
    padding-top: 62px;
    padding-bottom: 84px;
  }

  .instagram-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }

  .instagram-heading h2 {
    font-size: 42px;
  }

  .social-tabs {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
  }

  .social-tabs span {
    height: 18px;
  }

  .instagram-grid {
    gap: 20px;
  }

  .instagram-tile {
    height: 280px;
  }

  .newsletter-offer {
    min-height: 420px;
    padding: 74px 0 82px;
  }

  .newsletter-offer::before {
    left: -34px;
    top: -30px;
    width: 132px;
    height: 158px;
    opacity: .55;
  }

  .newsletter-offer::after {
    right: -28px;
    bottom: -52px;
    width: 140px;
    height: 180px;
    opacity: .55;
  }

  .newsletter-offer__content h2 {
    font-size: 32px;
  }

  .newsletter-offer__content p {
    font-size: 15px;
  }

  .newsletter-offer__form {
    grid-template-columns: 1fr;
  }

  .newsletter-offer__form button {
    width: 100%;
  }

  .footer {
    padding: 70px 0 30px;
  }

  .footer-logo {
    margin-bottom: 36px;
  }

  .footer-logo strong {
    font-size: 24px;
  }

  .footer-logo span {
    font-size: 10px;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px 24px;
  }

  .footer-contact__row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 28px;
  }

  .footer-contact__row + .footer-contact__row {
    padding-top: 24px;
  }

  .footer-contact__row span {
    padding-top: 0;
    font-size: 13px;
  }

  .footer-contact__row strong {
    font-size: 26px;
    line-height: 1.25;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-links h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .footer-links a {
    font-size: 17px;
  }

  .footer-bottom {
    gap: 22px;
    margin-top: 28px;
  }

  .footer-bottom p {
    font-size: 15px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .about-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .about-hero {
    min-height: 100svh;
    padding: 104px 0 34px;
  }

  .about-hero__copy h1 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .about-breadcrumb {
    gap: 12px;
    margin-top: 22px;
    font-size: 16px;
  }

  .about-hero__copy p {
    margin-top: 28px;
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.18;
  }

  .about-hero__gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(430px, 100%);
    margin: 54px auto 0;
  }

  .about-hero__photo,
  .about-hero__photo--left,
  .about-hero__photo--right {
    transform: none;
  }

  .about-hero__photo img,
  .about-hero__photo--center img {
    height: 235px;
  }

  .about-hero__leaf--left {
    left: -110px;
    top: 275px;
    width: 172px;
    height: 222px;
  }

  .about-hero__leaf--right {
    right: -86px;
    top: 86px;
    width: 148px;
    height: 270px;
  }

  .back-to-top {
    right: 24px;
    bottom: 22px;
    width: 52px;
    height: 52px;
  }

  .about-story {
    padding: 64px 0 70px;
  }

  .about-story__grid {
    gap: 38px;
    padding-bottom: 40px;
  }

  .about-story__heading {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 15px;
  }

  .about-story__heading img {
    width: 62px;
    margin-top: 37px;
  }

  .about-story__label {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: .14em;
  }

  .about-story h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .about-story__copy > p {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.6;
  }

  .about-story__actions {
    display: grid;
    gap: 20px;
    margin-top: 28px;
  }

  .about-story__btn {
    width: 100%;
  }

  .about-story__phone {
    grid-template-columns: 40px auto;
    font-size: 16px;
  }

  .about-story__phone i {
    font-size: 30px;
  }

  .about-story__phone strong {
    font-size: 16px;
  }

  .about-story__experience {
    grid-template-columns: 44px auto;
    gap: 14px;
    margin-top: 32px;
    padding-top: 28px;
  }

  .about-story__experience i {
    font-size: 32px;
  }

  .about-story__experience strong {
    font-size: 52px;
  }

  .about-story__experience span {
    grid-column: 1 / -1;
    font-size: 16px;
  }

  .about-story__media {
    max-width: none;
    margin-left: 0;
  }

  .about-story__media > img {
    height: 320px;
  }

  .about-story__badge {
    left: 18px;
    top: auto;
    bottom: 54px;
    width: 104px;
    height: 104px;
  }

  .about-story__badge img {
    width: 46px;
    height: 46px;
  }

  .about-story__badge-ring text {
    font-size: 11px;
    letter-spacing: .18em;
  }

  .about-story__media figcaption {
    margin-top: 18px;
    text-align: left;
  }

  .about-story__media figcaption a {
    font-size: 16px;
  }

  .about-why {
    padding: 56px 0 66px;
  }

  .about-why__intro {
    margin-bottom: 36px;
  }

  .about-why__intro h2 {
    font-size: clamp(32px, 9.4vw, 44px);
  }

  .about-why__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-why__item {
    padding-bottom: 26px;
  }

  .about-why__title {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
  }

  .about-why__title i {
    font-size: 29px;
  }

  .about-why__title h3 {
    font-size: 23px;
  }

  .about-why__item p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .about-why__leaf--left {
    left: -112px;
    bottom: 90px;
    width: 154px;
    height: 230px;
    opacity: .42;
  }

  .about-why__leaf--right {
    right: -112px;
    top: 38px;
    width: 144px;
    height: 250px;
    opacity: .42;
  }

  .about-team {
    padding: 58px 0 72px;
  }

  .about-team__intro {
    margin-bottom: 38px;
  }

  .about-team__intro h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-team__photo {
    width: min(100%, 270px);
  }

  .about-team__overlay {
    gap: 8px;
  }

  .about-team__overlay a {
    width: 39px;
    height: 39px;
    font-size: 15px;
  }

  .about-team__card h3 {
    margin-top: 22px;
    font-size: 25px;
  }

  .about-team__card p {
    margin-top: 9px;
    font-size: 16px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .newsletter {
    flex-direction: column;
  }
}

@media (max-width: 1180px) {
  .service-detail-facts,
  .service-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-facts article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .service-detail-facts article {
    padding-top: 22px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .service-detail-facts article:nth-child(-n + 2) {
    border-top: 0;
  }

  .service-overview__grid,
  .service-pricing__grid,
  .service-faq__grid {
    grid-template-columns: 1fr;
  }

  .service-overview__panel,
  .service-pricing__table,
  .service-faq__list {
    max-width: 860px;
  }
}

@media (max-width: 900px) {
  .service-detail-hero {
    min-height: 100svh;
    padding: 132px 0 54px;
    background-position: center right 38%;
  }

  .service-detail-breadcrumb {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .service-detail-hero__copy h1 {
    font-size: clamp(46px, 12vw, 76px);
  }

  .service-detail-hero__copy p {
    margin-top: 26px;
    font-size: 19px;
    line-height: 1.55;
  }

  .service-detail-facts {
    margin-top: 34px;
  }

  .service-detail-facts strong {
    font-size: 20px;
  }

  .service-detail-facts span {
    font-size: 18px;
  }

  .service-detail-scroll {
    margin-top: 42px;
  }

  .service-overview__copy h2,
  .service-section-heading h2,
  .service-pricing__copy h2,
  .service-faq__intro h2 {
    font-size: clamp(36px, 9vw, 54px);
  }

  .service-overview__copy p,
  .service-pricing__copy p,
  .service-section-heading > p:not(.about-story__label) {
    font-size: 18px;
  }

  .service-benefits,
  .service-pricing,
  .service-cta {
    padding: 76px 0;
  }

  .service-benefits__grid {
    gap: 18px;
  }

  .service-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 18px;
  }

  .service-gallery__item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .service-pricing__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-pricing__row--head {
    display: none;
  }

  .service-pricing__row span:nth-child(2)::before {
    content: "Duration: ";
    color: #a26247;
    font-weight: 700;
  }

  .service-pricing__row span:nth-child(3)::before {
    content: "Starting Price: ";
    color: #a26247;
    font-weight: 700;
  }
}

@media (max-width: 640px) {
  .services-detail-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .service-detail-hero {
    padding: 112px 0 42px;
    background-position: center right 34%;
  }

  .service-detail-hero__overlay {
    background:
      linear-gradient(90deg, rgba(29, 15, 9, .86), rgba(41, 22, 14, .64)),
      linear-gradient(180deg, rgba(11, 6, 4, .48), rgba(11, 6, 4, .34) 45%, rgba(22, 12, 8, .78));
  }

  .service-detail-breadcrumb {
    gap: 10px;
    font-size: 15px;
  }

  .service-detail-hero__copy h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 1.05;
  }

  .service-detail-hero__copy p {
    font-size: 17px;
  }

  .service-detail-facts,
  .service-benefits__grid,
  .service-gallery__grid {
    grid-template-columns: 1fr;
  }

  .service-detail-facts article,
  .service-detail-facts article:nth-child(3) {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .service-detail-facts article:first-child {
    border-top: 0;
  }

  .service-detail-facts article:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .service-overview__panel {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .service-overview__panel h3 {
    font-size: 30px;
  }

  .service-benefit-card {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .service-gallery__grid {
    grid-auto-rows: 245px;
  }

  .service-gallery__item {
    border-radius: 22px;
  }

  .service-pricing__table {
    border-radius: 22px;
  }

  .service-pricing__row {
    padding: 20px;
    font-size: 17px;
  }

  .service-cta {
    background-attachment: scroll;
  }

  .service-cta h2 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .service-cta__actions {
    display: grid;
  }

  .service-cta .appointment-btn,
  .service-cta .rolling-btn {
    width: 100%;
  }

  .service-faq summary {
    padding: 21px 58px 21px 20px;
    font-size: 22px;
  }

  .service-faq summary::after {
    right: 18px;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .service-faq details p {
    padding: 0 20px 22px;
    font-size: 16px;
  }
}

/* Services detail page - reference layout */
.services-detail-page {
  background: #f7efe7;
}

.services-detail-page::before {
  background-image:
    radial-gradient(circle at 18% 12%, rgba(164, 98, 71, .05), transparent 26%),
    radial-gradient(circle at 90% 36%, rgba(139, 94, 60, .04), transparent 30%);
}

.service-detail-hero {
  min-height: 70svh;
  padding: 150px 0 58px;
}

.service-detail-hero__inner {
  width: min(980px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.service-detail-breadcrumb {
  margin-bottom: 22px;
  font-size: 15px;
}

.service-detail-hero__copy h1 {
  max-width: 900px;
  font-size: 45px;
}

.service-detail-hero__copy p {
  max-width: 860px;
  margin-top: 24px;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.65;
}

.service-detail-facts {
  max-width: 880px;
  margin-top: 36px;
}

.service-detail-facts article {
  grid-template-columns: 22px minmax(0, 1fr);
  padding: 0 22px;
}

.service-detail-facts i {
  font-size: 18px;
}

.service-detail-facts strong {
  margin-bottom: 6px;
  font-size: 17px;
}

.service-detail-facts span {
  font-size: 16px;
}

.service-detail-scroll {
  width: 34px;
  height: 46px;
  margin-top: 74px;
  font-size: 14px;
}

.service-detail-body {
  padding: 86px 0 150px;
  background:
    radial-gradient(circle at 12px 12px, rgba(164, 98, 71, .045) 1px, transparent 1.5px),
    linear-gradient(180deg, #f8f1ea, #f8f1ea);
  background-size: 16px 16px, auto;
}

.service-detail-container {
  width: min(1060px, calc(100% - 72px));
  margin: 0 auto;
}

.service-detail-body section + section {
  margin-top: 76px;
}

.service-detail-body h2 {
  margin: 0;
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
}

.service-detail-body p {
  margin: 18px 0 0;
  color: rgba(46, 36, 29, .72);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

.service-section-lead {
  max-width: 740px;
}

.service-benefits {
  padding: 0;
  overflow: visible;
  background: transparent;
  color: var(--dark);
}

.service-benefits::before,
.service-benefits::after {
  display: none;
}

.service-benefits .container {
  position: static;
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 54px;
  margin-top: 34px;
}

.service-benefit-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
  padding: 0 0 30px;
  border: 0;
  border-bottom: 1px solid rgba(139, 94, 60, .18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-benefit-card:hover {
  transform: none;
  background: transparent;
}

.service-benefit-card i {
  width: 38px;
  height: 38px;
  margin: 4px 0 0;
  border: 1px solid rgba(164, 98, 71, .42);
  background: transparent;
  color: #a26247;
  font-size: 17px;
}

.service-benefit-card h3 {
  margin: 0;
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 21px;
  line-height: 1.22;
}

.service-benefit-card p {
  margin-top: 13px;
  color: rgba(46, 36, 29, .68);
  font-size: 16px;
  line-height: 1.62;
}

.service-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 56px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-feature-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(46, 36, 29, .74);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.service-feature-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  color: #a26247;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
}

.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 28px 32px;
  margin-top: 28px;
}

.service-gallery__item {
  aspect-ratio: 1.72 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.service-gallery__item img {
  height: 100%;
}

.service-pricing {
  padding: 0;
  background: transparent;
}

.service-price-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-price-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 20px 18px;
  border: 1px solid rgba(139, 94, 60, .18);
  background: rgba(255, 255, 255, .28);
}

.service-price-card h3 {
  min-height: 48px;
  margin: 0 0 20px;
  color: rgba(46, 36, 29, .76);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.service-price-card p,
.service-price-card strong {
  display: block;
  margin: 0 0 8px;
  color: #a26247;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.service-price-card strong {
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(139, 94, 60, .16);
  font-weight: 500;
}

.service-price-card i {
  margin-right: 6px;
}

.service-price-card a {
  align-self: end;
  margin-top: 22px;
  color: #241913;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-price-card a:hover,
.service-price-card a:focus-visible {
  color: #a26247;
  outline: none;
}

.service-cta {
  padding: 0;
  background: transparent;
  color: #fff;
  text-align: left;
}

.service-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  max-width: none;
  min-height: 310px;
  padding: 70px 70px 58px;
  overflow: hidden;
  background: #a26247;
}

.service-cta__inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -36px;
  width: 285px;
  height: 350px;
  background: url("images/leaf-2.svg") center / contain no-repeat;
  opacity: .28;
  filter: brightness(0) invert(1);
  transform: rotate(-16deg);
}

.service-cta h2 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-cta p {
  max-width: 800px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .84);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.service-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 22px;
  margin-top: 0;
}

.service-cta .appointment-btn,
.service-cta__call {
  min-width: 0;
  min-height: 64px;
  height: 64px;
  padding: 0 42px;
  border-radius: 0;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.service-cta .appointment-btn {
  background: #fff;
  border-color: #fff;
  color: #a26247;
}

.service-cta .appointment-btn::before {
  background: #8b4f37;
}

.service-cta .appointment-btn__content {
  gap: 10px;
}

.service-cta .appointment-btn__icon {
  color: currentColor;
  font-size: 18px;
}

.service-cta__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .82);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.service-cta__call:hover,
.service-cta__call:focus-visible {
  background: #fff;
  color: #a26247;
  transform: translateY(-2px);
  outline: none;
}

.service-cta__whatsapp {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: #f7efe7;
  color: #a26247;
  font-size: 28px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.service-cta__whatsapp:hover,
.service-cta__whatsapp:focus-visible {
  background: #fff;
  color: #8b4f37;
  transform: translateY(-2px);
  outline: none;
}

.service-faq {
  padding: 0;
}

.service-faq__list {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.service-faq details {
  border: 0;
  border-top: 1px solid rgba(139, 94, 60, .22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-faq details:last-child {
  border-bottom: 1px solid rgba(139, 94, 60, .22);
}

.service-faq summary {
  padding: 23px 44px 23px 0;
  color: #241913;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.service-faq summary::before {
  content: "\f059";
  margin-right: 8px;
  color: #a26247;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.service-faq summary::after {
  right: 4px;
  width: auto;
  height: auto;
  background: transparent;
  color: #8b5e3c;
  font-size: 20px;
}

.service-faq details p {
  max-width: 720px;
  padding: 0 0 24px;
  font-size: 15px;
}

@media (max-width: 980px) {
  .service-detail-hero {
    min-height: 76svh;
  }

  .service-detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-facts article {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .service-detail-facts article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .service-detail-facts article:nth-child(-n + 2) {
    border-top: 0;
  }

  .service-price-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .service-detail-hero {
    min-height: 100svh;
    padding: 118px 0 44px;
  }

  .service-detail-hero__inner,
  .service-detail-container {
    width: min(100% - 32px, 1060px);
  }

  .service-detail-facts,
  .service-benefits__grid,
  .service-feature-list,
  .service-gallery__grid,
  .service-price-cards {
    grid-template-columns: 1fr;
  }

  .service-detail-facts article,
  .service-detail-facts article:nth-child(odd) {
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .service-detail-facts article:first-child {
    border-top: 0;
  }

  .service-detail-body {
    padding: 62px 0 96px;
  }

  .service-detail-body section + section {
    margin-top: 54px;
  }

  .service-benefit-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .service-gallery__item {
    aspect-ratio: 1.38 / 1;
  }

  .service-cta__inner {
    min-height: 0;
    padding: 34px 24px;
  }

  .service-cta__actions {
    display: flex;
    gap: 14px;
  }

  .service-cta .appointment-btn,
  .service-cta__call {
    width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 0 22px;
    font-size: 13px;
  }

  .service-cta__whatsapp {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .service-cta h2 {
    font-size: clamp(32px, 10vw, 45px);
  }

  .service-cta p {
    font-size: 17px;
  }
}

/* Contact page */
.contact-page {
  background: #f8f1ea;
}

.contact-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 0 82px;
  color: #fff;
  text-align: center;
  background: url("images/banner-image-contact.jpg") center / cover no-repeat;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 15, 10, .72), rgba(26, 15, 10, .34) 48%, rgba(26, 15, 10, .76)),
    linear-gradient(180deg, rgba(15, 8, 5, .5), rgba(15, 8, 5, .12) 42%, rgba(15, 8, 5, .58));
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(58px, 6.4vw, 94px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .94);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.45;
}

.contact-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .72);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
}

.contact-breadcrumb strong,
.contact-breadcrumb a:hover,
.contact-breadcrumb a:focus-visible {
  color: #fff;
  outline: none;
}

.contact-body {
  padding: 96px 0 132px;
  background:
    radial-gradient(circle at 12px 12px, rgba(164, 98, 71, .045) 1px, transparent 1.5px),
    linear-gradient(180deg, #f8f1ea, #f8f1ea);
  background-size: 16px 16px, auto;
}

.contact-section-heading {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.contact-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #a26247;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-eyebrow::before,
.contact-eyebrow::after {
  content: "";
  width: 12px;
  height: 16px;
  background: url("images/leaf-left.svg") center / contain no-repeat;
}

.contact-eyebrow::after {
  background-image: url("images/leaf-right.svg");
}

.contact-section-heading h2,
.contact-form-card h2 {
  margin: 0;
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(40px, 4.2vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.contact-info__grid article {
  min-height: 185px;
  padding: 0 34px;
  text-align: center;
  border-left: 1px solid rgba(139, 94, 60, .22);
}

.contact-info__grid article:first-child {
  border-left: 0;
}

.contact-info__grid i {
  color: #a26247;
  font-size: 37px;
}

.contact-info__grid h3 {
  margin: 26px 0 18px;
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-info__grid p,
.contact-info__grid a {
  margin: 0;
  color: rgba(46, 36, 29, .7);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.contact-info__actions {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}

.contact-info__actions span {
  height: 1px;
  background: rgba(139, 94, 60, .2);
}

.contact-primary-btn,
.contact-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 36px;
  border: 1px solid #a26247;
  border-radius: 0;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.contact-primary-btn {
  background: #a26247;
  color: #fff;
}

.contact-light-btn {
  background: rgba(255, 255, 255, .72);
  color: #a26247;
}

.contact-primary-btn:hover,
.contact-primary-btn:focus-visible,
.contact-light-btn:hover,
.contact-light-btn:focus-visible {
  transform: translateY(-2px);
  background: #8b4f37;
  border-color: #8b4f37;
  color: #fff;
  outline: none;
}

.contact-main {
  padding-top: 96px;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-form-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 64px 60px 74px;
  border: 1px solid rgba(139, 94, 60, .28);
  background: rgba(248, 241, 234, .36);
  overflow: hidden;
  text-align: center;
}

.contact-form-card::after {
  content: "";
  position: absolute;
  left: -38px;
  bottom: -56px;
  width: 190px;
  height: 250px;
  background: url("images/leaf-2.svg") center / contain no-repeat;
  opacity: .18;
  transform: rotate(18deg);
  pointer-events: none;
}

.contact-form-card > * {
  position: relative;
  z-index: 1;
}

.contact-form-card > p:not(.contact-eyebrow) {
  margin: -6px 0 22px;
  color: rgba(46, 36, 29, .72);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
}

.contact-form-card label {
  position: relative;
  display: block;
}

.contact-form-card label span {
  position: absolute;
  left: 22px;
  top: 50%;
  color: rgba(46, 36, 29, .58);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-form-card__message span {
  top: 24px;
  transform: none;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  min-height: 62px;
  padding: 18px 56px 18px 22px;
  border: 1px solid rgba(139, 94, 60, .25);
  border-radius: 0;
  background: rgba(255, 255, 255, .78);
  color: #241913;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 148px;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #a26247;
  box-shadow: 0 0 0 4px rgba(164, 98, 71, .08);
}

.contact-form-card label:focus-within span,
.contact-form-card label:has(input:not(:placeholder-shown)) span,
.contact-form-card label:has(textarea:not(:placeholder-shown)) span {
  opacity: 0;
}

.contact-form-card i:not(.contact-primary-btn i) {
  position: absolute;
  right: 20px;
  top: 22px;
  color: rgba(46, 36, 29, .52);
  font-size: 16px;
}

.contact-form-card button {
  justify-self: center;
  margin-top: 0;
  cursor: pointer;
}

.contact-map-stack {
  display: grid;
  gap: 28px;
}

.contact-map-card {
  padding: 28px;
  border: 1px solid rgba(139, 94, 60, .22);
  background: rgba(255, 255, 255, .42);
}

.contact-map-card .contact-eyebrow {
  margin-bottom: 8px;
}

.contact-map-card h3 {
  margin: 0 0 20px;
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 310px;
  filter: saturate(.85) sepia(.08);
}

@media (max-width: 1180px) {
  .contact-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .contact-info__grid article:nth-child(3) {
    border-left: 0;
  }

  .contact-main__grid {
    grid-template-columns: 1fr;
  }

  .contact-map-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: 70svh;
    padding: 124px 0 58px;
  }

  .contact-body {
    padding: 70px 0 92px;
  }

  .contact-info__grid,
  .contact-map-stack,
  .contact-info__actions {
    grid-template-columns: 1fr;
  }

  .contact-info__grid article,
  .contact-info__grid article:nth-child(3) {
    padding: 0 0 34px;
    border-left: 0;
    border-bottom: 1px solid rgba(139, 94, 60, .18);
  }

  .contact-info__actions span {
    display: none;
  }

  .contact-main {
    padding-top: 70px;
  }

  .contact-form-card {
    padding: 42px 24px 54px;
  }

  .contact-map-card {
    padding: 20px;
  }

  .contact-map-card iframe {
    height: 270px;
  }
}

/* Blog list page */
.blog-list-page {
  background: #f8f1ea;
}

.blog-list-hero {
  position: relative;
  min-height: 46svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 126px 0 64px;
  color: #fff;
  text-align: center;
  background: url("images/banner-service-details.jpg") center 43% / cover no-repeat;
}

.blog-list-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 15, 9, .76), rgba(29, 15, 9, .38) 48%, rgba(29, 15, 9, .78)),
    linear-gradient(180deg, rgba(13, 7, 5, .54), rgba(13, 7, 5, .18) 44%, rgba(13, 7, 5, .62));
}

.blog-list-hero__inner {
  position: relative;
  z-index: 1;
}

.blog-list-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-list-hero p {
  margin: 12px auto 0;
  color: rgba(255, 255, 255, .92);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.blog-list-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .75);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
}

.blog-list-breadcrumb strong,
.blog-list-breadcrumb a:hover,
.blog-list-breadcrumb a:focus-visible {
  color: #fff;
  outline: none;
}

.blog-list-body {
  padding: 86px 0 132px;
  background:
    radial-gradient(circle at 12px 12px, rgba(164, 98, 71, .045) 1px, transparent 1.5px),
    linear-gradient(180deg, #f8f1ea, #f8f1ea);
  background-size: 16px 16px, auto;
}

.blog-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 78px;
  align-items: start;
}

.blog-list-main {
  display: grid;
  gap: 62px;
}

.blog-list-post {
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(139, 94, 60, .18);
}

.blog-list-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 17px;
  margin-bottom: 14px;
  color: rgba(46, 36, 29, .58);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-list-post__meta i {
  margin-right: 5px;
  color: #a26247;
}

.blog-list-post__meta a {
  padding: 4px 10px;
  border: 1px solid rgba(164, 98, 71, .28);
  border-radius: 999px;
  color: #a26247;
  font-size: 11px;
}

.blog-list-post h2 {
  margin: 0 0 20px;
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(29px, 2.45vw, 42px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.blog-list-post img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.blog-list-post p {
  margin: 22px 0 0;
  color: rgba(46, 36, 29, .7);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 28px;
  background: #a26247;
  color: #fff;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .3s ease, transform .3s ease;
}

.blog-read-more:hover,
.blog-read-more:focus-visible {
  background: #8b4f37;
  transform: translateY(-2px);
  outline: none;
}

.blog-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 46px;
}

.blog-search {
  position: relative;
}

.blog-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.blog-search input {
  width: 100%;
  height: 60px;
  padding: 0 58px 0 20px;
  border: 1px solid rgba(139, 94, 60, .24);
  background: rgba(255, 255, 255, .62);
  color: #241913;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  outline: none;
}

.blog-search button {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 58px;
  height: 60px;
  border: 0;
  background: transparent;
  color: #a26247;
  cursor: pointer;
}

.blog-widget h3 {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(139, 94, 60, .18);
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 25px;
  font-weight: 400;
}

.blog-widget > a:not(.blog-recent) {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  color: rgba(46, 36, 29, .66);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 15px;
}

.blog-widget a:hover,
.blog-widget a:focus-visible {
  color: #a26247;
  outline: none;
}

.blog-recent {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 0 0 18px;
  color: rgba(46, 36, 29, .72);
  font-family: "Jost", "Poppins", Arial, sans-serif;
}

.blog-recent + .blog-recent {
  padding-top: 18px;
}

.blog-recent img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.blog-recent strong,
.blog-recent small {
  display: block;
}

.blog-recent strong {
  color: #a26247;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.blog-recent small {
  margin-top: 7px;
  color: rgba(46, 36, 29, .48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-promo {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 420px;
  overflow: hidden;
  padding: 34px;
  color: #fff;
}

.blog-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(29, 15, 9, .08), rgba(29, 15, 9, .7));
}

.blog-promo img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.blog-promo span,
.blog-promo strong,
.blog-promo small {
  position: relative;
  z-index: 2;
  justify-self: start;
}

.blog-promo span {
  padding: 6px 12px;
  background: #fff;
  color: #a26247;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.blog-promo strong {
  margin-top: 12px;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
}

.blog-promo small {
  margin-top: 16px;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-tags a {
  padding: 9px 14px;
  border: 1px solid rgba(139, 94, 60, .22);
  background: rgba(255, 255, 255, .38);
  color: rgba(46, 36, 29, .66);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.blog-pagination a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(139, 94, 60, .22);
  border-radius: 50%;
  color: rgba(46, 36, 29, .62);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
}

.blog-pagination a.is-active,
.blog-pagination a:hover,
.blog-pagination a:focus-visible {
  background: #a26247;
  color: #fff;
  outline: none;
}

@media (max-width: 1100px) {
  .blog-list-layout {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 720px) {
  .blog-list-hero {
    min-height: 58svh;
    padding: 118px 0 52px;
  }

  .blog-list-body {
    padding: 64px 0 90px;
  }

  .blog-list-main {
    gap: 46px;
  }

  .blog-list-post img {
    height: 250px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-promo {
    min-height: 330px;
  }
}

/* Blog single page */
.blog-single-page {
  background: #f8f1ea;
}

.blog-single-page .fade-up {
  opacity: 1;
  transform: none;
}

.blog-single-hero {
  position: relative;
  min-height: 46svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 126px 0 64px;
  color: #fff;
  text-align: center;
  background: url("images/banner-service-details.jpg") center 43% / cover no-repeat;
}

.blog-single-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 15, 9, .76), rgba(29, 15, 9, .38) 48%, rgba(29, 15, 9, .78)),
    linear-gradient(180deg, rgba(13, 7, 5, .54), rgba(13, 7, 5, .18) 44%, rgba(13, 7, 5, .62));
}

.blog-single-hero__inner {
  position: relative;
  z-index: 1;
}

.blog-single-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.05;
}

.blog-single-hero p {
  margin: 12px auto 0;
  color: rgba(255, 255, 255, .92);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.blog-single-body {
  padding: 86px 0 132px;
  background:
    radial-gradient(circle at 12px 12px, rgba(164, 98, 71, .045) 1px, transparent 1.5px),
    linear-gradient(180deg, #f8f1ea, #f8f1ea);
  background-size: 16px 16px, auto;
}

.blog-single-container {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-single-container h2 {
  margin: 0 0 24px;
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.blog-single-container h3 {
  margin: 52px 0 18px;
  color: #241913;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: clamp(29px, 2.6vw, 42px);
  font-weight: 400;
  line-height: 1.18;
}

.blog-single-container h4 {
  margin: 32px 0 14px;
  color: #241913;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.blog-single-container p,
.blog-single-container li {
  color: rgba(46, 36, 29, .72);
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.78;
}

.blog-single-container p {
  margin: 0 0 20px;
}

.blog-single-main-image {
  width: 100%;
  height: 430px;
  margin: 40px 0 42px;
  object-fit: cover;
}

.blog-single-container ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.blog-single-container li {
  position: relative;
  padding-left: 25px;
}

.blog-single-container li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 1px;
  color: #a26247;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
}

.blog-single-container blockquote {
  margin: 46px 0;
  padding: 42px 48px;
  border: 1px solid rgba(139, 94, 60, .2);
  background: rgba(255, 255, 255, .38);
  text-align: center;
}

.blog-single-container blockquote p {
  margin: 0;
  color: #a26247;
  font-family: "Rufina", "Playfair Display", serif;
  font-size: 23px;
  line-height: 1.48;
}

.blog-single-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(139, 94, 60, .18);
}

.blog-single-share span {
  margin-right: 6px;
  color: #241913;
  font-family: "Jost", "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-single-share a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(139, 94, 60, .22);
  border-radius: 50%;
  color: #a26247;
  font-size: 13px;
  transition: background .25s ease, color .25s ease;
}

.blog-single-share a:hover,
.blog-single-share a:focus-visible {
  background: #a26247;
  color: #fff;
  outline: none;
}

@media (max-width: 720px) {
  .blog-single-hero {
    min-height: 58svh;
    padding: 118px 0 52px;
  }

  .blog-single-body {
    padding: 64px 0 90px;
  }

  .blog-single-container {
    width: min(100% - 32px, 820px);
  }

  .blog-single-main-image {
    height: 260px;
    margin: 30px 0 34px;
  }

  .blog-single-container blockquote {
    padding: 30px 22px;
  }
}

@media (max-width: 720px) {
  .categories {
    padding: 58px 0 22px;
    background: #fffaf6;
  }

  .categories::before,
  .categories::after {
    opacity: .35;
  }

  .categories .container {
    width: min(100% - 28px, 420px);
  }

  .categories .section-intro {
    max-width: 320px;
    margin: 0 auto 26px;
    text-align: center;
  }

  .categories .section-intro .subtitle {
    justify-content: center;
    font-size: 11px;
  }

  .categories .section-intro h2 {
    font-size: 22px;
    line-height: 1.22;
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
  }

  .category-card {
    display: grid;
    grid-template-rows: 96px auto;
    gap: 10px;
    width: 100%;
    min-height: 0;
    margin: 0;
    overflow: visible;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .category-card:hover {
    transform: none;
    box-shadow: none;
  }

  .category-card::after {
    display: none;
  }

  .category-card img {
    width: 100%;
    height: 96px;
    min-height: 0;
    border-radius: 28px;
    box-shadow: 0 12px 28px rgba(46, 36, 29, .12);
  }

  .category-card:hover img {
    transform: none;
  }

  .category-card div {
    position: static;
    padding: 0 2px;
    text-align: center;
  }

  .category-card h3 {
    margin: 0;
    color: #2e241d;
    font-family: "Jost", "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
  }

  .stats {
    padding: 0px 0 44px;
    background: #fffaf6;
  }

  .stats .container {
    width: min(100% - 28px, 420px);
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .stat-card {
    min-height: 92px;
    padding: 8px 2px;
    border: 0;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  .stat-icon img {
    width: 24px;
    height: 24px;
  }

  .stat-card strong {
    font-size: 22px;
    font-weight: 700;
  }

  .stat-card p {
    margin-top: 4px;
    color: rgba(46, 36, 29, .72);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
  }

  .stats-divider {
    display: none;
  }

  .instagram-feed {
    padding: 58px 0 70px;
    background: #fffaf6;
  }

  .instagram-feed .container {
    width: min(100% - 54px, 380px);
  }

  .instagram-heading {
    display: block;
    margin-bottom: 28px;
    text-align: center;
  }

  .instagram-heading h2 {
    color: #2e241d;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .social-tabs {
    justify-content: center;
    margin-top: 30px;
    padding-bottom: 0;
    color: #a26247;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
  }

  .social-tabs a:not(:first-child),
  .social-tabs span {
    display: none;
  }

  .social-tabs a:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .social-tabs a:first-child::before {
    content: "\f16d";
    font-family: "Font Awesome 6 Brands";
    font-size: 16px;
    font-weight: 400;
  }

  .social-tabs a:first-child {
    font-size: 0;
  }

  .social-tabs a:first-child::after {
    content: "Follow Us";
    font-size: 11px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .instagram-tile {
    height: auto;
    aspect-ratio: 1 / 1.1;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(46, 36, 29, .1);
  }

  .instagram-tile img {
    height: 100%;
  }
}
