:root {
  --font-heading: "Oranienbaum", Georgia, serif;
  --font-body: "Google Sans", "Google Sans Text", Arial, sans-serif;
  --bg: #faf4ed;
  --bg-soft: #f4ede5;
  --surface: rgba(255, 250, 244, 0.82);
  --surface-strong: rgba(255, 252, 248, 0.96);
  --surface-dark: #8e6f59;
  --line: rgba(78, 55, 41, 0.12);
  --line-strong: rgba(78, 55, 41, 0.22);
  --text: #4e3729;
  --text-rgb: 78, 55, 41;
  --muted: #8b7565;
  --accent: #bb967c;
  --accent-rgb: 187, 150, 124;
  --accent-strong: #8e6d56;
  --sage: #ddcdbd;
  --sand: #ead9ca;
  --shadow: 0 22px 70px rgba(91, 67, 51, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100vw - 40px));
  --shell-section: min(1380px, calc(100vw - 56px));
  --transition: 180ms ease;
  --heading-tracking: -0.066em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(180deg, #fffaf5 0%, #fbf4ed 46%, #f7efe6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  display: none;
}

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

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

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

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(var(--text-rgb), 0.13);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

textarea {
  resize: vertical;
}

h1,
h2,
h3,
.eyebrow,
.brand__copy strong,
.meta-label,
.price-card__value,
.admin-stat strong {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--heading-tracking);
}

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

h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.12;
}

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

.shell--section {
  width: var(--shell-section);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--surface-dark);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  z-index: 20;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px) saturate(1.08);
  background: rgba(250, 244, 237, 0.9);
  border-bottom: 1px solid rgba(var(--text-rgb), 0.08);
  box-shadow: 0 14px 36px rgba(91, 67, 51, 0.055);
}

.site-header__inner {
  display: grid;
  gap: 0.76rem;
  padding: 0.72rem 0 0.78rem;
}

.site-header__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-header__menu-spacer {
  min-height: 46px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand--mark {
  grid-column: 2;
  justify-self: center;
}

.brand__logo {
  width: 72px;
  aspect-ratio: 1;
  object-fit: contain;
}

.brand--mark .brand__logo {
  width: clamp(124px, 12vw, 176px);
  height: auto;
  aspect-ratio: auto;
}

.brand__copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.brand__copy strong {
  font-size: 1.05rem;
}

.brand__copy small {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav--centered {
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.45rem;
  width: fit-content;
  margin-inline: auto;
  padding: 0.34rem 0.38rem;
  border: 1px solid rgba(var(--text-rgb), 0.075);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.9);
  box-shadow: 0 12px 30px rgba(91, 67, 51, 0.06);
  backdrop-filter: blur(12px);
}

.nav__link,
.mobile-nav__link,
.footer-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition:
    color var(--transition),
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.nav__link {
  padding: 0.54rem 0.88rem;
  border-radius: 999px;
}

.nav__link.is-current {
  color: var(--accent-strong);
  background: rgba(var(--accent-rgb), 0.14);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.16);
}

.nav__link:hover,
.mobile-nav__link:hover,
.footer-nav a:hover,
.footer-admin:hover {
  color: var(--accent-strong);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  grid-column: 3;
  justify-self: end;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--text-rgb), 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-radius: 999px;
  min-width: 46px;
  min-height: 46px;
  padding: 0 1rem;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.icon-button:hover,
.button:hover,
.contact-link:hover {
  transform: translateY(-1px);
}

.icon-button--menu {
  display: none;
  gap: 0.3rem;
  flex-direction: column;
  padding-inline: 0.8rem;
  grid-column: 1;
  justify-self: start;
}

.icon-button--menu span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button--primary {
  background: linear-gradient(135deg, #b89478 0%, #8f6d56 100%);
  color: white;
  box-shadow: 0 16px 34px rgba(143, 109, 86, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(var(--text-rgb), 0.09);
  color: var(--text);
}

.button--subtle {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.16);
  color: var(--accent-strong);
}

.button--compact {
  min-height: 42px;
  padding-inline: 1.1rem;
}

.button--block {
  width: 100%;
}

.button--tiny {
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  font-size: 0.84rem;
}

.button__icon {
  font-size: 0.92rem;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.button:hover .button__icon--end {
  transform: translateX(4px);
}

.section {
  position: relative;
  padding: clamp(3.35rem, 5.6vw, 5.8rem) 0;
}

.section--hero {
  padding-top: 1.2rem;
}

.section--alt {
  position: relative;
}

.section--contact {
  padding-bottom: 8rem;
}

body[data-page="home"] .section:not(.section--hero)::before {
  display: none;
}

.hero-banner-shell {
  display: grid;
  gap: 1.2rem;
}

.hero-banner {
  display: grid;
  gap: 1.25rem;
}

.intro-marquee {
  overflow: hidden;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(var(--text-rgb), 0.06);
  background: rgba(255, 252, 248, 0.48);
}

.intro-marquee__track {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  width: max-content;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 3rem);
  line-height: 0.95;
  white-space: nowrap;
  animation: introMarqueeLeft 28s linear infinite;
}

.intro-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.intro-marquee__track span::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.48);
}

.hero-banner__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.7), rgba(240, 226, 212, 0.74));
  border-block: 1px solid rgba(var(--text-rgb), 0.05);
}

.hero-banner__media picture,
.hero-banner__media img {
  width: 100%;
  height: 100%;
}

.hero-banner__media img {
  display: block;
  aspect-ratio: 3.2;
  object-fit: cover;
  object-position: center;
}

.hero-copy-shell {
  display: grid;
  gap: 1.35rem;
  max-width: 880px;
  margin-inline: auto;
  padding-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2.3rem;
}

.section-heading--hero {
  max-width: 860px;
  margin-inline: auto;
  justify-items: center;
}

.section-heading--left {
  max-width: 960px;
}

body[data-page="home"] .section-heading h2 {
  font-size: clamp(2.7rem, 5.1vw, 4.85rem);
  line-height: 0.92;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
}

.eyebrow--small {
  font-size: 0.78rem;
}

.lede {
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions,
.chip-row,
.hero-facts,
.post-card__actions,
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-promise {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-note {
  margin-top: 1.6rem;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
  margin-inline: auto;
  text-align: center;
}

.meta-label {
  font-size: 0.8rem;
  color: var(--accent);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.11);
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.chip__icon {
  font-size: 0.85rem;
}

.chip--soft {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(var(--text-rgb), 0.06);
}

.icon-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 239, 230, 0.86));
  border: 1px solid rgba(var(--text-rgb), 0.06);
  box-shadow: 0 14px 30px rgba(91, 67, 51, 0.08);
  color: var(--accent-strong);
  flex-shrink: 0;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.icon-badge__glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.icon-badge__glyph::before {
  display: block;
}

.icon-badge--tiny {
  width: 2.1rem;
  height: 2.1rem;
}

.icon-badge--tiny .icon-badge__glyph {
  font-size: 0.8rem;
}

.icon-badge--ghost {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(91, 67, 51, 0.05);
}

.icon-badge--soft {
  background: rgba(255, 255, 255, 0.9);
}

.icon-badge--warm {
  background: linear-gradient(180deg, rgba(247, 239, 231, 0.98), rgba(240, 225, 211, 0.88));
}

.icon-badge--strong {
  background: linear-gradient(135deg, #ba9378 0%, #916d56 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(143, 109, 86, 0.18);
  color: #fffaf5;
}

.icon-badge--quote {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 236, 226, 0.92));
}

.icon-badge--lift {
  animation: iconDrift 6.6s ease-in-out infinite;
}

.surface {
  background: var(--surface);
  border: 1px solid rgba(var(--text-rgb), 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(91, 67, 51, 0.04);
  backdrop-filter: none;
}

.content-panel {
  position: relative;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.content-panel::before {
  display: none;
}

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

.hero-badge {
  position: absolute;
  left: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 1.9rem);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(var(--text-rgb), 0.08);
  color: var(--accent-strong);
  font-size: 0.92rem;
  max-width: min(100% - 2rem, 460px);
}

.hero-badge__icon {
  color: var(--accent-strong);
  font-size: 0.95rem;
}

.hero-facts {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-facts--banner {
  justify-content: center;
  padding-inline: 0.4rem;
}

.hero-actions {
  justify-content: center;
}

.hero-promise {
  justify-items: center;
}

.hero-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.2rem 0;
}

.hero-fact > span:last-child {
  max-width: 22ch;
}

.about-grid,
.contact-grid,
.pricing-grid {
  display: grid;
  gap: 1.1rem;
}

.about-grid {
  grid-template-columns: minmax(300px, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.section-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.45rem, 3.6vw, 3.2rem);
}

.section-story--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
}

.section-story--reverse .section-story__visual {
  order: 2;
}

.section-story__content {
  min-width: 0;
}

.section-story .cards-grid--issues,
.section-story .cards-grid--services,
.section-story .pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="home"] #services .section-story {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1.16fr);
}

body[data-page="home"] #services .cards-grid--services {
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
  width: 100%;
}

body[data-page="home"] #services .section-story__content {
  width: 100%;
}

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

.section-story__visual {
  margin: 0;
  align-self: stretch;
  position: relative;
  margin-inline-start: clamp(-1.2rem, -4vw, -3.2rem);
}

.section-story--reverse .section-story__visual {
  margin-inline-start: 0;
  margin-inline-end: clamp(-1.2rem, -4vw, -3.2rem);
}

.section-visual {
  position: sticky;
  top: 7.25rem;
  overflow: hidden;
  min-height: 100%;
  aspect-ratio: 0.86;
  border-radius: 30px;
  border: 1px solid rgba(var(--text-rgb), 0.07);
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 24px 58px rgba(91, 67, 51, 0.08);
  isolation: isolate;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.5) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.5) 86%,
    transparent 100%
  );
}

.section-story--reverse .section-visual {
  -webkit-mask-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.5) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.5) 86%,
    transparent 100%
  );
}

.section-story__visual--tall .section-visual {
  aspect-ratio: 0.76;
}

.section-story__visual--wide .section-visual {
  aspect-ratio: 1.02;
}

.section-visual::before,
.section-visual::after,
.about-image::before,
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-visual::before,
.about-image::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  z-index: 1;
}

.section-visual::after,
.about-image::after {
  background: linear-gradient(
    90deg,
    rgba(250, 244, 237, 0) 42%,
    rgba(250, 244, 237, 0.28) 78%,
    rgba(250, 244, 237, 0.95) 100%
  );
  z-index: 2;
}

.section-story--reverse .section-visual::after {
  background: linear-gradient(
    270deg,
    rgba(250, 244, 237, 0) 42%,
    rgba(250, 244, 237, 0.28) 78%,
    rgba(250, 244, 237, 0.95) 100%
  );
}

.section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
  transform: scale(1.02);
}

.about-card,
.prose-card,
.price-card,
.policy-card,
.post-card,
.service-card,
.issue-card,
.testimonial-card,
.contact-card,
.privacy-card,
.admin-card,
.auth-card {
  padding: 1.45rem;
}

body[data-page="home"] .about-card,
body[data-page="home"] .about-story-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-image {
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  aspect-ratio: 0.86;
  margin-bottom: 1.2rem;
  margin-inline-start: clamp(-0.6rem, -1.4vw, -1.2rem);
  border: 1px solid rgba(var(--text-rgb), 0.06);
  box-shadow: 0 18px 44px rgba(91, 67, 51, 0.08);
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.5) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 68%,
    rgba(0, 0, 0, 0.5) 86%,
    transparent 100%
  );
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 0.85rem;
  width: min(980px, 100%);
  margin: clamp(1.2rem, 2.6vw, 2rem) auto 0;
}

.about-story-card {
  display: grid;
  align-content: start;
}

.about-accordion {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.about-panel {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.62);
  border: 1px solid rgba(var(--text-rgb), 0.055);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.about-panel[open] {
  background: rgba(255, 252, 248, 0.9);
  border-color: rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 16px 34px rgba(91, 67, 51, 0.065);
}

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

.about-panel__summary {
  display: grid;
  grid-template-columns: minmax(88px, 120px) 1fr auto;
  align-items: end;
  gap: 1.2rem;
  padding: 1.25rem 1.35rem 1.05rem;
  cursor: pointer;
  list-style: none;
}

.about-panel__summary::-webkit-details-marker {
  display: none;
}

.about-panel__number {
  display: block;
  width: auto;
  height: auto;
  color: rgba(var(--accent-rgb), 0.52);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: 0.8;
  letter-spacing: var(--heading-tracking);
  text-shadow: 0 8px 28px rgba(187, 150, 124, 0.12);
  transform: translateY(0.1rem);
}

.about-panel__head {
  display: grid;
  gap: 0.5rem;
  padding-bottom: 0.2rem;
}

.about-panel__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-panel__head h3 {
  font-size: clamp(1.62rem, 2.6vw, 2.45rem);
  line-height: 0.9;
  text-wrap: balance;
}

.about-panel__head p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
  font-size: 0.98rem;
}

.about-panel__toggle {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  align-self: start;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(var(--text-rgb), 0.06);
  box-shadow: 0 10px 22px rgba(91, 67, 51, 0.05);
}

.about-panel__toggle::before,
.about-panel__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--accent-strong);
  transform: translate(-50%, -50%);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

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

.about-panel[open] .about-panel__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.about-panel__body {
  display: grid;
  gap: 1rem;
  margin: 0 1.35rem 1.25rem;
  padding: 1.1rem 0 0 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.06);
}

.about-panel[open] .about-panel__number {
  color: rgba(var(--accent-rgb), 0.7);
}

.stat {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.72rem;
  min-height: 156px;
  padding: 1.05rem 1rem 1.15rem;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(var(--text-rgb), 0.05);
}

.stat > .icon-badge {
  width: 3.9rem;
  height: 3.9rem;
  justify-self: center;
}

.stat > .icon-badge .icon-badge__glyph {
  font-size: 1.05rem;
}

.stat__body {
  display: grid;
  gap: 0.32rem;
  justify-items: center;
}

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

.stat strong {
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.08;
}

.stat span {
  max-width: 18ch;
  line-height: 1.35;
}

.stat span,
.credential-list span,
.post-card__meta,
.contact-muted,
.site-footer__brand p,
.site-footer__year,
.privacy-updated,
.table-note {
  color: var(--muted);
}

.rich-text {
  display: grid;
  gap: 1rem;
  line-height: 1.72;
}

.about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1.6rem;
}

.feature-list,
.credential-list,
.admin-list,
.admin-table {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1rem;
}

.feature-list li {
  padding-left: 0.45rem;
  line-height: 1.6;
}

.about-feature-list {
  gap: 0.75rem;
  padding-left: 0;
}

.about-feature-list li {
  position: relative;
  list-style: none;
  padding: 0.95rem 1rem 0.95rem 2.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(var(--text-rgb), 0.04);
}

.about-feature-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.credential-list {
  display: grid;
  gap: 0.95rem;
}

.credential-list li {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.credential-list strong {
  font-size: 0.96rem;
  line-height: 1.55;
}

.note-block {
  margin-top: 1.7rem;
  padding: 1.15rem 1.2rem;
  border-left: 4px solid rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 0 20px 20px 0;
}

.about-note-block {
  margin-top: 0;
  background: rgba(245, 235, 225, 0.82);
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

.cards-grid--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.cards-grid--blog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.issue-card,
.post-card,
.testimonial-card {
  display: grid;
  gap: 1rem;
}

body[data-page="home"] #services .service-card {
  padding: clamp(1.45rem, 2.2vw, 2rem);
}

.service-card__head,
.issue-card__head,
.price-card__head,
.policy-card__head,
.contact-card__headline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
}

.service-card__audience {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card__intro {
  display: grid;
  gap: 0.42rem;
}

body[data-page="home"] #services .service-card__intro h3 {
  font-size: clamp(1.8rem, 2.35vw, 2.3rem);
}

.service-card__intro h3,
.issue-card h3,
.price-card h3,
.post-card h3,
.contact-card h3,
.media-card h3 {
  font-size: clamp(1.48rem, 2.2vw, 2.18rem);
  line-height: 0.92;
}

.media-card__publication {
  font-size: 0.98rem;
  color: var(--accent);
}

.custom-story-card {
  display: grid;
  gap: 1.2rem;
}

.custom-story-card__list {
  margin-top: -0.1rem;
}

.section-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-card__copy,
.service-card__cluster {
  display: grid;
  gap: 0.55rem;
}

body[data-page="home"] #services .service-card__copy p {
  max-width: 62ch;
  font-size: clamp(1.06rem, 1.28vw, 1.22rem);
  line-height: 1.76;
}

body[data-page="home"] #services .service-card .chip {
  font-size: 1.02rem;
  padding: 0.6rem 0.95rem;
}

body[data-page="home"] #services .section-heading--left h2 {
  max-width: 17ch;
  font-size: clamp(3.1rem, 4.8vw, 4.7rem);
}

.service-card__copy p,
.issue-card p,
.post-card p,
.testimonial-card__quote,
.contact-address p {
  line-height: 1.68;
}

.issue-card {
  min-height: 0;
}

.issue-card__head h3 {
  align-self: center;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 1.25rem;
}

.price-card__head,
.policy-card__head {
  margin-bottom: 1rem;
}

.price-card__value {
  font-size: 2rem;
  color: var(--accent-strong);
  margin-top: 0.4rem;
}

.price-card dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  margin-top: 1.1rem;
}

.price-card dl div {
  display: grid;
  gap: 0.25rem;
}

.price-card dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.price-card dd {
  margin: 0;
  line-height: 1.55;
}

.policy-card {
  min-height: 100%;
}

.post-card {
  overflow: hidden;
}

.post-card__media {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1.32;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

.post-card:hover .post-card__media img {
  transform: scale(1.04);
  filter: saturate(1.02);
}

.post-card__body {
  display: grid;
  gap: 0.75rem;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.86rem;
}

.post-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.post-meta__icon {
  color: var(--accent);
}

.testimonial-card {
  min-height: 240px;
  align-content: space-between;
}

.testimonial-card__mark {
  margin-bottom: 0.1rem;
}

.testimonial-card__quote {
  font-size: 1.04rem;
}

.testimonial-card__author {
  display: grid;
  gap: 0.25rem;
}

.empty-state {
  padding: 1.2rem 1.3rem;
  line-height: 1.68;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.86), rgba(255, 249, 243, 0.72));
  border: 1px solid rgba(var(--text-rgb), 0.06);
  box-shadow: 0 10px 24px rgba(91, 67, 51, 0.05);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item[open] {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(248, 240, 231, 0.94));
  border-color: rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 20px 38px rgba(91, 67, 51, 0.08);
}

.faq-item__summary {
  display: grid;
  grid-template-columns: minmax(68px, 96px) 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__index {
  color: rgba(var(--accent-rgb), 0.54);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  line-height: 0.84;
  letter-spacing: var(--heading-tracking);
  text-shadow: 0 8px 24px rgba(187, 150, 124, 0.12);
}

.faq-item__question {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 0.96;
  letter-spacing: var(--heading-tracking);
  text-transform: uppercase;
  text-wrap: balance;
}

.faq-item__toggle {
  position: relative;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--text-rgb), 0.06);
  box-shadow: 0 10px 24px rgba(91, 67, 51, 0.05);
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--accent-strong);
  transform: translate(-50%, -50%);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

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

.faq-item[open] .faq-item__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-item__body {
  margin: 0 1.35rem 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--text-rgb), 0.06);
  transform-origin: top;
  animation: foldDown 220ms ease both;
}

.faq-item__body p {
  max-width: 82ch;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.4rem;
}

@media (min-width: 1260px) {
  body[data-page="home"] .cards-grid--issues,
  body[data-page="home"] .cards-grid--blog,
  body[data-page="home"] .cards-grid--testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="home"] .section-story .cards-grid--issues {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-links {
  display: grid;
  gap: 0.85rem;
}

.contact-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--text-rgb), 0.05);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.contact-link__body {
  display: grid;
  gap: 0.2rem;
}

.contact-link__body > span {
  color: var(--muted);
}

.contact-link__arrow {
  color: var(--accent);
  transition: transform 220ms ease;
}

.contact-link:hover .contact-link__arrow {
  transform: translate(3px, -3px);
}

.contact-link strong {
  font-size: 1rem;
}

.contact-address {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(var(--text-rgb), 0.07);
}

.contact-address__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-address__icon {
  font-size: 0.92rem;
}

.booking-form,
.form-grid,
.admin-form,
.admin-form__grid {
  display: grid;
  gap: 1.25rem;
}

.admin-form {
  gap: 1.45rem;
}

.admin-form__grid {
  align-items: start;
  row-gap: 1.55rem;
}

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

.form-grid label,
.admin-form label {
  display: grid;
  gap: 0.62rem;
}

.form-grid label span,
.admin-form label span,
.admin-card__label {
  font-size: 0.9rem;
  color: var(--muted);
}

.admin-form label span {
  font-weight: 600;
}

.admin-form textarea {
  min-height: 7.5rem;
  overflow-y: hidden;
  line-height: 1.55;
}

.admin-form textarea[name*="about_"],
.admin-form textarea[name*="personal_note"],
.admin-form textarea[name*="body_"],
.admin-form textarea[name*="answer_"] {
  min-height: 11rem;
}

.admin-form textarea[name*="approach_"],
.admin-form textarea[name*="quote_"],
.admin-form textarea[name*="question_"] {
  min-height: 8.75rem;
}

.admin-form [data-admin-lang-field][hidden] {
  display: none;
}

.admin-lang-pair {
  display: grid;
  gap: 0.62rem;
}

.admin-lang-pair__header {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

.admin-lang-pair__title {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-lang-pair__toggle {
  display: inline-flex;
  flex-shrink: 0;
  gap: 0.18rem;
  padding: 0.18rem;
  border: 1px solid rgba(var(--text-rgb), 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.admin-lang-pair__toggle button {
  min-height: 28px;
  min-width: 36px;
  padding: 0.2rem 0.48rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.admin-lang-pair__toggle button.is-active {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--accent-strong);
}

.admin-lang-pair__body {
  display: grid;
}

.admin-lang-pair label {
  gap: 0;
}

.admin-lang-pair label > span {
  display: none;
}

.form-grid__full,
.admin-form__full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 1.5rem 0 2.4rem;
  border-top: 1px solid rgba(var(--text-rgb), 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: start;
}

.site-footer__brand strong {
  display: block;
  margin-bottom: 0.4rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

.footer-admin {
  color: rgba(25, 48, 54, 0.34);
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(12px);
  z-index: 8;
  min-width: min(520px, calc(100vw - 32px));
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: rgba(142, 109, 86, 0.96);
  color: white;
  box-shadow: 0 16px 34px rgba(143, 109, 86, 0.28);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid rgba(var(--text-rgb), 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.92);
  color: var(--text);
  box-shadow: 0 16px 36px rgba(91, 67, 51, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background var(--transition),
    border-color var(--transition);
}

.back-to-top:hover {
  background: rgba(255, 250, 244, 0.98);
  border-color: rgba(var(--accent-rgb), 0.24);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top i {
  font-size: 0.9rem;
}

.post-dialog {
  width: min(760px, calc(100vw - 28px));
  border: none;
  padding: 0;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 40px 80px rgba(91, 67, 51, 0.2);
}

.post-dialog[open] {
  animation: dialogRise 240ms ease both;
}

.post-dialog::backdrop {
  background: rgba(12, 28, 34, 0.42);
  backdrop-filter: blur(6px);
}

.post-dialog__close-row {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1rem 0;
}

.post-dialog__content {
  display: grid;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
}

.post-dialog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-dialog__excerpt {
  color: var(--muted);
  line-height: 1.65;
}

.post-dialog__image {
  width: 100%;
  border-radius: 22px;
  max-height: 320px;
  object-fit: cover;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12;
  max-width: min(360px, calc(100vw - 32px));
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(110, 78, 59, 0.96);
  color: white;
  box-shadow: 0 24px 44px rgba(91, 67, 51, 0.24);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

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

.toast[data-state="error"] {
  background: rgba(104, 38, 38, 0.98);
}

.noscript-banner {
  margin: 0 auto 20px;
  width: var(--shell);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(120, 53, 53, 0.12);
  color: #6a2e2e;
}

.mobile-nav {
  border-top: 1px solid rgba(var(--text-rgb), 0.08);
  animation: mobileNavIn 220ms ease both;
}

.mobile-nav__inner {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
}

.mobile-nav__links {
  display: grid;
  gap: 0.75rem;
}

.mobile-nav__link {
  padding: 0.78rem 0.92rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.mobile-nav__link.is-current {
  color: var(--accent-strong);
  background: rgba(var(--accent-rgb), 0.14);
}

.media-marquee {
  width: min(100vw, calc(100% + 3rem));
  margin-inline: max(-1.5rem, calc((100% - 100vw) / 2));
  overflow: hidden;
  padding: 0.4rem 0 0.8rem;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.media-marquee__track {
  display: flex;
  width: max-content;
  animation: mediaMarqueeRight 42s linear infinite;
  transform: translateX(-50%);
}

.media-marquee:hover .media-marquee__track,
.media-marquee:focus-within .media-marquee__track {
  animation-play-state: paused;
}

.media-marquee__group {
  display: flex;
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding-inline: clamp(0.6rem, 1.5vw, 1.2rem);
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.9rem;
  align-content: start;
  width: clamp(260px, 38vw, 520px);
  padding: 0;
}

.media-card--linked {
  grid-template-rows: auto 1fr auto;
}

.media-card__paper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(190px, 26vw, 360px);
  overflow: hidden;
  border: 1px solid rgba(var(--text-rgb), 0.08);
  border-radius: 4px;
  background: #fffdf8;
  box-shadow:
    0 18px 32px rgba(91, 67, 51, 0.11),
    0 2px 0 rgba(255, 255, 255, 0.82) inset;
  padding: clamp(0.55rem, 1.4vw, 1rem);
  transform: rotate(-0.7deg);
}

.media-card:nth-child(2n) .media-card__paper {
  transform: rotate(0.65deg);
}

.media-card:nth-child(3n) .media-card__paper {
  transform: rotate(-0.25deg);
}

.media-card__paper img {
  width: 100%;
  height: clamp(175px, 25vw, 340px);
  object-fit: contain;
  border-radius: 2px;
}

.media-card__body {
  display: grid;
  gap: 0.55rem;
  padding-inline: 0.2rem;
  min-width: 0;
}

.media-card .button {
  width: 100%;
  min-height: 52px;
  margin-top: 0.15rem;
  background: rgba(255, 255, 255, 0.72);
}

.media-card__body p:last-child {
  line-height: 1.7;
  color: var(--muted);
}

.useful-feed-card {
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
}

.useful-feed-card .embedsocial-hashtag {
  min-height: 240px;
}

.useful-feed-card__loading {
  margin: 0;
  color: var(--muted);
}

.useful-feed-card .feed-powered-by-es {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.useful-feed-card .feed-powered-by-es img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.privacy-shell {
  display: grid;
  gap: 1.5rem;
}

.privacy-grid {
  display: grid;
  gap: 1rem;
}

.admin-page {
  min-height: 100vh;
}

.admin-page .site-header__inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.75rem 0;
}

.admin-page .site-header__actions {
  grid-column: auto;
}

.admin-page h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  letter-spacing: var(--heading-tracking);
}

.admin-page h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.04;
  letter-spacing: var(--heading-tracking);
}

.admin-page .lede {
  max-width: 54ch;
}

.admin-shell {
  padding: 2.4rem 0 4rem;
}

.admin-shell > .shell {
  display: grid;
  gap: 1.55rem;
}

.admin-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.admin-nav {
  position: sticky;
  top: 96px;
  z-index: 7;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.6rem;
  border: 1px solid rgba(var(--text-rgb), 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.92);
  box-shadow: 0 16px 34px rgba(91, 67, 51, 0.07);
  backdrop-filter: blur(14px);
}

.admin-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.admin-nav__item:hover,
.admin-nav__item.is-active {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-strong);
}

.admin-nav__item:hover {
  transform: translateY(-1px);
}

.admin-nav__item.is-active {
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.18);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.admin-stat {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
}

.admin-stat::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -32px;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.1);
}

.admin-stat strong {
  display: block;
  font-size: 1.65rem;
  margin-bottom: 0.2rem;
}

.admin-grid {
  display: grid;
  gap: 1.65rem;
}

.admin-grid--two {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  scroll-margin-top: 180px;
}

.admin-section {
  animation: adminSectionIn 220ms ease both;
}

.admin-card {
  display: grid;
  gap: 1.25rem;
  border-radius: 24px;
  scroll-margin-top: 180px;
}

.admin-card--wide {
  overflow: visible;
}

.admin-card__header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.07);
}

.admin-card__header p {
  color: var(--muted);
  line-height: 1.55;
}

.admin-save-row {
  position: sticky;
  bottom: 18px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
  padding: 0.8rem;
  border: 1px solid rgba(var(--text-rgb), 0.08);
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.95);
  box-shadow: 0 18px 36px rgba(91, 67, 51, 0.1);
  backdrop-filter: blur(14px);
}

.admin-save-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-switch-grid {
  display: grid;
}

.admin-switch-card {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(var(--text-rgb), 0.06);
}

.admin-switch-card strong {
  font-size: 1.02rem;
}

.admin-switch-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.admin-order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0 1.05rem 1.05rem;
}

.admin-order-grid label {
  padding: 0.84rem;
  border: 1px solid rgba(var(--text-rgb), 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
}

.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.admin-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  padding: 0;
  border-radius: 6px;
  flex: 0 0 auto;
}

.admin-inline-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-list__item {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--text-rgb), 0.05);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.admin-list__item:hover {
  border-color: rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 14px 28px rgba(91, 67, 51, 0.06);
  transform: translateY(-1px);
}

.admin-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-list__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-preview {
  padding: 0.85rem;
  border: 1px dashed rgba(var(--accent-rgb), 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
}

.admin-preview__empty {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-preview__card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.admin-preview__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1.22;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-strong);
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
}

.admin-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-preview__body {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

.admin-preview__body p,
.admin-preview__body small {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-preview__body small {
  font-size: 0.78rem;
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-strong);
  font-size: 0.86rem;
}

.admin-pill--draft {
  background: rgba(211, 194, 168, 0.25);
}

.admin-form textarea[data-json="true"] {
  min-height: 200px;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.88rem;
}

.admin-form__grid--nested {
  margin-top: 0.95rem;
}

.admin-advanced {
  border: 1px solid rgba(var(--text-rgb), 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0;
  overflow: hidden;
}

.admin-advanced summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  align-items: baseline;
  justify-content: space-between;
  padding: 1rem 1.05rem;
  cursor: pointer;
  list-style: none;
}

.admin-advanced summary::-webkit-details-marker {
  display: none;
}

.admin-advanced summary span {
  color: var(--text);
  font-weight: 700;
}

.admin-advanced summary small {
  color: var(--muted);
}

.admin-advanced > .admin-form__grid {
  padding: 0 1.05rem 1.05rem;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(var(--text-rgb), 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.8rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(23, 50, 57, 0.08);
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-weight: 600;
}

.admin-empty {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
}

@keyframes adminSectionIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-wrap {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 2.5rem 0 4rem;
}

.auth-card {
  width: min(520px, calc(100vw - 32px));
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.is-admin-loading .auth-card {
  opacity: 0.68;
  transform: translateY(4px);
}

.auth-card__note {
  color: var(--muted);
  line-height: 1.65;
}

.upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.status-banner {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-strong);
  line-height: 1.6;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

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

  body:not(.has-rendered) .hero-banner__media {
    animation: heroSweep 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  body:not(.has-rendered) .hero-copy-shell > * {
    animation: heroRise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  body:not(.has-rendered) .hero-copy-shell > *:nth-child(1) {
    animation-delay: 120ms;
  }

  body:not(.has-rendered) .hero-copy-shell > *:nth-child(2) {
    animation-delay: 200ms;
  }

  body:not(.has-rendered) .hero-copy-shell > *:nth-child(3) {
    animation-delay: 280ms;
  }

  body:not(.has-rendered) .hero-copy-shell > *:nth-child(4) {
    animation-delay: 360ms;
  }

  .surface,
  .button,
  .icon-button,
  .contact-link {
    transition:
      transform var(--transition),
      box-shadow 260ms ease,
      border-color 260ms ease,
      background 260ms ease,
      color 260ms ease;
  }

  .surface:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(91, 67, 51, 0.07);
    border-color: rgba(var(--accent-rgb), 0.18);
  }

  body[data-page="home"] .about-card.surface:hover,
  body[data-page="home"] .about-story-card.surface:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
  }

  .surface:hover .icon-badge,
  .contact-link:hover .icon-badge,
  .about-panel:hover .icon-badge,
  .faq-item:hover .icon-badge {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 30px rgba(91, 67, 51, 0.1);
  }

  .service-card:hover .icon-badge--lift,
  .issue-card:hover .icon-badge--lift,
  .price-card:hover .icon-badge--lift,
  .testimonial-card:hover .icon-badge--lift,
  .contact-card:hover .icon-badge--lift {
    animation-duration: 4.8s;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSweep {
  from {
    opacity: 0;
    transform: scale(1.02);
    filter: saturate(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
  }
}

@keyframes introMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes mediaMarqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes iconDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes foldDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dialogRise {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .icon-badge--lift {
    animation: none;
  }

  .post-card__media img,
  .button__icon,
  .contact-link__arrow {
    transition: none;
  }
}

.status-banner[data-state="error"] {
  background: rgba(120, 53, 53, 0.12);
  color: #6a2e2e;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .section-story,
  .contact-grid,
  .admin-grid--two {
    grid-template-columns: 1fr;
  }

  .section-story--reverse .section-story__visual {
    order: 0;
  }

  .section-visual {
    position: relative;
    top: auto;
    min-height: 0;
    max-height: 380px;
    aspect-ratio: 1.12;
    -webkit-mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 66%,
      rgba(0, 0, 0, 0.48) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 66%,
      rgba(0, 0, 0, 0.48) 86%,
      transparent 100%
    );
  }

  .section-story__visual,
  .section-story--reverse .section-story__visual,
  .about-image {
    margin-inline: 0;
  }

  .section-story--reverse .section-visual {
    -webkit-mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 66%,
      rgba(0, 0, 0, 0.48) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 66%,
      rgba(0, 0, 0, 0.48) 86%,
      transparent 100%
    );
  }

  .section-visual::after,
  .about-image::after,
  .section-story--reverse .section-visual::after {
    background: linear-gradient(
      180deg,
      rgba(250, 244, 237, 0) 46%,
      rgba(250, 244, 237, 0.32) 78%,
      rgba(250, 244, 237, 0.96) 100%
    );
  }

  body[data-page="home"] .section-story__visual--tall .section-visual {
    aspect-ratio: 1.05;
  }

  .cards-grid--issues,
  .cards-grid--blog,
  .cards-grid--testimonials,
  .pricing-grid,
  .media-grid,
  .about-stats,
  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-image {
    aspect-ratio: 1.15;
    -webkit-mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 66%,
      rgba(0, 0, 0, 0.48) 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 66%,
      rgba(0, 0, 0, 0.48) 86%,
      transparent 100%
    );
  }
}

@media (max-width: 860px) {
  .nav--desktop,
  .button--compact {
    display: none;
  }

  .icon-button--menu {
    display: inline-flex;
  }

  .site-header__top {
    grid-template-columns: auto 1fr auto;
  }

  .form-grid,
  .about-split,
  .site-footer__inner,
  .cards-grid--services,
  .cards-grid--issues,
  .cards-grid--blog,
  .cards-grid--testimonials,
  .pricing-grid,
  .media-grid,
  .admin-stats,
  .admin-switch-list {
    grid-template-columns: 1fr;
  }

  .admin-order-grid {
    grid-template-columns: 1fr;
  }

  .admin-preview__card {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .section-story .cards-grid--services,
  body[data-page="home"] .section-story .cards-grid--issues,
  body[data-page="home"] .section-story .pricing-grid,
  body[data-page="home"] .section-story .contact-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #services .section-story {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] #services .cards-grid--services {
    max-width: none;
  }

  .sticky-cta {
    display: inline-flex;
  }

  .back-to-top {
    right: 18px;
    bottom: 86px;
    width: 50px;
    min-height: 50px;
    justify-content: center;
    padding: 0;
  }

  .back-to-top span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .site-footer__inner {
    gap: 1.5rem;
  }

  .section--contact {
    padding-bottom: 9rem;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100vw - 24px, 1180px);
    --shell-section: min(100vw - 20px, 1380px);
  }

  body[data-page="home"] .section {
    padding: 2.1rem 0;
  }

  body[data-page="home"] .section--hero {
    padding-top: 0.7rem;
  }

  body[data-page="home"] .section--contact {
    padding-bottom: 6.8rem;
  }

  body[data-page="home"] .section:not(.section--hero)::before {
    inset: 0.5rem 0;
  }

  body[data-page="home"] h1 {
    font-size: clamp(2.05rem, 10.6vw, 3.12rem);
    letter-spacing: var(--heading-tracking);
    line-height: 0.92;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  body[data-page="home"] h2 {
    font-size: clamp(1.78rem, 8.1vw, 2.42rem);
    letter-spacing: var(--heading-tracking);
    line-height: 0.94;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  body[data-page="home"] .section-heading h2 {
    font-size: clamp(1.96rem, 8.6vw, 2.72rem);
  }

  .brand__logo {
    width: 60px;
  }

  .brand--mark .brand__logo {
    width: 126px;
  }

  .brand__copy small {
    display: none;
  }

  body[data-page="home"] .hero-banner__media img {
    aspect-ratio: 0.82;
    max-height: 68vh;
    object-position: center top;
  }

  body[data-page="home"] .intro-marquee {
    padding: 0.62rem 0;
  }

  body[data-page="home"] .intro-marquee__track {
    font-size: clamp(1.38rem, 8vw, 2.35rem);
  }

  body[data-page="home"] .hero-badge {
    left: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
    font-size: 0.94rem;
  }

  body[data-page="home"] .hero-facts--banner {
    gap: 0.4rem 1rem;
    max-width: 320px;
    margin-inline: auto;
    text-align: center;
  }

  body[data-page="home"] .hero-fact {
    align-items: center;
    justify-content: center;
  }

  body[data-page="home"] .hero-copy-shell {
    gap: 1rem;
    padding-top: 1.25rem;
  }

  body[data-page="home"] .section-heading {
    gap: 0.72rem;
    margin-bottom: 1.32rem;
  }

  body[data-page="home"] .section-heading--hero {
    position: relative;
    isolation: isolate;
    gap: 0.82rem;
  }

  body[data-page="home"] .section-heading--hero::before {
    content: "";
    position: absolute;
    inset: -0.25rem 5% -0.1rem;
    background: radial-gradient(circle at center, rgba(244, 228, 212, 0.48), rgba(244, 228, 212, 0));
    filter: blur(12px);
    pointer-events: none;
    z-index: -1;
  }

  body[data-page="home"] .section-heading--hero h1 {
    max-width: 10.6ch;
    margin-inline: auto;
  }

  body[data-page="home"] .section-heading--hero .lede {
    max-width: 26ch;
    margin-inline: auto;
    font-size: clamp(0.96rem, 4.2vw, 1.08rem);
    line-height: 1.54;
  }

  body[data-page="home"] .section-heading--left {
    gap: 0.68rem;
    margin-bottom: 1.24rem;
  }

  body[data-page="home"] .section-heading--left::after {
    content: "";
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.42), rgba(var(--accent-rgb), 0));
  }

  body[data-page="home"] .section-heading--left h2 {
    max-width: 13.6ch;
  }

  body[data-page="home"] .eyebrow,
  body[data-page="home"] .meta-label {
    font-size: 0.76rem;
  }

  body[data-page="home"] .hero-promise {
    gap: 0.9rem;
    margin-top: 0.8rem;
  }

  body[data-page="home"] .hero-promise .chip-row {
    justify-content: center;
    gap: 0.65rem;
    max-width: 340px;
    margin-inline: auto;
  }

  body[data-page="home"] .hero-note {
    margin-top: 0.75rem;
    max-width: 28ch;
    font-size: 0.94rem;
    line-height: 1.58;
  }

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

  body[data-page="home"] .hero-actions .button {
    width: 100%;
    min-height: 50px;
    font-size: 1rem;
  }

  body[data-page="home"] .section-story {
    gap: 0.96rem;
  }

  body[data-page="home"] .section-visual,
  body[data-page="home"] .about-image {
    max-height: min(360px, 58vh);
    border-radius: 22px;
  }

  body[data-page="home"] .cards-grid,
  body[data-page="home"] .pricing-grid,
  body[data-page="home"] .about-grid,
  body[data-page="home"] .contact-grid,
  body[data-page="home"] .faq-list {
    gap: 0.9rem;
  }

  body[data-page="home"] .faq-item__summary {
    grid-template-columns: 52px 1fr auto;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem;
  }

  body[data-page="home"] .faq-item__index {
    font-size: clamp(1.9rem, 9.5vw, 2.85rem);
    line-height: 0.86;
    transform: translateY(0.08rem);
  }

  body[data-page="home"] .faq-item__question {
    font-size: clamp(1.22rem, 6vw, 1.68rem);
  }

  body[data-page="home"] .faq-item__toggle {
    width: 2.3rem;
    height: 2.3rem;
  }

  body[data-page="home"] .faq-item__body {
    margin: 0 1rem 1rem;
    padding-top: 0.9rem;
  }

  body[data-page="home"] .about-panel__summary {
    grid-template-columns: 50px 1fr auto;
    align-items: start;
    gap: 0.7rem;
    padding: 0.9rem 0.92rem 0.84rem;
  }

  body[data-page="home"] .about-panel__number {
    width: auto;
    height: auto;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 0.84;
    transform: translateY(0.05rem);
  }

  body[data-page="home"] .about-panel__head h3 {
    font-size: clamp(1.32rem, 6.5vw, 1.78rem);
  }

  body[data-page="home"] .about-panel__head p {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  body[data-page="home"] .about-panel__toggle {
    width: 2.2rem;
    height: 2.2rem;
  }

  body[data-page="home"] .about-panel__body {
    margin: 0 0.92rem 0.92rem;
    padding-top: 0.95rem;
  }

  body[data-page="home"] .about-panel__title,
  body[data-page="home"] .service-card__head,
  body[data-page="home"] .issue-card__head,
  body[data-page="home"] .price-card__head,
  body[data-page="home"] .contact-card__headline {
    gap: 0.7rem;
  }

  body[data-page="home"] .contact-link {
    grid-template-columns: auto 1fr;
  }

  body[data-page="home"] .contact-link__arrow {
    display: none;
  }

  body[data-page="home"] .icon-badge {
    width: 2.7rem;
    height: 2.7rem;
  }

  body[data-page="home"] .icon-badge--tiny {
    width: 1.9rem;
    height: 1.9rem;
  }

  body[data-page="home"] .stat > .icon-badge {
    width: 3.7rem;
    height: 3.7rem;
  }

  body[data-page="home"] .stat {
    min-height: 132px;
    padding: 0.9rem 0.74rem;
  }

  body[data-page="home"] .about-feature-list li {
    padding: 0.88rem 0.9rem 0.88rem 2.1rem;
  }

  .about-card,
  .prose-card,
  .price-card,
  .policy-card,
  .post-card,
  .service-card,
  .issue-card,
  .testimonial-card,
  .contact-card,
  .privacy-card,
  .admin-card,
  .auth-card {
    padding: 1.15rem;
    border-radius: 22px;
  }

  body[data-page="home"] .service-card,
  body[data-page="home"] .issue-card,
  body[data-page="home"] .price-card,
  body[data-page="home"] .contact-card,
  body[data-page="home"] .post-card,
  body[data-page="home"] .testimonial-card {
    padding: 1rem;
  }

  body[data-page="home"] .mobile-nav__inner {
    padding: 0.72rem 0 0.95rem;
  }

  body[data-page="home"] .mobile-nav__links {
    gap: 0.5rem;
  }

  body[data-page="home"] .mobile-nav__link {
    padding: 0.68rem 0.8rem;
  }

  body[data-page="home"] .content-panel {
    padding: 0;
    border-radius: 0;
  }

  .button,
  .icon-button {
    min-height: 48px;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 86px;
    max-width: none;
  }

  .sticky-cta {
    bottom: 14px;
    min-width: calc(100vw - 28px);
    min-height: 52px;
  }

  .back-to-top {
    right: 14px;
    bottom: 82px;
  }
}

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

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