/* ASTHASIDDHI VINAYAK — Event Planning — Red theme */
:root {
  --red-900: #5c0a12;
  --red-800: #8b1020;
  --red-700: #b31828;
  --red-600: #d42436;
  --red-500: #e83e4f;
  --red-400: #f06b78;
  --cream: #faf6f3;
  --ink: #1a1214;
  --muted: #5c4a4d;
  --white: #ffffff;
  --gold: #c9a227;
  --shadow: 0 24px 60px rgba(92, 10, 18, 0.18);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-hero: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red-700);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

a:hover {
  color: var(--red-500);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--red-700);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  background: linear-gradient(
    180deg,
    rgba(250, 246, 243, 0.97) 0%,
    rgba(250, 246, 243, 0.88) 70%,
    transparent 100%
  );
  backdrop-filter: blur(12px);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(250, 246, 243, 0.98);
  box-shadow: 0 8px 32px rgba(92, 10, 18, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--red-600), var(--red-800));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(180, 24, 40, 0.35);
  animation: pulse-glow 3.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(180, 24, 40, 0.35);
  }
  50% {
    box-shadow: 0 12px 36px rgba(180, 24, 40, 0.5);
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-600), var(--gold));
  transition: width 0.35s var(--ease-out);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--ink);
}

.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  color: var(--white) !important;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(180, 24, 40, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(180, 24, 40, 0.45);
  color: var(--white) !important;
}

.header-cta::after {
  display: none;
}

.header-cta__compact {
  display: none;
}

/* Touch-friendly tap target for phone dialer (iOS / Android) */
.header-cta {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--red-800);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-desktop {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(250, 246, 243, 0.98);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
  }

  .nav-desktop.open {
    transform: translateX(0);
  }

  .nav-desktop a {
    font-size: 1.25rem;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-cta-wrap {
    display: block;
    flex-shrink: 0;
    order: 2;
  }

  .nav-toggle {
    order: 3;
    flex-shrink: 0;
  }

  .nav-desktop {
    order: 4;
  }

  .header-cta {
    padding: 0.6rem 0.95rem;
    font-size: 0.8rem;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .header-cta__full {
    display: none;
  }

  .header-cta__compact {
    display: inline;
  }

  .nav-desktop.open ~ .header-cta-wrap,
  .header-inner .nav-desktop.open + .header-cta-wrap {
    display: block;
  }
}

/* ——— Main ——— */
main {
  padding-top: 88px;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 0.75rem;
  display: inline-block;
  animation: fade-in-up 0.8s var(--ease-out) both;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}

.section-lead {
  max-width: 640px;
  color: var(--muted);
  margin: 0 0 2rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding: 2rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 65% at 15% 20%, rgba(180, 24, 40, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 85% 75%, rgba(201, 162, 39, 0.08) 0%, transparent 45%),
    linear-gradient(
      108deg,
      rgba(12, 8, 10, 0.94) 0%,
      rgba(48, 6, 14, 0.78) 38%,
      rgba(26, 18, 20, 0.42) 72%,
      rgba(18, 12, 14, 0.55) 100%
    );
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(0, 0, 0, 0.55) 0%, transparent 58%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 1000px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) min(300px, 30vw);
  }
}

.hero-content {
  min-width: 0;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 243, 0.55);
  margin: 0 0 0.85rem;
  animation: fade-in-up 0.85s var(--ease-out) 0.05s both;
}

.hero-eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--red-400), var(--gold));
  border-radius: 2px;
  opacity: 0.95;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(250, 246, 243, 0.95);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  animation: fade-in-up 0.9s var(--ease-out) 0.1s both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red-400), var(--red-700));
  box-shadow: 0 0 12px rgba(240, 107, 120, 0.65);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero h1 {
  font-family: var(--font-hero);
  font-optical-sizing: auto;
  font-size: clamp(2.65rem, 6.2vw, 4.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 1.35rem;
  max-width: 13ch;
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
  animation: fade-in-up 0.9s var(--ease-out) 0.2s both;
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: none;
    letter-spacing: -0.028em;
  }

  .hero-eyebrow::after {
    width: 36px;
  }
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 650;
  padding-right: 0.02em;
  background: linear-gradient(
    125deg,
    #fff8f0 0%,
    #ffb8c3 18%,
    #e63e4f 42%,
    #c41e2e 58%,
    #f0d078 85%,
    #fff5e6 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s ease-in-out infinite;
  filter: drop-shadow(0 2px 14px rgba(212, 36, 54, 0.45));
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero p.lead {
  color: rgba(250, 246, 243, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.015em;
  max-width: 36ch;
  margin: 0 0 2rem;
  animation: fade-in-up 0.9s var(--ease-out) 0.35s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fade-in-up 0.9s var(--ease-out) 0.5s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-500), var(--red-800));
  color: var(--white);
  box-shadow: 0 10px 32px rgba(180, 24, 40, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(180, 24, 40, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
  margin-top: 2.75rem;
  max-width: 520px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fade-in-up 1s var(--ease-out) 0.65s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-hero);
  font-optical-sizing: auto;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat span {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(250, 246, 243, 0.58);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-float {
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 300px;
  animation: float-y 6s ease-in-out infinite;
  display: none;
}

@media (min-width: 1000px) {
  .hero-float {
    display: block;
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-float-frame {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  padding: 3px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(212, 36, 54, 0.35) 45%,
    rgba(201, 162, 39, 0.25) 100%
  );
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero-float-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-float img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 62% 28%;
  border-radius: var(--radius);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  padding: 0;
  box-shadow: 0 4px 24px rgba(92, 10, 18, 0.06);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card .thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.service-card:hover .thumb img {
  transform: scale(1.06);
}

.service-card .body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.15rem 1.15rem 1.35rem;
  min-width: 0;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.service-card .icon-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-600), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .icon-line {
  transform: scaleX(1);
}

.services-grid .reveal:nth-child(1) {
  transition-delay: 0s;
}
.services-grid .reveal:nth-child(2) {
  transition-delay: 0.06s;
}
.services-grid .reveal:nth-child(3) {
  transition-delay: 0.12s;
}
.services-grid .reveal:nth-child(4) {
  transition-delay: 0.18s;
}
.services-grid .reveal:nth-child(5) {
  transition-delay: 0.24s;
}
.services-grid .reveal:nth-child(6) {
  transition-delay: 0.3s;
}

/* Split about */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }
}

.about-visual {
  position: relative;
}

.about-visual .main-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual .main-img img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}

.about-visual .float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: float-y 5s ease-in-out infinite;
}

.about-visual .float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--red-600);
}

.about-visual .float-card span {
  font-size: 0.85rem;
  color: var(--muted);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.about-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-500), var(--red-800));
}

/* Gallery marquee */
.gallery-strip {
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.marquee {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.92;
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
}

.marquee img:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(212, 36, 54, 0.06) 50%, var(--cream) 100%);
}

.testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.testimonials-head > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.testimonials-head .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.1vw, 2.85rem);
  line-height: 1.15;
  white-space: nowrap;
}

.testimonials-metrics {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.metric-pill {
  background: var(--white);
  border: 1px solid rgba(212, 36, 54, 0.18);
  border-radius: 999px;
  padding: 0.5rem 0.95rem 0.55rem;
  box-shadow: 0 6px 20px rgba(92, 10, 18, 0.08);
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.metric-pill strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--red-700);
}

.metric-pill span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.testimonial-card {
  background: var(--white);
  padding: 1.4rem 1.3rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 36, 54, 0.12);
  position: relative;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  box-shadow: 0 6px 24px rgba(92, 10, 18, 0.06);
}

.testimonial-card::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(212, 36, 54, 0.1);
  position: absolute;
  top: 0.35rem;
  right: 0.9rem;
}

.testimonial-card:hover {
  border-color: rgba(212, 36, 54, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(92, 10, 18, 0.12);
}

.testimonial-stars {
  color: #d7ad3f;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
}

.testimonial-card blockquote {
  margin: 0 0 1.1rem;
  font-size: 0.96rem;
  color: #3e2f33;
  font-style: normal;
  line-height: 1.65;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial-card .role {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .testimonials-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 1.35rem;
  }

  .testimonials-head .section-title {
    white-space: normal;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA band */
.cta-band {
  margin: 0 1.5rem 3.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.16) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(201, 162, 39, 0.26) 0%, transparent 42%),
    linear-gradient(130deg, #7b0f1f 0%, #b31828 44%, #8e1020 100%);
  background-size: 200% 200%;
  animation: gradient-shift 12s ease infinite;
  box-shadow: 0 20px 50px rgba(92, 10, 18, 0.3);
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.2rem, 4vw, 2.4rem);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.cta-band .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title action"
    "copy action";
  align-items: center;
  gap: 0.5rem 2rem;
  text-align: left;
}

.cta-band h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.13;
  margin: 0 0 0.85rem;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  grid-area: title;
  max-width: 16ch;
}

.cta-band p {
  margin: 0;
  max-width: 62ch;
  opacity: 0.92;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  grid-area: copy;
}

.cta-band .btn-primary {
  background: linear-gradient(145deg, #ffffff 0%, #fff3f4 100%);
  color: var(--red-900);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  grid-area: action;
  justify-self: end;
  white-space: nowrap;
}

.cta-band .btn-primary:hover {
  background: linear-gradient(145deg, #fff8f8 0%, #ffe9ec 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

@media (max-width: 640px) {
  .cta-band {
    margin: 0 1rem 2.4rem;
    border-radius: 16px;
    padding: 2rem 1rem;
  }

  .cta-band::before {
    inset: 8px;
    border-radius: 12px;
  }

  .cta-band p {
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  .cta-band .section-inner {
    max-width: 760px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "copy"
      "action";
    text-align: center;
    justify-items: center;
    gap: 0.65rem;
  }

  .cta-band h2,
  .cta-band p {
    max-width: 100%;
  }

  .cta-band .btn-primary {
    justify-self: center;
  }
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 243, 0.85);
  padding: 3.25rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(150px, 0.75fr) minmax(340px, 1.45fr);
  gap: 2.8rem 2.2rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 2rem;
  }

  .footer-contact {
    grid-column: 1 / -1;
    max-width: 540px;
  }
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-contact {
    display: block;
  }
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(250, 246, 243, 0.65);
  max-width: 36ch;
  line-height: 1.65;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  color: rgba(250, 246, 243, 0.75);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--red-400);
}

.footer-contact p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-contact strong {
  display: inline-block;
  margin-bottom: 0.18rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact h3 {
  margin-bottom: 0.6rem;
}

.footer-contact a {
  color: var(--red-400);
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 0.3s, transform 0.3s;
}

.social-row a:hover {
  background: var(--red-600);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(250, 246, 243, 0.45);
  text-align: center;
}

.footer-bottom__copy {
  margin: 0;
  display: inline-block;
  max-width: 100%;
  line-height: 1.5;
}

.footer-bottom__channel {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4rem;
  vertical-align: middle;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-bottom__channel:hover {
  opacity: 1;
}

.footer-bottom__channel-img {
  height: 25px;
  width: auto;
  display: block;
}
