@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ivory: #fffaf5;
  --cream: #f7eee8;
  --blush: #dfb7af;
  --rose: #a8736d;
  --rose-dark: #74443f;
  --espresso: #261b19;
  --ink: #302522;
  --muted: #7b6b66;
  --gold: #c9a15b;
  --line: rgba(116, 68, 63, .16);
  --glass: rgba(255, 250, 245, .78);
  --shadow: 0 28px 80px rgba(54, 31, 28, .18);
  --soft-shadow: 0 18px 48px rgba(54, 31, 28, .10);
  --radius-xl: 42px;
  --radius-md: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(223, 183, 175, .42), transparent 30%),
    radial-gradient(circle at 90% 26%, rgba(201, 161, 91, .18), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, #fff 45%, #fff8f4 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body::selection { background: var(--rose); color: white; }

img { display: block; max-width: 100%; }

a { color: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .035;
  background-image:
    repeating-radial-gradient(circle at 0 0, #000 0, #000 1px, transparent 1px, transparent 6px);
  mix-blend-mode: multiply;
}

.container {
  width: min(1180px, calc(100% - 42px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background .25s ease, box-shadow .25s ease, border .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 245, .90);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(54,31,28,.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1240px, calc(100% - 34px));
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-symbol {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 28%),
    linear-gradient(135deg, var(--rose-dark), var(--gold));
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(116,68,63,.25);
}

.brand-text strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  color: var(--rose-dark);
  letter-spacing: -.02em;
}

.brand-text small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--espresso);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border .22s ease;
}

.nav-cta {
  background: var(--espresso);
  color: #fff;
  padding: 13px 22px;
  box-shadow: 0 14px 30px rgba(38,27,25,.18);
}

.btn {
  min-height: 54px;
  padding: 16px 26px;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  box-shadow: 0 18px 38px rgba(116,68,63,.24);
}

.btn.ghost {
  color: var(--espresso);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(54,31,28,.20);
}

.menu-toggle {
  display: none;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--espresso);
  font-size: 23px;
}

.luxury-section {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 150px 0 76px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,250,245,.95) 0%, rgba(255,250,245,.82) 38%, rgba(255,250,245,.22) 75%, rgba(255,250,245,.12) 100%),
    linear-gradient(0deg, rgba(38,27,25,.22), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.pretitle,
.label,
.section-heading span,
.review-score span,
.final-inner p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

.pretitle::before,
.label::before,
.section-heading span::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 8vw, 116px);
  line-height: .84;
  letter-spacing: -.055em;
  color: var(--espresso);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 19px;
  line-height: 1.85;
  color: #5f504b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: 620px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.54);
  backdrop-filter: blur(14px);
  box-shadow: var(--soft-shadow);
}

.hero-stats div {
  padding: 18px;
  border-right: 1px solid rgba(116,68,63,.12);
}

.hero-stats div:last-child { border-right: 0; }

.hero-stats strong {
  display: block;
  color: var(--rose-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  right: 34px;
  bottom: 36px;
  z-index: 3;
  color: var(--espresso);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 54px;
  margin-top: 14px;
  background: var(--espresso);
  opacity: .45;
}

.section {
  padding: 108px 0;
}

.intro {
  padding: 96px 0 76px;
}

.intro-grid {
  display: grid;
  grid-template-columns: .35fr .65fr;
  gap: 54px;
  align-items: start;
}

.intro-kicker {
  color: var(--rose-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.05;
}

.intro-copy h2,
.section-heading h2,
.experience-copy h2,
.review-copy h2,
.appointment-card h2,
.final-inner h2 {
  margin-bottom: 20px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .95;
  letter-spacing: -.04em;
}

.intro-copy p,
.experience-copy p,
.review-copy p,
.appointment-card p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 44px;
}

.section-heading.centered {
  display: block;
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered span {
  justify-content: center;
}

.rituals {
  background: linear-gradient(180deg, rgba(247,238,232,.65), rgba(255,255,255,.88));
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ritual-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,245,.74));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.ritual-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(223,183,175,.22);
}

.ritual-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(201,161,91,.42);
}

.ritual-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .14em;
}

.ritual-card h3 {
  margin: 72px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--rose-dark);
  font-size: 34px;
  line-height: 1;
}

.ritual-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.72;
}

.experience {
  background:
    radial-gradient(circle at 15% 60%, rgba(223,183,175,.28), transparent 30%),
    var(--ivory);
}

.experience-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.experience-images {
  position: relative;
  min-height: 590px;
}

.experience-images img {
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-main {
  width: 78%;
  height: 520px;
  border-radius: 44px;
}

.image-floating {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 300px;
  border-radius: 32px;
  border: 8px solid var(--ivory);
}

.lux-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.lux-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}

.lux-list strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
}

.lux-list span {
  font-weight: 800;
  color: var(--espresso);
}

.gallery {
  background: var(--espresso);
  color: #fff;
}

.gallery .section-heading h2 {
  color: #fff;
}

.gallery .section-heading span,
.gallery .section-heading p {
  color: var(--gold);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.masonry figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #000;
}

.masonry figure.big { grid-column: span 2; grid-row: span 2; }
.masonry figure.tall { grid-row: span 2; }
.masonry figure.wide { grid-column: span 2; }

.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: transform .5s ease, opacity .5s ease;
}

.masonry figure:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.masonry figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  text-shadow: 0 8px 24px rgba(0,0,0,.34);
}

.masonry figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.42), transparent 58%);
}

.reviews {
  background:
    linear-gradient(135deg, rgba(255,250,245,.86), rgba(247,238,232,.76));
}

.reviews-grid {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 34px;
  align-items: stretch;
}

.review-score,
.review-copy {
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--soft-shadow);
}

.review-score {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 42px;
}

.review-score strong {
  display: block;
  color: var(--rose-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(94px, 10vw, 150px);
  line-height: .78;
}

.review-score p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.review-copy {
  padding: 48px;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.review-tags span {
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--rose-dark);
  font-weight: 800;
  font-size: 13px;
}

.appointment {
  background: var(--ivory);
}

.appointment-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 24px;
  align-items: stretch;
}

.appointment-card {
  padding: 52px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,238,232,.74));
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.contact-lines {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.contact-lines a,
.contact-lines div {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.contact-lines strong {
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.contact-lines span {
  color: var(--espresso);
  font-weight: 700;
  line-height: 1.45;
}

.map-wrap {
  min-height: 560px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.final {
  padding: 50px 0 112px;
  background: var(--ivory);
}

.final-inner {
  position: relative;
  overflow: hidden;
  padding: 68px 46px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(116,68,63,.96), rgba(168,115,109,.94)),
    url("../img/hero-centro-estetico-incanto-beauty-cellamare.webp") center/cover;
  box-shadow: var(--shadow);
}

.final-inner::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 38px;
  pointer-events: none;
}

.final-inner > * {
  position: relative;
  z-index: 1;
}

.final-inner h2 {
  max-width: 850px;
  margin-inline: auto;
  color: #fff;
}

.final-inner p {
  justify-content: center;
  color: rgba(255,255,255,.78);
}

.final-inner .btn {
  background: #fff;
  color: var(--rose-dark);
  box-shadow: none;
}

.site-footer {
  padding: 34px 0;
  background: #1f1715;
  color: rgba(255,255,255,.66);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid strong,
.footer-grid span {
  display: block;
}

.footer-grid strong {
  margin-bottom: 4px;
  color: #fff;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  padding: 15px 20px;
  border-radius: 999px;
  background: #2fb344;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s ease, transform .85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav.is-open {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 86px;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 28px;
    background: rgba(255,250,245,.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open a {
    padding: 16px;
    border-radius: 18px;
  }

  .site-nav.is-open a::after {
    display: none;
  }

  .intro-grid,
  .experience-grid,
  .reviews-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }

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

  .masonry figure.big,
  .masonry figure.wide {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    width: min(100% - 24px, 1240px);
    min-height: 76px;
  }

  .brand-symbol {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .luxury-section {
    min-height: 92vh;
    padding: 132px 0 52px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255,250,245,.94) 0%, rgba(255,250,245,.82) 72%, rgba(255,250,245,.55) 100%),
      linear-gradient(0deg, rgba(38,27,25,.20), transparent 52%);
  }

  h1 {
    font-size: clamp(50px, 15vw, 78px);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(116,68,63,.12);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .intro {
    padding-top: 72px;
  }

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

  .ritual-card {
    min-height: auto;
  }

  .ritual-card h3 {
    margin-top: 46px;
  }

  .experience-images {
    min-height: 420px;
  }

  .image-main {
    width: 88%;
    height: 370px;
  }

  .image-floating {
    width: 52%;
    height: 220px;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .masonry figure.big,
  .masonry figure.wide,
  .masonry figure.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .appointment-card,
  .review-copy,
  .review-score {
    padding: 30px;
    border-radius: 32px;
  }

  .map-wrap {
    min-height: 420px;
  }

  .final-inner {
    padding: 48px 24px;
    border-radius: 34px;
  }

  .wa-float {
    left: 14px;
    right: 14px;
    text-align: center;
  }
}


/* Conversion optimization additions */
.promo-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,161,91,.20), transparent 24%),
    linear-gradient(135deg, rgba(116,68,63,.96), rgba(168,115,109,.94));
}

.promo-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 48px;
  border-radius: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: var(--shadow);
}

.promo-box h2 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.04em;
}

.promo-box p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.8;
}

.promo-box .label {
  color: rgba(255,255,255,.78);
}

.promo-box .btn {
  background: #fff;
  color: var(--rose-dark);
  box-shadow: none;
  white-space: nowrap;
}

.testimonial-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.testimonial-card div {
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: .08em;
}

.testimonial-card h3 {
  margin-bottom: 10px;
  color: var(--rose-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1040px) {
  .promo-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .promo-box {
    padding: 30px;
    border-radius: 32px;
  }
}


.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--rose-dark);
  font-weight: 900;
}


/* Upgrade sezione trattamenti con icone */
.ritual-grid {
  grid-template-columns: repeat(4, 1fr);
}

.ritual-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.ritual-card .ritual-number,
.ritual-card > span:first-child {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .14em;
}

.ritual-icon {
  width: 58px;
  height: 58px;
  margin-top: 26px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--rose-dark);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.72), transparent 34%),
    linear-gradient(135deg, rgba(223,183,175,.45), rgba(201,161,91,.22));
  border: 1px solid rgba(201,161,91,.24);
  font-size: 25px;
  box-shadow: 0 14px 34px rgba(54,31,28,.08);
}

.ritual-card h3 {
  margin-top: 28px !important;
}

.service-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--rose-dark);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-link::after {
  content: " ->";
}

.service-link:hover {
  color: var(--gold);
}

@media (max-width: 1180px) {
  .ritual-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1040px) {
  .ritual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .ritual-card {
    min-height: auto;
  }
}
