:root {
  --cream: #fff9f7;
  --paper: #fffdfb;
  --blush: #f5dfe2;
  --blush-deep: #dfbfc1;
  --wine: #9f5f65;
  --wine-dark: #3d2d2a;
  --clay: #795247;
  --sand: #ead8cf;
  --sand-light: #f5eae5;
  --gold: #a87435;
  --gold-soft: #d9b98c;
  --ink: #302423;
  --muted: #725f5b;
  --line: rgba(36, 26, 27, 0.14);
  --shadow: 0 28px 70px rgba(69, 46, 42, 0.15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 6.2vw, 6.8rem);
  letter-spacing: -0.055em;
}

h1 i {
  color: var(--wine);
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 5vw, 5.35rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.025em;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(90px, 11vw, 160px);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--wine);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 249, 247, 0.94);
  box-shadow: 0 8px 30px rgba(63, 29, 31, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-grid;
  color: var(--ink);
  line-height: 1;
  text-align: center;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.36em;
}

.brand-sub {
  margin-top: 5px;
  color: var(--wine);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.55em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.82rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 20px;
  color: white;
  background: var(--wine-dark);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--clay);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 130px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 223, 226, 0.9), transparent 34%),
    linear-gradient(135deg, #fffaf8 0%, #fff7f4 55%, #f4dde0 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(165, 100, 105, 0.08) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  top: 16%;
  left: -9vw;
  width: 32vw;
  min-width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(165, 100, 105, 0.2);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: calc(100svh - 130px);
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding-bottom: 100px;
}

.signature {
  display: grid;
  width: min(100%, 34rem);
  justify-items: center;
  margin-bottom: 42px;
  padding-left: 2px;
  line-height: 0.86;
  text-align: center;
  transform: translateX(-18px);
}

.signature > span {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  letter-spacing: 0.46em;
  margin-right: -0.46em;
}

.signature > small {
  margin-top: 12px;
  margin-right: -0.72em;
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.72em;
}

.signature > em {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: clamp(0.48rem, 0.9vw, 0.78rem);
  margin-top: 18px;
  padding: 0;
  font-style: normal;
  line-height: 1;
}

.signature-by {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.signature-hancilove {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(0.82rem, 1.25vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
}

.signature-hancilove > span {
  color: var(--gold);
}

.signature-hancilove > strong {
  color: var(--wine);
  font-weight: 600;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy > .eyebrow {
  margin-bottom: 34px;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 26px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg,
.scroll-cue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: white;
  background: var(--wine-dark);
}

.button-primary:hover {
  background: var(--clay);
}

.button-outline {
  border-color: var(--wine);
  color: var(--wine);
}

.button-outline:hover {
  color: white;
  background: var(--wine);
}

.text-link {
  position: relative;
  padding-bottom: 5px;
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.45);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 44px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
  list-style: none;
}

.hero-notes li {
  position: relative;
  padding-left: 14px;
}

.hero-notes li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 570px);
  justify-self: end;
  padding: 16px 42px 40px 0;
}

.photo-frame {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  z-index: 1;
  aspect-ratio: 0.77;
  box-shadow: var(--shadow);
}

.hero-photo::after,
.experience-main::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  content: "";
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-visual::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74%;
  height: 76%;
  border: 1px solid rgba(165, 100, 105, 0.38);
  content: "";
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 78px;
  display: grid;
  min-width: 220px;
  padding: 22px 26px;
  color: white;
  background: var(--clay);
  box-shadow: 0 20px 45px rgba(69, 46, 42, 0.24);
}

.hero-card span {
  font-family: var(--serif);
  font-size: 1.5rem;
}

.hero-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wax-line {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: 20px;
  width: 1px;
  height: 120px;
  background: linear-gradient(var(--gold), rgba(173, 113, 50, 0));
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 17px;
}

.welcome-strip {
  position: relative;
  z-index: 2;
  color: white;
  background: var(--wine);
}

.welcome-inner {
  display: grid;
  min-height: 220px;
  grid-template-columns: 0.7fr 1.3fr auto;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
}

.welcome-kicker {
  margin: 0;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.welcome-value {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.welcome-value strong {
  color: white;
  font-family: var(--serif);
  font-size: clamp(4.25rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.8;
  white-space: nowrap;
}

.welcome-value span {
  max-width: 190px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.05;
}

.welcome-strip .button-light {
  min-width: 190px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto clamp(54px, 7vw, 90px);
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 590px;
  grid-template-rows: auto 1fr;
  padding: clamp(32px, 5vw, 68px);
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.service-card-dark {
  color: white;
  background: var(--wine-dark);
}

.service-card-dark .eyebrow,
.service-card-dark .card-link {
  color: var(--gold-soft);
}

.service-card-dark p:not(.eyebrow),
.service-card-dark .check-list {
  color: rgba(255, 255, 255, 0.75);
}

.service-card-light {
  border: 1px solid var(--blush-deep);
  background: var(--blush);
}

.service-card-light .eyebrow,
.service-card-light .card-link {
  color: var(--clay);
}

.service-number {
  justify-self: end;
  font-family: var(--serif);
  font-size: 2rem;
  opacity: 0.5;
}

.service-card > div:last-child {
  align-self: end;
}

.service-card h3 {
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.service-card p:not(.eyebrow) {
  max-width: 500px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 38px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 1px;
  background: currentColor;
  content: "";
}

.card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 700;
}

.card-link span,
.package-card a span {
  transition: transform 180ms ease;
}

.card-link:hover span,
.package-card a:hover span {
  transform: translateX(5px);
}

.pricing {
  color: var(--ink);
  background: var(--sand);
}

.pricing .eyebrow {
  color: var(--clay);
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.pricing-heading h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.pricing-heading > p {
  margin-bottom: 10px;
  color: var(--muted);
}

.pricing-tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 54px;
  padding: 6px;
  border: 1px solid rgba(48, 36, 35, 0.18);
  background: rgba(255, 253, 251, 0.4);
}

.pricing-tabs button {
  min-width: 150px;
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: 700 0.78rem/1 var(--sans);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.pricing-tabs button[aria-selected="true"] {
  color: white;
  background: var(--wine-dark);
}

.pricing-tabs button:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 2px;
}

.pricing-panel[hidden] {
  display: none;
}

.pricing-panel-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.pricing-panel-intro h3,
.pricing-panel-intro p {
  margin: 0;
}

.pricing-panel-intro h3 {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
}

.pricing-panel-intro p {
  max-width: 560px;
  color: var(--muted);
  text-align: right;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 36px;
  border: 1px solid rgba(48, 36, 35, 0.16);
  background: rgba(255, 253, 251, 0.46);
  transition: background 220ms ease, transform 220ms ease;
}

.package-card:hover {
  background: var(--paper);
  transform: translateY(-6px);
}

.package-card.package-featured {
  color: white;
  background: var(--wine);
}

.package-card.package-featured:hover {
  background: #96595e;
}

.package-label {
  position: absolute;
  top: 0;
  right: 28px;
  margin: 0;
  padding: 8px 13px;
  color: white;
  background: var(--wine-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-featured .package-topline {
  color: rgba(255, 255, 255, 0.92);
}

.package-card h3 {
  margin: 45px 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1;
}

.package-card p {
  min-height: 55px;
  color: var(--muted);
  font-size: 0.9rem;
}

.package-featured p {
  color: white;
}

.package-card strong {
  margin: 18px 0 28px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.package-featured strong {
  color: white;
}

.package-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
}

.price-details {
  margin-top: 68px;
  border-top: 1px solid rgba(48, 36, 35, 0.2);
}

.price-details details {
  border-bottom: 1px solid rgba(48, 36, 35, 0.2);
}

.price-details summary,
.faq summary {
  cursor: pointer;
  list-style: none;
}

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

.price-details summary {
  display: grid;
  min-height: 100px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.summary-note {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-icon,
.faq summary span {
  position: relative;
  width: 28px;
  height: 28px;
}

.summary-icon::before,
.summary-icon::after,
.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.summary-icon::after,
.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .summary-icon::after,
.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  padding: 0 0 42px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(48, 36, 35, 0.11);
  color: var(--ink);
  font-size: 0.84rem;
  transition: color 180ms ease, transform 180ms ease;
}

.price-row:hover {
  color: var(--wine);
  transform: translateX(4px);
}

.price-table small {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.price-table strong {
  min-width: 74px;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.pedicure-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 0 42px;
}

.pedicure-note p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.pricing .button-outline {
  border-color: var(--wine);
  color: var(--wine);
}

.pricing .button-outline:hover {
  color: white;
  background: var(--wine);
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
}

.pricing-cta p {
  margin: 0;
  color: var(--muted);
}

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

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

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

.experience-main {
  width: 100%;
  height: 720px;
  box-shadow: var(--shadow);
}

.experience-main img,
.experience-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-main img {
  object-position: 50% 38%;
}

.experience-crop {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 330px;
  overflow: hidden;
  border: 12px solid var(--paper);
  box-shadow: 0 20px 50px rgba(80, 36, 39, 0.16);
}

.experience-crop img {
  object-position: 7% 68%;
  transform: scale(1.35);
}

.experience-copy h2 {
  max-width: 570px;
}

.steps {
  display: grid;
  gap: 0;
  margin: 48px 0;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.step h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.about {
  color: white;
  background: var(--clay);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(70px, 11vw, 150px);
  align-items: center;
}

.about-quote {
  position: relative;
  margin: 0;
  padding-left: clamp(26px, 5vw, 74px);
  color: var(--blush);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.about-quote::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: var(--gold-soft);
  content: "";
}

.about .eyebrow {
  color: white;
}

.about-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.about-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
}

.about .text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold-soft);
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 10vw, 140px);
}

.sticky-heading {
  position: sticky;
  top: 130px;
  align-self: start;
  margin: 0;
  text-align: left;
}

.sticky-heading > p:last-child {
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  min-height: 90px;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.faq summary span {
  color: var(--wine);
}

.faq details > p {
  max-width: 720px;
  padding: 0 55px 30px 0;
  color: var(--muted);
}

.contact {
  padding-top: 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  color: white;
  background: var(--wine-dark);
}

.contact-copy {
  padding: clamp(45px, 7vw, 90px);
}

.contact-copy .eyebrow {
  color: white;
}

.contact-copy h2 {
  max-width: 640px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.72);
}

.button-light {
  color: var(--wine-dark);
  background: var(--blush);
}

.button-light:hover {
  background: white;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blush);
}

.contact-item {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-right: 1px solid rgba(165, 100, 105, 0.2);
  border-bottom: 1px solid rgba(165, 100, 105, 0.2);
  color: var(--ink);
  transition: background 180ms ease;
}

a.contact-item:hover {
  background: #faeaeb;
}

.contact-item span {
  color: var(--clay);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-item strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.site-footer {
  padding: 34px 0 100px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  justify-self: start;
}

.footer-inner p,
.creator-link {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.creator-link {
  --credit-lift: 0px;
  --credit-rotate-x: 0deg;
  --credit-rotate-y: 0deg;
  --credit-spot-x: 50%;
  --credit-spot-y: 50%;
  position: relative;
  isolation: isolate;
  justify-self: end;
  display: grid;
  width: min(100%, 340px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 9px 11px 9px 9px;
  border: 1px solid rgba(159, 95, 101, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 253, 251, 0.94), rgba(245, 223, 226, 0.72));
  box-shadow: 0 10px 28px rgba(72, 42, 39, 0.08);
  color: var(--ink);
  transform: perspective(700px) translateY(var(--credit-lift)) rotateX(var(--credit-rotate-x)) rotateY(var(--credit-rotate-y));
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 180ms ease;
  will-change: transform;
}

.creator-link::before,
.creator-link::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.creator-link::before {
  inset: 0;
  background: radial-gradient(circle 100px at var(--credit-spot-x) var(--credit-spot-y), rgba(255, 255, 255, 0.95), transparent 72%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.creator-link::after {
  top: -80%;
  bottom: -80%;
  left: -45%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: rotate(18deg) translateX(-180%);
  transition: transform 650ms ease;
}

.creator-link:hover,
.creator-link:focus-visible {
  --credit-lift: -4px;
  border-color: rgba(159, 95, 101, 0.5);
  box-shadow: 0 18px 40px rgba(72, 42, 39, 0.16);
}

.creator-link:hover::before,
.creator-link:focus-visible::before {
  opacity: 1;
}

.creator-link:hover::after,
.creator-link:focus-visible::after {
  transform: rotate(18deg) translateX(720%);
}

.creator-link:active {
  --credit-lift: -1px;
}

.creator-mark,
.creator-copy,
.creator-cta {
  position: relative;
  z-index: 1;
}

.creator-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: var(--wine-dark);
  box-shadow: 0 6px 15px rgba(61, 45, 42, 0.2);
  color: white;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  transition: background 220ms ease, transform 300ms ease;
}

.creator-mark i {
  position: absolute;
  top: 4px;
  right: 3px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(168, 116, 53, 0.34);
}

.creator-link:hover .creator-mark,
.creator-link:focus-visible .creator-mark {
  background: var(--wine);
  transform: rotate(-7deg) scale(1.04);
}

.creator-link:hover .creator-mark i,
.creator-link:focus-visible .creator-mark i {
  animation: creator-pulse 1.1s ease-out infinite;
}

.creator-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-align: left;
}

.creator-copy > span {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.creator-copy strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creator-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--wine);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.creator-cta span {
  max-width: 58px;
}

.creator-cta svg {
  width: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 220ms ease;
}

.creator-link:hover .creator-cta svg,
.creator-link:focus-visible .creator-cta svg {
  transform: translateX(3px);
}

@keyframes creator-pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(168, 116, 53, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(168, 116, 53, 0);
  }
}

.mobile-whatsapp {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: white;
  background: var(--wine-dark);
  box-shadow: 0 16px 40px rgba(61, 45, 42, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.mobile-whatsapp.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-whatsapp:hover {
  background: var(--clay);
  transform: translateY(-3px);
}

.mobile-whatsapp svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

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

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 45px;
  }

  .hero-notes {
    display: grid;
    gap: 7px;
  }

  .pricing-heading,
  .about-inner {
    gap: 55px;
  }

  .package-card {
    padding: 28px;
  }

  .experience-grid {
    gap: 60px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-height: 170px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 36px, 680px);
  }

  .site-header {
    background: var(--cream);
    backdrop-filter: none;
  }

  .site-header.scrolled {
    background: var(--cream);
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-header .brand {
    position: relative;
    z-index: 103;
  }

  .nav-toggle {
    position: relative;
    z-index: 104;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
  }

  .nav-toggle > span:not(.sr-only) {
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 102;
    inset: 74px 0 0;
    display: flex;
    height: calc(100dvh - 74px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 28px 34px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--sand-light);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav > a:not(.nav-cta) {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 14px 22px;
    font-family: var(--sans);
    font-size: 0.85rem;
    line-height: 1.2;
    text-align: center;
  }

  body.menu-open .mobile-whatsapp {
    opacity: 0;
    pointer-events: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 130px;
  }

  .hero-visual {
    width: 92%;
    justify-self: center;
  }

  .hero-copy {
    padding-top: 35px;
  }

  .welcome-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 26px;
    padding-block: 46px;
  }

  .service-grid,
  .package-grid,
  .pricing-heading,
  .experience-grid,
  .about-inner,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 540px;
  }

  .pricing-heading {
    gap: 18px;
  }

  .pricing-panel-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .pricing-panel-intro p {
    max-width: 620px;
    text-align: left;
  }

  .package-card {
    min-height: 360px;
  }

  .price-table {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    gap: 80px;
  }

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

  .experience-main {
    height: 610px;
  }

  .about-inner {
    gap: 70px;
  }

  .faq-grid {
    gap: 54px;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 30px);
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding-block: 84px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(2.95rem, 13vw, 4.3rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(3rem, 13vw, 4.25rem);
    line-height: 1.05;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .signature {
    margin-bottom: 26px;
    transform: translateX(-8px);
  }

  .signature > span {
    font-size: 2.25rem;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero {
    padding-top: 94px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-copy > .eyebrow {
    margin-bottom: 22px;
  }

  .hero-lead {
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    padding: 10px 22px 30px 0;
  }

  .hero-card {
    right: 0;
    bottom: 54px;
    min-width: 190px;
    padding: 18px 21px;
  }

  .scroll-cue {
    display: none;
  }

  .service-card {
    min-height: 510px;
    padding: 30px;
  }

  .service-card h3 {
    font-size: 4rem;
  }

  .welcome-value {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .welcome-value span {
    max-width: none;
  }

  .pricing-heading {
    margin-bottom: 45px;
  }

  .pricing-tabs {
    width: 100%;
    margin-bottom: 42px;
  }

  .pricing-tabs button {
    min-width: 0;
    padding-inline: 12px;
  }

  .package-card {
    min-height: 340px;
  }

  .price-details summary {
    min-height: 88px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .summary-note {
    display: none;
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 16px;
    font-size: 0.8rem;
  }

  .price-row > span,
  .price-row > small {
    grid-column: 1;
  }

  .price-row > strong {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
  }

  .pricing-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .pedicure-note {
    align-items: stretch;
    flex-direction: column;
  }

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

  .experience-main {
    width: 85%;
    height: 480px;
  }

  .experience-crop {
    width: 48%;
    height: 230px;
    border-width: 8px;
  }

  .step {
    grid-template-columns: 43px 1fr;
    gap: 12px;
  }

  .about-quote {
    padding-left: 24px;
  }

  .faq summary {
    min-height: 82px;
    font-size: 1.45rem;
  }

  .faq details > p {
    padding-right: 20px;
  }

  .contact {
    padding-bottom: 0;
  }

  .contact-copy {
    padding: 52px 28px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-item {
    min-height: 145px;
    border-right: 0;
  }

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

  .footer-brand,
  .creator-link {
    justify-self: center;
  }

  .mobile-whatsapp {
    right: 15px;
    bottom: 15px;
    left: 15px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Soukromý přehled návštěvnosti */
.stats-page {
  min-height: 100svh;
  padding-bottom: 56px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(245, 223, 226, 0.9), transparent 27rem),
    var(--cream);
  font-family: var(--sans);
}

.stats-page * {
  box-sizing: border-box;
}

.stats-header {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 247, 0.88);
  backdrop-filter: blur(18px);
}

.stats-brand {
  display: inline-grid;
  line-height: 1;
  text-align: center;
}

.stats-brand > span {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.34em;
  margin-right: -0.34em;
}

.stats-brand > small {
  margin-top: 6px;
  margin-right: -0.5em;
  color: var(--wine);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.5em;
}

.stats-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.78rem;
  font-weight: 700;
}

.stats-header-actions a:last-child {
  color: var(--wine);
}

.stats-wrap {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
}

.stats-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 0 38px;
}

.stats-eyebrow {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stats-page .stats-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.stats-intro > div > p:last-child {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.stats-ranges {
  display: inline-flex;
  flex: none;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.86);
}

.stats-ranges a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.stats-ranges a[aria-current="page"] {
  color: white;
  background: var(--wine-dark);
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.stats-cards article,
.stats-panel,
.stats-notice {
  border: 1px solid rgba(159, 95, 101, 0.15);
  background: rgba(255, 253, 251, 0.92);
  box-shadow: 0 18px 50px rgba(72, 42, 39, 0.06);
}

.stats-cards article {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  padding: 25px;
}

.stats-cards article > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stats-cards article > strong {
  margin: auto 0 8px;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 0.85;
}

.stats-cards article > small {
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
}

.stats-panel {
  padding: 30px;
}

.stats-chart-panel {
  margin-bottom: 14px;
}

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

.stats-page .stats-panel h2,
.stats-panel-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.stats-secondary-numbers {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.75rem;
}

.stats-secondary-numbers strong {
  margin-right: 4px;
  color: var(--ink);
  font-size: 1.05rem;
}

.stats-chart {
  display: flex;
  min-height: 260px;
  align-items: stretch;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 2px;
}

.stats-bar-column {
  display: grid;
  min-width: 44px;
  flex: 1 0 44px;
  grid-template-rows: 22px 1fr 25px;
  gap: 7px;
  text-align: center;
}

.stats-bar-value {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.stats-bar-track {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: end;
  border-radius: 5px 5px 1px 1px;
  background: var(--sand-light);
}

.stats-bar-track > span {
  width: 100%;
  min-height: 4px;
  border-radius: 5px 5px 1px 1px;
  background: linear-gradient(to top, var(--wine), #d79aa0);
}

.stats-bar-column small {
  color: var(--muted);
  font-size: 0.63rem;
  white-space: nowrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.stats-ranking h2 {
  margin-bottom: 28px !important;
}

.stats-ranking ol {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stats-ranking li > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 7px;
  font-size: 0.82rem;
}

.stats-ranking li > div span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats-ranking li > div strong {
  font-size: 0.78rem;
}

.stats-ranking li > i {
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sand-light);
}

.stats-ranking li > i > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--wine);
}

.stats-table-wrap {
  overflow-x: auto;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.76rem;
  text-align: left;
}

.stats-table th {
  padding: 0 16px 12px 0;
  color: var(--wine);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats-table td {
  min-width: 108px;
  padding: 14px 16px 14px 0;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

.stats-table td:last-child {
  min-width: 220px;
}

.stats-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.stats-notice {
  padding: 28px;
  border-left: 4px solid var(--wine);
}

.stats-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 2px 0;
  color: var(--muted);
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .stats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-intro,
  .stats-panel-heading {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .stats-header {
    min-height: 74px;
    padding-inline: 18px;
  }

  .stats-header-actions {
    gap: 14px;
    font-size: 0.7rem;
  }

  .stats-header-actions a:last-child {
    display: none;
  }

  .stats-wrap {
    width: min(100% - 28px, 1320px);
  }

  .stats-intro {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    padding: 48px 0 28px;
  }

  .stats-ranges {
    align-self: flex-start;
  }

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

  .stats-cards article {
    min-height: 150px;
    padding: 22px;
  }

  .stats-panel {
    padding: 24px 20px;
  }

  .stats-panel-heading {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
  }

  .stats-secondary-numbers {
    flex-wrap: wrap;
  }

  .stats-footer {
    flex-direction: column;
    gap: 6px;
  }
}
