/* ==========================================================================
   MINT — Brand Identity & Luxury Website Styles
   “Fresh looks good.”
   ========================================================================== */

:root {
  /* Color Palette — Sophisticated MINT & Refined Quiet Luxury */
  --bg-primary: #F8FAF9;
  --bg-secondary: #EDF3F0;
  --bg-card: #FFFFFF;
  --bg-dark: #121D1A;
  --bg-dark-card: #1B2925;

  --text-primary: #14221F;
  --text-secondary: #455651;
  --text-muted: #728580;
  --text-light: #F8FAF9;
  --text-light-muted: #A3B5B0;

  /* Refined Muted Mint / Forest Sage Palette */
  --accent-mint: #3B7A6D;
  --accent-mint-hover: #2B5E53;
  --accent-mint-soft: rgba(59, 122, 109, 0.12);
  --accent-mint-light: #EBF3F0;
  --accent-peach: var(--accent-mint);
  --accent-peach-hover: var(--accent-mint-hover);
  --accent-peach-soft: var(--accent-mint-soft);
  --accent-sand: #D4E1DC;
  --border-light: rgba(20, 34, 31, 0.08);
  --border-card: rgba(20, 34, 31, 0.06);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation & Shadows */
  --shadow-subtle: 0 4px 20px -2px rgba(18, 29, 26, 0.04);
  --shadow-medium: 0 12px 36px -4px rgba(18, 29, 26, 0.07);
  --shadow-elevated: 0 24px 60px -8px rgba(18, 29, 26, 0.12);

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 860px;
  --header-height: 84px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Typography Utility */
.brand-wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: baseline;
}

.brand-dot {
  color: var(--accent-peach);
  margin-left: 1px;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-peach);
  display: block;
  margin-bottom: 0.85rem;
}

.eyebrow-dark {
  color: var(--accent-peach);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-title-white {
  color: var(--text-light);
}

.section-desc {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 4rem;
}

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

/* Section Spacing */
.section {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-peach,
.btn-mint {
  background-color: var(--accent-mint);
  color: #FFFFFF;
}

.btn-peach:hover,
.btn-mint:hover {
  background-color: var(--accent-mint-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 122, 109, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: rgba(25, 28, 30, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(25, 28, 30, 0.04);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-secondary-white {
  background-color: transparent;
  color: var(--text-light);
  border-color: rgba(250, 248, 245, 0.3);
}

.btn-secondary-white:hover {
  background-color: rgba(250, 248, 245, 0.1);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-subtle);
  height: 74px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  flex-direction: column;
  margin-right: 3.5rem;
  flex-shrink: 0;
}

.logo-main {
  font-size: 1.85rem;
  color: var(--text-primary);
  line-height: 1;
}

.logo-subline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-grow: 1;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-peach);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.header-contact-link:hover {
  color: var(--accent-peach);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(650px, 85vh, 880px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 3.5rem;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-slogan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-slogan-badge span {
  color: var(--accent-peach);
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6.2vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--accent-peach);
  margin-bottom: 1.25rem;
}

.hero-title .brand-dot {
  color: var(--text-primary);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.hero-highlight-item {
  display: flex;
  flex-direction: column;
}

.hero-highlight-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-highlight-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.hero-image-wrapper img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover img {
  transform: scale(1.025);
}

.hero-image-badge {
  margin-top: 1rem;
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.hero-badge-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.hero-badge-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Brand Story ("ABOUT MINT")
   ========================================================================== */
.brand-story {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.story-quote-card {
  background: var(--bg-secondary);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  border: 1px solid var(--border-card);
}

.story-quote-card::before {
  content: '“';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  color: var(--accent-mint);
  opacity: 0.35;
  line-height: 1;
}

.story-quote-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.story-quote-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.story-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.story-credo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  border-left: 3px solid var(--accent-mint);
  padding-left: 1.25rem;
  margin-top: 2rem;
}

/* ==========================================================================
   Meet the Founder (Mandie)
   ========================================================================== */
.founder-section {
  background-color: var(--bg-primary);
  position: relative;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.founder-photo-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background-color: var(--bg-secondary);
}

.founder-photo-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.founder-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(25, 28, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-light);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #FFFFFF;
}

.founder-signature-line {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-peach);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.val-pill {
  padding: 0.45rem 1.15rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==========================================================================
   Why MINT (Clean Benefits)
   ========================================================================== */
.why-section {
  background-color: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.benefit-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(222, 130, 97, 0.4);
}

.benefit-num {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-peach);
  margin-bottom: 1.25rem;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Services Section (FABRIC CARE)
   ========================================================================== */
.services-section {
  background-color: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.service-image-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-image-box img {
  transform: scale(1.05);
}

.service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.service-learn-more {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-peach);
  cursor: pointer;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-learn-more:hover {
  color: var(--accent-peach-hover);
  text-decoration: underline;
}

/* ==========================================================================
   Coming Soon ("MORE TO COME")
   ========================================================================== */
.coming-soon-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.future-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  position: relative;
  transition: var(--transition);
}

.future-card:hover {
  box-shadow: var(--shadow-medium);
}

.future-card-media {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.future-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.6s ease;
}

.future-card:hover .future-card-media img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.future-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.future-body {
  padding: 1.5rem;
}

.future-division {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-peach);
  margin-bottom: 0.4rem;
  display: block;
}

.future-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.future-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Before & After Section
   ========================================================================== */
.before-after-section {
  background-color: var(--bg-primary);
}

.ba-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
}

.ba-tab {
  padding: 0.65rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.ba-tab.active, .ba-tab:hover {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.ba-container {
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  height: 520px;
  user-select: none;
  touch-action: pan-y;
  background-color: #000;
  contain: paint;
}

.ba-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-layer-before {
  z-index: 2;
  width: 50%;
  border-right: 2px solid #FFFFFF;
}

.ba-layer-before img {
  width: var(--ba-container-width, 100%);
  max-width: none;
}

.ba-label {
  position: absolute;
  bottom: 1.5rem;
  background: rgba(25, 28, 30, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 5;
}

.ba-label-before {
  left: 1.5rem;
}

.ba-label-after {
  right: 1.5rem;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-btn {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.ba-caption {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   How It Works (Process)
   ========================================================================== */
.process-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
  position: relative;
}

.process-card {
  position: relative;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-sand);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Booking / Quote Form
   ========================================================================== */
.quote-section {
  background-color: var(--bg-secondary);
}

.quote-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.form-label span {
  color: var(--accent-peach);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-peach);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--accent-peach-soft);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent-peach);
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--text-primary);
  text-decoration: underline;
}

.file-upload-box {
  border: 2px dashed var(--accent-sand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-primary);
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-box:hover {
  border-color: var(--accent-peach);
  background: #FFFFFF;
}

.file-upload-box input {
  display: none;
}

.file-upload-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.file-upload-label strong {
  color: var(--accent-peach);
}

.preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.preview-chip {
  background: var(--bg-secondary);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.form-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.form-note {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Service Areas (Cape Town)
   ========================================================================== */
.areas-section {
  background-color: var(--bg-primary);
}

.areas-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.area-filter-btn {
  padding: 0.55rem 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.area-filter-btn.active, .area-filter-btn:hover {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.area-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.area-card:hover {
  border-color: rgba(222, 130, 97, 0.4);
  box-shadow: var(--shadow-medium);
}

.area-category {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.area-count {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}

.area-suburbs {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.area-custom-note {
  margin-top: 3rem;
  background: var(--bg-secondary);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Testimonials (Honest Placeholder)
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-secondary);
}

.testimonial-placeholder-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  border: 1px solid var(--border-card);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.placeholder-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-peach);
  background: var(--accent-peach-soft);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.placeholder-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
}

.placeholder-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  background-color: var(--bg-primary);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(222, 130, 97, 0.4);
}

.faq-trigger {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-peach);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #FFFFFF;
}

.faq-item.active .faq-content {
  max-height: 380px;
}

.faq-body {
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-dark-card);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.contact-channel-item:hover {
  border-color: var(--accent-peach);
  transform: translateX(4px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(222, 130, 97, 0.15);
  color: var(--accent-peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.channel-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  display: block;
}

.channel-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.contact-card-right {
  background: var(--bg-dark-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-right h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-card-right p {
  color: var(--text-light-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* ==========================================================================
   Brand Kit & Download Section
   ========================================================================== */
.brand-kit-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
}

.brand-kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.kit-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.kit-preview {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-card);
  padding: 1.5rem;
}

.kit-preview.dark-preview {
  background: var(--bg-dark);
}

.kit-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.kit-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.kit-actions {
  display: flex;
  gap: 0.75rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #111315;
  color: var(--text-light-muted);
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.footer-brand .footer-slogan {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--accent-sand);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent-peach);
  padding-left: 3px;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   Modals & Drawers
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 24, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-dialog {
  background: #FFFFFF;
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  position: relative;
  box-shadow: var(--shadow-elevated);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-card);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--text-primary);
  color: #FFFFFF;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-elevated);
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-image-wrapper img {
    height: 420px;
  }
  .story-grid, .founder-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder-photo-wrapper img {
    height: 440px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .logo-link {
    margin-right: 0;
  }
  .logo-main {
    font-size: 1.45rem;
  }
  .logo-subline {
    font-size: 0.58rem;
  }
  .nav-desktop, .header-contact-link {
    display: none;
  }
  .header-actions {
    gap: 0.75rem;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero {
    min-height: auto;
    max-height: none;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 3.5rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .brand-kit-grid {
    grid-template-columns: 1fr;
  }
  .kit-card {
    padding: 1.5rem 1.25rem;
  }
  .hero-image-wrapper img {
    height: 320px;
  }
  .hero-image-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }
  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .quote-wrapper {
    padding: 2rem 1.25rem;
  }
  .story-quote-card {
    padding: 2rem 1.5rem;
  }
  .story-quote-text {
    font-size: 1.25rem;
  }
  .founder-photo-wrapper img {
    height: 380px;
  }
  .contact-card-right {
    padding: 2rem 1.5rem;
  }
  .ba-container {
    height: 320px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: var(--bg-card);
  z-index: 1500;
  box-shadow: var(--shadow-elevated);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ==========================================================================
   Subpage Headers & Shared Components
   ========================================================================== */
.subpage-hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.subpage-hero .eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.subpage-hero .section-title {
  margin-bottom: 1rem;
}

.subpage-hero .section-desc {
  max-width: 680px;
  margin: 0 auto;
}

.subpage-cta-banner {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) 2rem;
  text-align: center;
  margin: 4rem auto 0;
  max-width: 820px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.subpage-cta-banner h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.subpage-cta-banner p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.subpage-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card-author {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-card-location {
  font-size: 0.82rem;
  color: var(--accent-peach);
  margin-top: 0.2rem;
}

/* ==========================================================================
   Products We Use & Highlights (How It Works)
   ========================================================================== */
.owner-supervised-banner {
  margin-top: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-peach);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: var(--shadow-subtle);
}

.owner-supervised-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-peach-soft);
  color: var(--accent-peach);
  display: flex;
  align-items: center;
  justify-content: center;
}

.owner-supervised-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.owner-supervised-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .owner-supervised-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
}

.products-section {
  margin-top: 5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(222, 130, 97, 0.4);
}

.product-logo-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.product-logo-wrapper img {
  max-height: 48px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
}

.product-brand-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-peach);
  margin-bottom: 0.5rem;
}

.product-brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.product-brand-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.product-brand-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-peach);
  margin-top: auto;
  line-height: 1.6;
}


