  :root {
    --ink: #f7f1e6;
    --muted: #c6bda9;
    --line: rgba(214, 162, 69, 0.32);
    --paper: #f3eadb;
    --surface: #fffaf0;
    --navy: #081326;
    --navy-2: #0f2038;
    --gold: #d6a245;
    --gold-2: #f1c36a;
    --bronze: #8f5b24;
    --green: #2f6f52;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--navy);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
  }

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

  button,
  input,
  select {
    font: inherit;
  }

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

  h1,
  h2 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
  }

  .topbar {
    position: fixed;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: 100%;
    min-height: 86px;
    padding: 14px clamp(22px, 4vw, 64px);
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.94), rgba(3, 9, 20, 0.74));
    border-bottom: 1px solid rgba(214, 162, 69, 0.16);
    backdrop-filter: blur(12px);
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
    color: var(--gold-2);
  }

  .brand-mark {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    overflow: hidden;
    border-radius: 6px;
    background: transparent;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .brand-name {
    display: grid;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 0.94;
    text-transform: uppercase;
  }

  .brand-name small {
    margin-top: 6px;
    color: #fff7df;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 0.42em;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 34px);
    color: #fff8ec;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav a {
    position: relative;
    padding: 8px 0;
  }

  .nav a::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transition: width 160ms ease;
  }

  .nav a:hover,
  .nav a.active {
    color: var(--gold-2);
  }

  .nav a:hover::after,
  .nav a.active::after {
    width: 100%;
  }

  .header-actions,
  .hero-actions,
  .footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .icon-button {
    display: inline-grid;
    min-width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-2);
    cursor: pointer;
  }

  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-2);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .whatsapp-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid #f4c772;
    border-radius: 5px;
    background: linear-gradient(180deg, #f4c56c, #b87824);
    color: #14100a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.42), 0 12px 24px rgba(0, 0, 0, 0.24);
  }

  .hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 74px);
    min-height: 760px;
    padding: 124px clamp(22px, 4vw, 64px) 36px;
    overflow: hidden;
    background:
      radial-gradient(circle at 72% 42%, rgba(222, 151, 52, 0.28), transparent 22%),
      radial-gradient(circle at 92% 20%, rgba(255, 201, 104, 0.12), transparent 16%),
      linear-gradient(90deg, rgba(3, 9, 20, 0.98) 0%, rgba(7, 17, 33, 0.96) 36%, rgba(9, 17, 29, 0.9) 68%, rgba(4, 8, 14, 0.98) 100%),
      linear-gradient(135deg, #061125 0%, #0f2139 48%, #06090f 100%);
  }

  .hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(180deg, transparent 72%, rgba(3, 9, 20, 0.9)),
      radial-gradient(circle at 7% 9%, rgba(255, 231, 167, 0.42) 0 2px, transparent 3px);
  }

  .hero-copy,
  .hero-media {
    position: relative;
    z-index: 1;
  }

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

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    color: var(--gold-2);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 58px;
    height: 1px;
    content: "";
    background: var(--gold);
  }

  h1 {
    margin-bottom: 22px;
    color: #fffaf1;
    font-size: clamp(54px, 7vw, 98px);
    line-height: 0.93;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  }

  h1 span {
    color: var(--gold);
  }

  h2 {
    margin-bottom: 12px;
    color: #fffaf1;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
  }

  h3 {
    margin-bottom: 8px;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 610px;
    color: #fff9ef;
    font-size: 19px;
    line-height: 1.65;
  }

  .primary-button,
  .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .primary-button {
    border-color: #f4ca78;
    background: linear-gradient(180deg, #f3c86f, #a86717);
    color: #17100a;
  }

  .primary-button:hover {
    filter: brightness(1.08);
  }

  .secondary-button {
    background: rgba(5, 14, 28, 0.5);
    color: #fff5df;
    border-color: var(--gold);
  }

  .full {
    width: 100%;
  }

  .hero-media {
    display: grid;
    min-height: 520px;
    place-items: center;
  }

  .shelf-scene {
    position: relative;
    width: min(100%, 720px);
    height: 540px;
  }

  .featured-book {
    position: absolute;
    right: 30%;
    bottom: 22px;
    display: grid;
    justify-items: center;
    width: 250px;
    height: 390px;
    padding: 52px 24px;
    border: 1px solid rgba(255, 216, 143, 0.3);
    border-radius: 4px 14px 14px 4px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 16%),
      linear-gradient(145deg, #10151e, #1b2230 58%, #35230d);
    color: #fff;
    box-shadow: 22px 26px 42px rgba(0, 0, 0, 0.44);
  }

  .featured-book::after {
    position: absolute;
    right: -14px;
    top: 10px;
    width: 14px;
    height: calc(100% - 20px);
    content: "";
    border-radius: 0 10px 10px 0;
    background: linear-gradient(90deg, #5c3715, #c28532);
  }

  .featured-book img {
    width: 108px;
    height: 108px;
    object-fit: contain;
  }

  .featured-book h2 {
    margin: 18px 0 8px;
    color: var(--gold-2);
    font-size: 34px;
    text-align: center;
    text-transform: uppercase;
  }

  .featured-book p {
    max-width: 170px;
    color: #f8d98f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
  }

  .book-stack {
    position: absolute;
    bottom: 38px;
    left: 16%;
    display: grid;
    gap: 8px;
    width: 170px;
  }

  .book-stack span {
    display: block;
    height: 28px;
    border-radius: 4px;
    background: linear-gradient(180deg, #e7d2a4, #5b3922);
    box-shadow: 10px 10px 24px rgba(0, 0, 0, 0.3);
  }

  .book-stack span:nth-child(2) { width: 88%; margin-left: 12%; }
  .book-stack span:nth-child(3) { width: 78%; margin-left: 22%; }
  .book-stack span:nth-child(4) { width: 92%; margin-left: 8%; }

  .stack-two {
    right: 2%;
    left: auto;
    bottom: 74px;
    width: 220px;
    transform: rotate(6deg);
  }

  .open-book {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 300px;
    height: 94px;
    border-radius: 50% 50% 8px 8px;
    background:
      linear-gradient(90deg, transparent 49%, rgba(90, 63, 28, 0.6) 50%, transparent 51%),
      repeating-linear-gradient(90deg, rgba(80, 52, 27, 0.45) 0 1px, transparent 1px 12px),
      linear-gradient(180deg, #fbf1d9, #d7ad68);
    box-shadow: 0 20px 28px rgba(0, 0, 0, 0.32);
  }

  .story-seal {
    position: absolute;
    right: 138px;
    bottom: 72px;
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    padding: 20px;
    border: 6px double var(--gold);
    border-radius: 50%;
    background: #17223a;
    color: #f8d98f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
  }

  .golden-orbit {
    position: absolute;
    z-index: 3;
    border: 2px solid rgba(240, 177, 65, 0.8);
    border-left-color: transparent;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px rgba(236, 170, 50, 0.82));
  }

  .orbit-one {
    right: 46px;
    bottom: 104px;
    width: 520px;
    height: 92px;
    transform: rotate(-8deg);
  }

  .orbit-two {
    right: 170px;
    bottom: 210px;
    width: 320px;
    height: 66px;
    transform: rotate(24deg);
  }

  .services-band {
    padding: 22px clamp(18px, 5vw, 72px) 30px;
    border-top: 1px solid rgba(214, 162, 69, 0.36);
    background: linear-gradient(180deg, #10213b, #0b172b);
  }

  .services-heading {
    text-align: center;
  }

  .services-heading-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
  }

  .services-heading .eyebrow {
    justify-content: center;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .services-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 3vw, 40px);
  }

  .corner-link {
    position: absolute;
    top: 4px;
    right: 0;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--gold);
    border-radius: 5px;
    color: #fff5df;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .corner-link:hover {
    background: rgba(214, 162, 69, 0.14);
    color: var(--gold-2);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
  }

  .services-grid article {
    min-height: 138px;
    padding: 14px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    text-align: center;
  }

  .services-grid article:last-child {
    border-right: 0;
  }

  .services-grid svg {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    color: var(--gold);
  }

  .services-grid h3 {
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .services-grid p {
    margin: 0;
    color: #f0eadf;
    font-size: 13px;
    line-height: 1.45;
  }

  .stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 18px clamp(18px, 5vw, 72px);
    background:
      linear-gradient(rgba(255, 251, 242, 0.86), rgba(255, 251, 242, 0.9)),
      var(--paper);
    color: #111827;
  }

  .stats-band article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 0 26px;
    border-right: 1px solid rgba(143, 91, 36, 0.24);
  }

  .stats-band article:last-child {
    border-right: 0;
  }

  .stats-band svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    color: #bc842d;
  }

  .stats-band strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
  }

  .stats-band p {
    margin: 0;
    color: #2d2a25;
    font-size: 13px;
  }

  .quote-band {
    padding: 18px;
    background: #071225;
    color: #fff;
    text-align: center;
  }

  .quote-band p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(21px, 2.3vw, 30px);
  }

  .quote-band p::first-letter,
  .quote-band p {
    color: #fffaf1;
  }

  .quote-band p {
    text-shadow: 0 0 18px rgba(214, 162, 69, 0.18);
  }

  .toolbar-band {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto 190px;
    gap: 14px;
    padding: 22px clamp(18px, 5vw, 72px);
    border-block: 1px solid rgba(214, 162, 69, 0.2);
    background: #0f1d33;
  }

  .search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold-2);
  }

  .search-box input,
  .login-card input,
  .toolbar-band select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fffaf0;
    color: #172033;
    padding: 0 12px;
  }

  .search-box input {
    border: 0;
    padding: 0;
    outline: 0;
    background: transparent;
    color: #fff;
  }

  .search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }

  .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-tabs button {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff7e8;
    cursor: pointer;
    font-weight: 800;
  }

  .filter-tabs button.active {
    background: linear-gradient(180deg, #e7b85d, #9a621f);
    color: #111;
  }

  .section,
  .benefits,
  .split-section,
  .footer {
    padding-inline: clamp(18px, 5vw, 72px);
  }

  .section {
    padding-block: 62px;
    background: #f4ecdd;
    color: #172033;
  }

  .section .eyebrow {
    color: #9a621f;
  }

  .section .eyebrow::before,
  .section .eyebrow::after {
    background: #c58c35;
  }

  .section h2,
  .split-section h2,
  .contact-panel h2,
  .modal-card h2 {
    color: #0d172a;
  }

  .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
  }

  .section-actions {
    display: grid;
    justify-items: end;
    gap: 14px;
  }

  .section-note {
    max-width: 390px;
    color: #5d5548;
    line-height: 1.6;
  }

  .catalog-button {
    background: #10213b;
    color: #fff7e8;
  }

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

  .book-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 690px;
    border: 1px solid rgba(143, 91, 36, 0.22);
    border-radius: 6px;
    overflow: hidden;
    background: #fffaf0;
    box-shadow: 0 18px 34px rgba(40, 31, 20, 0.12);
  }

  .book-cover {
    position: relative;
    display: flex;
    min-height: 310px;
    padding: 18px;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 50% 38%, rgba(214, 162, 69, 0.18), transparent 40%),
      linear-gradient(135deg, #101b2d, #1a2e49);
  }

  .book-cover img {
    display: block;
    width: min(78%, 210px);
    aspect-ratio: 420 / 620;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.36);
  }

  .book-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .book-body h3 {
    min-height: 52px;
    margin: 0;
    color: #12213a;
    font-size: 21px;
    line-height: 1.22;
  }

  .book-author {
    margin: -6px 0 0;
    color: #5f5140;
    font-size: 14px;
    font-weight: 800;
  }

  .meta-row,
  .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: #f3e2bd;
    color: #7b4c16;
    font-size: 12px;
    font-weight: 900;
  }

  .rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #9a641c;
    font-weight: 900;
  }

  .description-block {
    min-height: 150px;
  }

  .description-block p {
    margin-bottom: 8px;
    color: #5e5a51;
    line-height: 1.5;
  }

  .read-more {
    padding: 0;
    border: 0;
    background: transparent;
    color: #9a621f;
    cursor: pointer;
    font-weight: 900;
  }

  .read-more:hover {
    color: #6d4210;
    text-decoration: underline;
  }

  .price {
    font-size: 22px;
    font-weight: 900;
  }

  .add-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    margin-top: auto;
    border: 0;
    border-radius: 5px;
    background: linear-gradient(180deg, #f1c36a, #a86717);
    color: #15100a;
    font-weight: 900;
    cursor: pointer;
  }

  .add-button:hover,
  .whatsapp-header:hover {
    filter: brightness(1.08);
  }

  .benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-block: 42px 62px;
    background: #f4ecdd;
    color: #172033;
  }

  .benefits article {
    padding: 22px;
    border-top: 4px solid var(--gold);
    background: #fffaf0;
  }

  .benefits svg {
    color: #a86e23;
  }

  .split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: 36px;
    padding-block: 58px;
    background: #101f37;
  }

  .split-section h2 {
    color: #fffaf1;
  }

  .split-section p {
    color: #f3eadb;
    line-height: 1.7;
  }

  .testimonials {
    display: grid;
    gap: 16px;
  }

  blockquote {
    margin: 0;
    padding: 24px;
    border-left: 5px solid var(--gold);
    background: rgba(255, 255, 255, 0.07);
  }

  cite {
    color: var(--gold-2);
    font-style: normal;
    font-weight: 800;
  }

  .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 28px;
    border-top: 1px solid rgba(214, 162, 69, 0.28);
    background: #071225;
    color: #fff;
  }

  .footer p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
  }

  .footer-contact {
    color: var(--gold-2);
    font-weight: 800;
  }

  .modal {
    width: min(94vw, 440px);
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
  }

  .catalog-modal {
    width: min(94vw, 980px);
  }

  .modal::backdrop {
    background: rgba(2, 7, 16, 0.7);
  }

  .modal-card {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 28px;
    border-radius: 6px;
    background: #fffaf0;
    color: #172033;
  }

  .catalog-card {
    max-height: min(86vh, 760px);
    overflow: auto;
  }

  .modal-card label {
    display: grid;
    gap: 7px;
    color: #4f4538;
    font-size: 13px;
    font-weight: 800;
  }

  .close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 6px;
    background: #efe1c6;
    cursor: pointer;
  }

  .fine-print {
    margin: 0;
    color: #6a5f50;
    font-size: 13px;
  }

  .cart-empty {
    padding: 24px;
    border: 1px dashed rgba(143, 91, 36, 0.34);
    border-radius: 6px;
    color: #5d5548;
    text-align: center;
  }

  .toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    max-width: min(360px, calc(100vw - 36px));
    padding: 14px 16px;
    border-radius: 6px;
    background: #071225;
    color: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    transition: 160ms ease;
    pointer-events: none;
  }

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

  .inner-page {
    padding-top: 86px;
    background: #f4ecdd;
    color: #172033;
  }

  .leader-hero,
  .service-detail-hero {
    padding: 86px clamp(18px, 5vw, 72px) 64px;
  }

  .leader-hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background:
      linear-gradient(90deg, rgba(5, 14, 28, 0.94), rgba(12, 31, 56, 0.9)),
      #101f37;
    color: #fffaf1;
  }

  .leader-photo {
    overflow: hidden;
    border: 1px solid rgba(214, 162, 69, 0.36);
    border-radius: 6px;
    background: #fffaf0;
    box-shadow: var(--shadow);
  }

  .leader-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .leader-copy h1,
  .service-detail-hero h1 {
    font-size: clamp(44px, 6vw, 82px);
  }

  .leader-copy p,
  .service-detail-hero p {
    max-width: 720px;
    font-size: 19px;
    line-height: 1.7;
  }

  .story-section,
  .process-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1fr);
    gap: 34px;
    padding: 58px clamp(18px, 5vw, 72px);
    background: #fffaf0;
  }

  .story-section .eyebrow,
  .process-section .eyebrow,
  .service-detail-hero .eyebrow {
    color: #9a621f;
  }

  .story-section .eyebrow::before,
  .story-section .eyebrow::after,
  .process-section .eyebrow::before,
  .process-section .eyebrow::after,
  .service-detail-hero .eyebrow::before,
  .service-detail-hero .eyebrow::after {
    background: #c58c35;
  }

  .story-section h2,
  .process-section h2,
  .pricing-grid h2 {
    color: #0d172a;
  }

  .story-text p,
  .process-list p {
    color: #51483d;
    font-size: 17px;
    line-height: 1.75;
  }

  .service-detail-hero {
    background:
      radial-gradient(circle at 84% 28%, rgba(214, 162, 69, 0.24), transparent 24%),
      linear-gradient(135deg, #f8efd9, #fffaf0 58%, #ead6ad);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 24px clamp(18px, 5vw, 72px) 58px;
  }

  .pricing-grid article {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-top: 4px solid var(--gold);
    background: #fffaf0;
    box-shadow: 0 18px 34px rgba(40, 31, 20, 0.12);
  }

  .pricing-grid strong {
    color: #8f5b24;
    font-size: 28px;
  }

  .pricing-grid p {
    color: #51483d;
    line-height: 1.65;
  }

  svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  @media (max-width: 1180px) {
    .topbar {
      flex-wrap: wrap;
    }

    .nav {
      order: 3;
      width: 100%;
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 4px;
    }

    .hero {
      grid-template-columns: 1fr;
      padding-top: 160px;
    }

    .hero-media {
      order: -1;
    }

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

    .services-grid article {
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .book-grid,
    .benefits,
    .stats-band {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .toolbar-band {
      grid-template-columns: 1fr;
    }

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

  @media (max-width: 820px) {
    .topbar {
      min-height: 74px;
      padding: 10px 18px;
    }

    .brand {
      min-width: 0;
    }

    .brand-name {
      display: none;
    }

    .menu-toggle {
      display: inline-grid;
      margin-left: auto;
    }

    .header-actions {
      display: none;
    }

    .nav {
      display: none;
      order: 4;
      width: 100%;
      padding: 8px 0 2px;
      border-top: 1px solid rgba(214, 162, 69, 0.18);
    }

    .topbar.menu-open .nav {
      display: grid;
      gap: 0;
    }

    .nav a {
      padding: 13px 2px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav a::after {
      display: none;
    }

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

    .hero-media {
      min-height: 360px;
    }

    .shelf-scene {
      height: 360px;
      transform: scale(0.72);
    }

    .section-heading,
    .footer,
    .split-section,
    .leader-hero,
    .story-section,
    .process-section {
      align-items: flex-start;
      grid-template-columns: 1fr;
    }

    .section-actions {
      justify-items: start;
    }

    .corner-link {
      position: static;
      margin-bottom: 14px;
    }

    .services-heading-row {
      align-items: center;
      flex-direction: column;
    }

    .stats-band article {
      border-bottom: 1px solid rgba(143, 91, 36, 0.2);
      padding: 16px;
    }

    .contact-panel {
      display: none;
    }
  }

  @media (max-width: 560px) {
    h1 {
      font-size: clamp(44px, 16vw, 62px);
    }

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

    .primary-button,
    .secondary-button {
      width: 100%;
    }

    .services-grid,
    .book-grid,
    .benefits,
    .stats-band {
      grid-template-columns: 1fr;
    }

    .services-grid article,
    .stats-band article {
      border-right: 0;
    }
  }