  @import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

  :root {
    --navy-950: #06111f;
    --navy-900: #0a1829;
    --navy-800: #132640;
    --navy-700: #1d3554;
    --cream-50: #fffdf8;
    --cream-100: #fbf5e8;
    --cream-200: #f1e5d0;
    --gold-500: #c89c42;
    --gold-600: #a9802f;
    --brown-500: #8b6a49;
    --brown-700: #59422f;
    --ink: #1d2027;
    --muted: #6e737c;
    --line: rgba(20, 32, 48, 0.12);
    --white: #ffffff;
    --shadow-sm: 0 12px 30px rgba(6, 17, 31, 0.08);
    --shadow-md: 0 24px 70px rgba(6, 17, 31, 0.15);
    --shadow-lg: 0 35px 110px rgba(6, 17, 31, 0.22);
    --radius: 8px;
    --radius-sm: 6px;
    --container: 1180px;
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Inter", Arial, sans-serif;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-50);
    font-family: var(--font-sans);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
  }

  body.nav-open {
    overflow: hidden;
  }

  img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
  }

  button {
    cursor: pointer;
  }

  ::selection {
    color: var(--navy-950);
    background: rgba(200, 156, 66, 0.42);
  }

  .skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 9999;
    transform: translateY(-140%);
    background: var(--gold-500);
    color: var(--navy-950);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 800;
  }

  .skip-link:focus {
    transform: translateY(0);
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
  }

  .narrow {
    width: min(100% - 40px, 840px);
    margin-inline: auto;
  }

  .section {
    padding: clamp(68px, 9vw, 124px) 0;
  }

  .section.tight {
    padding: clamp(48px, 7vw, 86px) 0;
  }

  .section.cream {
    background: var(--cream-100);
  }

  .section.navy {
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(6, 17, 31, 0.96), rgba(18, 38, 64, 0.92)),
      var(--navy-950);
  }

  .section-heading {
    max-width: 760px;
    margin-bottom: clamp(30px, 5vw, 54px);
  }

  .section-heading.center {
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--gold-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
  }

  .section.navy .eyebrow,
  .dark-panel .eyebrow,
  .hero .eyebrow {
    color: var(--gold-500);
  }

  h1,
  h2,
  h3,
  h4 {
    margin: 0;
    color: var(--navy-950);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
  }

  h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 5.4vw, 4.4rem);
  }

  h3 {
    font-size: clamp(1.45rem, 2.7vw, 2rem);
  }

  h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
  }

  p {
    margin: 0;
  }

  p + p {
    margin-top: 18px;
  }

  .lead {
    color: var(--navy-700);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.75;
  }

  .muted {
    color: var(--muted);
  }

  .section.navy h2,
  .section.navy h3,
  .section.navy h4,
  .section.navy .lead,
  .dark-panel h2,
  .dark-panel h3,
  .dark-panel h4,
  .dark-panel .lead,
  .hero h1,
  .hero h2,
  .hero h3,
  .hero .lead {
    color: var(--white);
  }

  .section.navy .muted,
  .dark-panel .muted,
  .hero .muted {
    color: rgba(255, 255, 255, 0.72);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 320ms ease, box-shadow 320ms ease, background 320ms ease, color 320ms ease, border-color 320ms ease;
  }

  .btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .btn:hover {
    transform: translateY(-2px) scale(1.012);
  }

  .btn-primary {
    color: var(--navy-950);
    background: linear-gradient(135deg, #f1cf7a, var(--gold-500));
    box-shadow: 0 18px 36px rgba(200, 156, 66, 0.25);
  }

  .btn-primary:hover {
    box-shadow: 0 22px 50px rgba(200, 156, 66, 0.32);
  }

  .btn-outline {
    color: var(--navy-950);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(10, 24, 41, 0.18);
  }

  .btn-outline:hover {
    background: var(--white);
    border-color: var(--gold-500);
  }

  .btn-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  }

  .btn-light:hover {
    color: var(--navy-950);
    background: var(--white);
  }

  .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--navy-950);
    background: rgba(255, 253, 248, 0.92);
    border-bottom: 1px solid rgba(10, 24, 41, 0.08);
    box-shadow: 0 10px 40px rgba(6, 17, 31, 0);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
  }

  .site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 14px 42px rgba(6, 17, 31, 0.08);
  }

  .topbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    color: rgba(6, 17, 31, 0.74);
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(10, 24, 41, 0.07);
  }

  .topbar a {
    font-weight: 700;
  }

  .topbar-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 26px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 212px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border: 1px solid rgba(200, 156, 66, 0.28);
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
  }

  .brand-text {
    display: grid;
    gap: 1px;
  }

  .brand-name {
    color: var(--navy-950);
    font-family: var(--font-serif);
    font-size: 1.36rem;
    font-weight: 700;
    line-height: 1;
  }

  .brand-sub {
    color: var(--gold-600);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    flex: 1;
  }

  .nav-links a {
    position: relative;
    color: rgba(6, 17, 31, 0.78);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold-500);
    transition: transform 180ms ease;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    color: var(--navy-950);
  }

  .nav-links a:hover::after,
  .nav-links a.is-active::after {
    transform: scaleX(1);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .appointment-link {
    min-height: 44px;
    padding-inline: 17px;
    white-space: nowrap;
  }

  .cart-link,
  .nav-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(10, 24, 41, 0.12);
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--white);
  }

  .cart-link svg,
  .nav-toggle svg {
    width: 20px;
    height: 20px;
  }

  .cart-count {
    position: absolute;
    right: -3px;
    top: -4px;
    display: grid;
    place-items: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 99px;
    color: var(--navy-950);
    background: var(--gold-500);
    font-size: 0.68rem;
    font-weight: 900;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-panel {
    display: none;
  }

  .hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    /* background:
      linear-gradient(90deg, rgba(6, 17, 31, 0.9), rgba(6, 17, 31, 0.58) 50%, rgba(6, 17, 31, 0.22)),
      var(--hero-bg, url("../images/generated/heroes-v2/home-hero-v2.jpg")) var(--hero-position, right center) / cover no-repeat; */
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 0;
    height: 34%;
    background: linear-gradient(0deg, rgba(6, 17, 31, 0.74), rgba(6, 17, 31, 0));
  }

  .home-hero {
    min-height: 88svh;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    padding: clamp(76px, 11vw, 132px) 0 clamp(58px, 8vw, 96px);
  }

  .home-hero .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr);
    align-items: end;
    gap: clamp(34px, 6vw, 78px);
  }

  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-500);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .hero-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy .lead {
    max-width: 700px;
    margin-top: 20px;
  }

  .hero-copy .button-row {
    margin-top: 32px;
  }

  .hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
  }

  .hero-services span,
  .pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 99px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
  }

  .hero-portrait-wrap {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 540px;
  }

  .hero-portrait-wrap::before {
    content: "";
    position: absolute;
    right: 3%;
    bottom: 3%;
    width: min(82%, 410px);
    aspect-ratio: 1;
    border: 1px solid rgba(200, 156, 66, 0.44);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 156, 66, 0.24), rgba(200, 156, 66, 0));
  }

  .hero-portrait {
    position: relative;
    z-index: 1;
    width: min(100%, 470px);
    max-height: 640px;
    object-fit: contain;
    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.34));
  }

  .hero-stat {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 10%;
    width: min(260px, 88%);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
  }

  .hero-stat strong {
    display: block;
    color: var(--gold-500);
    font-family: var(--font-serif);
    font-size: 2.3rem;
    line-height: 1;
  }

  .hero-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 700;
  }

  .page-hero {
    --hero-bg: url("../images/generated/heroes-v2/about-hero-v2.jpg");
    min-height: 46svh;
  }

  .page-hero .hero-inner {
    padding-block: clamp(82px, 12vw, 148px);
  }

  .book-hero .hero-inner {
    padding-bottom: clamp(170px, 17vw, 218px);
  }

  .hero-book-strip {
    position: absolute;
    left: 0;
    bottom: clamp(22px, 4.5vw, 58px);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: clamp(10px, 1.5vw, 18px);
    max-width: min(48vw, 610px);
    pointer-events: none;
  }

  .hero-book-strip img {
    width: clamp(64px, 7vw, 120px);
    aspect-ratio: 2 / 3;
    object-fit: contain;
    object-position: center;
    padding: 6px;
    border: 1px solid rgba(244, 216, 146, 0.35);
    border-radius: 5px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 226, 205, 0.9));
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
  }

  .hero-book-strip img:nth-child(2) {
    transform: translateY(-12px) rotate(1.5deg);
  }

  .hero-book-strip img:nth-child(3) {
    transform: translateY(-4px) rotate(-1.25deg);
  }

  .hero-book-strip img:nth-child(4) {
    transform: translateY(-16px) rotate(1deg);
  }

  .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 700;
  }

  .breadcrumbs a {
    color: var(--gold-500);
  }

  .split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: clamp(34px, 6vw, 76px);
  }

  .split.reverse {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  }

  .split.reverse > :first-child {
    order: 2;
  }

  .content-flow > * + * {
    margin-top: 22px;
  }

  .content-flow .button-row {
    margin-top: 32px;
  }

  .image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--cream-200);
    box-shadow: var(--shadow-md);
    transition: transform 360ms ease, box-shadow 360ms ease, filter 360ms ease;
  }

  .image-frame img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 460ms ease;
  }

  .image-frame.portrait img {
    object-position: center top;
  }

  .image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: inherit;
    pointer-events: none;
  }

  .image-note {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    border-radius: var(--radius-sm);
    color: var(--white);
    background: rgba(6, 17, 31, 0.72);
    backdrop-filter: blur(16px);
  }

  .signature {
    display: grid;
    gap: 2px;
    padding-left: 20px;
    border-left: 3px solid var(--gold-500);
  }

  .signature strong {
    color: var(--navy-950);
    font-family: var(--font-serif);
    font-size: 1.6rem;
  }

  .signature span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
  }

  .grid {
    display: grid;
    gap: 22px;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .premium-card,
  .service-card,
  .book-card,
  .testimonial-card,
  .info-card,
  .article-card,
  .faq-item,
  .process-step,
  .stat-card,
  .quote-band,
  .contact-item,
  .cart-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease, background 360ms ease;
    will-change: transform;
  }

  .premium-card:hover,
  .service-card:hover,
  .book-card:hover,
  .testimonial-card:hover,
  .article-card:hover,
  .info-card:hover,
  .faq-item:hover,
  .process-step:hover,
  .stat-card:hover,
  .quote-band:hover,
  .contact-item:hover,
  .cart-panel:hover,
  .image-frame:hover,
  .gallery figure:hover {
    transform: translateY(-6px) scale(1.012);
    border-color: rgba(200, 156, 66, 0.52);
    box-shadow: 0 30px 70px rgba(6, 17, 31, 0.16), 0 0 0 1px rgba(200, 156, 66, 0.16);
  }

  .premium-card::after,
  .service-card::after,
  .book-card::after,
  .testimonial-card::after,
  .info-card::after,
  .article-card::after,
  .faq-item::after,
  .process-step::after,
  .stat-card::after,
  .quote-band::after,
  .contact-item::after,
  .cart-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(200, 156, 66, 0.16), transparent 34%, rgba(255, 255, 255, 0.18));
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms ease;
  }

  .premium-card:hover::after,
  .service-card:hover::after,
  .book-card:hover::after,
  .testimonial-card:hover::after,
  .info-card:hover::after,
  .article-card:hover::after,
  .faq-item:hover::after,
  .process-step:hover::after,
  .stat-card:hover::after,
  .quote-band:hover::after,
  .contact-item:hover::after,
  .cart-panel:hover::after {
    opacity: 1;
  }

  .premium-card {
    padding: clamp(22px, 3vw, 34px);
  }

  .section.navy .premium-card,
  .section.navy .process-step,
  .dark-panel .premium-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: blur(14px);
  }

  .section.navy .process-step::before {
    color: var(--navy-950);
  }

  .section.navy .process-step p {
    color: rgba(255, 255, 255, 0.72);
  }

  .card-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--navy-950);
    background: linear-gradient(135deg, #f4d892, var(--gold-500));
  }

  .card-icon svg {
    width: 24px;
    height: 24px;
  }

  .service-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    min-height: 100%;
  }

  .service-card > img {
    display: block;
    width: 100%;
    height: clamp(180px, 16vw, 220px);
    object-fit: cover;
    object-position: center;
    background: var(--cream-100);
    transition: transform 460ms ease, filter 460ms ease;
  }

  .service-card > img[src*="images/books"],
  .article-card > img[src*="images/books"],
  .gallery figure > img[src*="images/books"] {
    object-fit: contain;
    object-position: center;
    padding: 16px;
    background:
      radial-gradient(circle at 50% 18%, rgba(200, 156, 66, 0.24), transparent 44%),
      linear-gradient(145deg, var(--cream-100), #e9ddc8);
  }

  .service-card-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
  }

  .service-card-body p {
    margin-top: 12px;
    color: var(--muted);
  }

  .service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--gold-600);
    font-size: 0.84rem;
    font-weight: 900;
  }

  .service-card:hover > img,
  .article-card:hover > img,
  .image-frame:hover img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .stat-card {
    padding: 24px;
    border-color: rgba(200, 156, 66, 0.22);
    background: rgba(255, 255, 255, 0.72);
  }

  .stat-card strong {
    display: block;
    color: var(--navy-950);
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1;
  }

  .stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
  }

  .book-showcase {
    position: relative;
    --book-slide-gap: 20px;
    --book-slides-visible: 4;
    --book-slide-gaps-total: 60px;
  }

  @media (min-width: 1280px) {
    .book-showcase {
      --book-slides-visible: 5;
      --book-slide-gaps-total: 80px;
    }
  }

  .book-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
  }

  .slider-controls {
    display: flex;
    gap: 10px;
  }

  .icon-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(10, 24, 41, 0.14);
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--white);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  }

  .icon-button:hover {
    transform: translateY(-2px);
    border-color: var(--gold-500);
    background: var(--cream-100);
  }

  .icon-button svg {
    width: 19px;
    height: 19px;
  }

  .book-carousel-viewport {
    overflow: hidden;
    margin-inline: -4px;
    padding: 8px 4px 28px;
    cursor: grab;
    outline: none;
  }

  .book-carousel-viewport:focus-visible {
    border-radius: var(--radius);
    box-shadow: 0 0 0 4px rgba(200, 156, 66, 0.2);
  }

  .book-track {
    display: flex;
    align-items: stretch;
    gap: var(--book-slide-gap);
    padding: 0;
    transform: translate3d(0, 0, 0);
    transition: transform 520ms cubic-bezier(0.22, 0.72, 0.18, 1);
    will-change: transform;
    touch-action: pan-y;
  }

  .book-track.is-dragging {
    cursor: grabbing;
    transition: none;
  }

  .book-track.is-dragging * {
    user-select: none;
  }

  .book-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .book-track .book-card {
    flex: 0 0 calc((100% - var(--book-slide-gaps-total)) / var(--book-slides-visible));
  }

  .book-track .book-card[aria-hidden="true"] {
    pointer-events: none;
  }

  .book-showcase .book-card {
    height: clamp(580px, 52vw, 640px);
    min-height: 0;
  }

  .book-showcase .book-cover {
    flex: 0 0 auto;
    min-height: 0;
    height: clamp(268px, 24vw, 310px);
    aspect-ratio: auto;
  }

  .book-showcase .book-cover img {
    width: min(100%, 176px);
    max-height: clamp(220px, 20vw, 258px);
  }

  .book-showcase .book-body {
    display: grid;
    grid-template-rows: 2.6em 4.35em 56px 62px;
    gap: 12px;
    min-height: 0;
    overflow: hidden;
  }

  .book-showcase .book-body h3 {
    margin: 0;
    height: 2.6em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  .book-showcase .book-body p {
    margin: 0;
    height: 4.35em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .book-showcase .book-meta {
    margin: 0;
    height: 56px;
    align-content: flex-start;
    overflow: hidden;
  }

  .book-showcase .book-actions {
    margin: 0;
    padding-top: 0;
    height: 62px;
    align-items: flex-end;
  }

  .book-cover {
    display: grid;
    place-items: center;
    min-height: 310px;
    aspect-ratio: 4 / 5;
    padding: 24px;
    background:
      radial-gradient(circle at 50% 12%, rgba(200, 156, 66, 0.22), transparent 42%),
      linear-gradient(145deg, var(--cream-100), #e9ddc8);
  }

  .book-cover img {
    width: min(100%, 182px);
    height: auto;
    max-height: 260px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    box-shadow: 0 22px 40px rgba(6, 17, 31, 0.22);
    transition: transform 360ms ease, filter 360ms ease;
  }

  .book-card:hover .book-cover img {
    transform: translateY(-7px) rotate(-1.2deg) scale(1.018);
    filter: saturate(1.03) contrast(1.02);
  }

  .book-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
  }

  .book-body h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.3;
  }

  .book-body p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.9rem;
  }

  .book-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .book-meta span {
    padding: 5px 9px;
    border-radius: 99px;
    color: var(--brown-700);
    background: var(--cream-100);
    font-size: 0.74rem;
    font-weight: 900;
  }

  .book-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
  }

  .book-actions .btn {
    flex: 1 1 116px;
    min-height: 42px;
    padding: 11px 14px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .book-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 22px;
    margin-top: 2px;
  }

  .book-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(10, 24, 41, 0.26);
    transition: width 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .book-slider-dots button:hover,
  .book-slider-dots button.is-active {
    width: 28px;
    background: var(--gold-500);
    transform: translateY(-1px);
  }

  .dark-panel {
    position: relative;
    overflow: hidden;
    color: var(--white);
    border-radius: var(--radius);
    background:
      linear-gradient(135deg, rgba(6, 17, 31, 0.92), rgba(29, 53, 84, 0.82)),
      var(--panel-bg, url("../images/generated/prison-ministry-light.jpg")) center / cover no-repeat;
    box-shadow: var(--shadow-lg);
    transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
  }

  .dark-panel .panel-inner {
    padding: clamp(34px, 6vw, 70px);
  }

  .dark-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 360ms ease, box-shadow 360ms ease;
  }

  .dark-panel:hover {
    transform: translateY(-5px) scale(1.006);
    box-shadow: 0 34px 90px rgba(6, 17, 31, 0.25);
    filter: saturate(1.03);
  }

  .dark-panel:hover::after {
    border-color: rgba(200, 156, 66, 0.35);
    box-shadow: inset 0 0 0 1px rgba(200, 156, 66, 0.16);
  }

  .timeline {
    position: relative;
    display: grid;
    gap: 18px;
    margin-top: 30px;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(200, 156, 66, 0.45);
  }

  .timeline-item {
    position: relative;
    padding-left: 44px;
    transition: transform 320ms ease;
  }

  .timeline-item:hover {
    transform: translateX(4px);
  }

  .timeline-item::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 9px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--gold-500);
    border-radius: 50%;
    background: var(--navy-950);
  }

  .timeline-item strong {
    display: block;
    color: var(--gold-500);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.1;
  }

  .timeline-item p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.76);
  }

  .quote-band {
    position: relative;
    padding: clamp(34px, 6vw, 62px);
    border-left: 4px solid var(--gold-500);
    color: var(--navy-950);
    background:
      linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(251, 245, 232, 0.88)),
      var(--cream-100);
  }

  .quote-band blockquote {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
  }

  .quote-band cite {
    display: block;
    margin-top: 20px;
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
  }

  .testimonial-card {
    padding: 28px;
  }

  .stars {
    color: var(--gold-600);
    font-size: 0.9rem;
    font-weight: 900;
  }

  .testimonial-card p {
    margin-top: 16px;
    color: var(--navy-700);
  }

  .testimonial-card strong {
    display: block;
    margin-top: 20px;
    color: var(--navy-950);
  }

  .newsletter,
  .cta-band {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
      linear-gradient(120deg, rgba(6, 17, 31, 0.92), rgba(19, 38, 64, 0.82)),
      var(--cta-bg, url("../images/generated/author-books-study.jpg")) center / cover no-repeat;
  }

  .newsletter-inner,
  .cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: clamp(28px, 6vw, 74px);
    padding: clamp(44px, 7vw, 78px) 0;
  }

  .newsletter h2,
  .cta-band h2 {
    color: var(--white);
  }

  .newsletter p,
  .cta-band p {
    color: rgba(255, 255, 255, 0.75);
  }

  .form-panel {
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
  }

  .form-panel.light {
    border-color: var(--line);
    color: var(--ink);
    background: var(--white);
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .form-grid .full {
    grid-column: 1 / -1;
  }

  .field {
    display: grid;
    gap: 7px;
  }

  .field label {
    color: inherit;
    font-size: 0.78rem;
    font-weight: 900;
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    border: 1px solid rgba(10, 24, 41, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }

  .field textarea {
    min-height: 132px;
    resize: vertical;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(200, 156, 66, 0.18);
  }

  .form-note {
    min-height: 24px;
    margin-top: 14px;
    color: var(--gold-500);
    font-size: 0.88rem;
    font-weight: 800;
  }

  .light .form-note {
    color: var(--gold-600);
  }

  .process-grid {
    counter-reset: process;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .process-step {
    padding: 28px;
  }

  .process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--gold-500);
    font-weight: 900;
  }

  .process-step p {
    margin-top: 10px;
    color: var(--muted);
  }

  .feature-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--navy-700);
  }

  .feature-list li::before {
    content: "";
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 9px;
    border-radius: 50%;
    background: var(--gold-500);
  }

  .section.navy .feature-list li,
  .dark-panel .feature-list li {
    color: rgba(255, 255, 255, 0.78);
  }

  .gallery {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.95fr;
    grid-auto-rows: minmax(190px, 1fr);
    gap: 16px;
  }

  .gallery figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    background: var(--cream-200);
    box-shadow: var(--shadow-sm);
    transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
  }

  .gallery figure:first-child {
    grid-row: span 2;
  }

  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 460ms ease, filter 460ms ease;
  }

  .gallery figure:hover img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
  }

  .gallery figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    color: var(--white);
    background: rgba(6, 17, 31, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
  }

  .article-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 460ms ease, filter 460ms ease;
  }

  .article-body {
    padding: 24px;
  }

  .article-body .meta {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--gold-600);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .article-body p {
    margin-top: 12px;
    color: var(--muted);
  }

  .media-placeholder {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--radius);
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(6, 17, 31, 0.7), rgba(6, 17, 31, 0.35)),
      url("../images/site/book-slider.jpg") center / cover no-repeat;
    box-shadow: var(--shadow-lg);
    transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
  }

  .media-placeholder:hover {
    transform: translateY(-5px) scale(1.006);
    box-shadow: 0 34px 90px rgba(6, 17, 31, 0.22);
    filter: saturate(1.03);
  }

  .play-button {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--gold-500);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
    transition: transform 320ms ease, box-shadow 320ms ease;
  }

  .media-placeholder:hover .play-button,
  .play-button:hover {
    transform: scale(1.06);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  }

  .play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 3px;
  }

  .faq-list {
    display: grid;
    gap: 14px;
  }

  .faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    color: var(--navy-950);
    background: transparent;
    padding: 22px 24px;
    text-align: left;
    font-weight: 900;
  }

  .faq-item button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    transition: transform 180ms ease;
  }

  .faq-item.is-open button svg {
    transform: rotate(45deg);
  }

  .faq-answer {
    display: none;
    padding: 0 24px 24px;
    color: var(--muted);
  }

  .faq-item.is-open .faq-answer {
    display: block;
  }

  .contact-list {
    display: grid;
    gap: 14px;
  }

  .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--gold-600);
    flex: 0 0 auto;
    margin-top: 3px;
  }

  .contact-item strong {
    display: block;
    color: var(--navy-950);
    font-weight: 900;
  }

  .contact-item span,
  .contact-item a {
    color: var(--muted);
    font-size: 0.95rem;
  }

  .cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 28px;
  }

  .cart-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .cart-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .cart-item:last-child {
    border-bottom: 0;
  }

  .cart-item img {
    width: 78px;
    height: 96px;
    object-fit: contain;
    border-radius: 4px;
    background: var(--cream-100);
  }

  .cart-item h3 {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .cart-item p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .qty-control button {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--cream-100);
  }

  .cart-summary {
    padding: 24px;
  }

  .summary-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
  }

  .summary-line.total {
    color: var(--navy-950);
    font-size: 1.15rem;
    font-weight: 900;
    border-bottom: 0;
  }

  .empty-cart {
    padding: 38px;
    text-align: center;
  }

  .site-footer {
    color: rgba(255, 255, 255, 0.78);
    background:
      linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(18, 38, 64, 0.96)),
      var(--navy-950);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.25fr 0.6fr 0.8fr 0.9fr;
    gap: clamp(28px, 5vw, 58px);
    padding: clamp(58px, 8vw, 90px) 0;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .footer-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
  }

  .footer-brand strong {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1;
  }

  .footer-brand span {
    display: block;
    color: var(--gold-500);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .footer-main h3 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
  }

  .footer-links {
    display: grid;
    gap: 9px;
    margin-top: 18px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
  }

  .footer-links a:hover {
    color: var(--gold-500);
  }

  .footer-newsletter {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .footer-newsletter input {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    padding: 13px 14px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 0.84rem;
  }

  .socials {
    display: flex;
    gap: 10px;
  }

  .socials a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: var(--white);
    font-weight: 900;
  }

  .socials a:hover {
    color: var(--navy-950);
    background: var(--gold-500);
  }

  .toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    max-width: min(360px, calc(100vw - 36px));
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: var(--gold-500);
    box-shadow: var(--shadow-lg);
    padding: 14px 16px;
    font-weight: 900;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .toast.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms ease, transform 600ms ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 1080px) {
    .topbar {
      display: none;
    }

    .nav-links,
    .appointment-link {
      display: none;
    }

    .nav-toggle {
      display: inline-grid;
    }

    .mobile-panel {
      position: fixed;
      inset: 0 0 0 auto;
      z-index: 999;
      display: flex;
      width: min(88vw, 390px);
      flex-direction: column;
      gap: 22px;
      transform: translateX(105%);
      padding: 96px 26px 34px;
      color: var(--navy-950);
      background: var(--cream-50);
      box-shadow: -30px 0 80px rgba(6, 17, 31, 0.18);
      transition: transform 220ms ease;
    }

    body.nav-open .mobile-panel {
      transform: translateX(0);
    }

    .mobile-panel a {
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      font-weight: 900;
    }

    .home-hero .hero-inner,
    .split,
    .split.reverse,
    .newsletter-inner,
    .cta-inner,
    .cart-layout,
    .footer-main {
      grid-template-columns: 1fr;
    }

    .split.reverse > :first-child {
      order: initial;
    }

    .hero-portrait-wrap {
      min-height: 430px;
    }

    .hero-stat {
      left: 20px;
    }

    .grid-4,
    .process-grid,
    .stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .book-showcase {
      --book-slide-gap: 18px;
      --book-slides-visible: 3;
      --book-slide-gaps-total: 36px;
    }
  }

  @media (max-width: 780px) {
    .container,
    .narrow {
      width: min(100% - 28px, var(--container));
    }

    .brand {
      min-width: auto;
    }

    .brand-name {
      font-size: 1.08rem;
    }

    .brand-sub {
      display: none;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
    }

    .navbar {
      min-height: 68px;
    }

    .hero::before {
      background:
        linear-gradient(180deg, rgba(6, 17, 31, 0.9), rgba(6, 17, 31, 0.72)),
        var(--hero-bg, url("../images/generated/heroes-v2/home-hero-v2.jpg")) var(--hero-mobile-position, var(--hero-position, 68% center)) / cover no-repeat;
    }

    .home-hero {
      min-height: auto;
    }

    .home-hero .hero-inner {
      padding-top: 64px;
    }

    .book-hero .hero-inner {
      padding-bottom: 64px;
    }

    .hero-book-strip {
      position: relative;
      left: auto;
      bottom: auto;
      flex-wrap: wrap;
      max-width: 100%;
      margin-top: 30px;
      padding-bottom: 12px;
      pointer-events: auto;
    }

    .hero-book-strip img {
      flex: 0 0 auto;
      width: clamp(58px, 18vw, 82px);
    }

    .hero-portrait-wrap {
      min-height: 340px;
    }

    .hero-portrait {
      max-height: 400px;
    }

    .hero-stat {
      position: relative;
      left: auto;
      bottom: auto;
      width: 100%;
      margin-top: -30px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .process-grid,
    .stats-grid,
    .form-grid {
      grid-template-columns: 1fr;
    }

    .gallery {
      grid-template-columns: 1fr;
      grid-auto-rows: minmax(230px, auto);
    }

    .gallery figure:first-child {
      grid-row: span 1;
    }

    .book-toolbar,
    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
    }

    .slider-controls {
      width: 100%;
      justify-content: flex-end;
    }

    .book-showcase {
      --book-slide-gap: 16px;
      --book-slides-visible: 1;
      --book-slide-gaps-total: 0px;
    }

    .book-cover {
      min-height: 286px;
    }

    .book-cover img {
      max-height: 238px;
    }

    .book-showcase .book-card {
      height: 590px;
    }

    .book-showcase .book-cover {
      height: 276px;
    }

    .book-showcase .book-cover img {
      max-height: 232px;
    }

    .service-card > img {
      height: 210px;
    }

    .cart-item {
      grid-template-columns: 64px minmax(0, 1fr);
    }

    .cart-item .qty-control {
      grid-column: 2;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      transition-duration: 1ms !important;
      animation-duration: 1ms !important;
      animation-iteration-count: 1 !important;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }

    .premium-card:hover,
    .service-card:hover,
    .book-card:hover,
    .testimonial-card:hover,
    .article-card:hover,
    .info-card:hover,
    .faq-item:hover,
    .process-step:hover,
    .stat-card:hover,
    .quote-band:hover,
    .contact-item:hover,
    .cart-panel:hover,
    .image-frame:hover,
    .gallery figure:hover,
    .dark-panel:hover,
    .media-placeholder:hover,
    .btn:hover,
    .play-button:hover,
    .timeline-item:hover {
      transform: none;
    }

    .service-card:hover > img,
    .article-card:hover > img,
    .image-frame:hover img,
    .gallery figure:hover img,
    .book-card:hover .book-cover img,
    .media-placeholder:hover .play-button {
      transform: none;
    }
  }
