/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --navy: #16283f;
  --navy-deep: #0b1626;
  --navy-soft: #1f3a5c;
  --gold: #e8761a;
  --gold-light: #f8a93c;
  --gold-deep: #c9560e;
  --ivory: #fcf7f0;
  --ivory-warm: #f8eedf;
  --beige: #fbe2c4;
  --beige-deep: #f0c896;
  --green: #1d3a5f;
  --green-deep: #142b47;
  --charcoal: #2b2b2b;
  --line: rgba(22, 40, 63, 0.08);
  --line-light: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 14px rgba(22, 40, 63, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(22, 40, 63, 0.18);
  --shadow-lg: 0 30px 70px -25px rgba(22, 40, 63, 0.3);
  --shadow-glow: 0 30px 80px -30px rgba(232, 118, 26, 0.45);
  --grad-cta: linear-gradient(135deg, #e8761a 0%, #f8a93c 100%);
  --grad-gold-deep: linear-gradient(
    135deg,
    #c9560e 0%,
    #e8761a 50%,
    #f8a93c 100%
  );
  --grad-dark: linear-gradient(180deg, #0b1626 0%, #16283f 100%);
  --grad-soft: linear-gradient(180deg, #fcf7f0 0%, #ffffff 100%);
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 38px;
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", 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;
}
section {
  position: relative;
  padding: 7.5rem 0;
}

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

}
.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;
}
/* 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(232, 118, 26, 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(232, 118, 26, 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(22, 40, 63, 0.18);
}
.btn-luxe-ghost:hover {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.btn-luxe i {
  transition: transform 0.35s ease;
}
.btn-luxe:hover i.fa-arrow-right {
  transform: translateX(4px);
}
/* ============================================================
   4. HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  transition: all 0.35s ease;
  background: rgba(252, 247, 240, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(22, 40, 63, 0.04);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px -22px rgba(22, 40, 63, 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(22, 40, 63, 0.45);
  position: relative;
  overflow: hidden;
}
.brand .brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 118, 26, 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(22, 40, 63, 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%,
    #fffbf4 60%,
    #faedda 100%
  );
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    closest-side,
    rgba(232, 118, 26, 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(29, 58, 95, 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-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 .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 Visual - Floating Books */
.hero-visual {
  position: relative;
  height: 620px;
  perspective: 1400px;
}

.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);
}

@media (max-width: 991px) {.hero-visual {
    height: 480px;
    margin-top: 3rem;
  }

}

@media (max-width: 576px) {.hero-visual {
    height: 420px;
    transform: scale(0.85);
  }

}

.section-network .container {
  position: relative;
  z-index: 1;
}
/* ============================================================
   8. SERVICES
   ============================================================ */
.section-services {
  background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
}
/* ============================================================
   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(232, 118, 26, 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(29, 58, 95, 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(232, 118, 26, 0.15);
  border-color: rgba(232, 118, 26, 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(232, 118, 26, 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;
}
.stat-card .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(232, 118, 26, 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;
}
/* ============================================================
   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(232, 118, 26, 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;
}
.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(22, 40, 63, 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);
}
/* ============================================================
   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: #0b1626;
  background-image:
    linear-gradient(
      120deg,
      rgba(11, 22, 38, 0.88) 0%,
      rgba(11, 22, 38, 0.65) 45%,
      rgba(73, 36, 8, 0.45) 100%
    );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 60px 100px -50px rgba(22, 40, 63, 0.5);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    closest-side,
    rgba(232, 118, 26, 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(29, 58, 95, 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;
}
/* ============================================================
   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(232, 118, 26, 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(22, 40, 63, 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(22, 40, 63, 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(232, 118, 26, 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='%2316283f' 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(232, 118, 26, 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(232, 118, 26, 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;
}

@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(232, 118, 26, 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);
}

@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(232, 118, 26, 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);
}
.portfolio-banner h1 .accent {
  font-style: italic;
  color: var(--gold-deep);
}
.portfolio-tab.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.portfolio-tab.active .count {
  background: rgba(232, 118, 26, 0.25);
  color: var(--gold);
}
.portfolio-search .clear.show {
  display: inline-flex;
}
.portfolio-meta .clear-filters.show {
  display: inline-flex;
}

.portfolio-empty.show {
  display: block;
}
.portfolio-empty .ic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232, 118, 26, 0.1);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}
/* ============================================================
   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(232, 118, 26, 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(232, 118, 26, 0.45),
      transparent 70%
    ),
    radial-gradient(
      closest-side at 25% 75%,
      rgba(29, 58, 95, 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(232, 118, 26, 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(232, 118, 26, 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(22, 40, 63, 0.35))
    drop-shadow(0 16px 30px rgba(22, 40, 63, 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);
  }

}
.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;
}

@media (max-width: 991px) {.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;
  }

}
.contact-side:hover .contact-side-image img {
  transform: scale(1.04);
}
/* ============================================================
   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(232, 118, 26, 0.2),
    transparent 70%
  );
}
.about-bg-blob-2 {
  bottom: -10%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    rgba(29, 58, 95, 0.1),
    transparent 70%
  );
}
.section-about .container {
  position: relative;
  z-index: 1;
}
/* Visual side */
.about-visual {
  position: relative;
  padding: 2rem 2rem 2rem 0;
}
.about-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  /* aspect-ratio: 4 / 5; */
  /* box-shadow:
    0 50px 90px -40px rgba(22, 40, 63, 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(22, 40, 63, 0.25) 100%
  );
  pointer-events: none;
}
/* 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(232, 118, 26, 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: 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-cta-row .btn-luxe {
    width: 100%;
    justify-content: center;
  }

}

/* ============================================================
   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 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
section {
    padding: 4rem 0;
  }
.section-title {
    font-size: 1.85rem;
  }

}

@media (max-width: 380px) {.section-title {
    font-size: 1.6rem;
  }

}
/* --- 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-ctas {
    gap: 0.65rem;
  }
.hero-ctas .btn-luxe {
    flex: 1 1 100%;
    justify-content: center;
  }
.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;
  }

}

/* --- Why us / stats --- */
@media (max-width: 575px) {.feature-list li {
    padding: 0.8rem 0;
    gap: 0.85rem;
  }
.feature-list .ico {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

}

/* --- Showcase swiper --- */
@media (max-width: 575px) {.showcase-swiper {
    padding: 1.5rem 0 2.5rem !important;
  }

}

/* --- CTA band --- */
@media (max-width: 991px) {.cta-band {
    padding: 3rem 1.6rem;
  }

}

@media (max-width: 575px) {.section-cta {
    padding: 3.5rem 0;
  }
.cta-band {
    border-radius: var(--r-lg);
  }
.cta-band-split .inner,
.cta-band .inner {
    padding: 2.4rem 1.4rem;
  }
.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-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;
  }

}

/* --- 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;
  }

}
.legal-section .container {
  position: relative;
  z-index: 1;
}
/* ============================================================
   HORIZON REDESIGN — minimal components
   ============================================================ */
/* ---- Overline (replaces eyebrow pills) ---- */
.overline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
/* ---- Hero points ---- */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.hero-points li i {
  color: var(--gold-deep);
  font-size: 1rem;
}
/* ---- Services: minimal cards ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2.4rem 2.1rem;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--grad-cta);
  transition: width 0.4s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 118, 26, 0.35);
}
.svc-card:hover::after {
  width: 100%;
}
.svc-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 118, 26, 0.1);
  color: var(--gold-deep);
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  transition: background 0.35s ease, color 0.35s ease;
}
.svc-card:hover .svc-ico {
  background: var(--grad-cta);
  color: #fff;
}
.svc-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.svc-card p {
  font-size: 0.95rem;
  color: #5d5d5d;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {.svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

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

}
/* ---- Why us: full-side media panel ---- */
.why-media {
  position: relative;
  height: 100%;
  min-height: 460px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
}
.why-media-glow {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 90%;
  background: radial-gradient(
    closest-side,
    rgba(232, 118, 26, 0.45),
    rgba(232, 118, 26, 0.12) 55%,
    transparent 75%
  );
  pointer-events: none;
}
.why-media img {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}

@media (max-width: 991px) {.why-media {
    min-height: 340px;
  }

}
/* ---- Portfolio: covers-only continuous slider ---- */
.cover-slider {
  max-width: 1500px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.cover-slider .showcase-swiper {
  padding: 2.5rem 0 3rem !important;
  overflow: hidden !important;
}
.cover-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.cover-slider .swiper-slide {
  width: 215px;
  height: auto;
}
.cover-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 36px -18px rgba(22, 40, 63, 0.35);
  aspect-ratio: 2 / 3;
}
.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {.cover-slider .swiper-slide {
    width: 160px;
  }

}
/* ---- Process: minimal step cards ---- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2.2rem 1.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: var(--r-md) var(--r-md) 0 0;
  background: var(--grad-cta);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 118, 26, 0.3);
}
.step-card:hover::before {
  opacity: 1;
}
.step-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.step-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 118, 26, 0.1);
  color: var(--gold-deep);
  font-size: 1.15rem;
  margin-bottom: 1.3rem;
}
.step-card h4 {
  font-size: 1.18rem;
  margin-bottom: 0.6rem;
}
.step-card p {
  font-size: 0.92rem;
  color: #5d5d5d;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {.step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

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

}
/* ============================================================
   LEGAL PAGES — light hero + sticky TOC layout
   ============================================================ */
.legal-hero {
  padding: 6.5rem 0 4.5rem;
  text-align: center;
  background:
    radial-gradient(
      ellipse 70% 80% at 50% -10%,
      rgba(232, 118, 26, 0.16),
      transparent 65%
    ),
    linear-gradient(180deg, #fffbf4 0%, var(--ivory) 100%);
}
.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}
.legal-hero h1 .accent {
  color: var(--gold-deep);
  font-style: italic;
}
.legal-hero p {
  max-width: 620px;
  margin: 0 auto 1.6rem;
  font-size: 1.05rem;
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.legal-updated i {
  color: var(--gold-deep);
}
.legal-main {
  padding: 4.5rem 0 6.5rem;
  background: var(--ivory);
}
.legal-wrap {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem 1.3rem;
}
.legal-toc-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-left: 0.6rem;
}
.legal-toc nav a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: #5d5d5d;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
}
.legal-toc nav a span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
}
.legal-toc nav a:hover {
  color: var(--gold-deep);
  background: rgba(232, 118, 26, 0.07);
  border-left-color: var(--gold);
}
.legal-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 3.2rem 3.4rem;
  box-shadow: var(--shadow-sm);
}
.legal-lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--charcoal);
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.2rem;
}
.legal-body h2 {
  position: relative;
  font-size: 1.45rem;
  margin: 2.6rem 0 0.9rem;
  padding-left: 1.1rem;
  scroll-margin-top: 120px;
}
.legal-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  bottom: 0.28em;
  width: 4px;
  border-radius: 4px;
  background: var(--grad-cta);
}
.legal-body p,
.legal-body li {
  font-size: 0.97rem;
  line-height: 1.85;
  color: #4a4a4a;
}
.legal-body ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}
.legal-body li {
  margin-bottom: 0.5rem;
}
.legal-body li::marker {
  color: var(--gold-deep);
}
.legal-body a {
  color: var(--gold-deep);
  font-weight: 600;
}
.legal-body strong {
  color: var(--navy);
}
.legal-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, rgba(232, 118, 26, 0.08), rgba(232, 118, 26, 0.03));
  border: 1px solid rgba(232, 118, 26, 0.22);
  border-radius: var(--r-md);
}
.legal-help strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.legal-help span {
  font-size: 0.92rem;
  color: #5d5d5d;
}

@media (max-width: 991px) {.legal-wrap {
    grid-template-columns: 1fr;
  }
.legal-toc {
    position: static;
  }
.legal-body {
    padding: 2.2rem 1.8rem;
  }

}

@media (max-width: 480px) {.legal-body {
    padding: 1.8rem 1.3rem;
  }

}

