:root {
  --bg: #f6f7f9;
  --bg-elev: #ffffff;
  --bg-soft: #eef2f6;
  --text: #1b2432;
  --text-soft: #5f6f84;
  --brand-orange: #df8f45;
  --brand-olive: #7f8d54;
  --brand-beige: #d8c2a3;
  --surface: rgba(255, 255, 255, 0.7);
  --stroke: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(22, 35, 54, 0.14);
  --radius-lg: 2rem;
  --radius-md: 1.2rem;
  --radius-pill: 999px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "SF Pro Display", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(127, 141, 84, 0.12), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(223, 143, 69, 0.12), transparent 28%),
    linear-gradient(165deg, #f8fafc 0%, #f3f6fb 42%, #eef3f8 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

main {
  position: relative;
  z-index: 1;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  z-index: 0;
  opacity: 0.62;
  pointer-events: none;
}

.ambient-a {
  width: 30rem;
  height: 30rem;
  top: -8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(127, 141, 84, 0.3) 0%, rgba(127, 141, 84, 0) 70%);
}

.ambient-b {
  width: 30rem;
  height: 30rem;
  top: 28vh;
  right: -9rem;
  background: radial-gradient(circle, rgba(223, 143, 69, 0.32) 0%, rgba(223, 143, 69, 0) 72%);
}

.ambient-c {
  width: 22rem;
  height: 22rem;
  bottom: -4rem;
  left: 30%;
  background: radial-gradient(circle, rgba(216, 194, 163, 0.25) 0%, rgba(216, 194, 163, 0) 75%);
}

.glass {
  background: var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 1rem;
  margin: 1rem auto 0;
  width: min(calc(100% - 2rem), var(--max-width));
  border-radius: var(--radius-pill);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.brand-text small {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.brand-symbol {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  display: block;
}

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

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

.main-nav a {
  font-size: 0.9rem;
  color: #314661;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: background 0.3s ease, color 0.3s ease;
}

.main-nav a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.75);
  color: #1e314a;
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
}

.menu-toggle span {
  width: 0.95rem;
  height: 2px;
  background: #1f324d;
  border-radius: 2px;
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 2.4rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  min-height: clamp(34rem, 76vh, 44rem);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--brand-beige);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.05;
  margin: 0;
  max-width: 14ch;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--text-soft);
  max-width: 56ch;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 31rem;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.3rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #1d1812;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #d8c2a3 0%, #df8f45 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary,
.btn-nav {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.92);
  color: #334a67;
}

.btn-secondary:hover,
.btn-nav:hover {
  background: rgba(226, 236, 222, 0.95);
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin: 0 0 0.45rem;
  letter-spacing: -0.025em;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
}

.about article {
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 4vw, 2.4rem);
}

.about p {
  color: var(--text-soft);
}

.services-grid,
.bookings-grid,
.post-grid {
  display: grid;
  gap: 1rem;
}

.services-grid,
.bookings-grid,
.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid article,
.bookings-grid article,
.post-grid article {
  border-radius: 1.45rem;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.services-grid h3,
.bookings-grid h3,
.post-grid h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

.services-grid p,
.bookings-grid p,
.post-grid p,
.bookings-grid li {
  margin: 0;
  color: var(--text-soft);
}

.bookings-grid ul {
  margin: 0 0 1.2rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.5rem;
}

.bookings-grid a,
.post-grid a {
  color: var(--brand-beige);
  text-decoration: underline;
  text-decoration-color: rgba(216, 194, 163, 0.5);
  text-underline-offset: 3px;
}

.post-meta {
  margin-bottom: 0.35rem;
  color: var(--brand-olive);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.post-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 0.9rem;
}

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

.post-card {
  cursor: pointer;
}

.post-card:focus-visible {
  outline: 2px solid rgba(55, 86, 122, 0.5);
  outline-offset: 2px;
}

.post-cta {
  color: var(--brand-beige);
  text-decoration: underline;
  text-decoration-color: rgba(216, 194, 163, 0.55);
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: auto;
  padding-top: 0.35rem;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.category-chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 84, 110, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: #415a78;
  font-size: 0.82rem;
}

.category-sections {
  display: grid;
  gap: 1.3rem;
}

.category-block {
  display: grid;
  gap: 0.8rem;
}

.category-title {
  margin: 0;
  font-size: 1.15rem;
  color: #243754;
}

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

.tool-card {
  border-radius: 1.45rem;
  padding: 1.2rem;
}

.tool-card h3 {
  margin: 0 0 0.7rem;
}

.tool-form {
  display: grid;
  gap: 0.55rem;
}

.tool-subsection {
  border: 1px solid rgba(61, 84, 112, 0.18);
  border-radius: 0.95rem;
  padding: 0.75rem 0.8rem 0.8rem;
  background: rgba(255, 255, 255, 0.72);
}

.tool-subsection + .tool-subsection {
  margin-top: 0.95rem;
}

.tool-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.86rem;
  color: #3c516d;
}

.tool-checks {
  margin: 0;
  border: 1px solid rgba(60, 82, 110, 0.22);
  border-radius: 0.65rem;
  padding: 0.55rem 0.6rem;
  display: grid;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.9);
}

.tool-checks legend {
  padding: 0 0.25rem;
  font-size: 0.8rem;
  color: #3c516d;
}

.tool-checks label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.84rem;
}

.tool-checks input[type="checkbox"] {
  width: auto;
  margin: 0.2rem 0 0;
  accent-color: #4f6b8c;
}

.tool-checks label span {
  display: grid;
  gap: 0.05rem;
}

.tool-checks label small {
  color: #607794;
  font-size: 0.75rem;
  line-height: 1.3;
}

.tool-form input:not([type="checkbox"]):not([type="radio"]),
.tool-form select {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid rgba(60, 82, 110, 0.22);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.52rem 0.6rem;
  font: inherit;
  color: #1f2f45;
}

.tool-form button {
  justify-self: start;
  margin-top: 0.35rem;
}

.tool-card .tool-form .btn-secondary {
  border: 2px solid rgba(58, 82, 110, 0.42);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.95);
}

.tool-card .tool-form .btn-secondary:hover {
  background: rgba(234, 242, 232, 0.98);
  border-color: rgba(52, 79, 108, 0.52);
}

.tool-result {
  margin: 0.8rem 0 0;
  color: #425a79;
  font-size: 0.9rem;
}

.tool-note {
  margin: 0 0 0.65rem;
  color: #3d5472;
  font-size: 0.86rem;
  line-height: 1.4;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.qa-item {
  border-radius: 1rem;
  padding: 0.7rem 0.85rem;
}

.qa-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #1f334e;
}

.qa-item p {
  margin: 0.55rem 0 0.5rem;
  color: #475f7c;
  font-size: 0.9rem;
}

.qa-link {
  font-size: 0.8rem;
  color: #2f4c71;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-quick article {
  border-radius: 1.45rem;
  padding: 1.2rem;
}

.content-page {
  width: min(calc(100% - 2rem), 860px);
  margin: 1.4rem auto 3rem;
}

.article-shell {
  border-radius: 1.6rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.article-shell h1 {
  margin: 0 0 0.4rem;
  line-height: 1.1;
}

.article-shell p {
  color: var(--text-soft);
}

.article-shell ul {
  color: var(--text-soft);
  margin: 0.2rem 0 0.85rem;
  padding-left: 1.1rem;
}

.article-shell li {
  margin-bottom: 0.35rem;
}

.article-back {
  margin-top: 1.4rem;
}

.article-engagement {
  margin-top: 1rem;
  display: grid;
  gap: 0.35rem;
}

.like-btn {
  justify-self: start;
  border-radius: 999px;
  border: 1px solid rgba(66, 92, 122, 0.3);
  background: rgba(255, 255, 255, 0.92);
  color: #2e4868;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.like-btn.is-liked {
  border-color: rgba(193, 74, 95, 0.45);
  background: rgba(255, 240, 244, 0.92);
  color: #8f2f48;
}

.like-heart {
  font-size: 1rem;
  line-height: 1;
}

.like-count {
  min-width: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
}

.like-note {
  margin: 0;
  font-size: 0.78rem;
  color: #5c7190;
}

.article-comments {
  margin-top: 1rem;
  border: 1px solid rgba(70, 92, 121, 0.2);
  border-radius: 1rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.68);
}

.article-comments h2 {
  margin: 0 0 0.25rem;
  font-size: 1.08rem;
}

.article-comments p {
  margin: 0 0 0.7rem;
  color: #556d8b;
}

.article-comment-form {
  display: grid;
  gap: 0.55rem;
}

.article-comment-form label {
  display: grid;
  gap: 0.24rem;
  font-size: 0.84rem;
  color: #3e5675;
}

.article-comment-form input,
.article-comment-form textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid rgba(60, 82, 110, 0.22);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.52rem 0.6rem;
  font: inherit;
  color: #1f2f45;
}

.article-comment-form textarea {
  resize: vertical;
}

.article-comment-form .btn-secondary {
  justify-self: start;
}

.article-cover {
  width: 50%;
  border-radius: 1rem;
  margin: 1rem 0 1.25rem;
  align-self: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.55rem 0 0.2rem;
}

.tag {
  border-radius: 999px;
  border: 1px solid rgba(75, 95, 122, 0.2);
  padding: 0.2rem 0.6rem;
  font-size: 0.74rem;
  color: var(--brand-beige);
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 2rem;
  border-top: 1px solid rgba(44, 64, 90, 0.16);
  padding-top: 1.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--text-soft);
}

.site-footer > div {
  flex: 1;
}

.site-footer p {
  margin: 0 0 0.7rem;
}

.footer-follow {
  display: grid;
  gap: 0.55rem;
}

.footer-contact {
  margin: 0 0 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.footer-contact-form {
  display: grid;
  gap: 0.55rem;
  max-width: 34rem;
}

.footer-contact-form label {
  display: grid;
  gap: 0.22rem;
  font-size: 0.82rem;
  color: #415974;
}

.footer-contact-form input,
.footer-contact-form textarea,
.footer-contact-form select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(64, 86, 114, 0.26);
  background: rgba(255, 255, 255, 0.93);
  padding: 0.52rem 0.62rem;
  font: inherit;
  color: #1f2f45;
}

.footer-contact-form textarea {
  resize: vertical;
  min-height: 5.2rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer-contact-form .btn-secondary {
  justify-self: start;
  border: 2px solid rgba(58, 82, 110, 0.42);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.95);
}

.footer-contact-form .btn-secondary:hover {
  background: rgba(234, 242, 232, 0.98);
  border-color: rgba(52, 79, 108, 0.52);
}

.contact-status {
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  color: #486282;
}

.contact-status.is-success {
  color: #2d7049;
}

.contact-status.is-error {
  color: #8f3a3a;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.reviews-note {
  margin: 0;
  color: #4a617f;
  font-size: 0.9rem;
}

.reviews-google-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.reviews-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.review-card {
  border-radius: 1.25rem;
  padding: 1rem 1rem 0.95rem;
  display: grid;
  gap: 0.48rem;
}

.review-empty {
  grid-column: 1 / -1;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.review-name {
  margin: 0;
  font-size: 1rem;
}

.review-clinic {
  margin: 0;
  font-size: 0.76rem;
  color: #4d6482;
}

.review-stars {
  color: #cc934e;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-body {
  margin: 0;
  color: #3a506d;
}

.review-date {
  margin: 0;
  font-size: 0.75rem;
  color: #667f9e;
}

.review-form-wrap {
  border-radius: 1.4rem;
  padding: 1.05rem;
}

.review-form-wrap h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
}

.review-form-copy {
  margin: 0 0 0.7rem;
  color: #546d8a;
  font-size: 0.88rem;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-line input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.1rem;
}

.follow-title {
  margin: 0;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #506a89;
}

.follow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  max-width: none;
}

.follow-card {
  display: grid;
  gap: 0.16rem;
  border: 1px solid rgba(64, 86, 114, 0.24);
  border-radius: 1rem;
  padding: 1rem;
  min-height: 8.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.9));
  box-shadow: 0 16px 35px rgba(24, 40, 61, 0.08);
}

.follow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.follow-card > * {
  position: relative;
  z-index: 1;
}

.follow-linkedin::before {
  background-image: linear-gradient(120deg, #0a66c2, #4e8ccc);
}

.follow-instagram::before {
  background-image: linear-gradient(125deg, #fd5949, #d6249f 50%, #285aeb);
}

.follow-tiktok::before {
  background-image: linear-gradient(120deg, #111, #242424);
}

.follow-card strong {
  font-size: 1.04rem;
  color: #243a56;
}

.follow-card span {
  font-size: 0.86rem;
  color: #5e7490;
}

.follow-card small {
  margin-top: auto;
  font-size: 0.78rem;
  color: #445d7e;
  line-height: 1.35;
}

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

.social-link {
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(64, 86, 114, 0.24);
  background: rgba(255, 255, 255, 0.86);
  color: #496383;
  font-size: 0.82rem;
}

.social-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0.8rem 0 0.85rem;
  max-width: 28rem;
}

.social-tile {
  position: relative;
  display: block;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(64, 86, 114, 0.18);
  min-height: 5.1rem;
  background: rgba(255, 255, 255, 0.82);
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.social-tile span {
  position: absolute;
  inset: auto 0.4rem 0.4rem auto;
  font-size: 0.65rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(10, 11, 14, 0.72);
  color: #f2e8d9;
}

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

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

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

  .hero-media {
    min-height: 25rem;
  }

  .services-grid,
  .bookings-grid,
  .post-grid,
  .post-grid-full,
  .tools-grid,
  .qa-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    border-radius: 1.2rem;
    top: 0.6rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: min(18.5rem, 88vw);
    border-radius: 1.2rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    background: rgba(245, 249, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 0.7rem 0.9rem;
  }

  .section {
    padding: 1.9rem 0;
  }

  .services-grid,
  .bookings-grid,
  .post-grid,
  .post-grid-full,
  .tools-grid,
  .qa-grid {
    grid-template-columns: 1fr;
  }

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

  .article-cover {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .follow-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .follow-card {
    min-height: 7.2rem;
  }

  .footer-contact-form {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
