:root {
  --gold: #f0b429;
  --gold-deep: #d89a1f;
  --ink: #0d0d0f;
  --ink-soft: #17171b;
  --cream: #fafaf8;
  --muted: #c9c9ce;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--ink);
  color: #fff;
  margin: 0;
}

h1,
h2,
h3,
.font-display {
  font-family: "Poppins", sans-serif;
}

/* ===================== NAVBAR ===================== */
.nav-wrap {
  position: absolute;

  top: 24px;

  left: 0;

  right: 0;

  z-index: 999;

  padding: 0 24px;
}

.nav-pill {
  max-width: 1400px;

  margin: auto;

  background: #fff;

  border-radius: 60px;

  padding: 12px 26px;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 118px;
  height: auto;
  object-fit: contain;
  transition: 0.3s ease;
  margin-left: 16px;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links .nav-link {
  color: #333;

  font-weight: 500;

  padding: 10px 0;
}

.nav-links .nav-link:hover {
  color: var(--gold);
}
.nav-links .nav-link {
  color: #3a3a3d;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: 0.25s;
}

.nav-links .nav-link:hover {
  color: var(--gold-deep);
}

.nav-links .nav-link.active {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--ink);
}

.btn-quote {
  border: 1.5px solid var(--gold);
  color: var(--ink);
  background: transparent;
  border-radius: 30px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn-quote:hover {
  background: var(--gold);
}

.btn-login {
  background: var(--gold);
  color: var(--ink);
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.btn-login:hover {
  background: var(--gold-deep);
  color: #fff;
}

.crm-toggler {
  border: none;

  box-shadow: none !important;

  padding: 0;

  width: 46px;

  height: 46px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 6px;
}

.crm-toggler span {
  width: 26px;

  height: 2px;

  background: #111;

  display: block;

  border-radius: 10px;

  transition: 0.35s;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .nav-wrap {
    padding: 0 15px;
  }

  .nav-pill {
    border-radius: 24px;

    padding: 15px 20px;
  }

  .brand-logo {
    width: 95px;
  }

  @media (max-width: 991.98px) {
    .navbar-collapse {
      width: 100%;

      margin-top: 18px;

      background: #fff;

      border-radius: 18px;

      padding: 18px;

      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    .navbar-collapse.show {
      display: block;
    }
  }
  @media (max-width: 991.98px) {
    .nav-links {
      display: flex !important;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      gap: 0;
    }

    .nav-links .nav-item {
      width: 100%;
    }

    .nav-links .nav-link {
      display: block;

      width: 100%;

      color: #222;

      padding: 14px 0;

      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-links .nav-item:last-child .nav-link {
      border-bottom: none;
    }
  }
}
@media (max-width: 991.98px) {
  .nav-actions {
    display: flex;

    flex-direction: column;

    width: 100%;

    gap: 12px;

    margin-top: 20px;
  }

  .btn-quote,
  .btn-login {
    width: 100%;
  }
}

.icon-btn {
  display: none !important;
}

@media (max-width: 576px) {
  .nav-pill {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 82px;
  }
}

/* =========================================================
   HERO / CAROUSEL — RESPONSIVE CSS
   Desktop + Laptop + Tablet + Mobile
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  color: #fff;
}

/* =========================================================
   HERO SLIDES
   ========================================================= */

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  overflow: hidden;

  transition:
    opacity 1.2s ease,
    visibility 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Dark overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.52) 35%,
    rgba(0, 0, 0, 0.3) 65%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-bg-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;

  transform: scale(1);
  will-change: transform;

  transition: transform 8s ease-in-out;
}

.hero-slide.is-active .hero-bg-image {
  animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1.08);
  }
}

/* =========================================================
   SLIDE DECORATIVE LIGHT
   ========================================================= */

.hero-slide[data-slide="0"]::before,
.hero-slide[data-slide="1"]::before,
.hero-slide[data-slide="2"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  pointer-events: none;

  opacity: 0.85;
}

.hero-slide[data-slide="0"]::before {
  background: conic-gradient(
    from 200deg at 78% 15%,
    rgba(240, 180, 41, 0) 0deg,
    rgba(240, 180, 41, 0.16) 8deg,
    rgba(240, 180, 41, 0) 16deg,
    rgba(240, 180, 41, 0) 40deg,
    rgba(240, 180, 41, 0.12) 48deg,
    rgba(240, 180, 41, 0) 58deg,
    rgba(240, 180, 41, 0) 90deg,
    rgba(168, 120, 255, 0.1) 100deg,
    rgba(240, 180, 41, 0) 112deg,
    rgba(240, 180, 41, 0) 300deg,
    rgba(240, 180, 41, 0.14) 312deg,
    rgba(240, 180, 41, 0) 322deg
  );
}

.hero-slide[data-slide="1"]::before {
  background: conic-gradient(
    from 30deg at 20% 20%,
    rgba(240, 180, 41, 0) 0deg,
    rgba(240, 180, 41, 0.14) 10deg,
    rgba(240, 180, 41, 0) 20deg,
    rgba(240, 180, 41, 0) 150deg,
    rgba(216, 110, 150, 0.1) 160deg,
    rgba(240, 180, 41, 0) 172deg,
    rgba(240, 180, 41, 0) 260deg,
    rgba(240, 180, 41, 0.12) 270deg,
    rgba(240, 180, 41, 0) 282deg
  );
}

.hero-slide[data-slide="2"]::before {
  background: conic-gradient(
    from 100deg at 50% 10%,
    rgba(240, 180, 41, 0) 0deg,
    rgba(240, 180, 41, 0.15) 10deg,
    rgba(240, 180, 41, 0) 20deg,
    rgba(240, 180, 41, 0) 60deg,
    rgba(120, 170, 255, 0.1) 70deg,
    rgba(240, 180, 41, 0) 82deg,
    rgba(240, 180, 41, 0) 330deg,
    rgba(240, 180, 41, 0.13) 342deg,
    rgba(240, 180, 41, 0) 352deg
  );
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero .container {
  position: relative;
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 5;

  padding-top: 90px;
  padding-bottom: 30px;
}

/* Text fade */
.hero-copy {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.hero-copy.is-fading {
  opacity: 0;
}

/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {
  margin: 0 0 14px;

  color: var(--gold);

  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* =========================================================
   HERO TITLE
   ========================================================= */

.hero-title {
  margin: 0 0 20px;

  max-width: 760px;

  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;

  color: #fff;
}

.hero-title .gold-line {
  color: var(--gold);
}

/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-sub {
  max-width: 520px;

  margin: 0 0 36px;

  color: var(--muted);

  font-size: 15.5px;
  line-height: 1.65;
}

/* =========================================================
   PRIMARY CTA
   ========================================================= */

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 30px;

  background: var(--gold);
  color: var(--ink);

  border: none;
  border-radius: 30px;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary-cta:hover {
  background: #fff;
  color: var(--ink);

  transform: translateY(-2px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-cta .arrow-circle {
  width: 26px;
  height: 26px;

  flex: 0 0 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--ink);
  color: var(--gold);

  font-size: 0.8rem;
}

/* =========================================================
   WATCH BUTTON
   ========================================================= */

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #fff;

  font-size: 15px;
  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.btn-watch:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-watch .play-circle {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1.5px solid var(--gold);
  border-radius: 50%;

  color: var(--gold);

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.btn-watch:hover .play-circle {
  background: var(--gold);
  color: var(--ink);
}

/* =========================================================
   CAROUSEL ARROWS
   ========================================================= */

.hero-arrow {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  cursor: pointer;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.hero-arrow.left {
  left: 24px;
}

.hero-arrow.right {
  right: 24px;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);

  transform: translateY(-50%) scale(1.05);
}

/* =========================================================
   SLIDE NUMBER RAIL
   ========================================================= */

.slide-rail {
  position: absolute;

  right: 26px;
  bottom: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;

  z-index: 10;

  color: var(--muted);

  font-size: 0.75rem;
}

.slide-rail .dash {
  width: 1px;
  height: 24px;

  background: rgba(255, 255, 255, 0.25);
}

.slide-rail .num {
  padding: 2px;

  color: var(--muted);

  cursor: pointer;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.slide-rail .num:hover {
  color: #fff;
}

.slide-rail .num.active {
  color: var(--gold);
  font-weight: 700;

  transform: scale(1.1);
}

/* =========================================================
   STATS BAR
   ========================================================= */

.stats-bar {
  position: relative;
  z-index: 20;

  width: 100%;

  margin-top: 55px;

  padding: 28px 34px;

  background: rgba(12, 12, 12, 0.45);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  overflow: hidden;
}

.stats-bar .row {
  margin: 0;
}

.stats-bar .col-lg-3,
.stats-bar .col-md-6 {
  position: relative;
}

/* Vertical divider */
.stats-bar .col-lg-3:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 50%;

  width: 1px;
  height: 58px;

  transform: translateY(-50%);

  background: rgba(255, 255, 255, 0.12);
}

/* =========================================================
   STAT ITEM
   ========================================================= */

.stat-item {
  position: relative;

  display: flex;
  align-items: center;

  gap: 18px;

  min-height: 60px;
}

/* =========================================================
   STAT ICON
   ========================================================= */

.stat-icon {
  width: 58px;
  height: 58px;

  flex: 0 0 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: 14px;

  background: rgba(240, 180, 41, 0.14);

  color: var(--gold);

  font-size: 22px;
}

/* =========================================================
   STAT NUMBER
   ========================================================= */

.stat-num {
  color: #fff;

  font-family: "Poppins", sans-serif;

  font-size: 28px;
  font-weight: 700;

  line-height: 1;
}

/* =========================================================
   STAT LABEL
   ========================================================= */

.stat-label {
  margin-top: 6px;

  color: #fff;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.3;

  opacity: 0.82;
}

/* =========================================================
   LARGE LAPTOP
   1200px — 1399px
   ========================================================= */

@media (max-width: 1399.98px) {
  .hero-content {
    padding-top: 80px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
  }

  .stats-bar {
    margin-top: 45px;
    padding: 25px 28px;
  }

  .stat-item {
    gap: 14px;
  }

  .stat-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .stat-num {
    font-size: 26px;
  }

  .stat-label {
    font-size: 15px;
  }
}

/* =========================================================
   TABLETS / SMALL LAPTOP
   992px — 1199px
   ========================================================= */

@media (max-width: 1199.98px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .hero-title {
    max-width: 650px;

    font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  }

  .hero-sub {
    max-width: 500px;

    font-size: 15px;
    margin-bottom: 30px;
  }

  .stats-bar {
    margin-top: 35px;

    padding: 24px 22px;

    border-radius: 20px;
  }

  .stat-item {
    gap: 12px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;

    font-size: 20px;

    border-radius: 13px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 14px;
  }
}

/* =========================================================
   TABLETS
   768px — 991px
   ========================================================= */

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;

    padding-top: 70px;
    padding-bottom: 30px;
  }

  .hero-slide {
    position: absolute;
    min-height: 100%;
  }

  .hero-slide::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.52) 55%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 25px;
  }

  .hero-title {
    max-width: 680px;

    font-size: clamp(2.5rem, 6vw, 3.5rem);

    line-height: 1.08;
  }

  .hero-sub {
    max-width: 580px;

    font-size: 15px;

    margin-bottom: 28px;
  }

  .stats-bar {
    margin-top: 35px;

    padding: 24px 20px;

    border-radius: 20px;
  }

  .stats-bar .col-md-6 {
    padding: 10px 16px;
  }

  /* Remove divider from right side of first column */
  .stats-bar .col-lg-3:not(:last-child)::after {
    display: none;
  }

  /* Add tablet dividers */
  .stats-bar .col-md-6:nth-child(odd)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 1px;
    height: 52px;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.12);

    display: block;
  }

  .stats-bar .col-md-6:nth-child(-n + 2)::before {
    display: none;
  }

  .stat-item {
    justify-content: flex-start;
  }

  .stat-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .stat-num {
    font-size: 25px;
  }

  .stat-label {
    font-size: 14px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-arrow.left {
    left: 16px;
  }

  .hero-arrow.right {
    right: 16px;
  }
}

/* =========================================================
   LARGE MOBILE
   576px — 767px
   ========================================================= */

@media (max-width: 767.98px) {
  .hero {
    min-height: 100svh;

    padding-top: 0;
    padding-bottom: 24px;

    justify-content: flex-end;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
  }

  .hero-slide::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.48) 38%,
      rgba(0, 0, 0, 0.82) 72%,
      rgba(0, 0, 0, 0.92) 100%
    );
  }

  .hero-bg-image {
    object-position: center center;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .eyebrow {
    margin-bottom: 10px;

    font-size: 0.68rem;
    letter-spacing: 2.2px;
  }

  .hero-title {
    margin-bottom: 16px;

    max-width: 100%;

    font-size: clamp(2.15rem, 8.5vw, 3rem);

    line-height: 1.08;
    letter-spacing: -0.6px;
  }

  .hero-sub {
    max-width: 100%;

    margin-bottom: 25px;

    font-size: 14px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.78);
  }

  /* CTA layout */
  .hero-content + * {
    position: relative;
    z-index: 6;
  }

  .btn-primary-cta {
    padding: 12px 22px;

    font-size: 14px;
  }

  .btn-primary-cta .arrow-circle {
    width: 24px;
    height: 24px;

    flex-basis: 24px;
  }

  .btn-watch {
    font-size: 14px;
  }

  .btn-watch .play-circle {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  /* Stats */
  .stats-bar {
    margin-top: 35px;

    padding: 18px 12px;

    border-radius: 18px;

    background: rgba(10, 10, 10, 0.58);
  }

  .stats-bar .col-md-6 {
    width: 50%;

    padding: 12px 10px;
  }

  .stats-bar .col-md-6:nth-child(odd)::after {
    display: block;

    height: 45px;
  }

  .stat-item {
    gap: 10px;

    min-height: 52px;
  }

  .stat-icon {
    width: 44px;
    height: 44px;

    flex-basis: 44px;

    border-radius: 11px;

    font-size: 18px;
  }

  .stat-num {
    font-size: 21px;
  }

  .stat-label {
    margin-top: 4px;

    font-size: 12px;

    line-height: 1.25;
  }

  /* Hide arrows on mobile */
  .hero-arrow {
    display: none !important;
  }

  /* Hide number rail on mobile */
  .slide-rail {
    display: none !important;
  }
}

/* =========================================================
   MOBILE
   400px — 575px
   ========================================================= */

@media (max-width: 575.98px) {
  .hero {
    min-height: 100svh;

    padding-bottom: 18px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.65rem);

    line-height: 1.06;

    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 13.5px;

    line-height: 1.55;

    margin-bottom: 22px;
  }

  .eyebrow {
    font-size: 0.63rem;

    letter-spacing: 1.9px;
  }

  /* CTA buttons */
  .hero-content .d-flex {
    gap: 14px !important;
  }

  .btn-primary-cta {
    padding: 11px 18px;

    font-size: 13px;
  }

  .btn-primary-cta .arrow-circle {
    width: 23px;
    height: 23px;

    flex-basis: 23px;
  }

  .btn-watch {
    gap: 8px;

    font-size: 13px;
  }

  .btn-watch .play-circle {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
  }

  /* Stats */
  .stats-bar {
    margin-top: 28px;

    padding: 14px 8px;

    border-radius: 16px;
  }

  .stats-bar .col-md-6 {
    padding: 10px 7px;
  }

  .stat-item {
    gap: 8px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;

    flex-basis: 40px;

    border-radius: 10px;

    font-size: 16px;
  }

  .stat-num {
    font-size: 19px;
  }

  .stat-label {
    font-size: 10.5px;
  }
}

/* =========================================================
   VERY SMALL PHONES
   Below 400px
   ========================================================= */

@media (max-width: 399.98px) {
  .hero {
    min-height: 100svh;

    padding-bottom: 14px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .eyebrow {
    margin-bottom: 8px;

    font-size: 0.58rem;
    letter-spacing: 1.6px;
  }

  .hero-title {
    font-size: 1.9rem;

    line-height: 1.06;

    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: 12.5px;

    line-height: 1.5;

    margin-bottom: 18px;
  }

  /* Stack CTA buttons */
  .hero-content .d-flex {
    flex-direction: column;

    align-items: flex-start !important;

    gap: 12px !important;
  }

  .btn-primary-cta {
    padding: 10px 17px;

    font-size: 12.5px;
  }

  .btn-watch {
    font-size: 12.5px;
  }

  .btn-watch .play-circle {
    width: 36px;
    height: 36px;

    flex-basis: 36px;
  }

  /* Stats become more compact */
  .stats-bar {
    margin-top: 24px;

    padding: 12px 6px;

    border-radius: 14px;
  }

  .stats-bar .col-md-6 {
    padding: 8px 5px;
  }

  .stat-item {
    gap: 7px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    font-size: 14px;

    border-radius: 9px;
  }

  .stat-num {
    font-size: 17px;
  }

  .stat-label {
    font-size: 9.5px;
  }
}

/* =========================================================
   EXTRA SMALL DEVICES
   Below 350px
   ========================================================= */

@media (max-width: 349.98px) {
  .hero-content {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 1.72rem;
  }

  .hero-sub {
    font-size: 12px;
  }

  .btn-primary-cta {
    padding: 9px 14px;
  }

  .btn-watch .play-circle {
    width: 34px;
    height: 34px;

    flex-basis: 34px;
  }

  .stats-bar {
    padding: 10px 4px;
  }

  .stats-bar .col-md-6 {
    padding: 7px 4px;
  }

  .stat-icon {
    width: 33px;
    height: 33px;

    flex-basis: 33px;

    font-size: 13px;
  }

  .stat-num {
    font-size: 15px;
  }

  .stat-label {
    font-size: 8.5px;
  }
}

/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {
  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    max-width: 550px;
  }

  .stats-bar {
    margin-top: 25px;
  }
}

/* =========================================================
   TABLET LANDSCAPE
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .stats-bar {
    margin-top: 30px;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-copy,
  .hero-bg-image,
  .hero-arrow,
  .btn-primary-cta,
  .btn-watch,
  .slide-rail .num {
    transition: none !important;
  }

  .hero-slide.is-active .hero-bg-image {
    animation: none !important;
    transform: scale(1.02);
  }
}

/* =========================================================
   SAFE AREA — MODERN MOBILE DEVICES
   ========================================================= */

@supports (padding: max(0px)) {
  @media (max-width: 767.98px) {
    .hero {
      padding-bottom: max(18px, env(safe-area-inset-bottom));
    }
  }
}

/* =========================================================
   CREATIVE ERA — ABOUT SECTION
   FULL RESPONSIVE CSS
   Desktop / Laptop / Tablet / Mobile / Small Mobile
   ========================================================= */

.crm-about {
  --crm-muted: #6b6b72;

  position: relative;
  width: 100%;
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.crm-about::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse 900px 500px at 85% 0%,
      rgba(240, 180, 41, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse 700px 500px at 0% 100%,
      rgba(240, 180, 41, 0.06),
      transparent 60%
    );

  pointer-events: none;
  z-index: -1;
}

/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.crm-about > .container {
  position: relative;
  z-index: 1;
}

.crm-about .row {
  position: relative;
}

/* =========================================================
   IMAGE COLUMN
   ========================================================= */

.crm-about-media {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  z-index: 2;
}

.crm-about-media-frame {
  position: relative;
  isolation: isolate;
}

.crm-about-media-frame::before {
  content: "";
  position: absolute;

  inset: -15px;

  border-radius: 30px;

  background: conic-gradient(
    from 210deg,
    var(--gold),
    transparent 30%,
    transparent 70%,
    var(--gold-deep)
  );

  opacity: 0.5;
  filter: blur(2px);

  z-index: -1;
}

.crm-about-image {
  display: block;

  width: 100%;
  height: 600px;

  object-fit: cover;
  object-position: center;

  border-radius: 20px;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.crm-about-media:hover .crm-about-image {
  transform: scale(1.015);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* =========================================================
   EXPERIENCE RIBBON
   ========================================================= */

.crm-about-ribbon {
  position: absolute;

  top: 34px;
  right: -18px;

  min-width: 74px;

  padding: 22px 10px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: linear-gradient(180deg, var(--gold), var(--gold-deep));

  color: var(--ink);

  border-radius: 12px;

  text-align: center;

  box-shadow: 0 14px 30px rgba(240, 180, 41, 0.35);

  z-index: 3;
}

.crm-about-ribbon .crm-ribbon-num {
  display: block;

  font-family: "Poppins", sans-serif;

  font-size: 26px;
  font-weight: 800;

  line-height: 1;
}

.crm-about-ribbon .crm-ribbon-label {
  display: block;

  margin-top: 8px;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* =========================================================
   IMAGE CAPTION
   ========================================================= */

.crm-about-caption {
  position: absolute;

  left: 24px;
  bottom: -22px;

  display: flex;
  align-items: center;

  gap: 12px;

  max-width: calc(100% - 48px);

  padding: 14px 20px;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid rgba(13, 13, 15, 0.08);

  border-radius: 14px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  z-index: 3;
}

.crm-about-caption i {
  flex: 0 0 auto;

  color: var(--gold-deep);

  font-size: 18px;
}

.crm-about-caption span {
  color: var(--ink);

  font-size: 13px;
  font-weight: 600;

  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* =========================================================
   CONTENT
   ========================================================= */

.crm-about-content {
  position: relative;
  z-index: 2;

  padding-left: 20px;
}

/* =========================================================
   SECTION TAG
   ========================================================= */

.crm-about-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  width: 100%;

  margin-bottom: 16px;

  padding: 0;

  background: none;
  border: none;
  border-radius: 0;

  color: var(--gold-deep);

  font-size: 0.8rem;
  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;

  text-align: left;
}

.crm-about-tag::before {
  content: "";

  width: 42px;
  height: 2px;

  flex: 0 0 42px;

  background: var(--gold-deep);
}

/* =========================================================
   HEADING
   ========================================================= */

.crm-about-heading {
  margin: 0 0 22px;

  max-width: 750px;

  color: var(--ink);

  font-family: "Poppins", sans-serif;

  font-size: clamp(30px, 3.4vw, 44px);

  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -0.8px;
}

.crm-about-heading em {
  color: var(--gold-deep);

  font-style: normal;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.crm-about-text {
  max-width: 650px;

  margin: 0 0 38px;

  color: var(--crm-muted);

  font-size: 15px;

  line-height: 1.85;
}

.crm-about-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.crm-service-card {
  height: 100%;

  padding: 26px 24px;

  background: rgba(255, 255, 255, 0.65);

  border: 1px solid rgba(13, 13, 15, 0.08);

  border-radius: 20px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.crm-service-card:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.95);

  border-color: rgba(240, 180, 41, 0.5);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Service heading */

.crm-service-card h5 {
  display: flex;
  align-items: center;

  gap: 12px;

  margin: 0 0 17px;

  color: var(--ink);

  font-family: "Poppins", sans-serif;

  font-size: 15px;
  font-weight: 700;

  line-height: 1.35;

  letter-spacing: 0.3px;

  text-transform: uppercase;
}

/* Service icon */

.crm-service-card h5 .crm-service-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(240, 180, 41, 0.16);

  border: 1px solid rgba(240, 180, 41, 0.25);

  color: var(--gold-deep);

  font-size: 14px;
}

/* Service list */

.crm-service-card ul {
  display: grid;

  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.crm-service-card li {
  position: relative;

  padding-left: 18px;

  color: var(--crm-muted);

  font-size: 13.5px;

  line-height: 1.5;
}

.crm-service-card li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 8px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--gold-deep);
}

/* =========================================================
   FEATURE STRIP
   ========================================================= */

.crm-feature-strip {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}

.crm-feature-pill {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  min-height: 44px;

  padding: 11px 16px;

  background: rgba(255, 255, 255, 0.65);

  border: 1px solid rgba(13, 13, 15, 0.08);

  border-radius: 12px;

  color: var(--ink);

  font-size: 12.5px;
  font-weight: 600;

  white-space: nowrap;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.crm-feature-pill:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.95);

  border-color: rgba(240, 180, 41, 0.4);
}

.crm-feature-pill i {
  color: var(--gold-deep);

  font-size: 14px;
}

/* =========================================================
   BUTTON AREA
   Removes the inline margin-left:34% effect
   ========================================================= */

.crm-about-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 18px;

  margin-top: 40px !important;
  margin-left: 0 !important;
}

/* =========================================================
   BUTTON
   ========================================================= */

.crm-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 13px 28px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 700;

  line-height: 1;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.crm-btn-primary {
  background: var(--gold);

  color: var(--ink);

  border: 1.5px solid var(--gold);
}

.crm-btn-primary:hover {
  background: var(--ink);

  color: #fff;

  border-color: var(--ink);

  transform: translateY(-2px);
}

.crm-btn-secondary {
  background: var(--gold);
    color: var(--ink);
  border: 1.5px solid rgba(13, 13, 15, 0.18);
 
  
}

.crm-btn-secondary:hover {
  background: var(--gold-deep);
  color: #fff;

  border-color: var(--gold);

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(240, 180, 41, 0.2);
}

/* =========================================================
   LARGE DESKTOP
   1400px+
   ========================================================= */

@media (min-width: 1400px) {
  .crm-about {
    padding: 120px 0;
  }

  .crm-about-content {
    padding-left: 35px;
  }

  .crm-about-image {
    height: 630px;
  }

  .crm-about-heading {
    font-size: 46px;
  }

  .crm-about-text {
    max-width: 680px;
  }
}

/* =========================================================
   LAPTOP
   1200px — 1399px
   ========================================================= */

@media (max-width: 1399.98px) {
  .crm-about {
    padding: 90px 0;
  }

  .crm-about-content {
    padding-left: 15px;
  }

  .crm-about-image {
    height: 560px;
  }

  .crm-about-heading {
    font-size: clamp(30px, 3.5vw, 42px);
  }

  .crm-about-text {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .crm-service-card {
    padding: 23px 20px;
  }

  .crm-feature-pill {
    padding: 10px 14px;
  }
}

/* =========================================================
   TABLET / SMALL LAPTOP
   992px — 1199px
   ========================================================= */

@media (max-width: 1199.98px) {
  .crm-about {
    padding: 80px 0;
  }

  .crm-about-media {
    max-width: 410px;
  }

  .crm-about-image {
    height: 520px;
  }

  .crm-about-content {
    padding-left: 5px;
  }

  .crm-about-heading {
    font-size: clamp(28px, 3.5vw, 38px);

    letter-spacing: -0.5px;
  }

  .crm-about-text {
    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 30px;
  }

  .crm-service-card {
    padding: 21px 18px;
  }

  .crm-service-card h5 {
    font-size: 14px;
  }

  .crm-service-card li {
    font-size: 12.5px;
  }

  .crm-feature-strip {
    gap: 9px;
  }

  .crm-feature-pill {
    font-size: 11.5px;

    padding: 10px 12px;
  }

  .crm-about-buttons {
    margin-top: 32px !important;
  }
}

/* =========================================================
   TABLET PORTRAIT
   768px — 991px
   ========================================================= */

@media (max-width: 991.98px) {
  .crm-about {
    padding: 90px 0 80px;
  }

  .crm-about .row {
    row-gap: 70px !important;
  }

  /* Image */

  .crm-about-media {
    max-width: 500px;
  }

  .crm-about-image {
    height: 580px;
  }

  /* Content */

  .crm-about-content {
    padding-left: 0;
    max-width: 750px;
    margin: 0 auto;
  }

  .crm-about-tag {
    justify-content: flex-start;
    width: auto;
  }

  .crm-about-heading {
    max-width: 700px;
    font-size: clamp(30px, 5vw, 40px);
  }

  .crm-about-text {
    max-width: 720px;
    font-size: 14.5px;
    line-height: 1.8;
  }

  /* Service cards */

  .crm-service-card {
    padding: 24px 22px;
  }

  .crm-service-card h5 {
    font-size: 14px;
  }

  .crm-service-card li {
    font-size: 13px;
  }

  .crm-feature-strip {
    gap: 10px;
  }

  .crm-feature-pill {
    font-size: 12px;
  }

  .crm-about-buttons {
    justify-content: flex-start;
  }
}

@media (min-width: 500px) and (max-width: 767.98px) {
  .crm-about {
    padding: 75px 0 65px;
  }

  .crm-about .row {
    row-gap: 65px !important;
  }
  .crm-about .row.g-4 {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px !important;
  }

  .crm-about-media {
    max-width: 440px;
  }

  .crm-about-media-frame::before {
    inset: -10px;
    border-radius: 24px;
  }

  .crm-about-image {
    height: 500px;
    border-radius: 18px;
  }
  .crm-about .row.g-4 > .col-md-6 {
    width: 50%;
    flex: 0 0 50%;
    padding-left: 0;
    padding-right: 0;
  }

  /* Ribbon */

  .crm-about-ribbon {
    top: 25px;
    right: -10px;
    min-width: 68px;
    padding: 18px 8px;
    border-radius: 10px;
  }

  .crm-about-ribbon .crm-ribbon-num {
    font-size: 23px;
  }

  .crm-about-ribbon .crm-ribbon-label {
    font-size: 8px;
    letter-spacing: 1.6px;
  }

  /* Caption */

  .crm-about-caption {
    left: 15px;
    bottom: -20px;
    max-width: calc(100% - 30px);
    padding: 12px 15px;
    gap: 9px;
    border-radius: 12px;
  }

  .crm-about-caption i {
    font-size: 16px;
  }

  .crm-about-caption span {
    font-size: 11.5px;
  }

  .crm-about-content {
    margin-top: 0;
  }

  .crm-about-tag {
    margin-bottom: 13px;
    gap: 9px;
    font-size: 0.68rem;
    letter-spacing: 2.2px;
  }

  .crm-about-tag::before {
    width: 30px;
    flex-basis: 30px;
  }

  .crm-about-heading {
    margin-bottom: 18px;
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.4px;
  }

  .crm-about-text {
    margin-bottom: 28px;
    font-size: 13.5px;
    line-height: 1.75;
  }

  .crm-service-card {
    height: 100%;
    padding: 18px 14px;
    border-radius: 15px;
  }

  .crm-service-card h5 {
    gap: 7px;
    margin-bottom: 13px;
    font-size: 11px;
    line-height: 1.3;
  }

  .crm-service-card h5 .crm-service-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 8px;
    font-size: 12px;
  }

  .crm-service-card ul {
    gap: 6px;
  }

  .crm-service-card li {
    padding-left: 13px;
    font-size: 10.5px;
    line-height: 1.4;
  }

  .crm-service-card li::before {
    width: 5px;
    height: 5px;
    top: 6px;
  }

  .crm-feature-strip {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 8px !important;
    margin-top: 22px !important;
  }

  .crm-feature-strip .crm-feature-pill {
    display: flex !important;
    flex: 1 1 0 !important;
    width: 33.333% !important;
    max-width: 33.333% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 10px 8px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 9.5px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  .crm-feature-strip .crm-feature-pill:last-child {
    grid-column: auto !important;
    width: 33.333% !important;
    max-width: 33.333% !important;
  }

  .crm-feature-strip .crm-feature-pill i {
    flex: 0 0 auto !important;
    font-size: 11px !important;
  }

  /* =======================================================
     BUTTON
     ======================================================= */

  .crm-about-buttons {
    width: 100%;
    margin-top: 25px !important;
  }

  .crm-about-btn {
    width: auto;
    min-height: 44px;
    padding: 11px 22px;
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .crm-about {
    padding: 65px 0 55px;
  }

  .crm-about .row {
    row-gap: 58px !important;
  }

  /* =======================================================
     IMAGE
     ======================================================= */

  .crm-about-media {
    width: calc(100% - 20px);
    max-width: none;
  }

  .crm-about-media-frame::before {
    inset: -8px;
    border-radius: 22px;
  }

  .crm-about-image {
    width: 100%;
    height: 430px;
    border-radius: 17px;
  }

  /* Ribbon */

  .crm-about-ribbon {
    top: 20px;
    right: -9px;
    min-width: 62px;
    padding: 16px 7px;
    border-radius: 9px;
  }

  .crm-about-ribbon .crm-ribbon-num {
    font-size: 21px;
  }

  .crm-about-ribbon .crm-ribbon-label {
    margin-top: 7px;
    font-size: 7px;
    letter-spacing: 1.3px;
  }

  /* Caption */

  .crm-about-caption {
    left: 10px;
    bottom: -19px;
    width: calc(100% - 20px);
    max-width: none;
    padding: 11px 13px;
    gap: 8px;
  }

  .crm-about-caption i {
    font-size: 15px;
  }

  .crm-about-caption span {
    font-size: 10.5px;
    line-height: 1.35;
  }

  /* =======================================================
     CONTENT
     ======================================================= */

  .crm-about-content {
    padding-left: 0;
  }

  .crm-about-tag {
    margin-bottom: 11px;
    gap: 8px;
    font-size: 0.61rem;
    letter-spacing: 1.8px;
  }

  .crm-about-tag::before {
    width: 25px;
    flex-basis: 25px;
    height: 1.5px;
  }

  .crm-about-heading {
    margin-bottom: 15px;
    font-size: clamp(25px, 8vw, 31px);
    line-height: 1.1;
  }

  .crm-about-text {
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
  }

  .crm-service-card {
    padding: 20px 17px;
    border-radius: 16px;
  }

  .crm-service-card h5 {
    gap: 9px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .crm-service-card h5 .crm-service-icon {
    width: 30px;
    height: 30px;

    flex-basis: 30px;
    border-radius: 8px;
    font-size: 13px;
  }

  .crm-service-card ul {
    gap: 7px;
  }

  .crm-service-card li {
    padding-left: 15px;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .crm-service-card li::before {
    top: 7px;
    width: 5px;
    height: 5px;
  }

  .crm-feature-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 23px;
  }

  .crm-feature-pill {
    width: 100%;
    min-height: 40px;
    padding: 9px 10px;
    font-size: 10px;
    white-space: normal;
    line-height: 1.3;
  }

  .crm-feature-pill i {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .crm-feature-pill:last-child {
    grid-column: 1 / -1;
  }

  .crm-about-buttons {
    margin-top: 27px !important;
    width: 100%;
  }

  .crm-about-btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 20px;
    font-size: 12.5px;
  }
}

/* =========================================================
   SMALL MOBILE
   350px — 399px
   ========================================================= */

@media (max-width: 399.98px) {
  .crm-about {
    padding: 55px 0 48px;
  }

  .crm-about .row {
    row-gap: 52px !important;
  }

  /* Image */

  .crm-about-media {
    width: calc(100% - 14px);
  }

  .crm-about-image {
    height: 380px;
    border-radius: 15px;
  }

  .crm-about-media-frame::before {
    inset: -7px;
    border-radius: 20px;
  }

  /* Ribbon */

  .crm-about-ribbon {
    top: 17px;
    right: -8px;
    min-width: 57px;
    padding: 14px 6px;
  }

  .crm-about-ribbon .crm-ribbon-num {
    font-size: 19px;
  }

  .crm-about-ribbon .crm-ribbon-label {
    font-size: 6.5px;

    letter-spacing: 1.1px;
  }

  /* Caption */

  .crm-about-caption {
    left: 8px;
    bottom: -17px;
    width: calc(100% - 16px);
    padding: 10px 11px;
  }

  .crm-about-caption span {
    font-size: 9.5px;
  }

  /* Heading */

  .crm-about-heading {
    font-size: 24px;
    line-height: 1.1;
  }

  .crm-about-text {
    font-size: 12px;
    line-height: 1.65;
  }

  /* Services */

  .crm-service-card {
    padding: 18px 15px;
  }

  .crm-service-card h5 {
    font-size: 11px;
  }

  .crm-service-card h5 .crm-service-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .crm-service-card li {
    font-size: 10.8px;
  }

  /* Feature pills */

  .crm-feature-pill {
    min-height: 38px;
    padding: 8px;
    font-size: 9px;
  }

  /* Button */

  .crm-about-btn {
    min-height: 44px;
    font-size: 12px;
  }
}

/* =========================================================
   VERY SMALL PHONES
   BELOW 350px
   ========================================================= */

@media (max-width: 349.98px) {
  .crm-about {
    padding: 48px 0 42px;
  }

  .crm-about-image {
    height: 340px;
  }

  .crm-about-heading {
    font-size: 22px;
  }

  .crm-about-text {
    font-size: 11.5px;
  }

  .crm-service-card {
    padding: 16px 13px;
  }

  .crm-service-card h5 {
    font-size: 10px;
  }

  .crm-service-card li {
    font-size: 10px;
  }

  .crm-feature-pill {
    font-size: 8.5px;
  }

  .crm-about-caption span {
    font-size: 9px;
  }
}

/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {
  .crm-about {
    padding: 65px 0;
  }

  .crm-about-image {
    height: 430px;
  }

  .crm-about .row {
    row-gap: 65px !important;
  }

  .crm-about-heading {
    font-size: 30px;
  }

  .crm-about-text {
    max-width: 650px;
  }
}

/* =========================================================
   TABLET LANDSCAPE
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  .crm-about {
    padding: 75px 0;
  }

  .crm-about-image {
    height: 500px;
  }

  .crm-about-heading {
    font-size: 34px;
  }

  .crm-about-text {
    font-size: 13.5px;
  }
}

/* =========================================================
   TOUCH DEVICES
   Prevent hover transform from feeling sticky
   ========================================================= */

@media (hover: none) {
  .crm-about-media:hover .crm-about-image {
    transform: none;
  }

  .crm-service-card:hover {
    transform: none;
  }

  .crm-feature-pill:hover {
    transform: none;
  }

  .crm-about-btn:hover {
    transform: none;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .crm-about-image,
  .crm-service-card,
  .crm-feature-pill,
  .crm-about-btn {
    transition: none !important;
  }
}

/* =========================================================
   SAFE AREA FOR MODERN MOBILE DEVICES
   ========================================================= */

@supports (padding: max(0px)) {
  @media (max-width: 767.98px) {
    .crm-about {
      padding-bottom: max(55px, env(safe-area-inset-bottom));
    }
  }
}
/* service Section */
.crm-services {
  position: relative;
  background: var(--cream);
  padding: 47px 0;
  overflow: hidden;
  z-index: 1;
}

.crm-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 900px 500px at 90% 0%,
      rgba(240, 180, 41, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse 700px 500px at 5% 100%,
      rgba(240, 180, 41, 0.06),
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

/* Decorative swirl lines — brand motif, tinted gold instead of plain white */
.crm-services-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.crm-services-svg svg {
  width: 100%;
  height: 100%;
}
.crm-services-svg path {
  fill: none;
  stroke: rgba(13, 13, 15, 0.08);
  stroke-width: 1.2;
}

/* Heading */
.crm-services-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}

.crm-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.crm-services-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold-deep);
}

.crm-services-heading h2 {
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(32px, 3vw, 48px);
  margin: 0;
}

/* Card */
.crm-service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(13, 13, 15, 0.08);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  z-index: 1;
  height: 100%;
}

.crm-service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, 0.5);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.crm-service-tile.crm-tile-active {
  border-color: rgba(240, 180, 41, 0.3);
}
.crm-service-tile.crm-tile-active .crm-service-tile-content {
  background: linear-gradient(
    135deg,
    rgba(240, 180, 41, 0.14),
    rgba(255, 255, 255, 0.02)
  );
}

/* Real, clearly visible photo on top of the card (not a faded watermark) */
.crm-service-tile-media {
  position: relative;
  height: 148px;
  overflow: hidden;
}
.crm-service-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.crm-service-tile:hover .crm-service-tile-media img {
  transform: scale(1.07);
}
/* soft fade at the bottom edge so the photo blends into the card instead of a hard cut */
.crm-service-tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

/* Icon badge overlaps the photo/content seam */
.crm-service-tile-icon {
  position: absolute;
  left: 22px;
  bottom: -22px;
  width: 43px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(240, 180, 41, 0.4);
  z-index: 2;
  bottom: 60%;
}

/* Content */
.crm-service-tile-content {
  position: relative;
  z-index: 1;
  padding: 36px 24px 28px;
  flex: 1;
}

.crm-service-tile-content h4 {
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 38px;
  margin-left: 20%;
}

.crm-service-tile-content p {
  color: #6b6b72;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) {
  .crm-services {
    padding: 90px 0;
  }
  .crm-services-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .crm-services-heading {
    text-align: center;
  }
  .crm-services-eyebrow {
    justify-content: center;
  }
  .crm-services-eyebrow::before {
    display: none;
  }
  .crm-services-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .crm-services {
    padding: 70px 0;
  }
  .crm-service-tile-media {
    height: 160px;
  }
  .crm-service-tile-content {
    padding: 32px 20px 24px;
  }
  .crm-service-tile-content h4 {
    font-size: 20px;
  }
  .crm-service-tile-content p {
    font-size: 13.5px;
  }
}

/* ===================== WHY CHOOSE US ===================== */

.crm-why {
  --crm-muted: #6b6b72;
  position: relative;
  background: var(--cream);
  padding: 48px 0 56px;
  overflow: hidden;
  z-index: 1;
}

.crm-why::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 900px 500px at 8% 0%,
      rgba(240, 180, 41, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse 700px 500px at 95% 100%,
      rgba(240, 180, 41, 0.07),
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

/* brand swirl + confetti dots — fills the empty top/bottom/side margins around the row */
.crm-why-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.crm-why-svg svg {
  width: 100%;
  height: 100%;
}
.crm-why-svg path {
  fill: none;
  stroke: rgba(13, 13, 15, 0.07);
  stroke-width: 1.2;
}
.crm-why-svg circle {
  fill: var(--gold);
}

/* ---- Heading, identical language to crm-services-heading ---- */
.crm-why-heading {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}

.crm-why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.crm-why-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold-deep);
}

.crm-why-heading h2 {
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(32px, 3vw, 48px);
  margin: 0 0 14px;
}

.crm-why-heading p {
  color: var(--crm-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

/* ---- Flip card ---- */
.crm-why-flip {
  position: relative;
  z-index: 2;
  perspective: 1800px;
  height: 172px;
  cursor: pointer;
}

.crm-why-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

@media (hover: hover) {
  .crm-why-flip:hover .crm-why-flip-inner {
    transform: rotateY(180deg);
  }
}
.crm-why-flip.is-flipped .crm-why-flip-inner {
  transform: rotateY(180deg);
}

.crm-why-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* FRONT — true glassmorphism: translucent, blurred, thin bright edge + inner highlight */
.crm-why-front {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.18)
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 8px 26px rgba(13, 13, 15, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.crm-why-flip:hover .crm-why-front {
  border-color: rgba(240, 180, 41, 0.55);
  box-shadow:
    0 16px 36px rgba(13, 13, 15, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* icon badge — identical recipe to .crm-service-tile-icon / .stat-icon */
.crm-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--ink);
  font-size: 19px;
  box-shadow: 0 10px 22px rgba(240, 180, 41, 0.4);
  margin-bottom: 12px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.crm-why-flip:hover .crm-why-icon {
  transform: translateY(-3px) scale(1.05);
}

.crm-why-front h4 {
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

/* BACK — dark glass, echoes the hero band so the card reveals the "other side" of the site */
.crm-why-back {
  background: linear-gradient(
    155deg,
    rgba(23, 23, 27, 0.6),
    rgba(13, 13, 15, 0.75)
  );
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(240, 180, 41, 0.25);
  transform: rotateY(180deg);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.crm-why-back::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    circle at 25% 0%,
    rgba(240, 180, 41, 0.18),
    transparent 60%
  );
  pointer-events: none;
}

.crm-why-back .crm-why-icon {
  background: rgba(240, 180, 41, 0.14);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: var(--gold);
  width: 40px;
  height: 40px;
  font-size: 16px;
  box-shadow: none;
  margin-bottom: 10px;
}

.crm-why-back h5 {
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 6px;
  position: relative;
}

.crm-why-back p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

/* Responsive */
@media (max-width: 991px) {
  .crm-why {
    padding: 44px 0 50px;
  }
  .crm-why-heading h2 {
    font-size: 34px;
  }
  .crm-why-flip {
    height: 162px;
  }
}

@media (max-width: 575px) {
  .crm-why {
    padding: 40px 0 46px;
  }
  .crm-why-heading {
    text-align: center;
  }
  .crm-why-eyebrow {
    justify-content: center;
  }
  .crm-why-heading h2 {
    font-size: 27px;
  }
  .crm-why-flip {
    height: 150px;
  }
  .crm-why-face {
    padding: 18px;
  }
}

/* ===================== BOOK A DATE ===================== */

.crm-book {
  position: relative;
  padding: 44px 0;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 100%;

  background:
    linear-gradient(160deg, rgba(13, 13, 15, 0.86), rgba(13, 13, 15, 0.72)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

/* gold ambient glow, same recipe as the light sections, tuned for a dark base */
.crm-book::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 700px 420px at 88% 0%,
      rgba(240, 180, 41, 0.16),
      transparent 60%
    ),
    radial-gradient(
      ellipse 600px 400px at 4% 100%,
      rgba(240, 180, 41, 0.1),
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.crm-book *,
.crm-book *::before,
.crm-book *::after {
  box-sizing: border-box;
}

.crm-book .container {
  width: 100%;
  max-width: 1320px;
}
/* ---- Heading ---- */
.crm-book-heading {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto 22px;
  text-align: center;
}

.crm-book-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.crm-book-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.crm-book-heading h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(26px, 2.6vw, 38px);
  margin: 0 0 8px;
}

.crm-book-heading p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---- Dark glass form card ---- */
.crm-book-card {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.crm-field {
  margin-bottom: 16px;
}

.crm-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.crm-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.crm-input-wrap i {
  position: absolute;
  left: 15px;
  color: var(--gold);
  font-size: 13.5px;
  pointer-events: none;
  opacity: 0.85;
}

.crm-field input,
.crm-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 11px 14px 11px 38px;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #fff;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.crm-field textarea {
  padding-left: 14px;
  resize: vertical;
  min-height: 64px;
}

.crm-field input::placeholder,
.crm-field textarea::placeholder {
  color: #8f8f96;
}

.crm-field input:focus,
.crm-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.18);
}

/* native time icon recoloring */
.crm-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(80%) sepia(60%) saturate(700%) hue-rotate(2deg);
  cursor: pointer;
}

/* 3-up field row */
.crm-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ---- Submit button ---- */
.crm-book-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 26px;
  margin-top: 4px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(240, 180, 41, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.crm-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(240, 180, 41, 0.4);
}
.crm-book-submit:active {
  transform: translateY(0);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .crm-book {
    margin-top: 80px !important;
    padding: 55px 0;
  }

  .crm-book .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .crm-book-heading {
    max-width: 600px;
    margin-bottom: 26px;
  }

  .crm-book-heading h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .crm-book-heading p {
    font-size: 14px;
  }

  .crm-book-card {
    width: 100%;
    max-width: 850px;
    padding: 28px 30px;
    border-radius: 20px;
  }

  .crm-row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .crm-field {
    min-width: 0;
    margin-bottom: 14px;
  }

  .crm-field label {
    font-size: 10.5px;
    margin-bottom: 6px;
  }

  .crm-field input,
  .crm-field textarea {
    min-width: 0;
    font-size: 13px;
    padding: 11px 12px 11px 37px;
  }

  .crm-input-wrap i {
    left: 13px;
    font-size: 13px;
  }

  .crm-field textarea {
    padding-left: 13px;
    min-height: 85px;
  }

  .crm-book-submit {
    min-height: 45px;
    font-size: 14px;
  }
}

/* =========================================================
   TABLETS
   768px — 991px
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {
  .crm-book {
    margin-top: 70px !important;
    padding: 52px 0;
  }

  .crm-book .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .crm-book-heading {
    max-width: 600px;
    margin-bottom: 26px;
  }

  .crm-book-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    margin-bottom: 9px;
  }

  .crm-book-heading h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .crm-book-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .crm-book-card {
    width: 100%;
    max-width: 720px;
    padding: 27px 28px;
    border-radius: 20px;
  }

  /*
     Keep 3 columns on tablet.
     minmax(0, 1fr) prevents long content
     from causing horizontal overflow.
  */

  .crm-row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
  }

  .crm-field {
    min-width: 0;
    margin-bottom: 13px;
  }

  .crm-field label {
    font-size: 10px;
    letter-spacing: 0.9px;
    margin-bottom: 6px;
  }

  .crm-field input,
  .crm-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 43px;
    padding: 10px 10px 10px 35px;
    font-size: 12.5px;
    border-radius: 9px;
  }

  .crm-input-wrap i {
    left: 12px;
    font-size: 12.5px;
  }

  .crm-field textarea {
    padding-left: 11px;
    min-height: 90px;
  }

  .crm-book-submit {
    min-height: 44px;
    padding: 12px 22px;
    font-size: 13.5px;
  }
}

/* =========================================================
   SURFACE DUO / SMALL TABLETS
   540px — 767px
   ========================================================= */

@media (min-width: 540px) and (max-width: 767px) {
  .crm-book {
    margin-top: 60px !important;
    padding: 48px 0;
  }

  .crm-book .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .crm-book-heading {
    max-width: 560px;
    margin-bottom: 24px;
  }

  .crm-book-eyebrow {
    font-size: 10.5px;
    letter-spacing: 2.3px;
  }

  .crm-book-heading h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .crm-book-heading p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .crm-book-card {
    width: 100%;
    max-width: 620px;
    padding: 25px 24px;
    border-radius: 19px;
  }

  /*
     Two columns are more comfortable on
     narrow tablets than three tiny fields.
  */

  .crm-row-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }

  .crm-field {
    min-width: 0;
    margin-bottom: 11px;
  }

  .crm-field label {
    font-size: 10px;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
  }

  .crm-field input,
  .crm-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 43px;
    padding: 10px 10px 10px 34px;
    font-size: 12px;
    border-radius: 8px;
  }

  .crm-input-wrap i {
    left: 11px;
    font-size: 12px;
  }

  .crm-field textarea {
    padding-left: 11px;
    min-height: 95px;
  }

  .crm-book-submit {
    min-height: 44px;
    padding: 11px 20px;
    font-size: 13px;
  }
}

/* =========================================================
   LARGE PHONES
   400px — 539px
   ========================================================= */

@media (min-width: 400px) and (max-width: 539px) {
  .crm-book {
    margin-top: 50px !important;
    padding: 42px 0;
  }

  .crm-book .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .crm-book-heading {
    max-width: 100%;
    margin-bottom: 22px;
  }

  .crm-book-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    gap: 8px;
  }

  .crm-book-eyebrow::before {
    width: 28px;
  }

  .crm-book-heading h2 {
    font-size: 27px;
    line-height: 1.15;
  }

  .crm-book-heading p {
    font-size: 13px;
    line-height: 1.55;
  }

  .crm-book-card {
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
    border-radius: 17px;
  }

  /*
     Single column for phones.
  */

  .crm-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .crm-field {
    width: 100%;
    min-width: 0;
    margin-bottom: 12px;
  }

  .crm-field label {
    font-size: 9.5px;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
  }

  .crm-input-wrap {
    width: 100%;
  }

  .crm-field input,
  .crm-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 43px;
    padding: 10px 10px 10px 34px;
    font-size: 12px;
    border-radius: 8px;
  }

  .crm-input-wrap i {
    left: 11px;
    font-size: 12px;
  }

  .crm-field textarea {
    padding-left: 11px;
    min-height: 105px;
  }

  .crm-book-submit {
    width: 100%;
    min-height: 44px;
    margin-top: 3px;
    padding: 11px 18px;
    font-size: 13px;
    border-radius: 8px;
  }

  .crm-arrow-circle {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================================================
   STANDARD PHONES
   360px — 399px
   ========================================================= */

@media (min-width: 360px) and (max-width: 399px) {
  .crm-book {
    margin-top: 45px !important;
    padding: 38px 0;
  }

  .crm-book .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .crm-book-heading {
    margin-bottom: 20px;
  }

  .crm-book-eyebrow {
    font-size: 9.5px;
    letter-spacing: 1.8px;
    gap: 7px;
  }

  .crm-book-eyebrow::before {
    width: 25px;
    height: 1.5px;
  }

  .crm-book-heading h2 {
    font-size: 25px;
  }

  .crm-book-heading p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .crm-book-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .crm-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .crm-field {
    margin-bottom: 11px;
  }

  .crm-field label {
    font-size: 9px;
    letter-spacing: 0.7px;
    margin-bottom: 5px;
  }

  .crm-field input,
  .crm-field textarea {
    min-height: 41px;
    padding: 9px 9px 9px 32px;
    font-size: 11.5px;
    border-radius: 8px;
  }

  .crm-input-wrap i {
    left: 10px;
    font-size: 11.5px;
  }

  .crm-field textarea {
    padding-left: 10px;
    min-height: 98px;
  }

  .crm-book-submit {
    width: 100%;
    min-height: 42px;
    padding: 10px 15px;
    margin-top: 2px;
    font-size: 12.5px;
    border-radius: 8px;
  }

  .crm-arrow-circle {
    width: 27px;
    height: 27px;
  }
}

/* =========================================================
   SMALL PHONES
   320px — 359px
   ========================================================= */

@media (min-width: 320px) and (max-width: 359px) {
  .crm-book {
    margin-top: 40px !important;
    padding: 34px 0;
  }

  .crm-book .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .crm-book-heading {
    margin-bottom: 18px;
  }

  .crm-book-eyebrow {
    font-size: 8.5px;
    letter-spacing: 1.5px;
    gap: 6px;
  }

  .crm-book-eyebrow::before {
    width: 22px;
    height: 1.5px;
  }

  .crm-book-heading h2 {
    font-size: 22px;
    line-height: 1.15;
  }

  .crm-book-heading p {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .crm-book-card {
    padding: 18px 13px;
    border-radius: 14px;
  }

  .crm-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .crm-field {
    margin-bottom: 9px;
  }

  .crm-field label {
    font-size: 8.5px;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
  }

  .crm-field input,
  .crm-field textarea {
    min-height: 39px;
    padding: 8px 8px 8px 29px;
    font-size: 10.5px;
    border-radius: 7px;
  }

  .crm-input-wrap i {
    left: 9px;
    font-size: 10.5px;
  }

  .crm-field textarea {
    padding-left: 9px;
    min-height: 90px;
  }

  .crm-book-submit {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    margin-top: 2px;
    font-size: 11.5px;
    border-radius: 7px;
  }

  .crm-arrow-circle {
    width: 25px;
    height: 25px;
  }
}

/* =========================================================
   VERY SMALL DEVICES
   BELOW 320px
   ========================================================= */

@media (max-width: 319px) {
  .crm-book {
    margin-top: 35px !important;
    padding: 30px 0;
  }

  .crm-book .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .crm-book-heading {
    margin-bottom: 16px;
  }

  .crm-book-eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .crm-book-eyebrow::before {
    width: 18px;
    height: 1px;
  }

  .crm-book-heading h2 {
    font-size: 20px;
  }

  .crm-book-heading p {
    font-size: 10.5px;
    line-height: 1.45;
  }

  .crm-book-card {
    padding: 16px 10px;
    border-radius: 12px;
  }

  .crm-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .crm-field {
    margin-bottom: 8px;
  }

  .crm-field label {
    font-size: 8px;
    margin-bottom: 4px;
  }

  .crm-field input,
  .crm-field textarea {
    min-height: 37px;
    padding: 7px 7px 7px 27px;
    font-size: 10px;
    border-radius: 6px;
  }

  .crm-input-wrap i {
    left: 8px;
    font-size: 10px;
  }

  .crm-field textarea {
    padding-left: 8px;
    min-height: 82px;
  }

  .crm-book-submit {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 10.5px;
    border-radius: 6px;
  }

  .crm-arrow-circle {
    width: 23px;
    height: 23px;
  }
}

/* =========================================================
   MOBILE LANDSCAPE
   ========================================================= */

@media (max-width: 767px) and (orientation: landscape) {
  .crm-book {
    margin-top: 35px !important;
    padding: 35px 0;
  }

  .crm-book-heading {
    margin-bottom: 20px;
  }

  .crm-book-heading h2 {
    font-size: 26px;
  }

  .crm-book-card {
    max-width: 680px;
    padding: 22px;
  }

  /*
     Two columns in landscape gives better
     use of the wider phone viewport.
  */

  .crm-row-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
  }

  .crm-field input {
    min-height: 40px;
  }

  .crm-field textarea {
    min-height: 85px;
  }
}

/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover: none) and (pointer: coarse) {
  .crm-book-submit:hover {
    transform: none;
    box-shadow: 0 12px 26px rgba(240, 180, 41, 0.3);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .crm-book *,
  .crm-book *::before,
  .crm-book *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   SAFE AREA
   ========================================================= */

@supports (padding: env(safe-area-inset-bottom)) {
  @media (max-width: 767px) {
    .crm-book {
      padding-bottom: calc(34px + env(safe-area-inset-bottom));
    }
  }
}

/* gallery */
:root {
  --cera-cream: #faf9f6;
  --cera-ink: #16130f;
  --cera-ink-soft: #6e6a63;
  --cera-gold: #e0a63a;
  --cera-gold-2: #c98a2c;
  --cera-green: #3f7d3f;
  --cera-btn-gray: #e7e5e1;

  /* === new: the watermark's color + strength, change these two to restyle it === */
  --cera-pattern-color: var(--cera-gold);
  --cera-pattern-opacity: 0.08;
}

.cera-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.ceraShowcase {
  position: relative;
  padding: 96px 0 88px;
  background: var(--cera-cream);
  overflow: hidden;
  isolation: isolate;
}

/* === your uploaded icon, tiled + recolored, sitting behind everything === */
.ceraShowcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--cera-pattern-color);
  opacity: var(--cera-pattern-opacity);
  -webkit-mask-image: url("../Assets/images/gallery-icon.png");
  mask-image: url("../Assets/images/gallery-icon.png");
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-size: 120px 120px;
  mask-size: 120px 120px;
  -webkit-mask-position: top center;
  mask-position: top center;
}

.ceraShowcase-eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--cera-gold-2);
  margin-bottom: 14px;
  margin-left: 184px;
}
.ceraShowcase-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--cera-gold-2);
}
.ceraShowcase-head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.ceraShowcase-head h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--cera-ink);
  margin: 0;
}
.ceraShowcase-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 96px 10px 0;
}
.ceraShowcase-card {
  position: relative;
  width: 190px;
  aspect-ratio: 3 / 4.35;
  border-radius: 20px;
  overflow: hidden;
  background: #0f0b06;
  box-shadow: 0 22px 42px -16px rgba(22, 19, 15, 0.3);
  margin-left: -46px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
  flex-shrink: 0;
}
.ceraShowcase-card:first-child {
  margin-left: 0;
}
.ceraShowcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ceraShowcase-stage .ceraShowcase-card:nth-child(1) {
  transform: rotate(-13deg) translateY(48px);
  z-index: 1;
}
.ceraShowcase-stage .ceraShowcase-card:nth-child(2) {
  transform: rotate(-7deg) translateY(14px);
  z-index: 2;
}
.ceraShowcase-stage .ceraShowcase-card:nth-child(3) {
  transform: rotate(-2.5deg) translateY(-2px);
  z-index: 3;
}
.ceraShowcase-stage .ceraShowcase-card:nth-child(4) {
  transform: rotate(2.5deg) translateY(-2px);
  z-index: 3;
}
.ceraShowcase-stage .ceraShowcase-card:nth-child(5) {
  transform: rotate(7deg) translateY(14px);
  z-index: 2;
}
.ceraShowcase-stage .ceraShowcase-card:nth-child(6) {
  transform: rotate(13deg) translateY(48px);
  z-index: 1;
}

.ceraShowcase-badge {
  position: absolute;
  top: 40px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px 999px 999px 4px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #fff;
  box-shadow: 0 12px 22px -8px rgba(22, 19, 15, 0.3);
  z-index: 5;
  white-space: nowrap;
}
.ceraShowcase-badge-a {
  left: 14%;
  background: var(--cera-green);
  transform: rotate(-9deg);
}
.ceraShowcase-badge-b {
  right: 12%;
  background: linear-gradient(135deg, var(--cera-gold), var(--cera-gold-2));
  transform: rotate(8deg);
}
.ceraShowcase-sub {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cera-ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
  margin: 40px auto 0;
}
.ceraShowcase-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cera-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}
.cera-btn-dark {
  background: var(--cera-ink);
  color: #fff;
}
.cera-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(22, 19, 15, 0.45);
}
/* =========================================================
   LARGE TABLETS / SMALL LAPTOPS
   1200px and below
   ========================================================= */

@media (max-width: 1199.98px) {
  .ceraShowcase {
    padding: 84px 0 76px;
  }

  .cera-wrap {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .ceraShowcase-eyebrow {
    margin-left: 0;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .ceraShowcase-head {
    max-width: 720px;
  }

  .ceraShowcase-head h2 {
    font-size: clamp(34px, 4.5vw, 48px);
  }

  .ceraShowcase-stage {
    padding: 88px 10px 0;
  }

  .ceraShowcase-card {
    width: 170px;
    margin-left: -40px;
    border-radius: 19px;
  }

  .ceraShowcase-badge {
    font-size: 11.5px;
    padding: 8px 16px;
  }

  .ceraShowcase-badge-a {
    left: 8%;
  }

  .ceraShowcase-badge-b {
    right: 7%;
  }

  .ceraShowcase-sub {
    max-width: 580px;
    font-size: 14.5px;
  }
}

/* =========================================================
   TABLET PORTRAIT
   768px — 991px
   ========================================================= */

@media (max-width: 991.98px) {
  .ceraShowcase {
    padding: 76px 0 68px;
  }

  .cera-wrap {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ceraShowcase-eyebrow {
    margin-left: 0;
    font-size: 11.5px;
    letter-spacing: 1.9px;
  }

  .ceraShowcase-eyebrow::before {
    width: 34px;
    height: 2px;
  }

  .ceraShowcase-head {
    max-width: 650px;
  }

  .ceraShowcase-head h2 {
    font-size: 40px;
    line-height: 1.15;
  }

  .ceraShowcase-stage {
    padding: 78px 10px 4px;
  }

  .ceraShowcase-card {
    width: 150px;
    margin-left: -35px;
    border-radius: 17px;
  }

  .ceraShowcase-badge {
    font-size: 10.5px;
    padding: 8px 14px;
  }

  .ceraShowcase-badge-a {
    left: 7%;
  }

  .ceraShowcase-badge-b {
    right: 6%;
  }

  .ceraShowcase-sub {
    padding: 0 12px;
    font-size: 14px;
    line-height: 1.65;
    margin-top: 34px;
  }

  .ceraShowcase-actions {
    margin-top: 26px;
  }

  .cera-btn {
    font-size: 14px;
    padding: 14px 27px;
  }
}

/* =========================================================
   SURFACE DUO / LARGE MOBILE
   540px — 767px

   Horizontal swipe gallery
   ========================================================= */

@media (min-width: 540px) and (max-width: 767.98px) {
  .ceraShowcase {
    padding: 68px 0 58px;
  }

  .ceraShowcase::before {
    -webkit-mask-size: 82px 82px;
    mask-size: 82px 82px;
  }

  .cera-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ceraShowcase-eyebrow {
    margin-left: 0;
    font-size: 10.8px;
    letter-spacing: 1.7px;
  }

  .ceraShowcase-eyebrow::before {
    width: 30px;
  }

  .ceraShowcase-head {
    max-width: 560px;
  }

  .ceraShowcase-head h2 {
    font-size: 32px;
    line-height: 1.18;
    padding: 0 10px;
  }

  /* -----------------------------------------
     SWIPEABLE GALLERY
     ----------------------------------------- */

  .ceraShowcase-stage {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 52px 20px 10px;
    gap: 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .ceraShowcase-stage::-webkit-scrollbar {
    display: none;
  }

  .ceraShowcase-card {
    width: 145px;
    flex: 0 0 145px;
    margin-left: -22px;
    border-radius: 16px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: rotate(0deg) translateY(0) !important;
  }

  .ceraShowcase-stage .ceraShowcase-card:first-child {
    margin-left: 0;
  }

  .ceraShowcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ceraShowcase-badge {
    display: none;
  }

  /* -----------------------------------------
     DESCRIPTION
     ----------------------------------------- */

  .ceraShowcase-sub {
    max-width: 500px;

    margin-top: 28px;

    padding: 0 15px;

    font-size: 13.5px;

    line-height: 1.65;
  }

  /* -----------------------------------------
     BUTTON
     ----------------------------------------- */

  .ceraShowcase-actions {
    margin-top: 22px;
  }

  .cera-btn {
    font-size: 13.5px;
    padding: 13px 25px;
  }
}

/* =========================================================
   MOBILE
   400px — 539px
   ========================================================= */

@media (max-width: 539.98px) {
  .ceraShowcase {
    padding: 58px 0 50px;
  }

  .ceraShowcase::before {
    -webkit-mask-size: 76px 76px;
    mask-size: 76px 76px;

    opacity: 0.065;
  }

  .cera-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* -----------------------------------------
     EYEBROW
     ----------------------------------------- */

  .ceraShowcase-eyebrow {
    margin-left: 0;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .ceraShowcase-eyebrow::before {
    width: 25px;
    height: 1.5px;
  }

  /* -----------------------------------------
     HEADING
     ----------------------------------------- */

  .ceraShowcase-head {
    width: 100%;
  }

  .ceraShowcase-head h2 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.3px;
    padding: 0 4px;
  }

  /* -----------------------------------------
     GALLERY STRIP
     ----------------------------------------- */

  .ceraShowcase-stage {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 44px 16px 7px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .ceraShowcase-stage::-webkit-scrollbar {
    display: none;
  }

  .ceraShowcase-card {
    width: 132px;
    flex: 0 0 132px;
    margin-left: -19px;
    border-radius: 15px;
    box-shadow: 0 18px 35px -15px rgba(22, 19, 15, 0.28);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: rotate(0deg) translateY(0) !important;
  }

  .ceraShowcase-stage .ceraShowcase-card:first-child {
    margin-left: 0;
  }

  /* -----------------------------------------
     DESCRIPTION
     ----------------------------------------- */

  .ceraShowcase-sub {
    max-width: 100%;
    padding: 0 8px;
    margin-top: 26px;
    font-size: 13.5px;
    line-height: 1.6;
  }

  .ceraShowcase-sub br {
    display: none;
  }

  /* -----------------------------------------
     ACTION
     ----------------------------------------- */

  .ceraShowcase-actions {
    width: 100%;
    margin-top: 21px;
    display: flex;
    justify-content: center;
  }

  .ceraShowcase-actions .cera-btn {
    width: auto;
    min-width: 135px;
    justify-content: center;
    margin-left: 0;
    padding: 13px 24px;
    font-size: 13.5px;
  }
}

/* =========================================================
   SMALL PHONES
   350px — 399px
   ========================================================= */

@media (max-width: 399.98px) {
  .ceraShowcase {
    padding: 50px 0 44px;
  }

  .ceraShowcase::before {
    -webkit-mask-size: 66px 66px;
    mask-size: 66px 66px;
    opacity: 0.055;
  }

  .cera-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .ceraShowcase-eyebrow {
    font-size: 9.8px;
    letter-spacing: 1.3px;
    gap: 7px;
  }

  .ceraShowcase-eyebrow::before {
    width: 21px;
  }

  .ceraShowcase-head h2 {
    font-size: 23px;
    line-height: 1.2;
  }

  .ceraShowcase-stage {
    padding: 38px 13px 5px;
  }

  .ceraShowcase-card {
    width: 115px;
    flex-basis: 115px;
    margin-left: -16px;
    border-radius: 13px;
  }

  .ceraShowcase-sub {
    padding: 0 5px;
    margin-top: 23px;
    font-size: 12.8px;
    line-height: 1.58;
  }

  .ceraShowcase-actions {
    margin-top: 19px;
  }

  .ceraShowcase-actions .cera-btn {
    min-width: 125px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* =========================================================
   VERY SMALL PHONES
   BELOW 350px
   ========================================================= */

@media (max-width: 349.98px) {
  .ceraShowcase {
    padding: 44px 0 40px;
  }

  .ceraShowcase::before {
    -webkit-mask-size: 58px 58px;
    mask-size: 58px 58px;
  }

  .cera-wrap {
    padding-left: 13px;
    padding-right: 13px;
  }

  .ceraShowcase-eyebrow {
    font-size: 9.2px;

    letter-spacing: 1.1px;

    gap: 6px;
  }

  .ceraShowcase-eyebrow::before {
    width: 18px;
  }

  .ceraShowcase-head h2 {
    font-size: 21px;

    letter-spacing: -0.2px;
  }

  .ceraShowcase-stage {
    padding: 34px 11px 4px;
  }

  .ceraShowcase-card {
    width: 105px;

    flex-basis: 105px;

    margin-left: -14px;

    border-radius: 12px;
  }

  .ceraShowcase-sub {
    font-size: 12.2px;

    line-height: 1.55;

    margin-top: 21px;
  }

  .ceraShowcase-actions .cera-btn {
    min-width: 115px;

    padding: 11px 18px;

    font-size: 12.5px;
  }
}

/* =========================================================
   MOBILE LANDSCAPE
   ========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {
  .ceraShowcase {
    padding: 55px 0 48px;
  }

  .ceraShowcase-head h2 {
    font-size: 28px;
  }

  .ceraShowcase-stage {
    padding-top: 40px;
  }

  .ceraShowcase-card {
    width: 120px;

    flex-basis: 120px;
  }

  .ceraShowcase-sub {
    max-width: 520px;
  }
}

/* =========================================================
   TABLET LANDSCAPE
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  .ceraShowcase {
    padding: 78px 0 70px;
  }

  .ceraShowcase-stage {
    padding-top: 72px;
  }

  .ceraShowcase-card {
    width: 155px;
    margin-left: -34px;
  }

  .ceraShowcase-head h2 {
    font-size: 40px;
  }
}


@media (hover: none) {
  .ceraShowcase-card:hover {
    transform: rotate(0deg) translateY(0) !important;
  }

  .cera-btn-dark:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ceraShowcase-stage {
    scroll-behavior: auto;
  }

  .ceraShowcase-card,
  .ceraShowcase-card img,
  .cera-btn {
    transition: none !important;
  }
}

/* =========================================================
   SAFE AREA — MODERN PHONES
   ========================================================= */

@supports (padding: max(0px)) {
  @media (max-width: 767.98px) {
    .ceraShowcase {
      padding-bottom: max(50px, env(safe-area-inset-bottom));
    }
  }
}

/*====================================================
            TEAM SECTION
====================================================*/

.studio-team-section {
  position: relative;
  padding: 28px 0;
  background: #fff;
  overflow: hidden;
}

/* Decorative Background */
.studio-team-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(217, 164, 65, 0.12),
    transparent 70%
  );
  top: -140px;
  left: -120px;
  z-index: 0;
}

.studio-team-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(187, 155, 55, 0.1), transparent 70%);
  right: -120px;
  bottom: -100px;
  z-index: 0;
}

.studio-team-section .container {
  position: relative;
  z-index: 2;
}

/*==================================
            Heading
===================================*/

.studio-team-heading {
  text-align: center;
  margin-bottom: 60px;
}

.studio-team-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #bb9b37;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.studio-team-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #bb9b37;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.studio-team-tag::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #bb9b37;
}

.studio-team-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  letter-spacing: -1px;
  margin: 0;
}

.studio-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1020px;
  margin: 0 auto;
}

.studio-team-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(217, 164, 65, 0.18);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: 0.45s ease;
}

/* Image */

.studio-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

/* Dark Overlay */

.studio-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.85),
    rgba(17, 17, 17, 0.25),
    transparent
  );

  opacity: 0;
  transition: 0.45s ease;
  z-index: 1;
}

/* Gold Glow */

.studio-team-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to top,
    rgba(217, 164, 65, 0.9),
    rgba(217, 164, 65, 0.45),
    transparent
  );

  opacity: 0;
  transition: 0.45s;
  z-index: 1;
}

/* Hover */

.studio-team-card:hover {
  transform: translateY(-10px);
  border-color: #d9a441;
  box-shadow: 0 28px 65px rgba(217, 164, 65, 0.2);
}

.studio-team-card:hover img {
  transform: scale(1.08);
}

.studio-team-card:hover::before {
  opacity: 1;
}

.studio-team-card:hover::after {
  opacity: 1;
}

.studio-team-overlay {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 3;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.45s ease;
}

.studio-team-card:hover .studio-team-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Name */

.studio-team-overlay h3 {
  margin: 0 0 8px;
  font-size: 26px;
  color: #111;
  font-weight: 700;
}

/* Position */

.studio-team-overlay p {
  margin: 0 0 18px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.studio-team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.studio-team-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.35s;
  font-size: 16px;
}

.studio-team-social a:hover {
  background: #111;
  color: #d9a441;
  transform: translateY(-5px);
}

@media (max-width: 1199.98px) {
  .studio-team-section {
    padding: 80px 0;
  }

  .studio-team-heading {
    margin-bottom: 50px;
  }

  .studio-team-title {
    font-size: 44px;
  }

  .studio-team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 920px;
  }

  .studio-team-card {
    height: 450px;
    border-radius: 20px;
  }

  .studio-team-overlay {
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  .studio-team-overlay h3 {
    font-size: 22px;
  }

  .studio-team-overlay p {
    font-size: 12px;
  }

  .studio-team-social {
    gap: 9px;
  }

  .studio-team-social a {
    width: 38px;
    height: 38px;

    font-size: 14px;
  }
}


@media (max-width: 991.98px) {
  .studio-team-section {
    padding: 75px 0;
  }

  .studio-team-heading {
    margin-bottom: 45px;
  }

  .studio-team-tag {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    gap: 10px;
    margin-bottom: 15px;
  }

  .studio-team-tag::before {
    width: 34px;
    height: 2px;
  }

  .studio-team-title {
    font-size: 40px;
    letter-spacing: -0.6px;
  }

  .studio-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 680px;
  }

  .studio-team-card {
    height: 440px;
    border-radius: 20px;
  }

  .studio-team-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .studio-team-card::before {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(17, 17, 17, 0.82),
      rgba(17, 17, 17, 0.18),
      transparent
    );
  }

  .studio-team-card::after {
    opacity: 0.7;
  }

  .studio-team-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .studio-team-overlay h3 {
    font-size: 23px;
    color: #111;
  }

  .studio-team-overlay p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .studio-team-social {
    gap: 9px;
  }

  .studio-team-social a {
    width: 39px;
    height: 39px;
    font-size: 14px;
  }
}

@media (min-width: 540px) and (max-width: 767.98px) {
  .studio-team-section {
    padding: 70px 0;
  }

  .studio-team-heading {
    margin-bottom: 38px;
  }

  .studio-team-tag {
    font-size: 0.67rem;
    letter-spacing: 2px;
    gap: 9px;
    margin-bottom: 13px;
  }

  .studio-team-tag::before {
    width: 30px;
  }

  .studio-team-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .studio-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 560px;
  }

  .studio-team-card {
    height: 390px;
    border-radius: 17px;
  }

  .studio-team-overlay {
    left: 12px;
    right: 12px;
    bottom: 15px;
  }

  .studio-team-overlay h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .studio-team-overlay p {
    font-size: 9.5px;
    line-height: 1.4;
    letter-spacing: 0.7px;
    margin-bottom: 12px;
  }

  .studio-team-social {
    gap: 6px;
  }

  .studio-team-social a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

@media (max-width: 539.98px) {
  .studio-team-section {
    padding: 60px 0;
  }

  .studio-team-heading {
    margin-bottom: 32px;
    padding: 0 10px;
  }

  .studio-team-tag {
    font-size: 0.62rem;
    letter-spacing: 1.8px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .studio-team-tag::before {
    width: 26px;
    height: 1.5px;
  }

  .studio-team-title {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.4px;
  }

  .studio-team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    max-width: 400px;
  }

  .studio-team-card {
    width: 100%;
    height: 420px;
    border-radius: 17px;
  }

  .studio-team-card::before {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(17, 17, 17, 0.86),
      rgba(17, 17, 17, 0.22),
      transparent
    );
  }

  .studio-team-card::after {
    opacity: 0.72;
  }

  .studio-team-overlay {
    left: 16px;
    right: 16px;
    bottom: 17px;
    opacity: 1;
    transform: translateY(0);
  }

  .studio-team-overlay h3 {
    font-size: 21px;
    margin-bottom: 6px;
  }

  .studio-team-overlay p {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.7px;
    margin-bottom: 14px;
  }

  .studio-team-social {
    gap: 8px;
  }

  .studio-team-social a {
    width: 37px;
    height: 37px;
    font-size: 13px;
  }
}

@media (max-width: 399.98px) {
  .studio-team-section {
    padding: 52px 0;
  }

  .studio-team-heading {
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .studio-team-tag {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    gap: 7px;
  }

  .studio-team-tag::before {
    width: 22px;
    height: 1.5px;
  }

  .studio-team-title {
    font-size: 27px;
    line-height: 1.15;
  }

  .studio-team-grid {
    gap: 15px;
    max-width: 350px;
  }

  .studio-team-card {
    height: 390px;
    border-radius: 15px;
  }

  .studio-team-overlay {
    left: 13px;
    right: 13px;
    bottom: 14px;
  }

  .studio-team-overlay h3 {
    font-size: 19px;
    margin-bottom: 5px;
  }

  .studio-team-overlay p {
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .studio-team-social {
    gap: 7px;
  }

  .studio-team-social a {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
}

@media (max-width: 349.98px) {
  .studio-team-section {
    padding: 45px 0;
  }

  .studio-team-heading {
    margin-bottom: 25px;
  }

  .studio-team-tag {
    font-size: 0.54rem;
    letter-spacing: 1.3px;
  }

  .studio-team-title {
    font-size: 24px;
  }

  .studio-team-grid {
    gap: 13px;
  }

  .studio-team-card {
    height: 350px;
    border-radius: 14px;
  }

  .studio-team-overlay {
    left: 11px;
    right: 11px;
    bottom: 12px;
  }

  .studio-team-overlay h3 {
    font-size: 17px;
  }

  .studio-team-overlay p {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .studio-team-social {
    gap: 6px;
  }

  .studio-team-social a {
    width: 31px;
    height: 31px;
    font-size: 11px;
  }
}

/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {
  .studio-team-section {
    padding: 55px 0;
  }

  .studio-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
    gap: 16px;
  }

  .studio-team-card {
    height: 360px;
  }

  .studio-team-title {
    font-size: 30px;
  }

  .studio-team-overlay h3 {
    font-size: 18px;
  }

  .studio-team-overlay p {
    font-size: 9px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  .studio-team-section {
    padding: 70px 0;
  }

  .studio-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    max-width: 900px;

    gap: 18px;
  }

  .studio-team-card {
    height: 410px;
  }

  .studio-team-overlay h3 {
    font-size: 21px;
  }

  .studio-team-overlay p {
    font-size: 10px;
  }

  .studio-team-social a {
    width: 35px;
    height: 35px;
  }
}

@media (hover: none) {
  .studio-team-card:hover {
    transform: none;

    border-color: rgba(217, 164, 65, 0.18);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  }

  .studio-team-card:hover img {
    transform: none;
  }

  .studio-team-social a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-team-card,
  .studio-team-card img,
  .studio-team-card::before,
  .studio-team-card::after,
  .studio-team-overlay,
  .studio-team-social a {
    transition: none !important;
  }
}

@supports (padding: max(0px)) {
  @media (max-width: 767.98px) {
    .studio-team-section {
      padding-bottom: max(60px, env(safe-area-inset-bottom));
    }
  }
}
/* ===================== CONTACT SECTION ===================== */
.crm-contact {
  position: relative;
  padding: 80px 0;
  background: var(--cream);
  overflow: hidden;
}

.crm-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 900px 500px at 90% 0%,
      rgba(240, 180, 41, 0.08),
      transparent 60%
    ),
    radial-gradient(
      ellipse 700px 500px at 5% 100%,
      rgba(240, 180, 41, 0.05),
      transparent 60%
    );
  pointer-events: none;
}

.crm-contact-heading {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.crm-contact-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.crm-contact-subtitle::before,
.crm-contact-subtitle::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-deep);
}

.crm-contact-heading h2 {
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 34px);
  color: var(--ink);
  margin: 0 0 8px;
}

.crm-contact-heading p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #6b6b72;
  margin: 0;
}

/* ---------- Form card ---------- */
.crm-contact-form-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.crm-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #bebebe;
  opacity: 0.6;
  margin-bottom: 6px;
}

.crm-field .crm-input-wrap {
  position: relative;
}
.crm-field .crm-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 14px;
  pointer-events: none;
}

.crm-field input,
.crm-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(13, 13, 15, 0.12);
  border-radius: 10px;
  padding: 11px 14px 11px 38px;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #ededfbe6;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.crm-field textarea {
  padding-left: 14px;
  min-height: 92px;
  resize: vertical;
  line-height: 1.5;
}
.crm-field input:focus,
.crm-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.15);
}
.crm-field input::placeholder,
.crm-field textarea::placeholder {
  color: #a8a8ae;
}

.crm-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 30px;
  padding: 11px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 10px 22px rgba(240, 180, 41, 0.28);
}
.crm-contact-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Map + info column ---------- */
.crm-contact-map {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 13, 15, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
  height: 190px;
  margin-bottom: 16px;
}
.crm-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.02);
}

.crm-contact-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crm-contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.crm-contact-info-item:hover {
  border-color: rgba(240, 180, 41, 0.4);
  transform: translateY(-2px);
}

.crm-contact-info-icon {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.14);
  border: 1px solid rgba(240, 180, 41, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 16px;
}

.crm-contact-info-text h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  margin: 0 0 2px;
}
.crm-contact-info-text p {
  font-size: 12.5px;
  color: #6b6b72;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .crm-contact {
    padding: 76px 0;
  }

  .crm-contact-heading {
    max-width: 620px;
    margin-bottom: 34px;
  }

  .crm-contact-heading h2 {
    font-size: 32px;
  }

  .crm-contact-heading p {
    font-size: 14px;
  }

  .crm-contact-form-card {
    padding: 25px;
    border-radius: 17px;
  }

  .crm-contact-map {
    height: 190px;
  }

  .crm-contact-info-item {
    padding: 11px 14px;
    gap: 12px;
  }

  .crm-contact-info-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .crm-contact-info-text h6 {
    font-size: 13px;
  }

  .crm-contact-info-text p {
    font-size: 11.8px;
  }
}


@media (max-width: 991.98px) {
  .crm-contact {
    padding: 70px 0;
  }

  .crm-contact-heading {
    max-width: 600px;
    margin-bottom: 32px;
  }

  .crm-contact-subtitle {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    gap: 8px;
  }

  .crm-contact-subtitle::before,
  .crm-contact-subtitle::after {
    width: 22px;
    height: 1.5px;
  }

  .crm-contact-heading h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .crm-contact-heading p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  /* Form */

  .crm-contact-form-card {
    padding: 24px 20px;
    margin-bottom: 0;
    border-radius: 17px;
  }

  .crm-field label {
    font-size: 10.5px;
  }

  .crm-field input,
  .crm-field textarea {
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .crm-field textarea {
    min-height: 100px;
  }

  .crm-contact-btn {
    padding: 11px 24px;
    font-size: 0.85rem;
  }

  /* Map */

  .crm-contact-map {
    height: 210px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  /* Contact info */

  .crm-contact-info {
    gap: 9px;
  }

  .crm-contact-info-item {
    padding: 11px 13px;
    gap: 11px;
    border-radius: 13px;
  }

  .crm-contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .crm-contact-info-text h6 {
    font-size: 12.5px;
  }

  .crm-contact-info-text p {
    font-size: 11.5px;
  }
}


@media (min-width: 540px) and (max-width: 767.98px) {
  .crm-contact {
    padding: 65px 0 60px;
  }

  .crm-contact-heading {
    max-width: 550px;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .crm-contact-subtitle {
    font-size: 0.63rem;
    letter-spacing: 2px;
    gap: 7px;
    margin-bottom: 9px;
  }

  .crm-contact-subtitle::before,
  .crm-contact-subtitle::after {
    width: 20px;
  }

  .crm-contact-heading h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .crm-contact-heading p {
    font-size: 12.8px;
    line-height: 1.65;
  }

  /* -----------------------------------------
     FORM
     ----------------------------------------- */

  .crm-contact-form-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .crm-contact-form-card .row.g-3 {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 13px;
  }

  .crm-field label {
    font-size: 9.8px;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
  }

  .crm-field .crm-input-wrap i {
    left: 12px;
    font-size: 13px;
  }

  .crm-field input,
  .crm-field textarea {
    border-radius: 9px;
    font-size: 12.5px;
    padding: 10px 12px 10px 34px;
  }

  .crm-field textarea {
    padding-left: 12px;
    min-height: 90px;
  }

  .crm-contact-btn {
    padding: 10px 22px;
    font-size: 0.82rem;
  }

  /* -----------------------------------------
     MAP
     ----------------------------------------- */

  .crm-contact-map {
    height: 190px;
    margin-top: 0;
    margin-bottom: 13px;
    border-radius: 15px;
  }

  /* -----------------------------------------
     INFO
     ----------------------------------------- */

  .crm-contact-info {
    gap: 8px;
  }

  .crm-contact-info-item {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .crm-contact-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 14px;
  }

  .crm-contact-info-text h6 {
    font-size: 12px;
  }

  .crm-contact-info-text p {
    font-size: 10.8px;
    line-height: 1.45;
  }
}

/* =========================================================
   MOBILE
   400px — 539px
   ========================================================= */

@media (max-width: 539.98px) {
  .crm-contact {
    padding: 58px 0 50px;
  }

  .crm-contact-heading {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 28px;
  }

  .crm-contact-subtitle {
    font-size: 0.6rem;
    letter-spacing: 1.7px;
    gap: 7px;
    margin-bottom: 9px;
  }

  .crm-contact-subtitle::before,
  .crm-contact-subtitle::after {
    width: 18px;
    height: 1.5px;
  }

  .crm-contact-heading h2 {
    font-size: 26px;
    line-height: 1.18;
    margin-bottom: 8px;
  }

  .crm-contact-heading p {
    font-size: 12.8px;
    line-height: 1.6;
  }

  /* -----------------------------------------
     FORM CARD
     ----------------------------------------- */

  .crm-contact-form-card {
    padding: 20px 16px;
    border-radius: 15px;
  }

  .crm-contact-form-card .row.g-3 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 13px;
  }

  /*
     Stack all fields on small phones.
  */

  .crm-contact-form-card .col-md-6 {
    width: 100%;
  }

  .crm-field label {
    font-size: 9.8px;
    margin-bottom: 5px;
  }

  .crm-field .crm-input-wrap i {
    left: 12px;
    font-size: 13px;
  }

  .crm-field input,
  .crm-field textarea {
    width: 100%;
    min-height: 42px;
    border-radius: 9px;
    font-size: 12.5px;
    padding: 10px 12px 10px 34px;
  }

  .crm-field textarea {
    min-height: 105px;
    padding-left: 12px;
  }

  .crm-contact-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    font-size: 0.82rem;
    border-radius: 25px;
  }

  /* -----------------------------------------
     MAP
     ----------------------------------------- */

  .crm-contact-map {
    width: 100%;
    height: 210px;
    margin-top: 0;
    margin-bottom: 12px;
    border-radius: 14px;
  }

  /* -----------------------------------------
     CONTACT INFO
     ----------------------------------------- */

  .crm-contact-info {
    gap: 8px;
  }

  .crm-contact-info-item {
    align-items: flex-start;
    padding: 11px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .crm-contact-info-icon {
    width: 35px;
    height: 35px;
    border-radius: 9px;
    font-size: 14px;
  }

  .crm-contact-info-text {
    min-width: 0;
  }

  .crm-contact-info-text h6 {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .crm-contact-info-text p {
    font-size: 10.8px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
}

/* =========================================================
   SMALL PHONES
   350px — 399px
   ========================================================= */

@media (max-width: 399.98px) {
  .crm-contact {
    padding: 52px 0 44px;
  }

  .crm-contact-heading {
    padding: 0 12px;
    margin-bottom: 25px;
  }

  .crm-contact-subtitle {
    font-size: 0.56rem;
    letter-spacing: 1.4px;
    gap: 6px;
  }

  .crm-contact-subtitle::before,
  .crm-contact-subtitle::after {
    width: 15px;
  }

  .crm-contact-heading h2 {
    font-size: 24px;
  }

  .crm-contact-heading p {
    font-size: 12px;
    line-height: 1.55;
  }

  .crm-contact-form-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .crm-contact-form-card .row.g-3 {
    --bs-gutter-y: 11px;
  }

  .crm-field label {
    font-size: 9.2px;
  }

  .crm-field input,
  .crm-field textarea {
    font-size: 12px;
    min-height: 40px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .crm-field textarea {
    min-height: 95px;
  }

  .crm-contact-btn {
    min-height: 42px;
    font-size: 0.78rem;
    padding: 10px 18px;
  }

  .crm-contact-map {
    height: 185px;
    border-radius: 13px;
  }

  .crm-contact-info-item {
    padding: 10px;
    gap: 9px;
  }

  .crm-contact-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 13px;
  }

  .crm-contact-info-text h6 {
    font-size: 11.5px;
  }

  .crm-contact-info-text p {
    font-size: 10px;
    line-height: 1.45;
  }
}

/* =========================================================
   VERY SMALL PHONES
   BELOW 350px
   ========================================================= */

@media (max-width: 349.98px) {
  .crm-contact {
    padding: 45px 0 40px;
  }

  .crm-contact-heading {
    padding: 0 10px;
    margin-bottom: 22px;
  }

  .crm-contact-subtitle {
    font-size: 0.52rem;
    letter-spacing: 1.2px;
  }

  .crm-contact-subtitle::before,
  .crm-contact-subtitle::after {
    width: 13px;
  }

  .crm-contact-heading h2 {
    font-size: 22px;
  }

  .crm-contact-heading p {
    font-size: 11.5px;
  }

  .crm-contact-form-card {
    padding: 16px 12px;
    border-radius: 13px;
  }

  .crm-field label {
    font-size: 8.8px;
  }

  .crm-field .crm-input-wrap i {
    left: 10px;
    font-size: 12px;
  }

  .crm-field input,
  .crm-field textarea {
    font-size: 11.5px;
    padding-left: 30px;
  }

  .crm-field textarea {
    padding-left: 10px;
    min-height: 90px;
  }

  .crm-contact-btn {
    min-height: 40px;
    font-size: 0.74rem;
  }

  .crm-contact-map {
    height: 165px;
  }

  .crm-contact-info-item {
    padding: 9px;
  }

  .crm-contact-info-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .crm-contact-info-text h6 {
    font-size: 10.8px;
  }

  .crm-contact-info-text p {
    font-size: 9.4px;
  }
}

/* =========================================================
   MOBILE LANDSCAPE
   ========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {
  .crm-contact {
    padding: 55px 0;
  }

  .crm-contact-heading h2 {
    font-size: 27px;
  }

  .crm-contact-heading p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .crm-contact-form-card {
    padding: 20px;
  }

  .crm-contact-map {
    height: 180px;
  }
}

/* =========================================================
   TABLET LANDSCAPE
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  .crm-contact {
    padding: 70px 0;
  }

  .crm-contact-heading {
    margin-bottom: 32px;
  }

  .crm-contact-form-card {
    padding: 22px;
  }

  .crm-contact-map {
    height: 185px;
  }
}

/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover: none) {
  .crm-contact-info-item:hover {
    transform: none;
    border-color: rgba(13, 13, 15, 0.08);
  }

  .crm-contact-btn:hover {
    transform: none;
    background: var(--gold);
    color: var(--ink);
  }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .crm-contact-info-item,
  .crm-contact-btn,
  .crm-field input,
  .crm-field textarea {
    transition: none !important;
  }
}

/* =========================================================
   SAFE AREA FOR MODERN PHONES
   ========================================================= */

@supports (padding: max(0px)) {
  @media (max-width: 767.98px) {
    .crm-contact {
      padding-bottom: max(50px, env(safe-area-inset-bottom));
    }
  }
}

.ceft-footer {
  --ceft-black: #0b0705;
  --ceft-maroon: #3a0f12;
  --ceft-maroon-2: #210a0c;
  --ceft-gold: #cf9a4c;
  --ceft-gold-light: #e6c489;
  --ceft-cream: #f3ece1;
  --ceft-muted: #a9998e;
  --ceft-line: rgba(207, 154, 76, 0.22);

  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 100%,
      rgba(207, 154, 76, 0.1),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      var(--ceft-maroon) 0%,
      var(--ceft-maroon-2) 38%,
      var(--ceft-black) 72%
    );
  color: var(--ceft-cream);
  font-family: "Manrope", sans-serif;
  padding: 5rem 1.5rem 0 1.5rem;
  box-sizing: border-box;
}
.ceft-footer * {
  box-sizing: border-box;
}

.ceft-motif {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 420px;
  height: 420px;
  opacity: 0.1;
  pointer-events: none;
}

.ceft-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.ceft-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.1fr 1.4fr;
  gap: 2.5rem;
}
.ceft-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.ceft-logo img {
  width: 180px; /* Adjust as needed */
  height: auto;
  display: block;
  object-fit: contain;
}

.ceft-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ceft-gold);
  margin: 0 0 1.4rem 0;
}
.ceft-eyebrow::before {
  content: "// ";
  color: var(--ceft-gold-light);
}

.ceft-contact {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ceft-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.9rem 0;
}
.ceft-contact i {
  color: var(--ceft-gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}
.ceft-contact a {
  color: var(--ceft-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ceft-contact a:hover {
  color: var(--ceft-gold-light);
}

.ceft-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding: 0;
  list-style: none;
}
.ceft-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ceft-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ceft-gold-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.02);
}
.ceft-social a:hover {
  background: var(--ceft-gold);
  color: var(--ceft-black);
  border-color: var(--ceft-gold);
  transform: translateY(-3px);
}

.ceft-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ceft-links li {
  margin-bottom: 0.85rem;
}
.ceft-links a {
  color: var(--ceft-muted);
  text-decoration: none;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.ceft-links a::before {
  content: "›";
  color: var(--ceft-gold);
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.ceft-links a:hover {
  color: var(--ceft-gold-light);
  padding-left: 2px;
}
.ceft-links a:hover::before {
  transform: translateX(3px);
}

.ceft-news-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ceft-cream);
  margin: 0 0 0.6rem 0;
}
.ceft-news-sub {
  color: var(--ceft-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}

.ceft-form {
  display: flex;
  margin-top: 1.2rem;
}
.ceft-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ceft-line);
  color: var(--ceft-cream);
  padding: 0.72rem 1rem;
  border-radius: 6px 0 0 6px;
  font-size: 0.9rem;
  font-family: "Manrope", sans-serif;
  outline: none;
  min-width: 0;
}
.ceft-input::placeholder {
  color: var(--ceft-muted);
}
.ceft-input:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--ceft-gold);
}
.ceft-btn {
  background: var(--ceft-gold);
  border: 1px solid var(--ceft-gold);
  color: var(--ceft-black);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.72rem 1.6rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.ceft-btn:hover {
  background: var(--ceft-gold-light);
}

.ceft-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.ceft-consent input {
  accent-color: #cf9a4c;
  margin-top: 0.2rem;
}
.ceft-consent label {
  color: var(--ceft-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.ceft-divider {
  border: none;
  border-top: 1px solid var(--ceft-line);
  margin: 3.2rem 0 1.6rem 0;
}

.ceft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-bottom: 1.8rem;
  font-size: 0.82rem;
  color: var(--ceft-muted);
}
.ceft-bottom-links a {
  color: var(--ceft-muted);
  text-decoration: none;
  margin-left: 1.6rem;
}
.ceft-bottom-links a:hover {
  color: var(--ceft-gold-light);
}
.ceft-bottom strong {
  color: var(--ceft-gold-light);
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .ceft-footer {
    padding: 4.5rem 1.5rem 0;
  }

  .ceft-inner {
    max-width: 100%;
  }

  .ceft-grid {
    grid-template-columns: 1.45fr 0.9fr 1.05fr 1.25fr;
    gap: 2rem;
  }

  .ceft-logo img {
    width: 165px;
  }

  .ceft-contact {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .ceft-eyebrow {
    font-size: 0.68rem;
    margin-bottom: 1.2rem;
  }

  .ceft-links li {
    margin-bottom: 0.7rem;
  }

  .ceft-links a {
    font-size: 0.88rem;
  }

  .ceft-news-title {
    font-size: 1.4rem;
  }

  .ceft-news-sub {
    font-size: 0.84rem;
  }

  .ceft-form {
    width: 100%;
  }

  .ceft-input,
  .ceft-btn {
    font-size: 0.84rem;
  }

  .ceft-motif {
    width: 360px;
    height: 360px;
    right: -80px;
    bottom: -90px;
    opacity: 0.08;
  }
}

/* =========================================================
   TABLET
   768px — 991px
   ========================================================= */

@media (max-width: 991.98px) {
  .ceft-footer {
    padding: 4.2rem 1.4rem 0;
  }

  .ceft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.2rem;
    row-gap: 3rem;
  }

  .ceft-logo img {
    width: 165px;
  }

  .ceft-contact {
    font-size: 0.86rem;
    max-width: 360px;
  }

  .ceft-eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.14em;
  }

  .ceft-links a {
    font-size: 0.87rem;
  }

  .ceft-news-title {
    font-size: 1.45rem;
  }

  .ceft-news-sub {
    font-size: 0.84rem;
    max-width: 310px;
  }

  .ceft-form {
    max-width: 360px;
  }

  .ceft-input {
    min-width: 0;
    font-size: 0.82rem;
    padding: 0.7rem 0.85rem;
  }

  .ceft-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.82rem;
  }

  .ceft-divider {
    margin: 2.8rem 0 1.4rem;
  }

  .ceft-bottom {
    font-size: 0.78rem;
  }

  .ceft-bottom-links a {
    margin-left: 1rem;
  }

  .ceft-motif {
    width: 320px;
    height: 320px;
    right: -100px;
    bottom: -90px;
    opacity: 0.07;
  }
}


@media (min-width: 540px) and (max-width: 767.98px) {
  .ceft-footer {
    padding: 3.8rem 1.25rem 0;
  }

  .ceft-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.8rem;
    row-gap: 2.7rem;
  }

  .ceft-logo {
    margin-bottom: 1rem;
  }

  .ceft-logo img {
    width: 150px;
  }

  .ceft-contact {
    font-size: 0.78rem;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
  }

  .ceft-contact i {
    width: 0.9rem;
  }

  .ceft-social {
    gap: 0.55rem;
    margin-top: 1.1rem;
  }

  .ceft-social a {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .ceft-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    margin-bottom: 1rem;
  }

  .ceft-links li {
    margin-bottom: 0.6rem;
  }

  .ceft-links a {
    font-size: 0.78rem;
    gap: 0.4rem;
  }

  .ceft-links a::before {
    font-size: 0.95rem;
  }

  .ceft-news-title {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .ceft-news-sub {
    font-size: 0.76rem;
    line-height: 1.55;
    max-width: 270px;
  }

  .ceft-form {
    max-width: 100%;
    margin-top: 1rem;
  }

  .ceft-input {
    font-size: 0.76rem;
    padding: 0.65rem 0.75rem;
  }

  .ceft-btn {
    padding: 0.65rem 1rem;
    font-size: 0.76rem;
  }

  .ceft-consent {
    gap: 0.4rem;
    margin-top: 0.7rem;
  }

  .ceft-consent label {
    font-size: 0.7rem;
  }

  .ceft-divider {
    margin: 2.5rem 0 1.3rem;
  }

  .ceft-bottom {
    font-size: 0.7rem;
    gap: 0.6rem;
  }

  .ceft-bottom-links {
    display: flex;
    gap: 0.8rem;
  }

  .ceft-bottom-links a {
    margin: 0;
  }

  .ceft-motif {
    width: 280px;
    height: 280px;
    right: -100px;
    bottom: -80px;
    opacity: 0.06;
  }
}

/* =========================================================
   MOBILE
   400px — 539px
   ========================================================= */

@media (max-width: 539.98px) {
  .ceft-footer {
    padding: 3.5rem 1rem 0;
  }

  .ceft-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .ceft-logo {
    margin-bottom: 1rem;
  }

  .ceft-logo img {
    width: 155px;
    max-width: 100%;
  }

  .ceft-contact {
    font-size: 0.82rem;
    line-height: 1.5;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
  }

  .ceft-contact span,
  .ceft-contact a {
    overflow-wrap: anywhere;
  }

  .ceft-social {
    margin-top: 1.1rem;
    gap: 0.6rem;
  }

  .ceft-social a {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .ceft-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
  }

  .ceft-links li {
    margin-bottom: 0.65rem;
  }

  .ceft-links a {
    font-size: 0.83rem;
  }

  .ceft-news-title {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .ceft-news-sub {
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 100%;
  }

  /* Newsletter */

  .ceft-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 1rem;
  }

  .ceft-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    font-size: 0.8rem;
    padding: 0.72rem 0.8rem;
    border-radius: 6px 0 0 6px;
  }

  .ceft-btn {
    flex: 0 0 auto;
    margin-top: 0;
    padding: 0.72rem 1.1rem;
    font-size: 0.8rem;
    border-radius: 0 6px 6px 0;
  }

  .ceft-consent {
    gap: 0.45rem;
    margin-top: 0.8rem;
  }

  .ceft-consent input {
    flex-shrink: 0;
  }

  .ceft-consent label {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  /* Bottom */

  .ceft-divider {
    margin: 2.5rem 0 1.3rem;
  }

  .ceft-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    font-size: 0.72rem;
    line-height: 1.5;
    padding-bottom: 1.5rem;
  }

  .ceft-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .ceft-bottom-links a {
    margin: 0;
    font-size: 0.72rem;
  }

  .ceft-motif {
    width: 250px;
    height: 250px;
    right: -105px;
    bottom: -75px;
    opacity: 0.055;
  }
}

/* =========================================================
   SMALL PHONES
   350px — 399px
   ========================================================= */

@media (max-width: 399.98px) {
  .ceft-footer {
    padding: 3rem 0.9rem 0;
  }

  .ceft-grid {
    gap: 2rem;
  }

  .ceft-logo img {
    width: 145px;
  }

  .ceft-contact {
    font-size: 0.76rem;
    gap: 0.5rem;
    line-height: 1.5;
  }

  .ceft-contact i {
    width: 0.85rem;
    font-size: 0.85rem;
  }

  .ceft-social {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .ceft-social a {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }

  .ceft-eyebrow {
    font-size: 0.59rem;
    letter-spacing: 0.12em;
  }

  .ceft-links li {
    margin-bottom: 0.55rem;
  }

  .ceft-links a {
    font-size: 0.77rem;
  }

  .ceft-news-title {
    font-size: 1.22rem;
  }

  .ceft-news-sub {
    font-size: 0.74rem;
    line-height: 1.55;
  }

  .ceft-form {
    margin-top: 0.9rem;
  }

  .ceft-input {
    font-size: 0.74rem;
    padding: 0.66rem 0.7rem;
  }

  .ceft-btn {
    font-size: 0.74rem;
    padding: 0.66rem 0.9rem;
  }

  .ceft-consent label {
    font-size: 0.67rem;
  }

  .ceft-divider {
    margin: 2.2rem 0 1.2rem;
  }

  .ceft-bottom {
    font-size: 0.67rem;
  }

  .ceft-bottom-links a {
    font-size: 0.67rem;
  }

  .ceft-motif {
    width: 220px;
    height: 220px;
    right: -95px;
    bottom: -65px;
  }
}

/* =========================================================
   VERY SMALL PHONES
   BELOW 350px
   ========================================================= */

@media (max-width: 349.98px) {
  .ceft-footer {
    padding: 2.7rem 0.75rem 0;
  }

  .ceft-grid {
    gap: 1.8rem;
  }

  .ceft-logo img {
    width: 135px;
  }

  .ceft-contact {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .ceft-social {
    gap: 0.45rem;
  }

  .ceft-social a {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .ceft-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .ceft-links a {
    font-size: 0.72rem;
  }

  .ceft-links a::before {
    font-size: 0.9rem;
  }

  .ceft-news-title {
    font-size: 1.12rem;
  }

  .ceft-news-sub {
    font-size: 0.69rem;
  }

  .ceft-form {
    flex-direction: column;
    gap: 8px;
  }

  .ceft-input {
    width: 100%;
    border-radius: 6px;
    font-size: 0.72rem;
  }

  .ceft-btn {
    width: 100%;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    font-size: 0.72rem;
  }

  .ceft-consent label {
    font-size: 0.62rem;
  }

  .ceft-divider {
    margin: 2rem 0 1rem;
  }

  .ceft-bottom {
    font-size: 0.62rem;
  }

  .ceft-bottom-links {
    gap: 0.6rem;
  }

  .ceft-bottom-links a {
    font-size: 0.62rem;
  }

  .ceft-motif {
    width: 190px;
    height: 190px;
    right: -85px;
    bottom: -55px;
    opacity: 0.045;
  }
}

/* =========================================================
   MOBILE LANDSCAPE
   ========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {
  .ceft-footer {
    padding-top: 3rem;
  }

  .ceft-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.8rem;
    row-gap: 2.2rem;
  }

  .ceft-logo img {
    width: 140px;
  }

  .ceft-contact {
    font-size: 0.72rem;
  }

  .ceft-links a {
    font-size: 0.75rem;
  }

  .ceft-news-title {
    font-size: 1.2rem;
  }

  .ceft-news-sub {
    font-size: 0.72rem;
  }

  .ceft-form {
    flex-direction: row;
  }

  .ceft-input {
    border-radius: 6px 0 0 6px;
  }

  .ceft-btn {
    width: auto;
    border-radius: 0 6px 6px 0;
  }

  .ceft-bottom {
    flex-direction: row;
    text-align: left;
  }

  .ceft-motif {
    width: 220px;
    height: 220px;
  }
}

/* =========================================================
   TABLET LANDSCAPE
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  .ceft-footer {
    padding-top: 4rem;
  }

  .ceft-grid {
    grid-template-columns: 1.3fr 0.9fr 1fr 1.25fr;
    gap: 1.7rem;
  }

  .ceft-contact {
    font-size: 0.78rem;
  }

  .ceft-links a {
    font-size: 0.8rem;
  }

  .ceft-news-title {
    font-size: 1.3rem;
  }

  .ceft-news-sub {
    font-size: 0.76rem;
  }

  .ceft-motif {
    width: 280px;
    height: 280px;
  }
}

/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover: none) {
  .ceft-social a:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--ceft-gold-light);
    border-color: var(--ceft-line);
    transform: none;
  }

  .ceft-links a:hover {
    color: var(--ceft-muted);
    padding-left: 0;
  }

  .ceft-links a:hover::before {
    transform: none;
  }

  .ceft-contact a:hover {
    color: var(--ceft-muted);
  }

  .ceft-btn:hover {
    background: var(--ceft-gold);
  }
  .ceft-bottom-links a:hover {
    color: var(--ceft-muted);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .ceft-social a,
  .ceft-links a,
  .ceft-contact a,
  .ceft-btn {
    transition: none !important;
  }
}

@supports (padding: max(0px)) {
  @media (max-width: 767.98px) {
    .ceft-footer {
      padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
  }
}
.events {
  --ev-bg: var(--cream);
  --ev-accent: var(--gold-deep);
  --ev-heading: var(--ink);
  --ev-body: #6b6b72;
  --ev-dim: #a39c8f;
  --ev-border: rgba(13, 13, 15, 0.08);
  --autoplay-duration: 6s;
  position: relative;
  width: 100%;
  background: var(--ev-bg);
  padding: 47px 0;
  overflow: hidden;
  z-index: 1;
}

.events::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle at center,
    rgba(240, 180, 41, 0.1),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.events::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle at center,
    rgba(240, 180, 41, 0.06),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.events > .container {
  position: relative;
  z-index: 2;
}
.events-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}

.events .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.events .eyebrow .line {
  width: 42px;
  height: 2px;
  background: var(--gold-deep);
}

.events h1.heading {
  color: var(--ink);
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
}
.events .slider-wrap {
  position: relative;
  z-index: 2;
}

.events .slide {
  display: none;
}

.events .slide.active {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  animation: eventSlideIn 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* =========================================================
   SLIDE ANIMATION
   ========================================================= */

@keyframes eventSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.events .media-frame {
  position: relative;
  width: 100%;
}

.events .media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 13.2;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(240, 180, 41, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #f1ede4, #e6e0d3);
  box-shadow:
    0 24px 56px -20px rgba(13, 13, 15, 0.16),
    0 0 0 1px var(--ev-border);
}

/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.events .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.32) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.events .media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.events .media:hover img {
  transform: scale(1.025);
}

.events .media-caption {
  position: absolute;

  left: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.events .content {
  position: relative;
  z-index: 2;
}

/* =========================================================
   EVENT TITLE
   ========================================================= */

.events .content h2 {
  color: var(--ink);
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0 0 20px;
}

.events .content h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 12px;
  background: var(--gold-deep);
  border-radius: 10px;
}

.events .content p {
  color: #6b6b72;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0 0 16px;
}

.events .content p:last-child {
  margin-bottom: 0;
}

.events .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ev-border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ev-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 26px -10px rgba(28, 26, 23, 0.22);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.events .arrow:hover {
  background: var(--ev-accent);
  border-color: var(--ev-accent);
  color: #ffffff;
  box-shadow: 0 12px 28px -8px rgba(184, 134, 46, 0.4);
}

.events .arrow:active {
  transform: translateY(-50%) scale(0.9);
}

.events .arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  outline-color: var(--ev-accent);
}

.events .arrow svg {
  width: 16px;
  height: 16px;
}

.events .arrow.prev {
  left: -77px;
}

.events .arrow.next {
  left: 205%;
}

/* =========================================================
   META ROW
   ========================================================= */

.events .meta-row-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  margin-top: 56px;
}

.events .meta-row {
  grid-column: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   PROGRESS
   ========================================================= */

.events .progress-track {
  position: relative;
  display: flex;
  gap: 8px;
  width: 150px;
}

.events .progress-seg {
  position: relative;
  flex: 1;
  height: 2px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: var(--ev-border);
  cursor: pointer;
  overflow: hidden;
}

.events .progress-seg::after {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: var(--ev-accent);
}

.events .progress-seg.done::after {
  width: 100%;
}

.events .progress-seg.filling::after {
  animation: fillEventSegment var(--autoplay-duration) linear forwards;
}

.events.paused .progress-seg.filling::after {
  animation-play-state: paused;
}

@keyframes fillEventSegment {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* =========================================================
   PROGRESS FOCUS
   ========================================================= */

.events .progress-seg:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  outline-color: var(--ev-accent);
}

.events .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   COUNTER
   ========================================================= */

.events .counter {
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--ev-dim);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  margin-left: 24px;
}

.events .counter .current {
  color: var(--ev-accent);

  font-weight: 600;
}

@media (max-width: 991.98px) {
  .events {
    padding: 80px 0;
  }
  .events-heading {
    margin-bottom: 45px;
  }
  .events h1.heading {
    font-size: 36px;
  }
  .events .slide.active {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .events .content h2 {
    font-size: 28px;
  }
  .events .content p {
    font-size: 14px;
    line-height: 1.7;
  }
  .events .media {
    aspect-ratio: 4 / 3;
  }
  .events .arrow {
    width: 40px;
    height: 40px;
  }
  .events .arrow.prev {
    left: 10px;
  }
  .events .arrow.next {
    right: 10px;
  }
  .events .meta-row-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 45px;
  }
  .events .meta-row {
    grid-column: 2 / 3;
  }
}
@media (min-width: 540px) and (max-width: 767.98px) {
  .events {
    padding: 70px 0;
  }
  .events-heading {
    margin-bottom: 35px;
    text-align: center;
  }
  .events .eyebrow {
    justify-content: center;
  }
  .events .eyebrow .line {
    display: none;
  }
  .events h1.heading {
    font-size: 32px;
  }
  .events .slide.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
  }
  .events .media {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 15px;
  }

  .events .media-caption {
    left: 16px;
    bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .events .content {
    width: 100%;
  }
  .events .content h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .events .content p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 12px;
  }
  .events .arrow {
    width: 38px;
    height: 38px;
  }
  .events .arrow.prev {
    left: 10px;
  }
  .events .arrow.next {
    right: 10px;
  }
  .events .meta-row-wrap {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 35px;
  }

  .events .meta-row {
    grid-column: 1 / 2;
    width: 100%;
  }
}
@media (max-width: 539.98px) {
  .events {
    padding: 65px 0 55px;
    overflow: hidden;
  }
  .events-heading {
    margin-bottom: 30px;
    text-align: center;
  }
  .events .eyebrow {
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  .events .eyebrow .line {
    display: none;
  }
  .events h1.heading {
    font-size: 28px;
    line-height: 1.15;
  }
  .events .slider-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .events .slider-wrap::-webkit-scrollbar {
    display: none;
  }

  .events .slide,
  .events .slide.active {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    gap: 24px;
    margin: 0;
    padding: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    animation: none;
  }

  /* =======================================================
     IMAGE
     ======================================================= */
  .events .media-frame {
    width: 100%;
    flex-shrink: 0;
  }

  .events .media {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 13px;
    box-shadow:
      0 18px 40px -18px rgba(13, 13, 15, 0.18),
      0 0 0 1px var(--ev-border);
  }

  .events .media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: none !important;
  }

  .events .media-caption {
    left: 13px;
    bottom: 12px;
    max-width: calc(100% - 26px);
    font-size: 8.5px;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }
  .events .content {
    width: 100%;
    padding: 0 2px;
  }

  .events .content h2 {
    font-size: 25px;
    line-height: 1.15;
    margin: 0 0 17px;
  }

  .events .content h2::after {
    width: 34px;
    height: 2px;
    margin-top: 9px;
  }

  .events .content p {
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0 0 13px;
  }

  /* =======================================================
     ARROWS
     ======================================================= */

  .events .arrow {
    width: 36px;
    height: 36px;
    top: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .events .arrow.prev {
    left: 8px;
  }
  .events .arrow.next {
    right: 8px;
  }
  .events .arrow svg {
    width: 13px;
    height: 13px;
  }

  /* =======================================================
     PROGRESS / COUNTER
     ======================================================= */

  .events .meta-row-wrap {
    display: block;
    width: 100%;
    margin-top: 30px;
  }

  .events .meta-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .events .progress-track {
    width: 125px;
    gap: 6px;
  }

  .events .progress-seg {
    height: 2px;
  }

  .events .counter {
    margin-left: 12px;
    font-size: 10px;
  }
}

/* =========================================================
   SMALL MOBILE
   BELOW 400px
   ========================================================= */

@media (max-width: 399.98px) {
  .events {
    padding: 55px 0 48px;
  }
  .events-heading {
    margin-bottom: 26px;
  }
  .events .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 1.7px;
  }
  .events h1.heading {
    font-size: 25px;
  }
  .events .slide,
  .events .slide.active {
    gap: 21px;
  }
  .events .media {
    aspect-ratio: 16 / 11.5;
    border-radius: 12px;
  }
  .events .media-caption {
    left: 11px;
    bottom: 10px;
    font-size: 7.5px;
    letter-spacing: 0.08em;
  }
  .events .content h2 {
    font-size: 23px;
    margin-bottom: 15px;
  }
  .events .content p {
    font-size: 12.5px;
    line-height: 1.65;
    margin-bottom: 11px;
  }
  .events .arrow {
    width: 34px;
    height: 34px;
  }
  .events .arrow.prev {
    left: 7px;
  }
  .events .arrow.next {
    right: 7px;
  }
  .events .progress-track {
    width: 105px;
    gap: 5px;
  }
  .events .counter {
    font-size: 9px;
  }
}

@media (max-width: 349.98px) {
  .events {
    padding: 48px 0 42px;
  }
  .events h1.heading {
    font-size: 23px;
  }
  .events .slide,
  .events .slide.active {
    gap: 18px;
  }
  .events .media {
    aspect-ratio: 16 / 12;
  }
  .events .content h2 {
    font-size: 21px;
  }
  .events .content p {
    font-size: 11.8px;
    line-height: 1.6;
  }
  .events .arrow {
    width: 32px;
    height: 32px;
  }
  .events .arrow svg {
    width: 12px;
    height: 12px;
  }
  .events .progress-track {
    width: 90px;
  }
}

/* =========================================================
   MOBILE LANDSCAPE
   ========================================================= */

@media (max-width: 767.98px) and (orientation: landscape) {
  .events {
    padding: 55px 0;
  }

  .events .slide,
  .events .slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
  }

  .events .media {
    aspect-ratio: 16 / 11;
  }

  .events .content h2 {
    font-size: 23px;
  }

  .events .content p {
    font-size: 12px;
    line-height: 1.55;
  }
}

/* =========================================================
   TABLET LANDSCAPE
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
  .events {
    padding: 75px 0;
  }

  .events .slide.active {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
  }

  .events .media {
    aspect-ratio: 16 / 12;
  }

  .events .content h2 {
    font-size: 27px;
  }

  .events .content p {
    font-size: 13px;
    line-height: 1.65;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .events .slider-wrap {
    scroll-behavior: auto;
  }

  .events .slide,
  .events .slide.active {
    animation: none !important;
  }

  .events .media img {
    transition: none !important;
  }

  .events .progress-seg.filling::after {
    animation: none !important;
  }
}
