/* =========================================================
   SUMAN DRESSES — Design Tokens
   Palette derived from brand logo: deep maroon circle, near-black
   ground, vivid yellow monogram, bold red wordmark.
   Type: Cormorant Garamond (display) + Jost (body/UI)
========================================================= */
:root {
  --forest: #7A0A04;
  /* logo maroon — primary brand color */
  --forest-dark: #0D0D0D;
  /* logo black — darkest ground */
  --forest-soft: #4A0A05;
  /* mid maroon — gradient stop */
  --ivory: #FBF6EC;
  --ivory-2: #F3ECDC;
  --gold: #FFD400;
  /* logo yellow — accent (fills, dark-bg text) */
  --gold-light: #FFE666;
  --gold-deep: #B8860B;
  /* readable amber-gold for icons/text on light backgrounds */
  --maroon: #E31C12;
  /* logo red — secondary accent / CTA */
  --maroon-dark: #A81108;
  --ink: #221512;
  --ink-soft: #6b5f58;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow-soft: 0 20px 45px -20px rgba(13, 13, 13, .35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  font-weight: 600;
  letter-spacing: .2px;
}

.ital {
  font-style: italic;
  color: var(--maroon);
}

a {
  text-decoration: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.section-pad {
  padding: 5.5rem 0;
}

.section-tint {
  background: var(--ivory-2);
}

.section-dark {
  background: radial-gradient(circle at 20% 0%, var(--forest-soft), var(--forest) 55%, var(--forest-dark) 100%);
}

.section-head {
  margin-bottom: 3rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: .85rem;
}

.text-gold {
  color: var(--gold-light) !important;
}

.eyebrow-pill {
  display: inline-flex;
  background: var(--white);
  border: 1px solid rgba(184, 145, 47, .35);
  padding: .5rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px -12px rgba(122, 10, 4, .3);
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-link {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb-link:hover {
  color: var(--maroon);
}

.breadcrumb-sep {
  margin: 0 .4rem;
  color: rgba(107, 98, 85, .5);
}

.page-hero {
  padding: 3.25rem 0 2.5rem;
}

.page-title {
  font-size: clamp(2.2rem, 1.8rem + 2vw, 3.2rem);
  margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-ivory {
  color: var(--ivory) !important;
}

.text-ivory-70 {
  color: rgba(251, 246, 236, .68) !important;
}

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .02em;
  padding: .55rem 1.3rem;
  transition: .25s ease;
}

.btn-lg {
  padding: .7rem 1.6rem;
  font-size: .95rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-dark) !important;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  color: var(--forest-dark);
}

.btn-gold-outline {
  border: 1px solid var(--gold);
  color: var(--ivory);
  background: transparent;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

.btn-outline-line {
  border: 1px solid var(--forest);
  color: var(--forest-dark);
  background: transparent;
}

.btn-outline-line:hover {
  background: var(--forest);
  color: var(--ivory);
}

.cta-banner .btn-outline-line {
  border: 1px solid rgba(251, 246, 236, .55);
  color: var(--ivory);
}

.cta-banner .btn-outline-line:hover {
  background: var(--ivory);
  color: var(--forest-dark);
  border-color: var(--ivory);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--forest);
  color: rgba(251, 246, 236, .85);
  font-size: .82rem;
  padding: .5rem 0;
}

.topbar-item i {
  color: var(--gold-light);
  margin-right: .35rem;
}

/* ---------- Navbar ---------- */
.main-nav {
  background: var(--forest-dark);
  padding: .6rem 0;
  z-index: 1030;
  border-bottom: 2px solid var(--gold);
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}

.brand-logo-offcanvas {
  height: 64px;
}

.brand-logo-footer {
  height: 72px;
}

.main-nav .nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(251, 246, 236, .85);
  padding: .5rem 1rem !important;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .2rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s;
}

.main-nav .nav-link:hover {
  color: var(--white);
}

.main-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.main-nav .nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.offcanvas .nav-link.active {
  color: var(--forest);
  font-weight: 600;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 212, 0, .1);
}

.navbar-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas {
  background: var(--ivory);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(122, 10, 4, .1);
}

.offcanvas .nav-link {
  color: var(--ink);
}

/* ---------- Hero (no image) ---------- */
.hero-noimg {
  position: relative;
  padding: 6rem 0 3.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.lead-text {
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
}

/* Decorative background: faded monogram + dashed rings */
.hero-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-monogram {
  position: absolute;
  top: -6rem;
  right: -3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32rem;
  line-height: 1;
  color: var(--forest);
  opacity: .045;
  user-select: none;
}

.hero-ring {
  position: absolute;
  border: 1.5px dashed rgba(184, 145, 47, .35);
  border-radius: 50%;
}

.ring-1 {
  width: 520px;
  height: 520px;
  top: -140px;
  left: -160px;
}

.ring-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: 8%;
}

/* Floating tailoring badges */
.hero-floater {
  position: absolute;
  align-items: center;
  gap: .55rem;
  z-index: 2;
  background: var(--white);
  border: 1px solid rgba(122, 10, 4, .1);
  border-radius: 999px;
  padding: .65rem 1.15rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--forest-dark);
  box-shadow: var(--shadow-soft);
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-floater i {
  color: var(--gold-deep);
  font-size: 1.05rem;
}

.floater-1 {
  top: 14%;
  left: 6%;
  animation-delay: 0s;
}

.floater-2 {
  bottom: 16%;
  right: 6%;
  animation-delay: 1.4s;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Social proof row */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  border: 2px solid var(--ivory);
  margin-left: -10px;
  font-size: .85rem;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:last-child {
  background: var(--gold);
  color: var(--forest-dark);
}

.proof-text {
  text-align: left;
}

.proof-text .stars {
  color: var(--gold-deep);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.proof-text .stars strong {
  color: var(--ink);
  font-weight: 600;
  margin-left: .15rem;
}

.proof-text>span {
  display: block;
  font-size: .82rem;
  color: var(--ink-soft);
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1rem;
}

.trust-bar>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  text-align: center;
  position: relative;
}

.trust-bar>div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(122, 10, 4, .12);
}

.trust-bar i {
  font-size: 1.2rem;
  color: var(--forest);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ivory-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .3rem;
}

.trust-bar .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.trust-bar .label {
  font-size: .74rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.photo-tone {
  filter: sepia(.18) saturate(1.05) contrast(1.02) brightness(.99);
}

/* Stitched thread divider — signature motif */
.stitch-divider {
  height: 22px;
  margin-top: 2.5rem;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px);
  -webkit-mask-image: radial-gradient(circle, black 45%, transparent 46%);
  mask-image: radial-gradient(circle, black 45%, transparent 46%);
  -webkit-mask-size: 20px 20px;
  mask-size: 20px 20px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  opacity: .9;
}

/* ---------- About ---------- */
.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-media-badge {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  background: var(--maroon);
  color: var(--ivory);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.about-media-badge .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-media-badge span:last-child {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trust-point {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.trust-point i {
  font-size: 1.35rem;
  color: var(--gold-deep);
  margin-top: .15rem;
}

.trust-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--forest-dark);
}

.trust-point span {
  font-size: .9rem;
  color: var(--ink-soft);
}

.trust-point-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
  background: var(--white);
  border: 1px solid rgba(122, 10, 4, .08);
  border-radius: 16px;
  padding: 1.6rem 1.1rem;
  height: 100%;
  box-shadow: 0 10px 26px -18px rgba(122, 10, 4, .25);
  transition: .3s ease;
}

.trust-point-center:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px -18px rgba(122, 10, 4, .35);
}

.trust-point-center i {
  margin-top: 0;
  margin-bottom: .3rem;
  font-size: 1.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ivory-2);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-signature {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(122, 10, 4, .12);
}

.founder-signature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest-dark);
}

.founder-signature span {
  font-size: .85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Est. badge (heritage seal, replaces photo in Our Story) ---------- */
.est-badge {
  display: flex;
  justify-content: center;
}

.est-badge-ring {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--forest-soft), var(--forest) 65%, var(--forest-dark) 100%);
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 46px -20px rgba(122, 10, 4, .4);
}

.est-badge-ring::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 212, 0, .45);
}

.est-badge-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.est-badge-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(251, 246, 236, .75);
  margin-top: .4rem;
  position: relative;
  z-index: 1;
}

/* ---------- Services ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.3rem;
  height: 100%;
  border: 1px solid rgba(122, 10, 4, .08);
  position: relative;
  text-align: center;
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.service-card.featured {
  background: var(--forest);
  border-color: var(--forest);
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--ivory);
}

.service-card.featured p {
  color: rgba(251, 246, 236, .72);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory-2);
  color: var(--forest);
  font-size: 1.9rem;
  margin: 0 auto 1rem;
}

.service-card.tint-1 .service-icon {
  background: rgba(227, 28, 18, .1);
  color: var(--maroon);
}

.service-card.tint-2 .service-icon {
  background: rgba(255, 212, 0, .2);
  color: #B8860B;
}

.service-card.tint-3 .service-icon {
  background: rgba(122, 10, 4, .1);
  color: var(--forest);
}

.service-card.tint-4 .service-icon {
  background: rgba(168, 17, 8, .12);
  color: var(--maroon-dark);
}

.service-card.featured .service-icon {
  background: rgba(184, 145, 47, .18);
  color: var(--gold-light);
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: .4rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .25rem .6rem;
  border-radius: 999px;
}

/* ---------- Gallery ---------- */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1/1;
  box-shadow: 0 4px 14px -6px rgba(122, 10, 4, .2);
  display: block;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, .35);
  opacity: 0;
  transition: .3s;
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: .3s;
}

.gallery-card:hover .gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ---------- Process ---------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
  position: relative;
  counter-reset: step;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2.1rem 1.2rem 1.6rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 212, 0, .2);
  border-radius: 18px;
  transition: .3s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, .09);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -22px rgba(0, 0, 0, .55);
}

.step-no {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, .5);
  letter-spacing: 0;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: .4rem auto .9rem;
  border-radius: 50%;
  background: var(--forest-soft);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  color: var(--ivory);
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.process-step p {
  color: rgba(251, 246, 236, .68);
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Why choose us ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  height: 100%;
  border: 1px solid rgba(122, 10, 4, .08);
}

.why-card i {
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: .7rem;
  display: block;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.why-card p {
  font-size: .88rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Testimonials: YouTube video shorts ---------- */
.shorts-row {
  margin-top: .5rem;
}

.short-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--forest-dark);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(122, 10, 4, .08);
}

.short-card img,
.short-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.short-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(251, 246, 236, .92);
  border: 0;
  color: var(--forest-dark);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  transition: .2s;
}

.short-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 33, 27, .75) 0%, rgba(14, 33, 27, 0) 45%);
  pointer-events: none;
}

.short-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  top: 50%;
  left: 50%;
  margin: 0;
}

.short-caption {
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .7rem;
  color: var(--ivory);
  font-size: .78rem;
  font-weight: 500;
  z-index: 1;
  line-height: 1.3;
}

.short-card.playing .short-play,
.short-card.playing::after,
.short-card.playing .short-caption,
.short-card.playing img {
  display: none;
}

.reviews-subtitle {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--forest-dark);
  margin-bottom: 0;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  height: 100%;
  border: 1px solid rgba(122, 10, 4, .08);
  box-shadow: 0 14px 34px -22px rgba(122, 10, 4, .25);
}

.testi-card .stars {
  color: var(--gold-deep);
  margin-bottom: .9rem;
  font-size: .9rem;
}

.testi-card p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--forest-dark);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}

.testi-name span {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: .82rem;
}

/* ---------- Testimonial Swiper ---------- */
.testimonial-swiper {
  padding: .5rem .25rem 3.25rem;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-swiper .swiper-slide .testi-card {
  width: 100%;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: var(--forest);
  opacity: .3;
  width: 9px;
  height: 9px;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  color: var(--forest);
  box-shadow: var(--shadow-soft);
  top: 40%;
}

.testimonial-swiper .swiper-button-next:after,
.testimonial-swiper .swiper-button-prev:after {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-swiper .swiper-button-prev {
  left: -6px;
}

.testimonial-swiper .swiper-button-next {
  right: -6px;
}

@media (max-width:991.98px) {

  .testimonial-swiper .swiper-button-next,
  .testimonial-swiper .swiper-button-prev {
    display: none;
  }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 5.5rem 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest) 60%, var(--maroon-dark));
  color: var(--ivory);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(255, 230, 102, .4) 0 10px, transparent 10px 20px);
  -webkit-mask-image: radial-gradient(circle, black 45%, transparent 46%);
  mask-image: radial-gradient(circle, black 45%, transparent 46%);
  -webkit-mask-size: 20px 20px;
  mask-size: 20px 20px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: top;
  mask-position: top;
  height: 22px;
  top: 0;
}

.cta-banner h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem);
}

.cta-banner p {
  color: rgba(251, 246, 236, .75);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(251, 246, 236, .15);
}

.cta-assurances div {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(251, 246, 236, .85);
  font-weight: 500;
}

.cta-assurances i {
  color: var(--gold-light);
  font-size: 1.05rem;
}

/* ---------- Contact ---------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.25rem;
  color: var(--gold-deep);
  margin-top: .2rem;
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest-dark);
}

.contact-list span {
  font-size: .9rem;
  color: var(--ink-soft);
}

.contact-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-panel .form-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.contact-panel .form-control,
.contact-panel .form-select {
  border-radius: 10px;
  border: 1px solid rgba(122, 10, 4, .15);
  padding: .65rem .9rem;
  font-family: var(--font-body);
}

.contact-panel .form-control:focus,
.contact-panel .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, .25);
}

/* ---------- Enquiry Modal ---------- */
.enquiry-modal {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(13, 13, 13, .5);
}

.enquiry-modal .modal-header {
  background: var(--forest-dark);
  border-bottom: 2px solid var(--gold);
  align-items: flex-start;
  padding: 1.5rem 1.5rem 1.2rem;
}

.enquiry-modal .modal-header .eyebrow {
  color: var(--gold-light);
  margin-bottom: .3rem;
}

.enquiry-modal .modal-title {
  color: var(--ivory);
  font-size: 1.4rem;
}

.enquiry-modal .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: .8;
}

.enquiry-modal .modal-body {
  padding: 1.75rem 1.75rem 2rem;
  background: var(--ivory);
}

.enquiry-modal .form-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.enquiry-modal .form-control,
.enquiry-modal .form-select {
  border-radius: 10px;
  border: 1px solid rgba(122, 10, 4, .18);
  padding: .7rem .9rem;
  font-family: var(--font-body);
}

.enquiry-modal .form-control:focus,
.enquiry-modal .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, .25);
}

.enquiry-modal .btn-lg {
  padding: .65rem 1.3rem;
  font-size: .88rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  filter: sepia(.1) saturate(.85);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-dark);
  color: rgba(251, 246, 236, .8);
  padding: 4.5rem 0 1.5rem;
}

.footer h6 {
  color: var(--ivory);
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}

.footer .brand-logo-footer {
  margin-bottom: .5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  color: rgba(251, 246, 236, .75);
  font-size: .92rem;
  transition: .2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.social-row {
  display: flex;
  gap: .7rem;
  margin-top: 1.3rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 236, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-dark);
}

.footer hr {
  border-color: rgba(251, 246, 236, .15);
  margin-top: 3rem;
}

/* ---------- Floating actions ---------- */
.whatsapp-fab {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  z-index: 1040;
  animation: pulseWA 2.4s infinite;
}

@keyframes pulseWA {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  right: 1.3rem;
  bottom: 5.6rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  border: 0;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
  z-index: 1040;
}

.back-to-top.show {
  display: flex;
}

/* ---------- Reveal-on-scroll ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-aos].in-view {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width:991.98px) {
  .process-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.6rem;
  }

  .about-media img {
    height: 380px;
  }

  .hero-monogram {
    font-size: 22rem;
  }
}

@media (max-width:767.98px) {
  .section-pad {
    padding: 3.5rem 0;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.2rem;
  }

  /* ---- Mobile buttons (site-wide) ---- */
  .btn {
    padding: .5rem 1.1rem;
    font-size: .82rem;
  }

  .btn-lg {
    padding: .62rem 1.3rem;
    font-size: .85rem;
  }

  /* ---- Mobile navbar / logo ---- */
  .main-nav {
    padding: .4rem 0;
  }

  .brand-logo {
    height: 44px;
  }

  /* ---- Simplified mobile hero ---- */
  .hero-noimg {
    padding: 2.75rem 0 2.25rem;
  }

  .hero .eyebrow-pill {
    font-size: .58rem;
    padding: .4rem .7rem;
    letter-spacing: .03em;
    gap: .3rem;
    white-space: nowrap;
    max-width: 94vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: .8rem;
  }

  .lead-text {
    font-size: .97rem;
    padding: 0 .25rem;
  }

  .hero-copy .d-flex.flex-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: .6rem !important;
  }

  .hero-copy .btn {
    width: 100%;
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-monogram {
    font-size: 13rem;
    top: -1.5rem;
    right: -2.5rem;
  }

  .hero-ring.ring-1 {
    display: none;
  }

  .hero-ring.ring-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -40px;
  }

  .hero-floater {
    display: none;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: .55rem;
    margin-top: 1.5rem !important;
  }

  .avatar-stack span {
    width: 34px;
    height: 34px;
    font-size: .78rem;
  }

  .proof-text {
    text-align: center;
  }

  .proof-text .stars {
    justify-content: center;
    font-size: .8rem;
  }

  .proof-text>span {
    font-size: .78rem;
  }

  .trust-bar {
    margin-top: 1.75rem !important;
    padding: 1.1rem .4rem;
    border-radius: 16px;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    margin-bottom: .25rem;
  }

  .trust-bar i {
    font-size: 1rem;
  }

  .trust-bar .num {
    font-size: 1.2rem;
  }

  .trust-bar .label {
    font-size: .58rem;
    letter-spacing: .01em;
  }

  /* ---- Mobile modal ---- */
  .enquiry-modal .modal-header {
    padding: 1.25rem 1.25rem 1rem;
  }

  .enquiry-modal .modal-title {
    font-size: 1.2rem;
  }

  .enquiry-modal .modal-body {
    padding: 1.35rem 1.35rem 1.6rem;
  }

  .enquiry-modal .btn-lg {
    padding: .55rem 1.1rem;
    font-size: .82rem;
  }

  /* ---- Mobile est. badge ---- */
  .est-badge-ring {
    width: 140px;
    height: 140px;
  }

  .est-badge-year {
    font-size: 1.9rem;
  }

  .est-badge-label {
    font-size: .6rem;
  }
}

@media (max-width:380px) {
  .hero .eyebrow-pill {
    font-size: .5rem;
    padding: .35rem .55rem;
    gap: .25rem;
  }
}