:root {
  /* ─── COLOR PALETTE ─── */
  --clr-onyx: #1A1A1A;
  --clr-espresso: #2D2016;
  --clr-warm-900: #3B2E1E;
  --clr-warm-700: #6B5340;
  --clr-warm-500: #9E7F65;
  --clr-warm-300: #C9A98A;
  --clr-warm-100: #EDE0D0;
  --clr-cream: #F7F1E8;
  --clr-white: #FDFAF6;

  --clr-gold: #B8934A;
  --clr-gold-lt: #D4B070;
  --clr-gold-dk: #8C6A2F;

  --clr-sage: #6B8068;
  --clr-mist: #A3B4A0;

  /* ─── TYPOGRAPHY ─── */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 4rem;
  --fs-5xl: 5.5rem;

  /* ─── SPACING ─── */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* ─── RADIUS ─── */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-full: 9999px;

  /* ─── SHADOW ─── */
  --shadow-sm: 0 1px 3px rgba(26, 26, 26, .08);
  --shadow-md: 0 4px 16px rgba(26, 26, 26, .10);
  --shadow-lg: 0 12px 40px rgba(26, 26, 26, .14);
  --shadow-gold: 0 4px 24px rgba(184, 147, 74, .22);

  /* ─── TRANSITION ─── */
  --ease-out: cubic-bezier(.22, .68, 0, 1.2);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 500ms;

  /* ─── GRADIENTS (named) ─── */
  --espressoRadial: radial-gradient(circle, #8C6A2F 0%, transparent 70%);
  --goldHorizontal: linear-gradient(90deg, #8C6A2F, #D4B070);
  --goldDiagonal: linear-gradient(135deg, #B8934A, #D4B070);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--clr-cream);
  color: var(--clr-onyx);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.7;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* ─── HERO IMPROVEMENTS ─── */
.hero {
  background-color: var(--clr-espresso);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  padding-top: 112px !important;
  padding-bottom: 60px !important;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 32, 22, 0.88) 0%, rgba(45, 32, 22, 0.55) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.hero p {
  font-size: var(--fs-lg);
  color: var(--clr-warm-100);
  max-width: 600px;
  margin: 0 auto;
}

.hero-portrait {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--r-md, 12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .hero-portrait {
    max-width: 420px;
    margin-bottom: 24px;
  }
}

.btn-get-started {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: var(--r-xs);
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--clr-white);
  border: 2px solid var(--clr-gold);
  background: var(--clr-gold);
  text-decoration: none;
}

.btn-get-started:hover {
  background: var(--clr-gold-dk);
  border-color: var(--clr-gold-dk);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ─── SECTION TITLES ─── */
/* h2 = small badge label; div = big heading (BootstrapMade convention) */
.section-title h2 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--r-full);
  display: inline-block;
  color: var(--clr-gold);
  background: rgba(184, 147, 74, 0.1);
  border: 1px solid rgba(184, 147, 74, 0.25);
}

.section-title h2::after {
  display: none;
}

.section-title div {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--clr-espresso);
  margin: 12px 0 0 0;
  line-height: 1.2;
}

.section-title div::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-lt));
  margin: 10px auto 0;
}

.section-title .description-title {
  color: var(--clr-gold);
}

/* ─── SERVICE ITEMS ─── */
.service-item {
  background: var(--clr-white);
  padding: 40px;
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-lt));
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-item:hover::before {
  transform: translateY(0);
}

.service-item .icon {
  font-size: 2.5rem;
  color: var(--clr-gold);
  margin-bottom: 20px;
}

.service-item h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--clr-espresso);
}

.service-item p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--clr-warm-700);
}

/* ─── STATS ─── */
.stats-item {
  text-align: center;
}

.stats-item .purecounter {
  font-family: var(--ff-display);
  font-size: 4rem;
  display: block;
  font-weight: 300;
  color: var(--clr-gold-lt);
  line-height: 1;
}

.stats-item p {
  padding: 0;
  margin: 10px 0 0 0;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  color: var(--clr-warm-300);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ─── FAQ ─── */
.faq .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-warm-100);
  margin-bottom: 10px;
}

.faq .accordion-button {
  background: transparent;
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  color: var(--clr-espresso);
  padding: 20px 0;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--clr-gold);
}

.faq .accordion-body {
  padding: 0 0 20px 0;
  font-size: var(--fs-base);
  color: var(--clr-warm-700);
}

/* ─── CONTACT FORM ─── */
.contact .info-item i {
  color: var(--clr-gold);
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.contact .contact-form {
  background: var(--clr-white);
  padding: 30px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

.contact .form-control {
  border-radius: var(--r-xs);
  border: 1.5px solid var(--clr-warm-100);
  padding: 12px 15px;
}

.contact .form-control:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(184, 147, 74, 0.1);
}

.contact button[type="submit"] {
  background: var(--clr-gold);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: var(--r-xs);
}

.contact button[type="submit"]:hover {
  background: var(--clr-gold-dk);
}

/* ─── LAYOUT ─── */
.ds-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-8);
}

.ds-section {
  margin-bottom: var(--sp-24);
}

.ds-section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
}

.ds-section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-10);
  border-bottom: 1px solid var(--clr-warm-100);
  padding-bottom: var(--sp-4);
  line-height: 1.2;
}

.ds-grid {
  display: grid;
  gap: var(--sp-6);
}

.ds-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ds-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ds-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ds-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.ds-grid-auto {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

/* ─── COVER ─── */
.ds-cover {
  background: var(--clr-espresso);
  color: var(--clr-cream);
  padding: var(--sp-20) var(--sp-8);
  margin-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
}

.ds-cover::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clr-gold-dk) 0%, transparent 70%);
  opacity: .25;
}

.ds-cover-eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--clr-gold-lt);
  margin-bottom: var(--sp-4);
  font-weight: 500;
}

.ds-cover-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: var(--sp-6);
  max-width: 700px;
}

.ds-cover-title em {
  font-style: italic;
  color: var(--clr-gold-lt);
}

.ds-cover-meta {
  font-size: var(--fs-sm);
  color: var(--clr-warm-300);
  display: flex;
  gap: var(--sp-8);
}

.ds-cover-meta span::before {
  content: '— ';
}

/* ─── ANALYSIS CARD ─── */
.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.analysis-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  padding: var(--sp-6);
  border-radius: var(--r-md);
}

.analysis-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-4);
}

.analysis-card p {
  font-size: var(--fs-sm);
  color: var(--clr-warm-700);
  line-height: 1.7;
}

.analysis-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
  font-weight: 600;
}

.tag-plus {
  background: #e8f2e8;
  color: #2a5a2a;
}

.tag-minus {
  background: #f5e8e8;
  color: #5a2a2a;
}

.tag-opp {
  background: #e8eff5;
  color: #1e3a5f;
}

.finding-list {
  list-style: none;
  margin-top: var(--sp-4);
}

.finding-list li {
  padding: var(--sp-2) 0;
  font-size: var(--fs-sm);
  color: var(--clr-warm-700);
  border-bottom: 1px dashed var(--clr-warm-100);
  padding-left: var(--sp-5);
  position: relative;
}

.finding-list li::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
}

/* ─── COLOR SWATCHES ─── */
.swatch-group {
  margin-bottom: var(--sp-8);
}

.swatch-group-label {
  font-size: var(--fs-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clr-warm-500);
  margin-bottom: var(--sp-3);
}

.swatches {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.swatch {
  width: 100px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.swatch-color {
  height: 72px;
  position: relative;
}

.swatch-info {
  background: var(--clr-white);
  padding: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--clr-warm-100);
}

.swatch-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--clr-warm-700);
}

.swatch-hex {
  font-size: 10px;
  color: var(--clr-warm-500);
  font-family: monospace;
}

/* ─── TYPOGRAPHY SPECIMENS ─── */
.type-specimen {
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-10);
  margin-bottom: var(--sp-4);
  position: relative;
}

.type-meta {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
  text-align: right;
}

.type-meta-name {
  font-size: var(--fs-xs);
  color: var(--clr-warm-500);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.type-meta-spec {
  font-size: var(--fs-xs);
  color: var(--clr-warm-300);
  font-family: monospace;
}

.t-display-1 {
  font-family: var(--ff-display);
  font-size: var(--fs-5xl);
  font-weight: 300;
  line-height: 1.0;
  color: var(--clr-espresso);
}

.t-display-2 {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 300;
  line-height: 1.05;
  color: var(--clr-espresso);
}

.t-display-3 {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-espresso);
}

.t-h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-espresso);
}

.t-h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.3;
  color: var(--clr-espresso);
}

.t-h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.4;
  color: var(--clr-espresso);
}

.t-body-lg {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.75;
  color: var(--clr-warm-700);
}

.t-body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--clr-warm-700);
}

.t-caption {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-warm-500);
}

.t-label {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* ─── SPACING SCALE ─── */
.spacing-row {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.spacing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.spacing-bar {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-lt));
  border-radius: var(--r-xs);
  width: 24px;
}

.spacing-label {
  font-size: 10px;
  color: var(--clr-warm-500);
  font-family: monospace;
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: .08em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t-fast);
  background: rgba(255, 255, 255, .1);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--clr-espresso);
  color: var(--clr-cream);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-xs);
}

.btn-primary:hover {
  background: var(--clr-warm-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-white);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-xs);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--clr-gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 147, 74, .35);
}

.btn-outline {
  background: transparent;
  color: var(--clr-espresso);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-xs);
  border: 1.5px solid var(--clr-espresso);
}

.btn-outline:hover {
  background: var(--clr-espresso);
  color: var(--clr-cream);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-gold);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-xs);
  border: 1.5px solid var(--clr-gold);
}

.btn-ghost:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
}

.btn-text {
  background: transparent;
  color: var(--clr-espresso);
  padding: var(--sp-2) 0;
  border-radius: 0;
  border-bottom: 1px solid var(--clr-espresso);
  font-weight: 400;
  letter-spacing: .05em;
}

.btn-text:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

.btn-sm {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-xs);
}

.btn-lg {
  padding: var(--sp-5) var(--sp-12);
  font-size: var(--fs-md);
  letter-spacing: .1em;
}

.btn-row {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}

/* ─── CARDS ─── */
.card {
  background: var(--clr-white);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-service {
  border: 1px solid var(--clr-warm-100);
  padding: var(--sp-8);
  position: relative;
}

.card-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-lt));
  opacity: 0;
  transition: opacity var(--t-base);
}

.card-service:hover::before {
  opacity: 1;
}

.card-service .icon {
  width: 44px;
  height: 44px;
  background: var(--clr-warm-100);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: var(--sp-5);
}

.card-service h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.card-service p {
  font-size: var(--fs-sm);
  color: var(--clr-warm-700);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.card-blog {
  border: 1px solid var(--clr-warm-100);
}

.card-blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--clr-warm-100), var(--clr-warm-300));
  position: relative;
  overflow: hidden;
}

.card-blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26, 26, 26, .4));
}

.card-blog-body {
  padding: var(--sp-6);
}

.card-blog-category {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.card-blog-body h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-espresso);
  line-height: 1.3;
  margin-bottom: var(--sp-3);
}

.card-blog-body p {
  font-size: var(--fs-sm);
  color: var(--clr-warm-700);
  line-height: 1.6;
}

.card-testimonial {
  background: var(--clr-espresso);
  color: var(--clr-cream);
  padding: var(--sp-8);
  border-radius: var(--r-md);
  position: relative;
}

.card-testimonial::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--clr-gold);
  opacity: .4;
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-6);
  line-height: 1;
}

.card-testimonial p {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--clr-warm-100);
  margin-bottom: var(--sp-5);
}

.card-testimonial-author {
  font-size: var(--fs-xs);
  color: var(--clr-gold-lt);
  font-weight: 600;
  letter-spacing: .08em;
}

/* ─── INPUTS ─── */
.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.input-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-warm-700);
}

.input {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--clr-onyx);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-warm-100);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}

.input::placeholder {
  color: var(--clr-warm-300);
}

.input:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(184, 147, 74, .15);
}

.input-hint {
  font-size: var(--fs-xs);
  color: var(--clr-warm-500);
}

textarea.input {
  resize: vertical;
  min-height: 100px;
}

/* ─── BADGE / TAG ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

.badge-gold {
  background: rgba(184, 147, 74, .12);
  color: var(--clr-gold-dk);
  border: 1px solid rgba(184, 147, 74, .3);
}

.badge-espresso {
  background: var(--clr-espresso);
  color: var(--clr-cream);
}

.badge-sage {
  background: rgba(107, 128, 104, .12);
  color: var(--clr-sage);
  border: 1px solid rgba(107, 128, 104, .3);
}

.badge-outline {
  background: transparent;
  color: var(--clr-warm-700);
  border: 1px solid var(--clr-warm-300);
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: var(--clr-warm-100);
  margin: var(--sp-10) 0;
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin: var(--sp-10) 0;
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-10) 0;
  color: var(--clr-gold);
  font-size: var(--fs-lg);
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-warm-300));
}

.divider-ornament::after {
  background: linear-gradient(90deg, var(--clr-warm-300), transparent);
}

/* ─── STAT / KPI ─── */
.stat-block {
  text-align: center;
  padding: var(--sp-8);
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.stat-num {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 300;
  color: var(--clr-espresso);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-num span {
  font-size: var(--fs-2xl);
  color: var(--clr-gold);
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-warm-500);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── NAV SPECIMEN ─── */
.nav-specimen {
  background: var(--clr-espresso);
  padding: var(--sp-4) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--r-md);
  gap: var(--sp-6);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--clr-cream);
  letter-spacing: .04em;
}

.nav-logo strong {
  font-weight: 600;
  color: var(--clr-gold-lt);
}

.nav-links {
  display: flex;
  gap: var(--sp-6);
  list-style: none;
}

.nav-links a {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-warm-300);
  text-decoration: none;
  transition: color var(--t-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-gold-lt);
}

/* ─── ICON SPECIMENS ─── */
.icon-grid {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  min-width: 80px;
}

.icon-glyph {
  font-size: 1.5rem;
}

.icon-name {
  font-size: 10px;
  color: var(--clr-warm-500);
  text-align: center;
}

/* ─── SECTION BG VARIANTS ─── */
.bg-dark {
  background: var(--clr-espresso);
  color: var(--clr-cream);
  padding: var(--sp-8);
  border-radius: var(--r-md);
}

.bg-warm {
  background: var(--clr-warm-100);
  padding: var(--sp-8);
  border-radius: var(--r-md);
}

.bg-white {
  background: var(--clr-white);
  padding: var(--sp-8);
  border-radius: var(--r-md);
}

/* ─── MOTION DEMO ─── */
.motion-demo {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  align-items: center;
  padding: var(--sp-8);
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
}

.motion-item {
  text-align: center;
}

.motion-box {
  width: 60px;
  height: 60px;
  background: var(--clr-espresso);
  border-radius: var(--r-md);
  margin: 0 auto var(--sp-2);
}

.anim-fade {
  animation: fadeIn 2s ease infinite alternate;
}

.anim-slide {
  animation: slideUp 2s var(--ease-out) infinite alternate;
}

.anim-scale {
  animation: scaleIn 2s var(--ease-out) infinite alternate;
}

.anim-pulse {
  animation: pulse 2s ease infinite;
}

@keyframes fadeIn {
  from {
    opacity: .2;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(12px);
    opacity: .4;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(.85);
    opacity: .5;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 147, 74, .4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(184, 147, 74, 0);
  }
}

.motion-box-gold {
  background: var(--clr-gold);
}

/* ─── FOOTER of system ─── */
.ds-footer {
  margin-top: var(--sp-24);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-warm-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--clr-warm-500);
}

@media (max-width: 768px) {

  .ds-grid-3,
  .ds-grid-4,
  .ds-grid-5 {
    grid-template-columns: 1fr 1fr;
  }

  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

/* ─── FORM SUBMISSION STATES ─── */
#submitBtn .btn-loader {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.spinner-border-sm {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#submitBtn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

#formMessage {
  border-radius: var(--r-sm);
  animation: slideDown var(--t-base) var(--ease-out);
  padding: var(--sp-3) var(--sp-4);
  margin-top: var(--sp-3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: rgba(107, 128, 104, .12);
  border: 1px solid rgba(107, 128, 104, .3);
  color: var(--clr-sage);
}

.alert-danger {
  background: rgba(231, 76, 60, .08);
  border: 1px solid rgba(231, 76, 60, .2);
  color: #C0392B;
}

/* ─── CF TURNSTILE ─── */
.cf-turnstile {
  margin: var(--sp-4) 0;
}

.cf-turnstile iframe {
  max-width: 100%;
}

/* ─── MOBILE STICKY BAR ─── */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  display: flex;
  gap: 0;
  background: var(--clr-espresso);
  border-top: 1px solid rgba(184, 147, 74, .3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background var(--t-fast);
  min-height: 56px;
}

.sticky-btn span {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sticky-btn-call {
  color: var(--clr-cream);
  background: var(--clr-warm-900);
}

.sticky-btn-call:hover {
  background: var(--clr-warm-700);
  color: var(--clr-cream);
}

.sticky-btn-whatsapp {
  color: var(--clr-white);
  background: #1B5E20;
}

.sticky-btn-whatsapp:hover {
  background: #2E7D32;
  color: var(--clr-white);
}

/* Offset content so sticky bar doesn't overlap footer on mobile */
@media (max-width: 991px) {
  .footer {
    padding-bottom: 70px;
  }
}

/* ─── MOBILE & TOUCH ACCESSIBILITY ─── */
input,
textarea,
select {
  font-size: 16px;
}

button,
a[role="button"],
input[type="submit"],
.btn {
  min-height: 44px;
}

/* ═══════════════════════════════════════════════════════
 * TEMPLATE FRAMEWORK CSS
 * Compiled from BootstrapMade "Delicious" SCSS sources
 * ═══════════════════════════════════════════════════════ */

/* ─── Template CSS Bridge Variables ─── */
:root {
  --default-font: 'Jost', sans-serif;
  --heading-font: 'Cormorant Garamond', Georgia, serif;
  --nav-font: 'Jost', sans-serif;
  --background-color: #F7F1E8;
  --default-color: #3B2E1E;
  --heading-color: #2D2016;
  --accent-color: #B8934A;
  --surface-color: #FDFAF6;
  --contrast-color: #FDFAF6;
  --nav-color: #FDFAF6;
  --nav-hover-color: #B8934A;
  --nav-mobile-background-color: #FDFAF6;
  --nav-dropdown-background-color: #FDFAF6;
  --nav-dropdown-color: #3B2E1E;
  --nav-dropdown-hover-color: #B8934A;
  scroll-behavior: smooth;
}

.light-background {
  --background-color: #F7F1E8;
  --surface-color: #FDFAF6;
}

.dark-background {
  --background-color: #2D2016;
  --default-color: #FDFAF6;
  --heading-color: #FDFAF6;
  --surface-color: #3B2E1E;
  --contrast-color: #FDFAF6;
}

/* ─── General ─── */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* ─── Preloader ─── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid transparent;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: tmpl-preloader 1.5s linear infinite;
}

@keyframes tmpl-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ─── Global Header ─── */
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #FDFAF6;
  --heading-color: #FDFAF6;
  color: var(--default-color);
  transition: all 0.5s;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  padding: 10px 0 0 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .cta-btn {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  min-height: auto;
}

.header .topbar .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 5px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1,
.header .sitename {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.scrolled .header {
  --background-color: rgba(45, 32, 22, 0.95);
}

/* ─── Navigation Menu – Desktop (≥1200px) ─── */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li { position: relative; }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a { padding-right: 0; }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li { min-width: 200px; }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* ─── Navigation Menu – Mobile (≤1199px) ─── */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* ─── Scroll-To-Top Button ─── */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 80px;
  z-index: 99998;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 22px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 992px) {
  .scroll-top {
    bottom: 20px;
  }
}

/* ─── Global Sections ─── */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 105px;
  }
}

/* ─── Footer Bottom ─── */
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 0;
}

/* ─── About Content ─── */
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

/* ─── Contact Info Block ─── */
.contact .info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border-radius: var(--r-md);
  height: 100%;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
}

.contact .info > p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 24px;
  font-size: 15px;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact .info-item i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact .info-item h4 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact .info-item p {
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* ─── AOS: disable delay on small screens ─── */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════
 * COOKIE CONSENT
 * ═══════════════════════════════════════════════════════ */

.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99995;
  background: var(--clr-espresso);
  border-top: 2px solid var(--clr-gold);
  padding: 16px 24px;
  display: none;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookies-banner.show {
  display: flex;
}

.cookies-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}

.cookies-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookies-text {
  flex: 1;
  min-width: 200px;
}

.cookies-text h6 {
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 4px;
}

.cookies-text p {
  color: var(--clr-warm-300);
  font-size: var(--fs-xs);
  margin-bottom: 0;
  line-height: 1.4;
}

.cookies-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-accept-all,
.btn-cookie-settings {
  padding: 8px 20px;
  border: none;
  border-radius: var(--r-xs);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  min-height: 36px;
}

.btn-accept-all {
  background: var(--clr-gold);
  color: var(--clr-white);
}

.btn-accept-all:hover {
  background: var(--clr-gold-dk);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--clr-warm-300);
  border: 1px solid rgba(201, 169, 138, 0.4);
}

.btn-cookie-settings:hover {
  background: rgba(201, 169, 138, 0.15);
  color: var(--clr-warm-100);
}

/* ─── Cookie Settings Modal ─── */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 99996;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--clr-white);
  padding: 32px;
  border-radius: var(--r-md);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-content h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-espresso);
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-warm-100);
}

.cookie-toggle:last-of-type {
  border-bottom: none;
}

.cookie-toggle input[type="checkbox"] {
  width: 40px;
  height: 22px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--clr-warm-100);
  border-radius: var(--r-full);
  cursor: pointer;
  position: relative;
  transition: background var(--t-fast);
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--clr-gold);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform var(--t-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(18px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--r-xs);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  min-height: 44px;
}

.cookie-btn--primary {
  background: var(--clr-espresso);
  color: var(--clr-cream);
}

.cookie-btn--primary:hover {
  background: var(--clr-warm-900);
}

.cookie-btn--secondary {
  background: var(--clr-warm-100);
  color: var(--clr-warm-700);
  flex-shrink: 0;
}

.cookie-btn--secondary:hover {
  background: var(--clr-warm-300);
}

/* ─── Cookie Float Button ─── */
.cookie-float-btn {
  position: fixed;
  bottom: 80px;
  left: 16px;
  z-index: 99994;
  width: 40px;
  height: 40px;
  min-height: 40px;
  border: 1px solid var(--clr-gold);
  border-radius: 50%;
  background: var(--clr-espresso);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--t-fast);
}

.cookie-float-btn:hover {
  background: var(--clr-warm-900);
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .cookie-float-btn {
    bottom: 16px;
  }
}

/* ═══════════════════════════════════════════════════════
 * CONTACT WIDGET (generated by JS)
 * ═══════════════════════════════════════════════════════ */

.contact-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 99993;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .contact-widget {
    bottom: 20px;
  }
}

.contact-toggle {
  width: 52px;
  height: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-gold);
  transition: all var(--t-base) var(--ease-out);
}

.contact-toggle:hover {
  background: var(--clr-gold-dk);
  transform: scale(1.05);
}

.contact-menu {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: var(--clr-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 248px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.95);
  transform-origin: bottom right;
  transition: all var(--t-base) var(--ease-out);
  border: 1px solid var(--clr-warm-100);
}

.contact-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.contact-header {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-warm-500);
  padding: 8px 12px 10px;
  border-bottom: 1px solid var(--clr-warm-100);
  margin-bottom: 4px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background var(--t-fast);
  margin-bottom: 2px;
  color: var(--clr-onyx);
}

.contact-btn:hover {
  background: var(--clr-warm-100);
  color: var(--clr-onyx);
}

.contact-btn .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Override .btn-text design-system style inside contact widget */
.contact-btn .btn-text {
  background: none;
  border-bottom: none;
  padding: 0;
  color: inherit;
  letter-spacing: normal;
}

.contact-btn .btn-text div {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-onyx);
  line-height: 1.2;
}

.contact-btn .btn-text small {
  font-size: var(--fs-xs);
  color: var(--clr-warm-500);
}

.btn-whatsapp .icon-circle {
  background: #e8f5e9;
  color: #2e7d32;
}

.btn-phone .icon-circle {
  background: rgba(184, 147, 74, 0.12);
  color: var(--clr-gold-dk);
}

.btn-email .icon-circle {
  background: rgba(107, 128, 104, 0.12);
  color: var(--clr-sage);
}

/* ─── Cookie banner responsive ─── */
@media (max-width: 575px) {
  .cookies-banner {
    padding: 12px 16px;
  }

  .cookies-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookies-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ═══════════════════════════════════════════════════════
 * FOOTER
 * ═══════════════════════════════════════════════════════ */

.footer {
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 40px 0 0 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.footer p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer .icon {
  color: var(--accent-color);
  font-size: 22px;
  min-width: 40px;
  padding-top: 4px;
}

.footer .address {
  padding-left: 4px;
}

.footer .social-links {
  gap: 8px;
  margin-top: 8px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--default-color);
  font-size: 16px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

/* ═══════════════════════════════════════════════════════
 * MULTI-STEP FORM
 * ═══════════════════════════════════════════════════════ */

/* Step Indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  gap: 0;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  background: var(--surface-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.step-dot.active {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.step-dot.completed {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.step-dot.completed span::after {
  content: '✓';
  font-size: 14px;
}

.step-dot.completed span {
  display: none;
}

.step-line {
  flex: 1;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  max-width: 80px;
  transition: background 0.3s ease;
}

.step-line.completed {
  background: var(--accent-color);
}

/* Step Panels */
.form-step {
  display: none;
  animation: stepFadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-label {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Success header in step 3 */
.step-success-header i {
  font-size: 2.5rem;
  color: #4caf7d;
}

.step-success-header h5 {
  margin-top: 10px;
  font-size: 1.25rem;
}

.step-success-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

/* ── Phone country-code input group ── */
.phone-input-group {
  flex-direction: row !important;
  gap: 0 !important;
}

.phone-input-group .phone-country-select {
  max-width: 115px;
  flex-shrink: 0;
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9rem;
  cursor: pointer;
}

.phone-input-group .form-control {
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ── Clickable contact links ── */
.header .contact-info a {
  color: var(--nav-color);
  text-decoration: none;
  transition: color 0.2s;
}

.header .contact-info a:hover {
  color: var(--accent-color);
}

.contact .info-item p a,
.contact .info p a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.2s;
}

.contact .info-item p a:hover,
.contact .info p a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer p a,
.footer strong + a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  text-decoration: none;
  transition: color 0.2s;
}

.footer p a:hover {
  color: var(--accent-color);
}

/* Inline cal.com container */
#cal-booking-inline {
  min-height: 480px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #ffffff;
}

#cal-booking-inline iframe {
  background: #ffffff !important;
  color-scheme: light;
}

/* ═══════════════════════════════════════════════════════
 * DIFY AI CHAT — floating link (opens in new tab)
 * Style matches scroll-top / cookie-float-btn family
 * ═══════════════════════════════════════════════════════ */

.dify-chat-link {
  position: fixed;
  right: 76px;
  bottom: 80px;
  z-index: 99996;
  width: 44px;
  height: 44px;
  min-height: 44px;
  border: 1px solid var(--clr-gold);
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184, 147, 74, 0.4);
  transition: all var(--t-fast);
}

.dify-chat-link:hover,
.dify-chat-link:focus-visible {
  background: var(--clr-gold-dk);
  border-color: var(--clr-gold-dk);
  color: var(--clr-white);
  transform: scale(1.1);
  outline: none;
}

.dify-chat-link i {
  font-size: 20px;
  line-height: 0;
}

.dify-chat-link__label {
  display: none;
}

@media (min-width: 992px) {
  .dify-chat-link {
    bottom: 20px;
  }
}

/* ── Contact Map ── */
.contact-map {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .contact-map {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-map iframe {
    height: 280px;
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--clr-white);
  background-color: var(--clr-espresso);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 60px 0;
  border-top: 1px solid color-mix(in srgb, var(--clr-warm-300), transparent 90%);
}

.page-title .heading h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.page-title .heading p {
  font-size: var(--fs-md);
  color: var(--clr-warm-300);
  max-width: 600px;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--clr-onyx), transparent 40%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: var(--clr-warm-500);
}

.page-title nav ol li {
  color: var(--clr-warm-300);
}

.page-title nav ol a {
  color: var(--clr-gold-lt);
  text-decoration: none;
}

.page-title nav ol a:hover {
  color: var(--clr-gold);
}

/*--------------------------------------------------------------
# Service Detail Page
--------------------------------------------------------------*/
.service-detail .lead-text {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--clr-gold);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: var(--sp-8);
}

.service-detail .audience-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  height: 100%;
  transition: all var(--t-base) var(--ease-out);
}

.service-detail .audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-detail .audience-card .icon {
  font-size: 2rem;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}

.service-detail .audience-card h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-2);
}

.service-detail .benefit-list {
  list-style: none;
  padding: 0;
}

.service-detail .benefit-list li {
  padding: var(--sp-3) 0;
  padding-left: var(--sp-8);
  position: relative;
  border-bottom: 1px solid var(--clr-warm-100);
  font-size: var(--fs-base);
  color: var(--clr-warm-700);
}

.service-detail .benefit-list li:last-child {
  border-bottom: none;
}

.service-detail .benefit-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-size: 1.1em;
}

.service-detail .pricing-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-detail .pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--goldHorizontal);
}

.service-detail .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-detail .pricing-card h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-4);
}

.service-detail .pricing-card .price {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-4);
}

.service-detail .pricing-card .price span {
  font-size: var(--fs-base);
  color: var(--clr-warm-500);
}

.service-detail .pricing-card .details {
  text-align: left;
  margin-bottom: var(--sp-6);
}

.service-detail .pricing-card .details li {
  padding: var(--sp-2) 0;
  color: var(--clr-warm-700);
  font-size: var(--fs-sm);
}

.service-detail .methodology-step {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.service-detail .methodology-step .step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--goldDiagonal);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 400;
}

.service-detail .methodology-step p {
  color: var(--clr-warm-700);
  margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: var(--sp-16) 0;
}

.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.cta-banner p {
  color: var(--clr-warm-300);
  margin-bottom: var(--sp-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-cta {
  display: inline-block;
  padding: 12px 36px;
  background: var(--goldHorizontal);
  color: var(--clr-white);
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-base);
  transition: all var(--t-base) var(--ease-out);
}

.cta-banner .btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Service detail page — offer section */
.service-detail-page .offer-banner {
  background: var(--clr-espresso);
  border-top: 1px solid var(--clr-gold);
  border-bottom: 1px solid var(--clr-gold);
}

.service-detail-page .offer-banner h3 {
  color: var(--clr-gold-lt);
  font-family: var(--ff-display);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service Pages (service-hero, service-section, etc.)
--------------------------------------------------------------*/

/* Hero */
.service-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-16) 0 var(--sp-12);
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,32,22,.85) 0%, rgba(45,32,22,.4) 100%);
  z-index: 1;
}

.service-hero .container {
  z-index: 2;
}

.service-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, var(--fs-4xl));
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.service-hero__lead {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  color: var(--clr-warm-100);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: var(--sp-8);
}

/* Breadcrumb */
.service-breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
  gap: var(--sp-2);
  font-size: var(--fs-sm);
}

.service-breadcrumb ol li + li::before {
  content: '/';
  margin-right: var(--sp-2);
  color: var(--clr-warm-300);
}

.service-breadcrumb ol li a {
  color: var(--clr-warm-300);
  text-decoration: none;
  transition: color var(--t-fast);
}

.service-breadcrumb ol li a:hover {
  color: var(--clr-gold-lt);
}

.service-breadcrumb ol li[aria-current="page"] {
  color: var(--clr-gold-lt);
}

/* Sections */
.service-section {
  padding: var(--sp-16) 0;
}

/* Label + Heading */
.service-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
}

.service-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.5vw, var(--fs-2xl));
  font-weight: 400;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-6);
  line-height: 1.25;
}

.service-text {
  color: var(--clr-warm-700);
  font-size: var(--fs-base);
  line-height: 1.7;
}

/* Image wrapper — For Whom section */
.service-image-wrapper {
  border-radius: var(--r-md);
  overflow: hidden;
}

.service-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--r-md);
}

/* Checklist */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  color: var(--clr-warm-700);
  font-size: var(--fs-base);
  line-height: 1.5;
}

.service-list li i {
  color: var(--clr-gold);
  font-size: 1.1em;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Benefit cards */
.service-benefit-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  height: 100%;
  transition: all var(--t-base) var(--ease-out);
}

.service-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-benefit-card__icon {
  font-size: 2rem;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}

.service-benefit-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-3);
}

.service-benefit-card p {
  color: var(--clr-warm-700);
  font-size: var(--fs-sm);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Format cards */
.service-format-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-6);
  height: 100%;
  transition: all var(--t-base) var(--ease-out);
}

.service-format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-format-card i {
  font-size: 2.5rem;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
  display: block;
}

.service-format-card h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-2);
}

.service-format-card p {
  color: var(--clr-warm-700);
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

/* CTA section */
.service-cta {
  padding: var(--sp-16) 0;
}

.service-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, var(--fs-2xl));
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.service-cta p {
  color: var(--clr-warm-300);
  margin-bottom: var(--sp-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About image (main page) */
.about-image-wrapper {
  border-radius: var(--r-md);
  overflow: hidden;
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--r-md);
}

/* Pricing cards */
.service-pricing-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-warm-100);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-warm-100);
}

.service-pricing-card--featured::before {
  background: var(--goldHorizontal, linear-gradient(90deg, var(--clr-gold-dk), var(--clr-gold), var(--clr-gold-dk)));
}

.service-pricing-card--featured {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}

.service-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-pricing-card__badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-2);
}

.service-pricing-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-4);
}

.service-pricing-card__price {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--clr-espresso);
  margin-bottom: var(--sp-6);
}

.service-pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: var(--sp-6);
  flex-grow: 1;
}

.service-pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  color: var(--clr-warm-700);
  font-size: var(--fs-sm);
}

.service-pricing-card ul li i {
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-pricing-card__btn {
  display: inline-block;
  padding: 10px 32px;
  background: var(--goldHorizontal, linear-gradient(90deg, var(--clr-gold-dk), var(--clr-gold), var(--clr-gold-dk)));
  color: var(--clr-white);
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-sm);
  transition: all var(--t-base) var(--ease-out);
  margin-top: auto;
}

.service-pricing-card__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--clr-white);
}

/* Mobile — image on top, text below */
@media (max-width: 991.98px) {
  .service-hero {
    min-height: 320px;
    padding: var(--sp-12) 0 var(--sp-8);
  }

  .service-section {
    padding: var(--sp-10) 0;
  }

  .service-image-wrapper {
    margin-bottom: var(--sp-6);
  }

  .service-image {
    max-height: 400px;
    object-fit: cover;
  }

  .about-image-wrapper {
    margin-bottom: var(--sp-6);
  }

  .about-image {
    max-height: 400px;
    object-fit: cover;
  }
}