:root {
  --black: #0d0b0b;
  --dark: #141212;
  --red: #be1e2d;
  --red-bright: #d4202f;
  --red-dim: #7a1220;
  --cream: #edf0da;
  --navy: #273043;
  --text: #ece8df;
  --muted: #7a7570;
  --line: rgba(237, 240, 218, 0.07);
  --surface: rgba(255, 255, 255, 0.025);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-variant-numeric: lining-nums;
  font-family: "Outfit", sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

#particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 100% 60% at 50% 0%,
      rgba(190, 30, 45, 0.38) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 60% at 0% 60%,
      rgba(190, 30, 45, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 50% at 100% 100%,
      rgba(190, 30, 45, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 40% at 50% 100%,
      rgba(39, 48, 67, 0.45) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0d0b0b 0%, #100d0d 60%, #0e0c10 100%);
}

header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}
.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* SCROLL REVEAL */
.sr {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sr.sr-left {
  transform: translateX(-50px);
}
.sr.sr-right {
  transform: translateX(50px);
}
.sr.sr-scale {
  transform: scale(0.93) translateY(20px);
}
.sr.in {
  opacity: 1;
  transform: none;
}
.sr-d1 {
  transition-delay: 0.08s;
}
.sr-d2 {
  transition-delay: 0.16s;
}
.sr-d3 {
  transition-delay: 0.24s;
}
.sr-d4 {
  transition-delay: 0.32s;
}

/* PAGE LOAD ANIMATIONS */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-load-d1 {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.08s;
}
.page-load-d2 {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.18s;
}
.page-load-d3 {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.28s;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(13, 11, 11, 0.85);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.scrolled {
  background: rgba(18, 16, 16, 0.95);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(190, 30, 45, 0.15);
}
.site-header.scrolled .header-inner {
  padding: 10px 0;
}
.site-header.scrolled .logo-link img {
  transform: scale(0.85);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
  transition: padding 0.35s ease;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link img {
  height: 40px;
  width: auto;
  display: block;
}

/* Fallback text logo in case SVG doesn't load */
.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-text span {
  color: var(--red);
}

.main-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(237, 240, 218, 0.6);
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.btn-contact {
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    background 0.2s,
    box-shadow 0.3s,
    transform 0.2s;
}
.btn-contact:hover {
  background: var(--red-bright);
  box-shadow:
    0 0 28px rgba(190, 30, 45, 0.65),
    0 0 60px rgba(190, 30, 45, 0.25);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s;
}
.hamburger:hover {
  border-color: rgba(190, 30, 45, 0.5);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.25s ease,
    background 0.2s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--red);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--red);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  z-index: 399;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-tray {
  margin: 0 16px;
  border-radius: 16px;
  background: rgba(18, 15, 15, 0.92);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(190, 30, 45, 0.18);
  box-shadow:
    0 0 0 1px rgba(190, 30, 45, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.55);
  padding: 8px 0 16px;
  overflow: hidden;
}
.mobile-tray::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 20px 16px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 30, 45, 0.55),
    transparent
  );
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0 8px;
  gap: 2px;
}
.mobile-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(237, 240, 218, 0.65);
  padding: 13px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}
.mobile-nav a::after {
  content: "→";
  font-size: 0.8rem;
  color: var(--red);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.mobile-nav a:hover {
  background: rgba(190, 30, 45, 0.08);
  color: #fff;
  padding-left: 22px;
}
.mobile-nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.tray-divider {
  height: 1px;
  margin: 10px 16px;
  background: var(--line);
}
.mobile-cta {
  display: block;
  margin: 4px 8px 0;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
  text-align: center;
  transition:
    background 0.2s,
    box-shadow 0.25s;
}
.mobile-cta:hover {
  background: var(--red-bright);
  box-shadow: 0 0 24px rgba(190, 30, 45, 0.5);
}

/* BUTTONS */
.btn-primary {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    box-shadow 0.3s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow:
    0 0 40px rgba(190, 30, 45, 0.65),
    0 0 80px rgba(190, 30, 45, 0.2);
  transform: translateY(-3px);
}
.btn-primary .arrow {
  transition: transform 0.25s;
}
.btn-primary:hover .arrow {
  transform: translateX(5px);
}
.btn-ghost {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(237, 240, 218, 0.18);
  background: transparent;
  padding: 15px 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(190, 30, 45, 0.6);
  background: rgba(190, 30, 45, 0.08);
  color: #fff;
  box-shadow: 0 0 20px rgba(190, 30, 45, 0.18);
  transform: translateY(-3px);
}

/* PAGE HERO BANNER */
.page-hero {
  padding: 30px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero-orb {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(190, 30, 45, 0.28) 0%,
    rgba(190, 30, 45, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(190, 30, 45, 0.4);
  background: rgba(190, 30, 45, 0.1);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 10px var(--red),
    0 0 20px rgba(190, 30, 45, 0.5);
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow:
      0 0 10px var(--red),
      0 0 20px rgba(190, 30, 45, 0.5);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 4px var(--red);
  }
}
.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--red);
  text-shadow: 0 0 40px rgba(190, 30, 45, 0.5);
  font-variant-numeric: lining-nums;
}
.page-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.75;
}

/* Services Tabs */
.services-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.service-tab {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(237, 240, 218, 0.15);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-tab:hover {
  background: rgba(190, 30, 45, 0.4);
  border-color: rgba(190, 30, 45, 0.6);
  color: #fff;
}

.red-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--red) 30%,
    var(--red) 70%,
    transparent 100%
  );
  opacity: 0.22;
  margin: 0;
}

/* SECTION SHARED */
.section {
  padding: 90px 0;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--red);
}
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}
.section-head {
  margin-bottom: 64px;
}
.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(190, 30, 45, 0.12);
  border: 1px solid rgba(190, 30, 45, 0.15);
  border-radius: 20px;
  overflow: hidden;
}
.service-card {
  background: #141212;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  scroll-margin-top: 100px;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(190, 30, 45, 0.14) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  background: #191515;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 12px var(--red);
}
.service-card:hover::after {
  transform: scaleY(1);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(190, 30, 45, 0.08);
  position: absolute;
  top: 24px;
  right: 28px;
  line-height: 1;
  transition: color 0.35s;
  user-select: none;
}
.service-card:hover .service-num {
  color: rgba(190, 30, 45, 0.2);
}
.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(190, 30, 45, 0.12);
  border: 1px solid rgba(190, 30, 45, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(190, 30, 45, 0.25);
  box-shadow: 0 0 30px rgba(190, 30, 45, 0.4);
  transform: scale(1.08) rotate(-3deg);
}
.service-card:hover .cap-icon-wrap svg,
.why-item:hover .cap-icon-wrap svg {
  transform: rotate(8deg) scale(1.1);
}
.service-card:hover .icon-glow,
.why-item:hover .icon-glow {
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1.4);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color 0.25s;
}
.service-card:hover h3 {
  color: var(--cream);
}
.service-card .service-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  opacity: 0.85;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 300;
}
.service-card ul {
  margin: 14px 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.service-card ul li {
  font-size: 0.88rem;
  color: rgba(237, 240, 218, 0.65);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.service-card ul li::before {
  content: "•";
  color: var(--red);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}
.service-card .list-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 240, 218, 0.45);
  margin: 18px 0 8px;
}
.service-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(190, 30, 45, 0.75);
  border: 1px solid rgba(190, 30, 45, 0.22);
  border-radius: 4px;
  padding: 3px 8px;
  background: rgba(190, 30, 45, 0.06);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.service-card:hover .service-tag {
  background: rgba(190, 30, 45, 0.15);
  color: #ff6b7a;
  border-color: rgba(190, 30, 45, 0.45);
}
.service-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(190, 30, 45, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  flex-shrink: 0;
}
.service-card:hover .service-arrow-btn {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(190, 30, 45, 0.5);
}

/* WHY US SECTION */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
}
.why-item {
  background: #141212;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: background 0.35s;
}
.why-item:hover {
  background: #191414;
}
.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 10px var(--red);
}
.why-item:hover::before {
  transform: scaleX(1);
}
.why-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  width: 72px;
  height: 72px;
}
.why-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.why-item p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* CTA BAND */
.cta-band {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    rgba(190, 30, 45, 0.16) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-box {
  background: linear-gradient(135deg, #201414 0%, #170f0f 50%, #1a1520 100%);
  border: 1px solid rgba(190, 30, 45, 0.28);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(190, 30, 45, 0.08),
    0 0 100px rgba(190, 30, 45, 0.18),
    0 40px 100px rgba(0, 0, 0, 0.55);
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red),
    rgba(255, 100, 120, 0.9),
    var(--red),
    transparent
  );
  opacity: 0.9;
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(190, 30, 45, 0.22) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.05;
}
.cta-box h2 em {
  font-style: italic;
  color: var(--red);
}
.cta-box p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #0d0b0b 0%, #100c0c 100%);
  border-top: 1px solid rgba(190, 30, 45, 0.25);
  color: var(--text);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 -1px 0 rgba(190, 30, 45, 0.1),
    0 -40px 80px rgba(0, 0, 0, 0.5);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red) 30%,
    rgba(255, 100, 120, 0.9) 50%,
    var(--red) 70%,
    transparent
  );
  opacity: 0.65;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    rgba(190, 30, 45, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}
.footer-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: block;
}
.footer-logo-text span {
  color: var(--red);
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 26ch;
  line-height: 1.7;
  font-weight: 300;
}
.footer-col-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-nav {
  display: grid;
  gap: 13px;
}
.footer-nav a {
  font-size: 0.91rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.25s;
  display: inline-block;
}
.footer-nav a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-contact p {
  font-size: 0.91rem;
  color: var(--muted);
  font-weight: 300;
}
.footer-contact p + p {
  margin-top: 10px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(190, 30, 45, 0.5);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.6;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.6;
  text-decoration: none;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.footer-legal a:hover {
  color: var(--red);
  opacity: 1;
}
.footer-legal span {
  color: var(--muted);
  opacity: 0.3;
  font-size: 0.7rem;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .main-nav,
  .btn-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .page-hero {
    padding: 50px 0 60px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 44px 24px;
  }
  .section-head-split {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════
   GLOBAL MOBILE OPTIMIZATIONS
═══════════════════════════════ */
@media (max-width: 768px) {
  html {
    font-size: 15px; /* Slight reduction from base */
  }
  .section {
    padding: 60px 0 !important;
  }
  .section-title {
    font-size: 2.2rem !important; /* Force reduction for standard titles */
  }
  h2.section-title {
    font-size: 2.2rem !important;
  }
  h1.page-load-d1,
  .page-hero h1 {
    font-size: 2.8rem !important;
  }
  .page-hero {
    padding: 40px 0 50px !important;
  }
}
