:root {
  --red: #d7193f;
  --red-deep: #8b1730;
  --coral: #f26a5f;
  --rose: #f9d7d8;
  --cream: #fff9f4;
  --sand: #f6e7d8;
  --gold: #d9a441;
  --teal: #23766f;
  --ink: #38272d;
  --muted: #71656a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(91, 32, 48, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a { color: inherit; }

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

:focus-visible {
  outline: 3px solid rgba(35, 118, 111, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red-deep);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-sand { background: linear-gradient(135deg, #fff2e8, #f8dfd4); }
.section-dark { color: var(--white); background: linear-gradient(135deg, var(--red-deep), #53162b); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-dark .eyebrow { color: #ffd7b0; }

h1, h2, h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2.05rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }

p { margin: 0 0 18px; }

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.section-dark .lead { color: rgba(255, 255, 255, 0.8); }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--coral));
  box-shadow: 0 12px 28px rgba(215, 25, 63, 0.28);
}

.btn-secondary {
  color: var(--red-deep);
  background: var(--white);
  border-color: rgba(139, 23, 48, 0.18);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.btn-block { width: 100%; }

.topbar {
  color: #fff5ed;
  background: var(--red-deep);
  font-size: 0.88rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(139, 23, 48, 0.09);
  background: rgba(255, 249, 244, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img { width: 178px; height: auto; }

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

.site-nav a:not(.btn) {
  padding: 10px 13px;
  border-radius: 999px;
  color: #563f46;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"]:not(.btn) {
  color: var(--red-deep);
  background: var(--rose);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--red-deep);
  border: 1px solid rgba(139, 23, 48, 0.16);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }

.home-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 110px));
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(61, 12, 27, 0.9) 0%, rgba(99, 21, 39, 0.68) 44%, rgba(45, 10, 20, 0.2) 78%),
    url("../images/home-hero.webp") center 32% / cover no-repeat;
}

.home-hero::after {
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(255, 203, 160, 0.19);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: 90px 0;
}

.hero-copy { max-width: 780px; }

.hero-copy h1 span {
  display: block;
  color: #ffd3a6;
  font-style: italic;
}

.hero-copy .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-chip {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-deep), #54172c 58%, #aa2b3b);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.page-hero::before {
  top: -170px;
  right: -60px;
  width: 430px;
  height: 430px;
  background: rgba(242, 106, 95, 0.35);
}

.page-hero::after {
  right: 22%;
  bottom: -190px;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(255, 211, 166, 0.12);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 92px 0 96px;
}

.page-hero .lead { color: rgba(255,255,255,0.82); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
}

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

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

.image-frame {
  position: relative;
  border-radius: var(--radius);
}

.image-frame::before {
  position: absolute;
  inset: -13px 16px 16px -13px;
  z-index: 0;
  border: 2px solid rgba(215, 25, 63, 0.22);
  border-radius: inherit;
  content: "";
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: var(--shadow);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(139, 23, 48, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(74, 32, 43, 0.07);
}

.card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(249, 215, 216, 0.45);
  content: "";
}

.icon-orb {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--coral));
  box-shadow: 0 10px 22px rgba(215, 25, 63, 0.2);
  font-size: 1.25rem;
  font-weight: 900;
}

.card p { color: var(--muted); }

.mini-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 7px;
  color: var(--red-deep);
  font-weight: 800;
  text-decoration: none;
}

.mini-link:hover { text-decoration: underline; }

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(139, 23, 48, 0.1);
}

.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--red-deep); font-size: 1.08rem; }
.trust-item span { color: var(--muted); font-size: 0.88rem; }

.price-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.price-card {
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(139, 23, 48, 0.11);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
}

.price-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--red-deep), var(--red));
  box-shadow: 0 18px 38px rgba(139, 23, 48, 0.2);
  transform: translateY(-8px);
}

.price-card .duration { color: var(--muted); font-weight: 800; }
.price-card.featured .duration { color: rgba(255,255,255,0.74); }
.price-card .price { margin: 8px 0; font-family: Georgia, serif; font-size: 2.7rem; line-height: 1; }
.price-card .member { color: var(--teal); font-weight: 800; }
.price-card.featured .member { color: #ffd8a8; }

.promo-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 66px);
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(125deg, var(--teal), #164c4b);
  box-shadow: var(--shadow);
}

.promo-panel::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border: 60px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  content: "";
}

.promo-panel > * { position: relative; z-index: 1; }
.promo-panel .lead { color: rgba(255,255,255,0.82); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-grid img:first-child { grid-row: 1 / 3; }

.quote-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-mark {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 4.7rem;
  line-height: 0.65;
}

.stars { margin: 18px 0 10px; color: var(--gold); letter-spacing: 0.12em; }
.quote-card cite { color: var(--red-deep); font-style: normal; font-weight: 800; }

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(139,23,48,0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(74,32,43,0.07);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body { padding: 25px; }
.blog-meta { margin-bottom: 11px; color: var(--teal); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card p { color: var(--muted); }

.contact-band {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(81,16,33,0.92), rgba(139,23,48,0.77)),
    url("../images/contact-storefront.webp") center / cover;
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-band .lead { color: rgba(255,255,255,0.82); }

.service-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.service-table th,
.service-table td {
  padding: 21px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(139,23,48,0.09);
}

.service-table th {
  color: var(--white);
  background: var(--red-deep);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-table tr:last-child td { border-bottom: 0; }
.service-table td:nth-child(n+2) { font-weight: 800; }
.service-table .member-price { color: var(--teal); }

.notice {
  margin-top: 18px;
  padding: 16px 18px;
  color: #5c4b3e;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: #fff4d9;
  font-size: 0.92rem;
}

.faq-list { display: grid; gap: 14px; }

.faq-list details {
  padding: 19px 22px;
  border: 1px solid rgba(139,23,48,0.1);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  color: var(--red-deep);
  font-weight: 850;
}

.faq-list details p { margin: 14px 0 0; color: var(--muted); }

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 38px;
}

.contact-card,
.form-card {
  padding: clamp(28px, 5vw, 42px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-list { display: grid; gap: 22px; margin: 28px 0; }
.contact-list-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.contact-list-item .icon-orb { width: 44px; height: 44px; margin: 0; border-radius: 14px; font-size: 1rem; }
.contact-list-item strong { display: block; color: var(--red-deep); }
.contact-list-item a { color: var(--muted); text-decoration: none; }
.contact-list-item a:hover { color: var(--red); text-decoration: underline; }

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

.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #503b42; font-size: 0.9rem; font-weight: 800; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid #dccdd0;
  border-radius: 12px;
  background: #fffdfb;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(35,118,111,0.12);
  outline: none;
}

.field textarea { min-height: 135px; resize: vertical; }
.required { color: var(--red); }
.help { color: var(--muted); font-size: 0.78rem; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: start; }
.checkbox input { margin-top: 5px; }
.form-status { display: none; margin-bottom: 18px; padding: 14px; color: #7f1c2b; border-radius: 12px; background: #ffe4e5; }
.form-status.is-visible { display: block; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.hours-list { display: grid; gap: 7px; margin: 18px 0 0; }
.hours-row { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 7px; border-bottom: 1px dashed rgba(139,23,48,0.13); }
.hours-row:last-child { border-bottom: 0; }

.article-wrap {
  width: min(calc(100% - 36px), 820px);
  margin-inline: auto;
}

.article-header { padding: 76px 0 44px; }
.article-header h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--muted); font-size: 0.9rem; }
.article-hero { width: min(calc(100% - 36px), 1100px); margin: 0 auto 55px; }
.article-hero img { width: 100%; max-height: 610px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.article-content { padding-bottom: 82px; }
.article-content h2 { margin-top: 42px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.article-content h3 { margin-top: 30px; }
.article-content p,
.article-content li { color: #55484c; font-size: 1.04rem; }
.article-content ul { padding-left: 22px; }
.article-content li { margin-bottom: 10px; }
.article-note { margin: 34px 0; padding: 24px; border-radius: var(--radius-sm); background: var(--sand); }

.breadcrumbs { padding-top: 22px; color: var(--muted); font-size: 0.86rem; }
.breadcrumbs a { color: var(--red-deep); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.thank-you {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.thank-you-card {
  max-width: 680px;
  padding: clamp(38px, 7vw, 72px);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--teal);
  font-size: 2rem;
}

.legal { width: min(calc(100% - 36px), 880px); margin-inline: auto; }
.legal h2 { margin-top: 44px; font-size: 2rem; }
.legal p, .legal li { color: #55484c; }

.site-footer {
  color: #f8e9e4;
  background: #3d1624;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.95fr 0.8fr;
  gap: 38px;
  padding: 65px 0 48px;
}

.footer-logo {
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.footer-intro { margin-top: 16px; color: rgba(255,255,255,0.7); }
.site-footer h3 { margin-bottom: 16px; color: var(--white); font-family: inherit; font-size: 0.98rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-address { color: rgba(255,255,255,0.72); font-style: normal; }
.footer-address a { color: inherit; text-decoration: none; }

.socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 17px; }
.social-placeholder {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: not-allowed;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  color: rgba(255,255,255,0.58);
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
}

.footer-bottom a { color: inherit; }

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 900;
  display: none;
  min-height: 50px;
  padding: 12px 19px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--coral));
  box-shadow: 0 10px 26px rgba(86,20,36,0.34);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-toggle { display: grid; place-items: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 16px 18px 24px;
    border-bottom: 1px solid rgba(139,23,48,0.1);
    background: var(--cream);
    box-shadow: 0 20px 34px rgba(74,32,43,0.1);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a:not(.btn) { padding: 12px 15px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(139,23,48,0.1); }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  body { padding-bottom: 72px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-inner span:first-child { display: none; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 145px; }
  .section { padding: 66px 0; }
  .home-hero { min-height: 680px; background-position: 62% center; }
  .home-hero::after { right: -330px; }
  .hero-inner { padding: 72px 0; }
  .page-hero-inner { padding: 70px 0 74px; }
  .grid-2, .grid-3, .price-preview, .contact-layout { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 170px; }
  .gallery-grid img:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery-grid img:nth-child(n+4) { display: none; }
  .contact-band-inner { display: block; }
  .contact-band-inner .btn { margin-top: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .article-header { padding-top: 54px; }
  .article-hero { margin-bottom: 38px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-bottom: 8px; }
  .mobile-call { display: inline-flex; align-items: center; }
}

@media (max-width: 480px) {
  .container, .article-wrap, .legal, .article-hero { width: min(calc(100% - 28px), var(--max)); }
  .btn-row { display: grid; }
  .btn-row .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(139,23,48,0.1); }
  .trust-item:last-child { border-bottom: 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .card, .quote-card { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
