/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --navy: #111827;
  --navy-deep: #0a101c;
  --navy-soft: #1a2236;
  --gold: #c8a96b;
  --gold-light: #e7c88a;
  --gold-deep: #b08c4e;
  --ivory: #f8f6f1;
  --ivory-warm: #f1ece2;
  --beige: #e9dfc9;
  --beige-deep: #d7c8a8;
  --green: #1e5b4f;
  --green-deep: #14463c;
  --charcoal: #2b2b2b;
  --line: rgba(17, 24, 39, 0.08);
  --line-light: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 14px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(17, 24, 39, 0.18);
  --shadow-lg: 0 30px 70px -25px rgba(17, 24, 39, 0.3);
  --shadow-glow: 0 30px 80px -30px rgba(200, 169, 107, 0.45);
  --grad-cta: linear-gradient(135deg, #c8a96b 0%, #e7c88a 100%);
  --grad-gold-deep: linear-gradient(
    135deg,
    #b08c4e 0%,
    #c8a96b 50%,
    #e7c88a 100%
  );
  --grad-dark: linear-gradient(180deg, #0a101c 0%, #111827 100%);
  --grad-soft: linear-gradient(180deg, #f8f6f1 0%, #ffffff 100%);
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 38px;
  --font-display: "DM Serif Display", "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ============================================================
   2. BASE
   ============================================================ */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
p {
  color: #4a4a4a;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}
a:hover {
  color: var(--gold-deep);
}
.italic-serif {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold-deep);
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ivory);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  border-radius: 10px;
}

.container {
  max-width: 1240px;
}
.container-tight {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  position: relative;
  padding: 7.5rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.5rem 1rem;
  background: rgba(200, 169, 107, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.28);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.18);
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  margin-bottom: 1rem;
}
.section-title .accent {
  font-style: italic;
  color: var(--gold-deep);
}
.section-sub {
  font-size: 1.05rem;
  color: #5a5a5a;
  max-width: 640px;
  margin: 0 auto;
}

.elegant-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  opacity: 0.7;
  margin: 0.5rem 0 0;
}
.elegant-divider span {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.elegant-divider i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Buttons */
.btn-luxe {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}
.btn-luxe-primary {
  background: var(--grad-cta);
  color: var(--navy);
  box-shadow:
    0 14px 30px -10px rgba(200, 169, 107, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-luxe-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -12px rgba(200, 169, 107, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: var(--navy);
}
.btn-luxe-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(17, 24, 39, 0.18);
}
.btn-luxe-ghost:hover {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.btn-luxe-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}
.btn-luxe-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-luxe i {
  transition: transform 0.35s ease;
}
.btn-luxe:hover i.fa-arrow-right {
  transform: translateX(4px);
}

/* ============================================================
   3. TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200, 169, 107, 0.18);
  position: relative;
  z-index: 100;
}
.top-bar .item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
}
.top-bar .item i {
  color: var(--gold);
  font-size: 0.75rem;
}
.top-bar .item + .item {
  margin-left: 1.6rem;
}
.top-bar .trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.top-bar .trust .stars i {
  color: var(--gold);
  font-size: 0.7rem;
}
.top-bar a:hover {
  color: var(--gold);
}
@media (max-width: 768px) {
  .top-bar .item + .item {
    margin-left: 1rem;
  }
  .top-bar .hide-mob {
    display: none !important;
  }
}

/* ============================================================
   4. HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  transition: all 0.35s ease;
  background: rgba(248, 246, 241, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.04);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px -22px rgba(17, 24, 39, 0.25);
}
.navbar {
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.brand .brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 11px;
  font-style: italic;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px -10px rgba(17, 24, 39, 0.45);
  position: relative;
  overflow: hidden;
}
.brand .brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 169, 107, 0.25),
    transparent 60%
  );
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--grad-cta);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    align-items: flex-start;
    gap: 1rem;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .nav-cta-wrap {
    display: none !important;
  }
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 5rem 0 7rem;
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    #fdfcf8 60%,
    #f5f1e6 100%
  );
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.35),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    closest-side,
    rgba(30, 91, 79, 0.18),
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 100px;
  padding: 0.55rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.6rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.hero-tag .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}
.hero-tag .pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.35;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.hero-sub {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4b4b4b;
  max-width: 540px;
  margin-bottom: 2.1rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--beige);
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.hero-trust .avatar:first-child {
  margin-left: 0;
}
.hero-trust .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-trust .meta .stars {
  color: var(--gold);
  font-size: 0.8rem;
}
.hero-trust .meta strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.1rem;
  display: block;
  line-height: 1;
}
.hero-trust .meta small {
  color: #6c6c6c;
  font-size: 0.78rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.hero-stats .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--navy);
  display: block;
  line-height: 1;
}
.hero-stats .num .plus {
  color: var(--gold-deep);
}
.hero-stats .lbl {
  font-size: 0.78rem;
  color: #6c6c6c;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* Hero Visual - Floating Books */
.hero-visual {
  position: relative;
  height: 620px;
  perspective: 1400px;
}
.book {
  position: absolute;
  width: 240px;
  height: 340px;
  border-radius: 4px 8px 8px 4px;
  box-shadow:
    0 25px 60px -10px rgba(17, 24, 39, 0.45),
    inset -8px 0 18px -8px rgba(0, 0, 0, 0.35),
    inset 4px 0 0 rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}
.book::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35),
    rgba(255, 255, 255, 0.1) 60%,
    transparent
  );
}
.book::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 6px;
  bottom: 6px;
  width: 6px;
  background: repeating-linear-gradient(180deg, #fff 0 1px, #e5dfd0 1px 3px);
  border-radius: 0 2px 2px 0;
  box-shadow: inset 1px 0 2px rgba(0, 0, 0, 0.12);
}
.book .cover {
  position: absolute;
  inset: 0 0 0 14px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy);
  color: var(--ivory);
}
.book .cover .top {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 600;
}
.book .cover .title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
  margin: 0;
}
.book .cover .author {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.65rem;
}
.book .cover .ornament {
  width: 60px;
  height: 60px;
  align-self: flex-start;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
}

.book.book-1 {
  top: 30px;
  left: 30px;
  transform: rotateY(-12deg) rotateZ(-6deg);
  animation: floatA 7s ease-in-out infinite;
}
.book.book-1 .cover {
  background: linear-gradient(160deg, #111827 0%, #1a2236 100%);
}

.book.book-2 {
  top: 110px;
  left: 200px;
  width: 250px;
  height: 360px;
  transform: rotateY(-4deg) rotateZ(2deg);
  z-index: 3;
  animation: floatB 8s ease-in-out infinite;
}
.book.book-2 .cover {
  background: linear-gradient(170deg, #f8f6f1 0%, #e9dfc9 100%);
  color: var(--navy);
}
.book.book-2 .cover .top {
  color: var(--green);
}
.book.book-2 .cover .author {
  color: rgba(17, 24, 39, 0.55);
  border-color: rgba(17, 24, 39, 0.15);
}
.book.book-2 .cover .ornament {
  border-color: var(--green);
  color: var(--green);
}

.book.book-3 {
  top: 230px;
  left: 80px;
  width: 220px;
  height: 320px;
  transform: rotateY(-10deg) rotateZ(8deg);
  animation: floatC 9s ease-in-out infinite;
}
.book.book-3 .cover {
  background: linear-gradient(160deg, #1e5b4f 0%, #14463c 100%);
}

@keyframes floatA {
  0%,
  100% {
    transform: rotateY(-12deg) rotateZ(-6deg) translateY(0);
  }
  50% {
    transform: rotateY(-12deg) rotateZ(-6deg) translateY(-18px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: rotateY(-4deg) rotateZ(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-4deg) rotateZ(2deg) translateY(-12px);
  }
}
@keyframes floatC {
  0%,
  100% {
    transform: rotateY(-10deg) rotateZ(8deg) translateY(0);
  }
  50% {
    transform: rotateY(-10deg) rotateZ(8deg) translateY(-22px);
  }
}

.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.float-badge .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-cta);
  color: var(--navy);
  font-weight: 700;
}
.float-badge .ico.green {
  background: var(--green);
  color: #fff;
}
.float-badge .ico.dark {
  background: var(--navy);
  color: var(--gold);
}
.float-badge strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.float-badge small {
  font-size: 0.72rem;
  color: #6c6c6c;
  letter-spacing: 0.04em;
}
.float-badge.b-rating {
  top: 20px;
  right: 10px;
  animation: floatBadge1 6s ease-in-out infinite;
}
.float-badge.b-trust {
  bottom: 110px;
  right: 0;
  animation: floatBadge2 7s ease-in-out infinite;
}
.float-badge.b-google {
  bottom: 30px;
  left: 10px;
  animation: floatBadge3 8s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatBadge2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatBadge3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 991px) {
  .hero-visual {
    height: 480px;
    margin-top: 3rem;
  }
  .book.book-1 {
    left: 8%;
  }
  .book.book-2 {
    left: 38%;
  }
  .book.book-3 {
    left: 15%;
  }
}
@media (max-width: 576px) {
  .hero-visual {
    height: 420px;
    transform: scale(0.85);
  }
  .float-badge {
    padding: 0.6rem 0.8rem;
  }
  .float-badge small {
    display: none;
  }
}

/* ============================================================
   6. MARQUEE / TRUST STRIP
   ============================================================ */
.trust-strip {
  background: #fff;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #777;
  font-family: var(--font-display);
  font-size: 1.5rem;
  white-space: nowrap;
}
.marquee-item i {
  color: var(--gold);
  font-size: 1.1rem;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   7. PUBLISHING NETWORK
   ============================================================ */
.section-network {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.section-network::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.18),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
}
.section-network::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    rgba(30, 91, 79, 0.1),
    transparent 70%
  );
  filter: blur(14px);
  pointer-events: none;
}
.section-network .container {
  position: relative;
  z-index: 1;
}

.brand-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.6rem;
  border: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.brand-card .corner-mark {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gold-deep);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.brand-card .corner-mark::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 169, 107, 0) 0%,
    rgba(200, 169, 107, 0.1) 60%,
    rgba(200, 169, 107, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.brand-card::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -20%;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.22),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.brand-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 169, 107, 0.5);
  box-shadow: var(--shadow-glow);
}
.brand-card:hover::before {
  opacity: 1;
}
.brand-card:hover::after {
  opacity: 1;
}
.brand-card > * {
  position: relative;
  z-index: 1;
}

.brand-logo {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--beige) 100%);
  margin-bottom: 1.8rem;
  box-shadow:
    0 22px 40px -22px rgba(17, 24, 39, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 1px rgba(200, 169, 107, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.brand-logo::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(200, 169, 107, 0.45);
  border-radius: 20px;
  pointer-events: none;
}
.brand-logo img {
  max-width: 74%;
  max-height: 74%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 4px 10px rgba(17, 24, 39, 0.1));
  transition: transform 0.5s ease;
}
.brand-card:hover .brand-logo {
  transform: rotate(-3deg) scale(1.05);
}
.brand-card:hover .brand-logo img {
  transform: scale(1.04);
}

.brand-card .brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.brand-card .brand-tag i {
  font-size: 0.55rem;
  color: var(--gold);
}

.brand-card h3 {
  font-size: 1.9rem;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}
.brand-card p {
  font-size: 0.98rem;
  color: #5d5d5d;
  margin-bottom: 1.6rem;
  max-width: 460px;
}

.brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.brand-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--charcoal);
}
.brand-meta span i {
  color: var(--gold-deep);
  font-size: 0.68rem;
}

.brand-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid var(--line);
  transition: all 0.35s ease;
}
.brand-link:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(17, 24, 39, 0.5);
}
.brand-link i {
  transition: transform 0.3s ease;
  font-size: 0.76rem;
}
.brand-link:hover i {
  transform: translate(2px, -2px);
}

.brand-card .imprint-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.04em;
}
.brand-card .imprint-no strong {
  color: var(--gold-deep);
  font-weight: 400;
  font-size: 1rem;
}

@media (max-width: 575px) {
  .brand-card {
    padding: 2rem 1.6rem;
    min-height: auto;
  }
  .brand-card h3 {
    font-size: 1.5rem;
  }
  .brand-card .corner-mark {
    display: none;
  }
  .brand-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-logo {
    width: 96px;
    height: 96px;
    border-radius: 22px;
  }
}

/* ============================================================
   8. SERVICES
   ============================================================ */
.section-services {
  background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  grid-column: span 4;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.2rem;
  border: 1px solid var(--line);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 107, 0.4);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card.lg {
  grid-column: span 6;
  min-height: 380px;
}
.service-card.sm {
  grid-column: span 3;
}
.service-card.dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--ivory);
  border-color: transparent;
}
.service-card.dark h3 {
  color: #fff;
}
.service-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}
.service-card.green {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  border-color: transparent;
}
.service-card.green h3 {
  color: #fff;
}
.service-card.green p {
  color: rgba(255, 255, 255, 0.78);
}
.service-card.beige {
  background: linear-gradient(160deg, #f8f6f1 0%, #e9dfc9 100%);
  border-color: transparent;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(200, 169, 107, 0.14);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  transition: transform 0.4s ease;
  position: relative;
}
.service-card.dark .service-icon,
.service-card.green .service-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}
.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.06);
}
.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
}
.service-card p {
  font-size: 0.94rem;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
}
.service-card .learn-more {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  position: relative;
  z-index: 2;
}
.service-card.dark .learn-more,
.service-card.green .learn-more {
  color: var(--gold);
}
.service-card .learn-more i {
  transition: transform 0.3s ease;
}
.service-card:hover .learn-more i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .service-card,
  .service-card.lg,
  .service-card.sm {
    grid-column: span 6;
    min-height: 280px;
  }
}
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card.lg,
  .service-card.sm {
    grid-column: span 1;
  }
}

/* ============================================================
   9. WHY US
   ============================================================ */
.section-why {
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.section-why::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.2),
    transparent 70%
  );
  filter: blur(20px);
}
.section-why::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    closest-side,
    rgba(30, 91, 79, 0.3),
    transparent 70%
  );
  filter: blur(20px);
}
.section-why .container {
  position: relative;
  z-index: 2;
}
.section-why h2 {
  color: #fff;
}
.section-why p {
  color: rgba(255, 255, 255, 0.72);
}
.section-why .eyebrow {
  background: rgba(200, 169, 107, 0.15);
  border-color: rgba(200, 169, 107, 0.32);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-list .ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 107, 0.12);
  color: var(--gold);
  font-size: 1rem;
}
.feature-list strong {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  display: block;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.feature-list small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 107, 0.4);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.18),
    transparent 70%
  );
  border-radius: 50%;
}
.stat-card .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200, 169, 107, 0.18);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.stat-card .num .plus {
  color: var(--gold);
}
.stat-card .lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ============================================================
   10. BOOK SHOWCASE — SWIPER (home page portfolio ticker)
   ============================================================ */
.section-showcase {
  background: linear-gradient(180deg, var(--ivory) 0%, #fff 100%);
  overflow: hidden;
  position: relative;
}
.section-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.1),
    transparent 70%
  );
  border-radius: 50%;
}
.section-showcase .container,
.section-showcase .container-fluid {
  position: relative;
  z-index: 1;
}

.showcase-swiper {
  padding: 2.5rem 0 4rem !important;
  overflow: visible !important;
}
.showcase-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Premium Book Card */
.book-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem 1.4rem;
  border: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.book-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(200, 169, 107, 0),
    rgba(200, 169, 107, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.book-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 107, 0.4);
  box-shadow: var(--shadow-lg);
}
.book-card:hover::before {
  opacity: 1;
}
.book-card > * {
  position: relative;
  z-index: 1;
}

.book-cover-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(160deg, var(--ivory), var(--beige));
  margin-bottom: 1.2rem;
  box-shadow:
    0 20px 40px -20px rgba(17, 24, 39, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.book-cover-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.25),
    rgba(255, 255, 255, 0.08) 60%,
    transparent
  );
  z-index: 2;
  pointer-events: none;
}
.book-cover-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(17, 24, 39, 0.18));
  z-index: 1;
  pointer-events: none;
}
.book-cover-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.book-card:hover .book-cover-wrap img {
  transform: scale(1.05);
}

.book-cover-wrap .category-chip {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.book-cover-wrap .quick-view {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px) scale(0.85);
  transition: all 0.4s ease;
  box-shadow: 0 12px 24px -8px rgba(200, 169, 107, 0.7);
}
.book-card:hover .quick-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.book-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.85em;
}
.book-card .author {
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

/* Swiper navigation */
.swiper-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}
.swiper-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}
.swiper-nav-btn:hover:not(.swiper-button-disabled) {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.swiper-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.showcase-swiper .swiper-pagination {
  position: relative;
  bottom: auto !important;
  margin: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: auto !important;
}
.showcase-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(17, 24, 39, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
}
.showcase-swiper .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 4px;
  background: var(--grad-cta);
}

.showcase-cta-row {
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================================================
   11. PROCESS TIMELINE
   ============================================================ */
.section-process {
  background: var(--ivory);
}
.process-wrap {
  position: relative;
  padding: 2rem 0;
}
.process-line {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.5;
  z-index: 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
.process-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.8rem;
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 169, 107, 0.4);
}
.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 12px 30px -12px rgba(200, 169, 107, 0.6);
  transition: all 0.4s ease;
}
.process-card:hover .process-num {
  background: var(--grad-cta);
  border-color: var(--gold-light);
  color: var(--navy);
}
.process-card .pico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 91, 79, 0.1);
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.process-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.process-card p {
  font-size: 0.9rem;
  color: #6c6c6c;
  margin: 0;
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-line {
    display: none;
  }
}
@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.section-testimonials {
  background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}
.tcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.tcard {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.tcard::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(200, 169, 107, 0.18);
}
.tcard:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 107, 0.4);
  box-shadow: var(--shadow-lg);
}
.tcard .stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.tcard blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 1.5rem;
  padding: 0;
}
.tcard .author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.tcard .author .av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  border: 2px solid #fff;
  box-shadow: var(--shadow-md);
}
.tcard .author strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}
.tcard .author small {
  color: #888;
  font-size: 0.82rem;
}

.tcard.feat {
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  border-color: transparent;
  color: #fff;
}
.tcard.feat::before {
  color: rgba(200, 169, 107, 0.3);
}
.tcard.feat blockquote {
  color: #fff;
}
.tcard.feat .author {
  border-color: rgba(255, 255, 255, 0.12);
}
.tcard.feat .author strong {
  color: #fff;
}
.tcard.feat .author small {
  color: rgba(255, 255, 255, 0.6);
}
.tcard.feat .author .av {
  background: var(--gold);
  color: var(--navy);
}

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

/* ============================================================
   13. CTA BAND
   ============================================================ */
.section-cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: 5rem 3rem;
  background-color: #0a101c;
  background-image:
    linear-gradient(
      120deg,
      rgba(10, 16, 28, 0.88) 0%,
      rgba(10, 16, 28, 0.65) 45%,
      rgba(42, 31, 58, 0.45) 100%
    ),
    url("../../images/cta.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 60px 100px -50px rgba(17, 24, 39, 0.5);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.45),
    transparent 70%
  );
  filter: blur(8px);
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    closest-side,
    rgba(30, 91, 79, 0.4),
    transparent 70%
  );
  filter: blur(10px);
}
.cta-band .inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
}
.cta-band h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 1.2rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-band .btn-luxe-primary {
  padding: 1.05rem 2rem;
  font-size: 0.95rem;
}
.cta-band .meta {
  display: block;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.cta-band .meta i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.cta-decor-book {
  position: absolute;
  width: 180px;
  height: 260px;
  border-radius: 4px 8px 8px 4px;
  background: linear-gradient(160deg, #c8a96b, #b08c4e);
  bottom: -30px;
  right: 5%;
  transform: rotateZ(8deg);
  opacity: 0.12;
  box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   14. CONTACT
   ============================================================ */
.section-contact {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.18),
    transparent 70%
  );
  filter: blur(10px);
}
.contact-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: 0 40px 80px -40px rgba(17, 24, 39, 0.25);
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}
.form-control-luxe {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--navy);
  transition: all 0.25s ease;
}
.form-control-luxe:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.18);
}
textarea.form-control-luxe {
  min-height: 130px;
  resize: vertical;
}
select.form-control-luxe {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23111827' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.contact-side {
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-side::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.35),
    transparent 70%
  );
}
.contact-side h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.contact-side p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}
.contact-info {
  position: relative;
  z-index: 1;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-info-item .ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(200, 169, 107, 0.16);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
.contact-info-item small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.6rem;
  position: relative;
  z-index: 1;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.socials a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 1.8rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.1),
    transparent 70%
  );
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  color: #fff;
}
.footer-brand .brand-mark {
  background: var(--gold);
  color: var(--navy);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  margin: 1.2rem 0 1.4rem;
  max-width: 360px;
}
.footer-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.65rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s ease;
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}
.footer-contact-row i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 0.82rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  margin-left: 1.25rem;
}
.footer-bottom a:hover {
  color: var(--gold);
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  margin: 0;
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.scroll-top {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: var(--navy);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 16px 30px -10px rgba(200, 169, 107, 0.6);
  z-index: 50;
  transition: all 0.3s ease;
}
.scroll-top.show {
  display: inline-flex;
}
.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ============================================================
   16. PORTFOLIO PAGE — banner, filters, grid
   ============================================================ */
.portfolio-banner {
  position: relative;
  padding: 7rem 0 5rem;
  background:
    radial-gradient(
      closest-side at 80% 0%,
      rgba(200, 169, 107, 0.2),
      transparent 65%
    ),
    radial-gradient(
      closest-side at 0% 100%,
      rgba(30, 91, 79, 0.12),
      transparent 65%
    ),
    linear-gradient(180deg, var(--ivory) 0%, #fff 100%);
  overflow: hidden;
  text-align: center;
}
.portfolio-banner .breadcrumb-luxe {
  display: block;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #6c6c6c;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.portfolio-banner .breadcrumb-luxe a {
  color: var(--navy);
  font-weight: 600;
}
.portfolio-banner .breadcrumb-luxe i {
  color: var(--gold);
  font-size: 0.65rem;
}
.portfolio-banner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.portfolio-banner h1 .accent {
  font-style: italic;
  color: var(--gold-deep);
}
.portfolio-banner p {
  max-width: 600px;
  margin: 0 auto;
  color: #5d5d5d;
  font-size: 1.05rem;
}
.portfolio-banner .stat-row {
  display: inline-flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.portfolio-banner .stat-row .stat strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.portfolio-banner .stat-row .stat small {
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.portfolio-banner .stat-row .divider {
  width: 1px;
  background: var(--line);
}

/* Filter & search bar */
.portfolio-controls {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  margin-bottom: 3rem;
  position: sticky;
  top: 80px;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}
.portfolio-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.55rem 0.95rem;
  border-radius: 100px;
  border: 1px solid transparent;
  background: rgba(17, 24, 39, 0.03);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  white-space: nowrap;
  line-height: 1;
}
.portfolio-tab .count {
  background: rgba(17, 24, 39, 0.06);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-size: 0.68rem;
  color: #666;
  font-weight: 700;
  transition: all 0.3s ease;
}
.portfolio-tab:hover {
  background: rgba(200, 169, 107, 0.08);
  color: var(--gold-deep);
}
.portfolio-tab.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.portfolio-tab.active .count {
  background: rgba(200, 169, 107, 0.25);
  color: var(--gold);
}

.portfolio-search {
  position: relative;
  width: 100%;
  max-width: 360px;
  align-self: flex-end;
}
.portfolio-search input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.6rem;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: #fff;
  transition: all 0.25s ease;
}
.portfolio-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.18);
}
.portfolio-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 0.85rem;
}
.portfolio-search .clear {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 24, 39, 0.06);
  color: #666;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
}
.portfolio-search .clear.show {
  display: inline-flex;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.portfolio-meta .result-count {
  font-size: 0.88rem;
  color: #6c6c6c;
}
.portfolio-meta .result-count strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  margin-right: 0.25rem;
}
.portfolio-meta .clear-filters {
  background: none;
  border: none;
  font-size: 0.82rem;
  color: var(--gold-deep);
  font-weight: 600;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 0.35rem;
}
.portfolio-meta .clear-filters.show {
  display: inline-flex;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.portfolio-grid .book-card {
  animation: fadeUp 0.5s ease backwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-empty {
  text-align: center;
  padding: 5rem 1rem;
  display: none;
}
.portfolio-empty.show {
  display: block;
}
.portfolio-empty .ic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.1);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}
.portfolio-empty h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.portfolio-empty p {
  color: #6c6c6c;
}

@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-controls {
    position: static;
  }
  .portfolio-search {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .book-card {
    padding: 1rem 0.9rem 1rem;
  }
  .book-card h4 {
    font-size: 1rem;
  }
}

/* Utility */
.line-glow {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ============================================================
   17. LOGO IMAGE (header + footer)
   ============================================================ */
.brand img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.site-footer .brand img {
  height: 54px;
  max-width: 240px;
  filter: brightness(1) drop-shadow(0 4px 18px rgba(200, 169, 107, 0.18));
}
@media (max-width: 575px) {
  .brand img {
    height: 42px;
  }
}

/* ============================================================
   18. HERO IMAGE FRAME (replaces fake 3D book mockups)
   ============================================================ */
.hero-visual-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 620px;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
/* Soft gold halo glow */
.hero-image-glow {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(
      closest-side at 65% 35%,
      rgba(200, 169, 107, 0.45),
      transparent 70%
    ),
    radial-gradient(
      closest-side at 25% 75%,
      rgba(30, 91, 79, 0.2),
      transparent 70%
    );
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
/* Decorative thin ring */
.hero-image-ring {
  position: absolute;
  inset: 8%;
  border: 1.5px solid rgba(200, 169, 107, 0.35);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: ringPulse 8s ease-in-out infinite;
}
.hero-image-ring::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(200, 169, 107, 0.25);
  border-radius: 50%;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}
.hero-image-main {
  position: relative;
  z-index: 2;
  /* max-width: 92%; */
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(17, 24, 39, 0.35))
    drop-shadow(0 16px 30px rgba(17, 24, 39, 0.2));
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 991px) {
  .hero-visual-image {
    height: 480px;
    margin-top: 3rem;
  }
}
@media (max-width: 575px) {
  .hero-visual-image {
    height: 420px;
    transform: scale(0.95);
  }
}

/* ============================================================
   19. WHY-US FEATURE IMAGE CARD (story.webp)
   ============================================================ */
.why-image-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 16 / 9;
  box-shadow:
    0 30px 60px -28px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.why-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(17, 24, 39, 0.1) 0%,
    rgba(17, 24, 39, 0.55) 100%
  );
}
.why-image-card:hover img {
  transform: scale(1.05);
}
.why-image-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  color: #fff;
}
.why-image-tag i {
  color: var(--gold);
  font-size: 1rem;
}
.why-image-tag strong {
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
  line-height: 1;
  color: #fff;
}
.why-image-tag small {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   20. CTA SPLIT (dream.webp on the side)
   ============================================================ */
.cta-band-split {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
}
.cta-band-split .inner {
  text-align: left;
  margin: 0;
  padding: 4.5rem 3rem;
  max-width: none;
  align-self: center;
}
.cta-band-split .inner .meta {
  justify-content: flex-start;
}
.cta-band-split .inner h2 {
  text-align: left;
}
.cta-band-split .inner p {
  margin-left: 0;
  margin-right: 0;
}

.cta-band-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  z-index: 1;
}
.cta-band-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-band-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 40%,
    rgba(17, 24, 39, 0.45) 100%
  );
}
.cta-band-split:hover .cta-band-image img {
  transform: scale(1.04);
}

.cta-band-image-tag {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  max-width: 280px;
}
.cta-band-image-tag i {
  color: var(--gold);
  font-size: 1rem;
}

@media (max-width: 991px) {
  .cta-band-split {
    grid-template-columns: 1fr;
  }
  .cta-band-image {
    min-height: 280px;
  }
  .cta-band-image::after {
    background: linear-gradient(
      180deg,
      transparent 40%,
      rgba(17, 24, 39, 0.55) 100%
    );
  }
  .cta-band-split .inner {
    padding: 3rem 2rem;
    text-align: center;
  }
  .cta-band-split .inner h2 {
    text-align: center;
  }
  .cta-band-split .inner .meta {
    justify-content: center;
  }
}

/* ============================================================
   21. CONTACT SIDE IMAGE (contimage.webp)
   Uses negative margins so the image escapes the panel's padding
   and spans full width as a banner above the content.
   ============================================================ */
.contact-side-image {
  position: relative;
  margin: -2.4rem -2.4rem 1.8rem;
  height: 210px;
  overflow: hidden;
  z-index: 1;
}
.contact-side-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-side:hover .contact-side-image img {
  transform: scale(1.04);
}
.contact-side-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.2) 0%,
    rgba(17, 24, 39, 0.55) 60%,
    rgba(17, 24, 39, 0.95) 100%
  );
  z-index: 1;
}
.contact-side-image::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--navy));
  z-index: 2;
}

/* ============================================================
   22. ABOUT SECTION (between hero and network)
   ============================================================ */
.section-about {
  background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}
.about-bg-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}
.about-bg-blob-1 {
  top: 8%;
  right: -8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(
    closest-side,
    rgba(200, 169, 107, 0.2),
    transparent 70%
  );
}
.about-bg-blob-2 {
  bottom: -10%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    rgba(30, 91, 79, 0.1),
    transparent 70%
  );
}
.section-about .container {
  position: relative;
  z-index: 1;
}

/* Visual side */
.about-visual {
  position: relative;
  padding: 2rem 2rem 2rem 0;
}
.about-bg-shape {
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  width: 78%;
  height: 80%;
  background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
  border-radius: var(--r-xl);
  z-index: 0;
  opacity: 0.65;
}
.about-bg-shape::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 32px;
}
.about-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  /* aspect-ratio: 4 / 5; */
  /* box-shadow:
    0 50px 90px -40px rgba(17, 24, 39, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4); */
  z-index: 1;
}
.about-image img {
  /* position: absolute; */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-image:hover img {
  /* transform: scale(1.05); */
}
/* .about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(17, 24, 39, 0.25) 100%
  );
  pointer-events: none;
} */
.about-image-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
}
.about-image-badge i {
  color: var(--gold-deep);
  font-size: 1rem;
}
.about-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  line-height: 1;
}
.about-image-badge small {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6c6c6c;
  font-weight: 600;
}

.about-corner-card {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  z-index: 4;
  background: #fff;
  padding: 1.4rem 1.7rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  text-align: center;
  min-width: 160px;
}
.about-corner-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-corner-card strong .plus {
  color: var(--gold);
}
.about-corner-card small {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.4;
  display: block;
}

/* Content side */
.section-about h2 {
  line-height: 1.1;
}
.section-about p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: #4a4a4a;
}

.about-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2rem 0 2.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-feature .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 169, 107, 0.14);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  transition: transform 0.35s ease;
}
.about-feature:hover .ico {
  transform: rotate(-6deg) scale(1.05);
}
.about-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.about-feature small {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.55;
  display: block;
}

.about-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .about-corner-card strong {
    font-size: 2.4rem;
  }
  .about-corner-card {
    padding: 1.2rem 1.4rem;
    min-width: 140px;
  }
}
@media (max-width: 991px) {
  .about-visual {
    padding: 0;
    margin-bottom: 1rem;
    max-width: 540px;
  }
  .about-feature-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .about-feature .ico {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 575px) {
  .about-image {
    aspect-ratio: 4 / 4.4;
  }
  .about-corner-card {
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.2rem;
    min-width: 130px;
  }
  .about-corner-card strong {
    font-size: 2rem;
  }
  .about-corner-card small {
    font-size: 0.65rem;
  }
  .about-image-badge {
    padding: 0.55rem 0.8rem;
    gap: 0.5rem;
  }
  .about-image-badge strong {
    font-size: 0.85rem;
  }
  .about-image-badge small {
    font-size: 0.62rem;
  }
  .about-cta-row .btn-luxe {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   23. PORTFOLIO PAGE (general section padding for page)
   ============================================================ */
.portfolio-section {
  padding: 4rem 0 6rem;
}
@media (max-width: 575px) {
  .portfolio-section {
    padding: 2.5rem 0 4rem;
  }
}
.portfolio-cta {
  padding: 2rem 0 6rem;
}
@media (max-width: 575px) {
  .portfolio-cta {
    padding: 1rem 0 4rem;
  }
}

/* ============================================================
   24. RESPONSIVE FORTIFICATION LAYER
   Tunes every section for tablet + mobile without rewriting earlier rules.
   ============================================================ */

/* --- Global container + section spacing --- */
@media (max-width: 991px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .eyebrow {
    font-size: 0.68rem;
    padding: 0.42rem 0.85rem;
  }
}
@media (max-width: 380px) {
  .section-title {
    font-size: 1.6rem;
  }
}

/* --- Top bar --- */
@media (max-width: 575px) {
  .top-bar {
    font-size: 0.74rem;
    padding: 0.45rem 0;
  }
  .top-bar .item {
    gap: 0.35rem;
  }
}

/* --- Header / navbar --- */
.brand img {
  height: 50px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
}
.site-footer .brand img {
  height: 54px;
  max-width: 240px;
}
@media (max-width: 991px) {
  .brand img {
    height: 44px;
    max-width: 200px;
  }
  .navbar {
    padding: 0.8rem 0;
  }
}
@media (max-width: 575px) {
  .brand img {
    height: 40px;
    max-width: 180px;
  }
  .mobile-toggle {
    width: 40px;
    height: 40px;
  }
}

/* --- Hero --- */
@media (max-width: 991px) {
  .hero {
    padding: 3rem 0 5rem;
  }
  .hero-visual-image {
    height: 460px;
    margin-top: 2rem;
  }
  .hero-image-frame {
    max-width: 380px;
  }
}
@media (max-width: 575px) {
  .hero {
    padding: 2rem 0 3.5rem;
  }
  .hero-headline {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .hero-sub {
    font-size: 0.98rem;
  }
  .hero-tag {
    font-size: 0.76rem;
    padding: 0.45rem 0.85rem;
  }
  .hero-ctas {
    gap: 0.65rem;
  }
  .hero-ctas .btn-luxe {
    flex: 1 1 100%;
    justify-content: center;
  }
  .hero-trust {
    gap: 1rem;
  }
  .hero-trust .avatar {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }
  .hero-visual-image {
    height: 360px;
    transform: scale(0.95);
  }
  .hero-image-frame {
    max-width: 320px;
  }
}

/* --- About --- */
@media (max-width: 575px) {
  .section-about {
    padding: 3.5rem 0;
  }
}

/* --- Network / brand cards --- */
@media (max-width: 991px) and (min-width: 768px) {
  .brand-card {
    padding: 2rem 1.6rem;
    min-height: 380px;
  }
  .brand-card h3 {
    font-size: 1.55rem;
  }
  .brand-card p {
    font-size: 0.92rem;
  }
}
@media (max-width: 575px) {
  .brand-card {
    padding: 1.6rem 1.4rem;
  }
  .brand-card h3 {
    font-size: 1.4rem;
  }
  .brand-logo {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }
  .brand-card .brand-tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }
  .brand-meta span {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
}

/* --- Services grid (proper tablet behavior) --- */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .service-card,
  .service-card.lg,
  .service-card.sm {
    grid-column: span 1;
    min-height: 260px;
  }
}
@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 1.6rem 1.4rem;
    min-height: 0;
  }
  .service-card h3 {
    font-size: 1.3rem;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
}

/* --- Why us / stats --- */
@media (max-width: 575px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-card {
    padding: 1.5rem 1.3rem;
  }
  .feature-list li {
    padding: 0.8rem 0;
    gap: 0.85rem;
  }
  .feature-list .ico {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .why-image-card {
    aspect-ratio: 16 / 10;
  }
  .why-image-tag {
    padding: 0.55rem 0.85rem;
  }
  .why-image-tag strong {
    font-size: 0.85rem;
  }
}

/* --- Showcase swiper --- */
@media (max-width: 575px) {
  .showcase-swiper {
    padding: 1.5rem 0 2.5rem !important;
  }
  .book-card {
    padding: 1rem 0.9rem 1rem;
  }
  .book-card h4 {
    font-size: 0.98rem;
    min-height: 2.6em;
  }
  .book-card .author {
    font-size: 0.68rem;
  }
  .swiper-nav-btn {
    width: 42px;
    height: 42px;
  }
}

/* --- Process --- */
@media (max-width: 991px) and (min-width: 768px) {
  .process-card {
    padding: 1.5rem 1.2rem;
  }
  .process-card h4 {
    font-size: 1.18rem;
  }
}
@media (max-width: 575px) {
  .process-card {
    padding: 1.4rem 1.2rem;
  }
  .process-num {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .process-card h4 {
    font-size: 1.15rem;
  }
  .process-card p {
    font-size: 0.85rem;
  }
}

/* --- Testimonials (tablet split) --- */
@media (max-width: 991px) and (min-width: 768px) {
  .tcard-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tcard.feat {
    grid-column: span 2;
  }
}
@media (max-width: 575px) {
  .tcard {
    padding: 1.6rem 1.4rem;
  }
  .tcard blockquote {
    font-size: 1.02rem;
  }
  .tcard::before {
    font-size: 4rem;
    top: 0.8rem;
    right: 1.2rem;
  }
}

/* --- CTA band --- */
@media (max-width: 991px) {
  .cta-band {
    padding: 3rem 1.6rem;
  }
}
@media (max-width: 575px) {
  .section-cta {
    padding: 3.5rem 0;
  }
  .cta-band,
  .cta-band-split {
    border-radius: var(--r-lg);
  }
  .cta-band-split .inner,
  .cta-band .inner {
    padding: 2.4rem 1.4rem;
  }
  .cta-band-image {
    min-height: 220px;
  }
  .cta-band-image-tag {
    font-size: 0.85rem;
    padding: 0.65rem 0.85rem;
    max-width: 220px;
  }
  .cta-band .meta {
    gap: 0.6rem;
    font-size: 0.78rem;
  }
}

/* --- Contact --- */
@media (max-width: 991px) {
  .contact-card {
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .contact-card {
    padding: 1.4rem;
    border-radius: var(--r-lg);
  }
  .contact-card h3.section-title {
    font-size: 1.6rem !important;
  }
  .contact-side {
    padding: 1.6rem;
    border-radius: var(--r-lg);
  }
  .contact-side h3 {
    font-size: 1.45rem;
  }
  .contact-side-image {
    margin: -1.6rem -1.6rem 1.4rem;
    height: 180px;
  }
  .contact-info-item {
    gap: 0.75rem;
  }
  .contact-info-item .ic {
    width: 38px;
    height: 38px;
  }
  .contact-info-item strong {
    font-size: 0.92rem;
  }
  .form-control-luxe {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
}

/* --- Footer --- */
.footer-bottom a {
  word-break: break-word;
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }
}
@media (max-width: 575px) {
  .site-footer {
    padding: 3.5rem 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    font-size: 0.78rem;
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom a {
    margin: 0 0.5rem;
  }
}

/* --- Marquee --- */
@media (max-width: 575px) {
  .marquee-item {
    font-size: 1.15rem;
  }
  .marquee-track {
    gap: 2.5rem;
  }
}

/* --- Portfolio page --- */
@media (max-width: 991px) {
  .portfolio-banner {
    padding: 5rem 0 3.5rem;
  }
}
@media (max-width: 767px) {
  .portfolio-controls {
    position: static;
    padding: 0.85rem;
    gap: 0.85rem;
  }
  .portfolio-search {
    width: 100%;
    max-width: none;
    align-self: stretch;
  }
}
@media (max-width: 575px) {
  .portfolio-banner {
    padding: 3.5rem 0 2.5rem;
  }
  .portfolio-banner h1 {
    font-size: 2rem;
  }
  .portfolio-banner p {
    font-size: 0.95rem;
  }
  .portfolio-banner .stat-row {
    padding: 0.9rem 1.2rem;
    gap: 1rem;
    border-radius: 22px;
  }
  .portfolio-banner .stat-row .stat strong {
    font-size: 1.1rem;
  }
  .portfolio-banner .stat-row .stat small {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .portfolio-tab {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }
  .portfolio-tab .count {
    font-size: 0.62rem;
    padding: 0.12rem 0.42rem;
  }
  .breadcrumb-luxe {
    font-size: 0.76rem;
    margin-bottom: 0.9rem;
  }
}
@media (max-width: 380px) {
  .portfolio-grid {
    gap: 0.65rem;
  }
  .book-card {
    padding: 0.8rem 0.7rem;
  }
  .book-card h4 {
    font-size: 0.88rem;
    min-height: 2.6em;
  }
  .book-card .category-chip {
    font-size: 0.58rem;
    padding: 0.25rem 0.55rem;
  }
  .book-card .author {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }
}

/* --- Scroll to top --- */
@media (max-width: 575px) {
  .scroll-top {
    width: 44px;
    height: 44px;
    bottom: 1rem;
    right: 1rem;
  }
}

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

/* ============================================================
   25. LEGAL PAGES (privacy policy + terms and conditions)
   ============================================================ */
.page-banner .last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(200, 169, 107, 0.10);
  border: 1px solid rgba(200, 169, 107, 0.30);
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.page-banner .last-updated::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.18);
}

.legal-section {
  padding: 4rem 0 5rem;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.legal-section::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(closest-side, rgba(200, 169, 107, 0.10), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.legal-section .container {
  position: relative;
  z-index: 1;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 3.5rem 3.2rem;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
  line-height: 1.78;
  color: #3f3f3f;
}

.legal-content .lead {
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.7;
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(200, 169, 107, 0.06), transparent 70%);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 0 0 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  margin: 2.8rem 0 1rem;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.25;
}
.legal-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  bottom: 0.45em;
  width: 4px;
  background: var(--grad-cta);
  border-radius: 4px;
}
.legal-content h2:first-of-type {
  margin-top: 0.5rem;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 1.8rem 0 0.7rem;
}

.legal-content p {
  margin: 0 0 1.1rem;
  color: #4a4a4a;
}

.legal-content ul,
.legal-content ol {
  margin: 0.4rem 0 1.4rem;
  padding-left: 0;
  list-style: none;
}
.legal-content ul li,
.legal-content ol li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.6rem;
  color: #4a4a4a;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.18);
}
.legal-content ol {
  counter-reset: legal-counter;
}
.legal-content ol li {
  counter-increment: legal-counter;
}
.legal-content ol li::before {
  content: counter(legal-counter);
  position: absolute;
  left: 0;
  top: 0.45em;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-deep);
  font-weight: 400;
}

.legal-content strong {
  color: var(--navy);
  font-weight: 700;
}

.legal-content a {
  color: var(--gold-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(200, 169, 107, 0.45);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.legal-content a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

@media (max-width: 767px) {
  .legal-section {
    padding: 2.5rem 0 3.5rem;
  }
  .legal-content {
    padding: 2rem 1.6rem;
    border-radius: var(--r-md);
    font-size: 0.96rem;
  }
  .legal-content .lead {
    padding: 1.1rem 1.2rem;
    font-size: 1rem;
  }
  .legal-content h2 {
    font-size: 1.35rem;
    margin-top: 2.2rem;
  }
  .legal-content h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .legal-content {
    padding: 1.6rem 1.2rem;
  }
}
