/* ═══════════════════════════════════════════════════════════════
   SHAMAL THEME — Consolidated CSS
   Generated from: index.css resets + App.css + inline component styles
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════
   RESETS & VARIABLES (from index.css)
   ═══════════════════════════════════════════ */

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

:root {
  --brown: #8B5E3C;
  --brown-dark: #6B4226;
  --brown-light: #A67B5B;
  --cream: #FDF8F0;
  --white: #FFFFFF;
  --text-dark: #2D2D2D;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --bakery-bg: #FEFCF9;
  --pink-leaf: #D4A0B0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  border: none;
  background: none;
  cursor: poRoboto;
  font-family: inherit;
}


/* ═══════════════════════════════════════════════════════════════
   APP.CSS (verbatim)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   GLOBAL
   ═══════════════════════════════════════════ */

body {
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 79px,
    rgba(0, 0, 0, 0.03) 79px,
    rgba(0, 0, 0, 0.03) 80px
  );
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 60px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(122, 79, 46, 0.15);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 40px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: brightness(0.4);
}

.nav-left a,
.nav-right a,
.nav-dropdown span {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #2C1A0E;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: poRoboto;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-dropdown:hover span {
  color: #7A4F2E;
}

.nav-search {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: poRoboto;
  color: #2C1A0E;
  padding: 0;
  transition: color 0.2s;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  background: transparent;
  min-width: 180px;
}

.dropdown-menu-inner {
  background: #ffffff;
  border: 1px solid rgba(124, 158, 142, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(124, 158, 142, 0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  animation: dropdownFadeIn 0.25s ease-out forwards;
}

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

.dropdown-menu-inner a {
  display: block;
  padding: 12px 20px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  animation: slideIn 0.2s ease-out forwards;
  border-bottom: 1px solid rgba(124, 158, 142, 0.08);
}

.dropdown-menu-inner a:last-child {
  border-bottom: none;
}

.dropdown-menu-inner a:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu-inner a:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu-inner a:nth-child(3) { animation-delay: 0.15s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dropdown-menu-inner a:hover {
  background: var(--sage-pale);
  color: var(--sage-deep);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: poRoboto;
  padding: 8px;
  background: none;
  border: none;
  z-index: 101;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2C1A0E;
  transition: all 0.25s;
  transform-origin: center;
}

/* Mobile menu - hidden on desktop */
.mobile-menu {
  display: none;
}

/* ═══════════════════════════════════════════
   NAVBAR RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .site-nav {
    padding: 14px clamp(20px, 4vw, 60px);
  }

  .nav-left, .nav-right {
    gap: clamp(16px, 2vw, 32px);
  }

  .nav-center {
    margin: 0 clamp(20px, 3vw, 40px);
  }

  .logo-img {
    width: clamp(70px, 10vw, 90px);
    height: clamp(70px, 10vw, 90px);
  }

  .nav-left a, .nav-right a, .nav-dropdown span {
    font-size: clamp(13px, 1.2vw, 14px);
  }
}

@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: 1fr auto auto;
    padding: 12px 20px;
  }

  .nav-left {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .nav-center {
    margin: 0;
    grid-column: 1;
  }

  .nav-hamburger {
    display: flex !important;
    grid-column: 3;
    justify-self: end;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

  /* Mobile Menu Overlay */
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 99;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    max-width: 300px;
  }

  .mobile-menu a,
  .mobile-dropdown button {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #2C1A0E;
    text-decoration: none;
    padding: 14px 24px;
    text-align: center;
    width: 100%;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: poRoboto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .mobile-menu a:hover,
  .mobile-dropdown button:hover {
    color: #7A4F2E;
  }

  .mobile-cta {
    margin-top: 12px;
    background: #C27B4A !important;
    color: #FFFFFF !important;
    border-radius: 8px;
  }

  .mobile-cta:hover {
    background: #a6643d !important;
  }

  /* Mobile Dropdown */
  .mobile-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mobile-dropdown-trigger {
    position: relative;
  }

  .dropdown-arrow {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s;
  }

  .mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    border-radius: 8px;
    margin-top: 4px;
    border: 1px solid rgba(124, 158, 142, 0.2);
    box-shadow: 0 4px 20px rgba(124, 158, 142, 0.1);
  }

  .mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 200px;
  }

  .mobile-dropdown-menu a {
    font-size: 15px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(124, 158, 142, 0.1);
  }

  .mobile-dropdown-menu a:last-child {
    border-bottom: none;
  }

  /* Hamburger animation */
  .nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

@media (max-width: 480px) {
  .site-nav {
    padding: 10px 16px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .nav-hamburger span {
    width: 20px;
  }

  .mobile-menu a,
  .mobile-dropdown button {
    font-size: 16px;
    padding: 12px 20px;
  }

  .mobile-dropdown-menu a {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  min-height: 120vh;
  padding: 100px 72px 80px;
  display: flex;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 24, 24, 0.08);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* --- Hero Left — Image --- */

.hero-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroUp 0.9s ease 0.05s forwards;
}

.img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
}

.img-wrap::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(24, 24, 24, 0.13);
  poRoboto-events: none;
  z-index: 0;
}

.img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.img-arc {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: #7A4F2E;
  border-right-color: #7A4F2E;
  opacity: 0.35;
  z-index: 2;
  poRoboto-events: none;
  transform: rotate(-30deg);
}

.img-badge {
  position: absolute;
  bottom: 12px;
  left: -20px;
  z-index: 10;
  background: #0F0F0F;
  padding: 14px 20px;
}

.badge-num {
  font-family: serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  display: block;
}

.badge-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 4px;
}

.img-pill {
  position: absolute;
  top: 20px;
  right: -16px;
  z-index: 10;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.13);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7A4F2E;
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

.pill-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(24, 24, 24, 0.44);
  white-space: nowrap;
}

.dot-grid {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(122, 79, 46, 0.2) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 0;
  poRoboto-events: none;
}

/* --- Hero Right — Text --- */

.hero-right {
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: heroUp 0.9s ease 0.18s forwards;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
}

.hero-h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
  margin-bottom: 32px;
}

.hero-h1 em {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  color: #7A4F2E;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(24, 24, 24, 0.85);
  max-width: 440px;
  margin-bottom: 14px;
  padding-left: 20px;
  border-left: 2px solid rgba(122, 79, 46, 0.6);
}

.hero-sub {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(24, 24, 24, 0.75);
  max-width: 420px;
  margin-bottom: 48px;
  padding-left: 22px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #4A2E14;
  border: none;
  padding: 15px 28px;
  cursor: poRoboto;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #3A2010;
  transform: translateY(-1px);
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(24, 24, 24, 0.44);
  background: transparent;
  border: 1px solid rgba(24, 24, 24, 0.5);
  padding: 15px 24px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: #181818;
  border-color: #7A4F2E;
}

/* --- Trust Row --- */

.trust {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(24, 24, 24, 0.3);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-family: serif;
  font-size: 28px;
  font-weight: 700;
  color: #181818;
  line-height: 1;
}

.trust-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(24, 24, 24, 0.44);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(24, 24, 24, 0.13);
}

/* --- Ticker --- */

.ticker-wrap {
  width: 100%;
  background: #0F0F0F;
  overflow: hidden;
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 36px;
  font-family: sans-serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.ticker-item::after {
  content: '\00B7';
  font-style: normal;
  font-size: 18px;
  color: #ffffff;
  opacity: 0.7;
}

/* --- Hero Animations --- */

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.6); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Hero Responsive --- */

@media (max-width: 960px) {
  .site-nav {
    display: flex;
    justify-content: space-between;
    padding: 18px 32px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-center {
    margin: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 32px 80px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-left {
    order: -1;
  }

  .img-wrap {
    max-width: 320px;
  }

  .img-badge {
    left: 4px;
  }

  .img-pill {
    right: 4px;
  }

  .dot-grid {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 120px 20px 64px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
  }

  .trust {
    gap: 20px;
  }
}


/* ═══════════════════════════════════════════
   BAKERY SECTION
   ═══════════════════════════════════════════ */

.bakery-section {
  position: relative;
  padding: 20px 32px 70px;
  background: #ffffff;
  font-family: sans-serif;
  overflow: hidden;
  text-align: center;
}

.bakery-flower {
  position: absolute;
  width: 160px;
  poRoboto-events: none;
  z-index: 0;
  opacity: 0.85;
}

.bakery-flower-left {
  left: -10px;
  top: 45%;
  transform: translateY(-50%) scaleX(-1);
}

.bakery-flower-right {
  right: -10px;
  top: 25%;
  transform: translateY(-30%);
}

.bakery-coffee-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  poRoboto-events: none;
  z-index: 0;
}

.coffee-icon {
  position: absolute;
  font-size: 18px;
  opacity: 0.12;
  color: #7A4F2E;
}

.coffee-icon-1 { top: 65%; left: 12%; }
.coffee-icon-2 { top: 75%; left: 8%; }
.coffee-icon-3 { top: 70%; right: 15%; }

.bakery-header {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.bakery-title {
  font-family: serif;
  font-size: 52px;
  font-weight: 900;
  color: #181818;
  line-height: 1.3;
  margin-bottom: 28px;
}

.bakery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: #4A2E14;
  color: #F5EDE0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.22s, transform 0.22s;
  margin-bottom: 14px;
}

.bakery-btn:hover {
  background: #3A2010;
  transform: translateY(-1px);
}

.bakery-offer {
  font-size: 12px;
  color: rgba(44, 26, 14, 0.45);
  letter-spacing: 0.3px;
}

.bakery-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.bakery-img-card {
  width: 260px;
  height: 280px;
  overflow: hidden;
  border: 1px solid rgba(122, 79, 46, 0.15);
  transition: transform 0.25s ease;
}

.bakery-img-card:hover {
  transform: translateY(-4px);
}

.bakery-img-center {
  width: 280px;
  height: 300px;
  margin-top: -10px;
}

.bakery-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bakery-offer-section {
  position: relative;
  z-index: 2;
}

.bakery-subtitle {
  font-family: serif;
  font-size: 34px;
  font-weight: 900;
  color: #2C1A0E;
  margin-bottom: 16px;
}

.bakery-offer-text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(44, 26, 14, 0.45);
  max-width: 480px;
  margin: 0 auto;
}

/* --- Free GTM Resources --- */

.resources-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;
}

.resources-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
}

.resources-label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.resources-title {
  font-family: 'Georgia', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500; 
  color: #2C1A0E;
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto;
}

.resources-grid {
  display: flex;
  justify-content: center;
  gap: 36px;
  position: relative;
  z-index: 2;
}

.resource-card {
  flex: 0 0 280px;
  text-align: center;
}

.resource-img-card {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(122, 79, 46, 0.15);
}

.resource-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.resource-card:hover .resource-img-card img {
  transform: scale(1.05);
}

.resource-tag {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A4F2E;
  background: rgba(122, 79, 46, 0.1);
  border: 1px solid rgba(122, 79, 46, 0.18);
  padding: 5px 12px;
  margin-bottom: 14px;
}

.resource-name {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 500;
  color: #2C1A0E;
  line-height: 1.2;
  margin: 0 0 12px;
}

.resource-desc {
	font-family: 'Roboto', serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(44, 26, 14, 0.45);
  margin-bottom: 20px;
}

.resource-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #4A2E14;
  color: #F5EDE0;
  transition: background 0.22s, transform 0.22s;
}

.resource-btn:hover {
  background: #3A2010;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════
   GTM QUESTIONS SECTION
   ═══════════════════════════════════════════ */

.gtm-section {
  background: #ffffff;
  color: #181818;
  font-family: sans-serif;
  padding: 80px 32px;
  display: flex;
  justify-content: center;
}

.gtm-container {
  max-width: 1160px;
  width: 100%;
}

/* --- GTM Header --- */

.gtm-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
  margin-bottom: 60px;
}

.gtm-header-left {
  min-width: 0;
}

.gtm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
}

.gtm-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.gtm-headline {
  font-family: serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
  margin: 0;
}

.gtm-headline em {
  font-family: serif;
  font-style: italic;
  font-weight: 600;
  color: #7A4F2E;
}

.gtm-view-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #181818;
  text-decoration: none;
  border: 1px solid rgba(24, 24, 24, 0.3);
  padding: 13px 22px;
  background: transparent;
  transition: background 0.22s, border-color 0.22s;
  white-space: nowrap;
}

.gtm-view-all:hover {
  background: rgba(122, 79, 46, 0.1);
  border-color: #7A4F2E;
}

.gtm-view-all svg {
  transition: transform 0.22s;
}

.gtm-view-all:hover svg {
  transform: translateX(4px);
}

/* --- GTM Grid --- */

.gtm-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: rgba(122, 79, 46, 0.15);
  border: 1px solid rgba(122, 79, 46, 0.15);
}

/* --- GTM Cards --- */

.gtm-card {
  background: #ffffff;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: none;
}


.gtm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #7A4F2E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* --- Card Watermark --- */

.gtm-card-wm {
  position: absolute;
  bottom: -8px;
  right: 16px;
  font-family: serif;
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  color: rgba(122, 79, 46, 0.08);
  line-height: 1;
  poRoboto-events: none;
  user-select: none;
  transition: color 0.3s;
}


/* --- Card Number --- */

.gtm-card-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #7A4F2E;
  opacity: 0.7;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gtm-card-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(122, 79, 46, 0.15);
}

/* --- Card Question --- */

.gtm-card-q {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #181818;
  margin-top: 6px;
  flex: 1;
}

/* --- Grid placement --- */

.gtm-card-col1 { grid-column: 1; grid-row: 1 / 3; }
.gtm-card-pos-2 { grid-column: 2; grid-row: 1; }
.gtm-card-pos-3 { grid-column: 3; grid-row: 1; }
.gtm-card-pos-4 { grid-column: 2; grid-row: 2; }
.gtm-card-pos-5 { grid-column: 3; grid-row: 2; }
.gtm-card-col4 { grid-column: 4; grid-row: 1 / 3; }

/* --- Featured Card (tall, spans rows) --- */

.gtm-card-featured {
  background: #0f0e0c;
  min-height: 520px;
  padding: 52px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.gtm-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}

.gtm-card-featured .gtm-card-num {
  color: #c4622d;
  opacity: 1;
  font-family: sans-serif;
  margin-bottom: 8px;
}

.gtm-card-featured .gtm-card-num::after {
  background: rgba(255, 255, 255, 0.1);
}

.gtm-card-featured .gtm-card-wm {
  color: rgba(255, 255, 255, 0.06);
  font-size: 96px;
  font-weight: 300;
  font-style: italic;
}


.gtm-card-featured .gtm-card-q {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: #ffffff;
  margin: 20px 0 16px;
}

/* --- Accent Card --- */

.gtm-card-accent {
  background: #f7ece5;
}


.gtm-card-accent::before {
  background: rgba(255, 255, 255, 0.3);
}

.gtm-card-accent .gtm-card-num {
  color: rgba(255, 220, 180, 0.5);
  opacity: 1;
}

.gtm-card-accent .gtm-card-num::after {
  background: rgba(255, 255, 255, 0.12);
}

.gtm-card-accent .gtm-card-q {
  color: #181818;
}

.gtm-card-accent .gtm-card-wm {
  color: rgba(255, 255, 255, 0.06);
  font-weight: 300;
  font-style: italic;
  bottom: -8px;
}

.gtm-card-pos-5 .gtm-card-wm {
  bottom: -8px;
}

/* --- Bottom Strip --- */

.gtm-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(122, 79, 46, 0.15);
}

.gtm-closing {
  font-family: serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  font-style: italic;
  color: #181818;
  text-align: center;
  line-height: 1.3;
}

/* --- GTM Responsive --- */

@media (max-width: 900px) {
  .gtm-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gtm-card-col1,
  .gtm-card-col4 {
    grid-column: span 2;
    grid-row: auto;
  }

  .gtm-card-pos-2,
  .gtm-card-pos-3,
  .gtm-card-pos-4,
  .gtm-card-pos-5 {
    grid-column: auto;
    grid-row: auto;
  }

  .gtm-header {
    grid-template-columns: 1fr;
  }

  .gtm-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .gtm-grid {
    grid-template-columns: 1fr;
  }

  .gtm-card-col1,
  .gtm-card-col4 {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .gtm-section {
    padding: 60px 16px;
  }

  .gtm-card {
    min-height: 200px;
    padding: 28px 24px 24px;
  }

  .gtm-card-featured {
    padding: 36px 28px 32px;
  }
}


/* ═══════════════════════════════════════════
   SERVICES SECTION (How We Work Together)
   ═══════════════════════════════════════════ */

.svc-section {
  background: #ffffff;
  font-family: sans-serif;
  padding: 80px 32px;
  display: flex;
  justify-content: center;
}

.svc-container {
  width: 100%;
  max-width: 1160px;
}

/* --- Header --- */

.svc-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
  margin-bottom: 60px;
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
}

.svc-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.svc-headline {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
  max-width: 700px;
  margin: 0;
}

.svc-headline em {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  color: #7A4F2E;
}

/* --- Grid --- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(24, 24, 24, 0.15);
  border: 1px solid rgba(24, 24, 24, 0.15);
}

/* --- Card Base --- */

.svc-card {
  background: #ffffff;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s;
  cursor: default;
}

.svc-card:hover {
  background: #fdfbf8;
}

.svc-card:hover {
  background: #F0E4D2;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #7A4F2E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

/* --- Watermark --- */

.svc-wm {
  position: absolute;
  bottom: 2px;
  right: 20px;
  font-family: serif;
  font-size: 100px;
  font-weight: 400;
  font-style: italic;
  color: rgba(122, 79, 46, 0.25);
  line-height: 1;
  poRoboto-events: none;
  user-select: none;
  transition: color 0.3s;
  z-index: 0;
}

.svc-card:hover .svc-wm {
  color: rgba(122, 79, 46, 0.25);
}

/* --- Card Header --- */

.svc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.svc-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7469;
  border: 1px solid rgba(15, 14, 12, 0.12);
  border-radius: 2px;
  padding: 3px 8px;
  width: fit-content;
}

.svc-card-num {
  font-family: serif;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: rgba(122, 79, 46, 0.35);
  letter-spacing: 0.08em;
}

/* --- Card Content --- */

.svc-title {
  font-family: 'Georgia', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  /*font-style: italic;*/
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #0f0e0c;
  margin: 6px 0 0;
}

.svc-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #7a7469;
  font-weight: 300;
  flex: 1;
  margin-bottom: 24px;
}

.svc-divider {
  width: 32px;
  height: 1.5px;
  background: rgba(122, 79, 46, 0.15);
  margin-bottom: 12px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: #0f0e0c;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 14, 12, 0.12);
  padding-bottom: 2px;
  width: fit-content;
  margin-top: auto;
  padding-top: 12px;
  transition: color 0.2s, border-color 0.2s;
}

.svc-link:hover {
  color: #c4622d;
  border-color: #c4622d;
}

.svc-link svg {
  transition: transform 0.22s;
}

.svc-link:hover svg {
  transform: translateX(3px);
}

/* --- Featured Card --- */

.svc-card-featured {
  background: #0f0e0c;
  padding: 24px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.svc-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.3) 0%, transparent 60%);
  poRoboto-events: none;
}

.svc-card-featured:hover {
  background: #0f0e0c;
}

.svc-popular {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C27B4A;
  background: rgba(194, 123, 74, 0.15);
  border: 1px solid rgba(194, 123, 74, 0.3);
  padding: 5px 12px;
}

.svc-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-popular::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C27B4A;
}

.svc-card-featured .svc-card-header {
  margin-bottom: 0;
}

.svc-card-featured .svc-tag {
  color: #c4622d;
  border-color: rgba(196, 98, 45, 0.35);
  background: transparent;
}

.svc-card-featured .svc-card-num {
  color: rgba(255, 220, 180, 0.3);
}

.svc-card-featured .svc-title {
  color: #ffffff;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 8px 0 12px;
}

.svc-card-featured .svc-desc {
  color: rgba(245, 242, 236, 0.62);
  max-width: 380px;
  margin-bottom: 20px;
}

.svc-card-featured .svc-divider {
  background: rgba(255, 255, 255, 0.1);
}

.svc-card-featured .svc-link {
  color: #ffffff;
  border-color: rgba(245, 242, 236, 0.3);
  margin-top: 36px;
}

.svc-card-featured .svc-link:hover {
  color: #c4622d;
  border-color: #c4622d;
}

/* --- Accent Card --- */

.svc-card-accent {
  background: #f7ece5;
}

.svc-card-accent:hover {
  background: #f3e2d8;
}

.svc-card-featured .svc-wm {
  color: rgba(255, 255, 255, 0.12);
  font-weight: 300;
}

.svc-card-featured:hover .svc-wm {
  color: rgba(255, 255, 255, 0.18);
}

.svc-card-accent .svc-wm {
  color: rgba(15, 14, 12, 0.15);
  z-index: 10;
}

/* Orange glow at center */
.svc-card-featured::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196, 98, 45, 0.3) 0%, transparent 65%);
  border-radius: 50%;
  poRoboto-events: none;
  z-index: 0;
}

/* --- Bottom Strip --- */

.svc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(122, 79, 46, 0.15);
  flex-wrap: wrap;
}

.svc-bottom-text {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(44, 26, 14, 0.45);
  max-width: 400px;
}

.svc-bottom-text strong {
  color: #2C1A0E;
  font-weight: 500;
}

.svc-btn-primary {
  font-family: sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5EDE0;
  background: #4A2E14;
  border: none;
  padding: 15px 28px;
  cursor: poRoboto;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.22s, transform 0.22s;
}

.svc-btn-primary:hover {
  background: #3A2010;
  transform: translateY(-1px);
}

.svc-btn-primary svg {
  transition: transform 0.22s;
}

.svc-btn-primary:hover svg {
  transform: translateX(4px);
}

/* --- Services Responsive --- */

@media (max-width: 820px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-nav { padding: 20px 30px; }
  .nav-left, .nav-right { gap: 20px; }
  .nav-logo { margin: 0 24px; }
  .hero-left { min-height: 420px; }
  .hero-left::before { width: 360px; height: 360px; }
  .hero-circle-large { width: 200px; height: 200px; }
  .hero-circle-medium { width: 210px; height: 210px; }
  .hero-circle-small { width: 130px; height: 130px; }
  .hero-right { padding: 30px 40px 40px 20px; }
  .hero-title { font-size: 38px; }
  .hero-stats { gap: 40px; padding: 20px 30px; }
  .stat-number { font-size: 24px; }
  .bakery-title { font-size: 42px; }
  .bakery-images { gap: 20px; }
  .bakery-img-card { width: 220px; height: 240px; }
  .bakery-img-center { width: 240px; height: 260px; }
  .resources-grid { gap: 24px; }
  .resource-card { flex: 0 0 240px; }
  .resource-img-card { height: 260px; }
  .svc-section { padding: 70px 40px 60px; }
}

@media (max-width: 768px) {
  .hero-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; padding: 16px 20px; }
  .nav-left, .nav-right { gap: 16px; font-size: 14px; }
  .nav-logo { margin: 0 16px; }
  .hero-content { flex-direction: column; }
  .hero-left { flex: none; min-height: 380px; order: 1; }
  .hero-left::before { width: 300px; height: 300px; }
  .hero-circle-large { width: 180px; height: 180px; left: 20%; }
  .hero-circle-medium { width: 190px; height: 190px; }
  .hero-circle-small { width: 120px; height: 120px; left: 18%; }
  .hero-right { flex: none; padding: 30px 24px; order: 2; align-items: center; }
  .hero-title { font-size: 34px; text-align: center; }
  .hero-description { font-size: 14px; text-align: center; }
  .hero-decoration-circle { width: 200px; height: 200px; top: -80px; left: -80px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
  .bakery-section { padding: 50px 20px; }
  .bakery-title { font-size: 32px; }
  .bakery-images { flex-direction: column; align-items: center; gap: 20px; }
  .bakery-img-card, .bakery-img-center { width: 280px; height: 260px; margin-top: 0; }
  .bakery-subtitle { font-size: 28px; }
  .bakery-flower { width: 90px; }
  .resources-grid { flex-direction: column; align-items: center; }
  .resource-card { flex: none; width: 300px; max-width: 100%; }
  .resources-title { font-size: 26px; }
  .gtm-section { padding: 3rem 1.25rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-left { padding: 24px 20px; }
  .bakery-title { font-size: 26px; }
  .bakery-img-card, .bakery-img-center { width: 100%; max-width: 300px; height: 240px; }
  .svc-section { padding: 50px 20px 40px; }
}

/* ═══════════════════════════════════════════
   BEHIND SECTION
   ═══════════════════════════════════════════ */

.behind-section {
  background: #0f0e0c;
  font-family: sans-serif;
  padding: 100px 32px;
  position: relative;
}

.behind-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
}

.behind-section {
  display: flex;
  justify-content: center;
}

.behind-container {
  max-width: 1160px;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
}

.behind-image {
  flex: 0 0 400px;
}

.behind-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid rgba(74, 46, 20, 0.12);
  border-radius: 12px;
}

.behind-content {
  flex: 1;
}

.behind-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
}

.behind-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.behind-title {
  font-family: 'Georgia', serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.behind-text {
	font-family: 'Roboto', serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(245, 242, 236, 0.62);
  margin-bottom: 16px;
}

.behind-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 14px 26px;
  background: #C27B4A;
  color: #F5EDE0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: poRoboto;
  transition: background 0.22s, transform 0.22s;
}

.behind-btn:hover {
  background: #A8653A;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .behind-container {
    flex-direction: column;
    gap: 40px;
  }

  .behind-image {
    flex: none;
    width: 100%;
  }

  .behind-image img {
    height: 350px;
  }
}

/* ═══════════════════════════════════════════
   BLOG SECTION
   ═══════════════════════════════════════════ */

.blog-section {
  background: #ffffff;
  color: #181818;
  font-family: sans-serif;
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}

.blog-container {
  max-width: 1200px;
  width: 100%;
}

/* --- Blog Header --- */

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
  gap: 24px;
}

.blog-header-left {
  flex: 1;
}

.blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
}

.blog-eyebrow-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.blog-headline {
  font-family: serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #181818;
  letter-spacing: -0.02em;
  margin: 0;
}

.blog-headline em {
  font-family: serif;
  font-style: italic;
  font-weight: 700;
  color: #7A4F2E;
}

.bs-headline {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
  margin: 0;
}

.bs-headline em {
  font-family:  'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  color: #7A4F2E;
}

.blog-view-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #181818;
  text-decoration: none;
  padding: 13px 22px;
  border: 1px solid rgba(24, 24, 24, 0.3);
  background: transparent;
  transition: background 0.22s, border-color 0.22s;
  white-space: nowrap;
}

.blog-view-all:hover {
  background: rgba(122, 79, 46, 0.1);
  border-color: #7A4F2E;
}

.blog-view-all svg {
  transition: transform 0.22s;
}

.blog-view-all:hover svg {
  transform: translateX(4px);
}

/* --- Blog Grid --- */

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: rgba(24, 24, 24, 0.15);
  border: 1px solid rgba(24, 24, 24, 0.15);
}

/* --- Blog Cards --- */

.blog-card {
  background: rgba(245, 237, 224, 0.4);
  padding: 24px 28px 24px;
  position: relative;
  overflow: hidden;
  cursor: poRoboto;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: #7A4F2E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover::after {
  transform: scaleX(1);
}

.blog-card:hover {
  background: #F0E4D2;
}

/* Featured card spans full left column */
.blog-card-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #4A2E14;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.blog-card-featured::after {
  background: #C27B4A;
  left: 40px;
  right: 40px;
}

.blog-card-featured:hover {
  background: #3A2010;
}

.blog-card-featured .blog-tag {
  color: rgba(255, 220, 180, 0.45);
}

.blog-card-featured .blog-card-title {
  font-size: clamp(24px, 2.5vw, 32px);
  color: #F5E8D5;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 12px 0;
  padding-bottom: 0;
}

.blog-card-featured .blog-card-excerpt {
  color: #F5E8D5;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  max-width: 90%;
}

.blog-card-featured .blog-read-more {
  color: #C27B4A;
  justify-content: center;
  width: 100%;
}

.blog-card-sm {
  min-height: 180px;
}

/* --- Blog Accent Card (brown) --- */

.blog-card-accent {
  background: #7A4F2E;
}

.blog-card-accent:hover {
  background: #6A3F22;
}

.blog-card-accent::after {
  background: rgba(255, 255, 255, 0.3);
}

.blog-card-accent .blog-tag {
  color: rgba(255, 220, 180, 0.5);
}

.blog-card-accent .blog-card-title {
  color: #F5EDE0;
}

.blog-card-accent .blog-card-excerpt {
  color: rgba(245, 237, 224, 0.7);
}

.blog-card-accent .blog-read-more {
  color: rgba(255, 220, 180, 0.9);
}

.blog-card-accent .blog-read-more:hover {
  border-color: rgba(255, 220, 180, 0.5);
}

/* --- Blog Tag --- */

.blog-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(122, 79, 46, 0.5);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* --- Blog Card Title --- */

.blog-card-title {
  font-family: serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.15;
  color: #181818;
  margin: 0 0 auto;
  padding-bottom: 28px;
  flex: 1;
}

/* --- Blog Card Excerpt --- */

.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.85;
  color: #181818;
  margin-bottom: 32px;
  margin-top: -16px;
}

/* --- Blog Read More --- */

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A4F2E;
  text-decoration: none;
  margin-top: 24px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap 0.22s, border-color 0.22s;
}

.blog-read-more:hover {
  gap: 14px;
  border-color: #7A4F2E;
}

/* --- Blog Card Number --- */

.blog-card-number {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: serif;
  font-size: 96px;
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  poRoboto-events: none;
  user-select: none;
}

/* --- Blog Stat Strip --- */

.blog-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(122, 79, 46, 0.15);
  margin-top: 1px;
}

.blog-stat {
  padding: 22px 32px;
  background: #F5EDE0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.blog-stat-num {
  font-family: serif;
  font-size: 28px;
  font-weight: 700;
  color: #2C1A0E;
}

.blog-stat-label {
  font-size: 11px;
  color: rgba(44, 26, 14, 0.45);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* --- Blog Responsive --- */

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .blog-card-featured {
    grid-column: 1;
    grid-row: auto;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 60px 16px;
  }

  .blog-card {
    padding: 28px 20px 24px;
  }

  .blog-card-featured {
    padding: 36px 24px 32px;
  }

  .blog-card-number {
    font-size: 64px;
    bottom: 24px;
    right: 24px;
  }
}

/* ═══════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════ */

.newsletter {
  width: 100%;
  background: #0f0e0c;
  font-family: sans-serif;
  position: relative;
  padding: 100px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: 32px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-bottom: 1.5px solid #C27B4A;
  border-right: 1.5px solid #C27B4A;
  opacity: 0.15;
}

.nl-wm {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: serif;
  font-size: 260px;
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 232, 213, 0.03);
  line-height: 1;
  poRoboto-events: none;
  user-select: none;
}

.nl-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.nl-left > div {
  align-items: center;
  position: relative;
  z-index: 1;
}

.nl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C27B4A;
  margin-bottom: 18px;
}

.nl-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #C27B4A;
  opacity: 0.6;
}

.nl-title {
  font-family: 'Georgia', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #F5E8D5;
  margin-bottom: 0;
}

.nl-title em {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 700;
  color: rgba(245, 232, 213, 0.7);
}

.nl-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nl-text {
	font-family:'Roboto', serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(245, 232, 213, 0.5);
  margin-bottom: 36px;
  border-left: 2px solid rgba(122, 79, 46, 0.35);
  padding-left: 18px;
}

.nl-btn {
  font-family: sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: #C27B4A;
  border: none;
  padding: 15px 28px;
  cursor: poRoboto;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nl-btn svg {
  transition: transform 0.2s;
}

.nl-btn:hover {
  background: #A8653A;
}

.nl-btn:hover svg {
  transform: translateX(4px);
}

.nl-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nl-input {
  flex: 1;
  font-family: sans-serif;
  font-size: 13px;
  color: #F5E8D5;
  background: rgba(245, 232, 213, 0.06);
  border: 1px solid rgba(245, 232, 213, 0.15);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.nl-input::placeholder {
  color: rgba(245, 232, 213, 0.4);
}

.nl-input:focus {
  border-color: #C27B4A;
  background: rgba(245, 232, 213, 0.08);
}

.nl-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nl-stat-num {
  font-family: serif;
  font-size: 26px;
  font-weight: 700;
  color: #F5E8D5;
  line-height: 1;
  display: block;
}

.nl-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 232, 213, 0.5);
  margin-top: 4px;
  display: block;
}

.nl-stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(245, 232, 213, 0.1);
}

.nl-disclaimer {
  font-family: Roboto, sans-serif;
  font-size: 0.75rem;
  color: rgba(245, 232, 213, 0.4);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .newsletter {
    padding: 72px 32px;
  }

  .nl-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 560px) {
  .newsletter {
    padding: 60px 24px;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-input {
    width: 100%;
  }

  .nl-btn {
    width: 100%;
    justify-content: center;
  }

  .nl-stats {
    gap: 1.5rem;
  }

  .nl-stat-num {
    font-size: 22px;
  }
}

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

.site-footer {
  width: 100%;
  background: #0D0D0D;
  font-family: sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 72px 60px 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 48px;
}

.footer-brand-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.footer-brand-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.01em;
}

.footer-logo span {
  color: #7A4F2E;
}

.footer-logo .no-italic {
  font-style: normal;
}

.footer-tagline {
  font-family: 'Roboto', serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  max-width: 220px;
  margin: 0;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A4F2E;
  background: rgba(122, 79, 46, 0.1);
  border: 1px solid rgba(122, 79, 46, 0.2);
  padding: 5px 12px;
}

.footer-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7A4F2E;
  opacity: 0.7;
}

.footer-col-heading {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a,
.footer-list a[class] {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.footer-list a:hover,
.footer-list a[class]:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-contact-link {
  font-family: sans-serif;
  font-size: 13px;
  color: rgba(245, 232, 213, 0.4);
  text-decoration: none;
  transition: color 0.22s;
}

.footer-contact-link:hover {
  color: #F5E8D5;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-btn:hover {
  background: rgba(122, 79, 46, 0.15);
  color: #7A4F2E;
  border-color: rgba(122, 79, 46, 0.35);
}

.social-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  margin: 0;
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
  .newsletter {
    padding: 72px 32px;
  }

  .nl-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer {
    padding: 60px 32px 0;
  }

  .footer-brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-brand-divider {
    display: none;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .nl-btn {
    justify-content: center;
  }

  .site-footer {
    padding: 48px 24px 0;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding: 60px 24px;
  }
}

/* ═══════════════════════════════════════════
   EDITORIAL SERVICES
   ═══════════════════════════════════════════ */

.editorial-services {
  min-height: 100vh;
  background: #ffffff;
  padding: 96px 24px 48px;
  font-family: Roboto, sans-serif;
  color: #181818;
}

.editorial-container {
  max-width: 1400px;
  margin: 0 auto;
}

.editorial-services-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (min-width: 768px) {
  .editorial-services {
    padding: 96px 48px 48px;
  }
}

.editorial-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .editorial-service-item {
    gap: 80px;
  }
}

@media (max-width: 968px) {
  .editorial-service-item {
    grid-template-columns: 1fr !important;
  }
}

.editorial-text-side {
  flex: 1;
  z-index: 10;
}

.editorial-text-content {
  max-width: 32rem;
}

.editorial-title {
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: #181818;
}

.editorial-price {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: #7A4F2E;
  margin-bottom: 2rem;
}

.editorial-description {
  color: rgba(24, 24, 24, 0.85);
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2rem;
}

.editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #4A2E14;
  color: white;
  padding: 1rem 2rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: poRoboto;
  transition: all 0.2s;
  font-family: Roboto, sans-serif;
  text-decoration: none;
}

.editorial-cta:hover {
  background: #3A2010;
  transform: translateY(-1px);
}

.editorial-cta-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.editorial-cta:hover .editorial-cta-icon {
  transform: translate(4px, -4px);
}

/* Image Side */
.editorial-image-side {
  flex: 1;
  position: relative;
}

.editorial-image-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-container {
  max-width: 80rem;
  margin: 0 auto;
}

.editorial-services-list {
  display: flex;
  flex-direction: column;
  gap: 128px;
}

@media (min-width: 1024px) {
  .editorial-services-list {
    gap: 192px;
  }
}

.editorial-service-item {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

@media (min-width: 1024px) {
  .editorial-service-item {
    flex-direction: row;
    align-items: center;
    gap: 96px;
  }

  .editorial-service-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.editorial-text-side {
  flex: 1;
  z-index: 10;
}

.editorial-text-content {
  max-width: 32rem;
}

.editorial-title {
  font-family: serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: #181818;
}

.editorial-price {
  font-family: serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: #7A4F2E;
  margin-bottom: 2rem;
}

.editorial-description {
  color: rgba(24, 24, 24, 0.85);
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2rem;
}

.editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #4A2E14;
  color: white;
  padding: 1rem 2rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: poRoboto;
  transition: all 0.2s;
}

.editorial-cta:hover {
  background: #3A2010;
  transform: translateY(-1px);
}

.editorial-cta-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.editorial-cta:hover .editorial-cta-icon {
  transform: translate(4px, -4px);
}

/* Image Side */
.editorial-image-side {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.editorial-decorative-block {
  position: absolute;
  width: 90%;
  height: 120%;
  background: #F3EFE9;
  opacity: 0.6;
  border-radius: 2px;
  z-index: 0;
}

.editorial-service-item:nth-child(odd) .editorial-decorative-block {
  right: -10%;
}

.editorial-service-item:nth-child(even) .editorial-decorative-block {
  left: -10%;
}

.editorial-image-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.editorial-shadow-offset {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #7A4F2E;
  opacity: 0.08;
  z-index: -1;
}

.editorial-service-item:nth-child(odd) .editorial-shadow-offset {
  bottom: -20px;
  right: -20px;
}

.editorial-service-item:nth-child(even) .editorial-shadow-offset {
  top: -20px;
  left: -20px;
}

.editorial-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 12px solid white;
}

.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(5%);
  transition: transform 1s ease;
}

.editorial-image-wrapper:hover .editorial-image {
  transform: scale(1.05);
}

/* Leaf Overlay */
.editorial-leaf-overlay {
  position: absolute;
  color: #7A4F2E;
  opacity: 0.2;
  transform: rotate(12deg);
  poRoboto-events: none;
}

.editorial-service-item:nth-child(odd) .editorial-leaf-overlay {
  top: -40px;
  right: -40px;
}

.editorial-service-item:nth-child(even) .editorial-leaf-overlay {
  bottom: -40px;
  left: -40px;
}

/* Editorial Page Markings */
.editorial-page-markings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 192px;
  padding-top: 32px;
  border-top: 1px solid #F3EFE9;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: #A09084;
  font-weight: 700;
  opacity: 0.5;
}

.editorial-markings-right {
  display: flex;
  gap: 32px;
}


/* ═══════════════════════════════════════════════════════════════
   INLINE COMPONENT STYLES
   ═══════════════════════════════════════════════════════════════ */


/* ═══ GtmHero (inline) ═══ */

.gtm-hero {
  min-height: 100vh;
  padding: 170px 72px 80px;
  display: flex;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 24, 24, 0.08);
}

.gtm-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gtm-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.gtm-hero-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gtm-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.gtm-hero-title {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
  margin-bottom: 32px;
}

.gtm-hero-title em {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  color: #7A4F2E;
}

.gtm-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(24, 24, 24, 0.85);
  max-width: 550px;
  margin-bottom: 14px;
}

.gtm-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.gtm-hero-btn-primary {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #4A2E14;
  border: none;
  padding: 16px 32px;
  cursor: poRoboto;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background 0.2s, transform 0.2s;
}

.gtm-hero-btn-primary:hover {
  background: #3A2010;
  transform: translateY(-1px);
}

.gtm-hero-btn-ghost {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #181818;
  background: transparent;
  border: 1px solid rgba(24, 24, 24, 0.2);
  padding: 16px 32px;
  cursor: poRoboto;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}

.gtm-hero-btn-ghost:hover {
  border-color: #7A4F2E;
  color: #7A4F2E;
}

/* Hero Image */
.gtm-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.gtm-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.gtm-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(24, 24, 24, 0.13);
  poRoboto-events: none;
  z-index: 0;
}

.gtm-hero-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.gtm-hero-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #0F0F0F;
  padding: 14px 24px;
  border-radius: 8px;
  white-space: nowrap;
}

.gtm-hero-badge-num {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  display: block;
}

.gtm-hero-badge-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 4px;
}

/* GtmHero Responsive */
@media (max-width: 1024px) {
  .gtm-hero {
    padding: 60px 40px;
  }

  .gtm-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .gtm-hero-content {
    order: 2;
  }

  .gtm-hero-image {
    order: 1;
  }

  .gtm-hero-img-wrap {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .gtm-hero {
    padding: 120px 24px 40px;
    min-height: auto;
  }

  .gtm-hero-inner {
    gap: 40px;
  }

  .gtm-hero-desc {
    font-size: 15px;
  }

  .gtm-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .gtm-hero-btn-primary,
  .gtm-hero-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .gtm-hero-img-wrap {
    max-width: 300px;
  }

  .gtm-hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    padding: 12px 20px;
  }

  .gtm-hero-badge-num {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .gtm-hero {
    padding: 120px 20px 32px;
  }

  .gtm-hero-desc {
    font-size: 14px;
  }

  .gtm-hero-img-wrap {
    max-width: 260px;
  }

  .gtm-hero-img-wrap::before {
    inset: -16px;
  }
}


/* ═══ GtmFaq (inline) ═══ */

.gtm-faq-section {
  background: #ffffff;
  padding: 100px 60px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.gtm-faq-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.3;
  poRoboto-events: none;
  z-index: 1;
}

.gtm-faq-corner-tl {
  top: 32px;
  left: 40px;
  border-top: 1.5px solid #7A4F2E;
  border-left: 1.5px solid #7A4F2E;
}

.gtm-faq-corner-br {
  bottom: 32px;
  right: 40px;
  border-bottom: 1.5px solid #7A4F2E;
  border-right: 1.5px solid #7A4F2E;
}

.gtm-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gtm-faq-header {
  margin-bottom: 64px;
}

.gtm-faq-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gtm-faq-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.gtm-faq-title {
  font-family: 'Georgia', serif !important;
  color: #181818 !important;
  font-size: clamp(32px, 3.5vw, 52px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
}

.gtm-faq-title em {
  color: #7A4F2E !important;
  font-style: italic !important;
  font-weight: 600 !important;
}

.gtm-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: start;
}

.gtm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gtm-faq-box {
  background: #faf8f5;
  border-radius: 12px;
  border: 2px solid rgba(74, 46, 20, 0.25);
  overflow: hidden;
  transition: all 0.3s ease;
}

.gtm-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: poRoboto;
  text-align: left;
  font-family: 'Roboto', sans-serif;
}

.gtm-faq-question {
  color: #181818;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}

.gtm-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7A4F2E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.gtm-faq-answer {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.gtm-faq-answer-text {
  padding: 0 28px 24px 28px;
  color: rgba(24, 24, 24, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.gtm-faq-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.gtm-faq-blob {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gtm-faq-blob svg {
  width: 100%;
  height: 100%;
  color: #F5E8D5;
  fill: currentColor;
}

.gtm-faq-questionmark {
  position: absolute;
  color: #4A2E14;
  font-size: 120px;
  font-weight: 700;
}

.gtm-faq-still-have {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gtm-faq-still-have h3 {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: #181818;
}

.gtm-faq-still-have em {
  color: #7A4F2E;
  font-style: italic;
  font-weight: 700;
}

.gtm-faq-still-have p {
  color: rgba(24, 24, 24, 0.7);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

/* GtmFaq Responsive */
@media (max-width: 900px) {
  .gtm-faq-section {
    padding: 60px 24px;
  }

  .gtm-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gtm-faq-illustration {
    order: -1;
  }

  .gtm-faq-question {
    font-size: 16px;
  }

  .gtm-faq-answer-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .gtm-faq-section {
    padding: 40px 20px;
  }

  .gtm-faq-header {
    margin-bottom: 40px;
  }

  .gtm-faq-btn {
    padding: 20px 20px;
  }

  .gtm-faq-question {
    font-size: 15px;
  }

  .gtm-faq-answer-text {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }

  .gtm-faq-blob {
    max-width: 280px;
  }

  .gtm-faq-questionmark {
    font-size: 80px;
  }

  .gtm-faq-still-have h3 {
    font-size: 20px;
  }

  .gtm-faq-still-have p {
    font-size: 14px;
  }
}


/* ═══ GtmProcess (inline) ═══ */

.gtm-process-section {
  background: #0f0e0c;
  padding: 100px 60px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gtm-process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}

.gtm-process-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.15;
  poRoboto-events: none;
}

.gtm-process-corner-tl {
  top: 32px;
  left: 40px;
  border-top: 1.5px solid #C27B4A;
  border-left: 1.5px solid #C27B4A;
}

.gtm-process-corner-br {
  bottom: 32px;
  right: 40px;
  border-bottom: 1.5px solid #C27B4A;
  border-right: 1.5px solid #C27B4A;
}

.gtm-process-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gtm-process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.gtm-process-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C27B4A;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gtm-process-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #C27B4A;
  opacity: 0.6;
}

.gtm-process-title {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: #F5E8D5;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gtm-process-title em {
  font-style: italic;
}

.gtm-process-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 232, 213, 0.7);
}

.gtm-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gtm-process-step {
  background: rgba(245, 232, 213, 0.03);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid rgba(245, 232, 213, 0.08);
  transition: all 0.3s ease;
}

.gtm-process-step:hover {
  background: rgba(245, 232, 213, 0.06);
  border-color: rgba(245, 232, 213, 0.15);
}

.gtm-process-num {
  font-family: 'Georgia', serif;
  font-size: 48px;
  color: rgba(245, 232, 213, 0.15);
  margin-bottom: 16px;
}

.gtm-process-step-title,
h4.gtm-process-step-title {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  padding: 0;
  line-height: 1.4;
  color: #C27B4A;
  margin-bottom: 12px;
}

.gtm-process-step-body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 232, 213, 0.7);
}

/* GtmProcess Responsive */
@media (max-width: 900px) {
  .gtm-process-section {
    padding: 60px 24px;
  }

  .gtm-process-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .gtm-process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gtm-process-section {
    padding: 40px 20px;
  }

  .gtm-process-step {
    padding: 24px;
  }

  .gtm-process-num {
    font-size: 36px;
  }
}

/* Light theme overrides */
.gtm-process-light {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.gtm-process-light .gtm-process-corner-tl {
  border-top-color: #7A4F2E;
  border-left-color: #7A4F2E;
}

.gtm-process-light .gtm-process-corner-br {
  border-bottom-color: #7A4F2E;
  border-right-color: #7A4F2E;
}

.gtm-process-light .gtm-process-eyebrow {
  color: #7A4F2E;
}

.gtm-process-light .gtm-process-eyebrow::before {
  background: #7A4F2E;
}

.gtm-process-light .gtm-process-title {
  color: #181818;
}

.gtm-process-light .gtm-process-desc {
  color: #7a7469;
}

.gtm-process-light .gtm-process-step {
  background: #f7ece5;
  border-color: rgba(122, 79, 46, 0.12);
}

.gtm-process-light .gtm-process-step:hover {
  background: #f3e2d8;
  border-color: rgba(122, 79, 46, 0.2);
}

.gtm-process-light .gtm-process-num {
  color: rgba(122, 79, 46, 0.2);
}

.gtm-process-light .gtm-process-step-title {
  color: #7A4F2E;
}

.gtm-process-light .gtm-process-step-body {
  color: #7a7469;
}


/* ═══ GtmOutcomes (inline) ═══ */

/* Dark variant */
.gtm-outcomes-section {
  background: #0f0e0c;
  padding: 100px 60px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.gtm-outcomes-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}
.gtm-outcomes-corner {
  position: absolute;
  width: 48px; height: 48px;
  opacity: 0.15;
  poRoboto-events: none;
}
.gtm-outcomes-corner-tl {
  top: 32px; left: 40px;
  border-top: 1.5px solid #C27B4A;
  border-left: 1.5px solid #C27B4A;
}
.gtm-outcomes-corner-br {
  bottom: 32px; right: 40px;
  border-bottom: 1.5px solid #C27B4A;
  border-right: 1.5px solid #C27B4A;
}
.gtm-outcomes-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gtm-outcomes-header {
  margin-bottom: 56px;
}
.gtm-outcomes-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C27B4A;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.gtm-outcomes-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #C27B4A;
  opacity: 0.6;
}
.gtm-outcomes-title {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: #F5E8D5;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.gtm-outcomes-title em {
  font-style: italic;
  font-weight: 700;
  color: rgba(245, 232, 213, 0.7);
}
.gtm-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gtm-outcomes-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(245, 232, 213, 0.03);
  border: 1px solid rgba(245, 232, 213, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.gtm-outcomes-item:hover {
  background: rgba(245, 232, 213, 0.06);
  border-color: rgba(245, 232, 213, 0.15);
}
.gtm-outcomes-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.gtm-outcomes-item-title,
h4.gtm-outcomes-item-title,
h4.gtm-outcomes-light-item-title {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F5E8D5;
  margin: 0 0 6px 0;
  padding: 0;
  line-height: 1.4;
}
.gtm-outcomes-item-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 232, 213, 0.6);
}

/* Light variant */
.gtm-outcomes-light-section {
  background: #ffffff;
  padding: 100px 60px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.gtm-outcomes-light-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gtm-outcomes-light-header {
  margin-bottom: 56px;
}
.gtm-outcomes-light-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.gtm-outcomes-light-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}
.gtm-outcomes-light-title {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: #181818;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.gtm-outcomes-light-title em {
  font-style: italic;
  font-weight: 700;
  color: #7A4F2E;
}
.gtm-outcomes-light-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gtm-outcomes-light-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #faf8f5;
  border: 1px solid rgba(74, 46, 20, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.gtm-outcomes-light-item:hover {
  border-color: rgba(74, 46, 20, 0.2);
}
.gtm-outcomes-light-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.12);
  color: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.gtm-outcomes-light-item-title,
h4.gtm-outcomes-light-item-title {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #181818;
  margin: 0 0 6px 0;
  padding: 0;
  line-height: 1.4;
}
.gtm-outcomes-light-item-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(24, 24, 24, 0.65);
}

/* GtmOutcomes Shared responsive */
@media (max-width: 768px) {
  .gtm-outcomes-section,
  .gtm-outcomes-light-section { padding: 60px 24px; }
  .gtm-outcomes-grid,
  .gtm-outcomes-light-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gtm-outcomes-section,
  .gtm-outcomes-light-section { padding: 40px 20px; }
}


/* ═══ GtmWhoIsFor (inline) ═══ */

.gtm-whois-section {
  background: #ffffff;
  padding: 80px 32px;
  display: flex;
  justify-content: center;
}

.gtm-whois-container {
  width: 100%;
  max-width: 1160px;
}

.gtm-whois-header {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
  margin-bottom: 60px;
}

.gtm-whois-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gtm-whois-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.gtm-whois-title {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
}

.gtm-whois-title em {
  font-style: italic;
  font-weight: 700;
  color: #7A4F2E;
}

.gtm-whois-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(24, 24, 24, 0.15);
  border: 1px solid rgba(24, 24, 24, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.gtm-whois-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  transition: background 0.25s;
}

.gtm-whois-green {
  background: #ffffff;
}

.gtm-whois-green:hover {
  background: #fdfbf8;
}

.gtm-whois-red {
  background: #f7ece5;
}

.gtm-whois-red:hover {
  background: #f3e2d8;
}

.gtm-whois-icon {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.gtm-whois-icon-green {
  background: #7A4F2E;
  color: #ffffff;
}

.gtm-whois-icon-red {
  background: rgba(24, 24, 24, 0.1);
  color: #0f0e0c;
}

.gtm-whois-item p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #7a7469;
  margin: 0;
}

@media (max-width: 768px) {
  .gtm-whois-section { padding: 60px 24px; }
  .gtm-whois-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gtm-whois-section { padding: 50px 20px 40px; }
}


/* ═══ GtmWhoIsForAudit (inline) ═══ */

.whois-audit-section {
  background: #ffffff;
  padding: 80px 32px;
  display: flex;
  justify-content: center;
}

.whois-audit-container {
  width: 100%;
  max-width: 1160px;
}

.whois-audit-header {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
  margin-bottom: 60px;
}

.whois-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.whois-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.whois-title {
  font-family: 'Georgia', serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
}

.whois-title em {
  font-style: italic;
  font-weight: 700;
  color: #7A4F2E;
}

.whois-audit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.whois-audit-green,
.whois-audit-red {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 24, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.whois-audit-red {
  background: #f7ece5;
}

.whois-audit-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.1);
}

.whois-audit-green .whois-audit-card-header {
  background: #7A4F2E;
}

.whois-audit-red .whois-audit-card-header {
  background: #f7ece5;
  border-bottom: 1px solid rgba(122, 79, 46, 0.15);
}

.whois-audit-icon {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: #ffffff;
  color: #7A4F2E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.whois-audit-icon-red {
  background: #7A4F2E;
  color: #ffffff;
}

.whois-audit-card-header h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}

.whois-audit-green .whois-audit-card-header h3 {
  color: #ffffff;
}

.whois-audit-red .whois-audit-card-header h3 {
  color: #7A4F2E;
}

.whois-audit-items {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whois-audit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.whois-audit-check {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7A4F2E;
  flex-shrink: 0;
  margin-top: 9px;
}

.whois-audit-cross {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(24, 24, 24, 0.3);
  flex-shrink: 0;
  margin-top: 9px;
  transform: rotate(45deg);
}

.whois-audit-item p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #7a7469;
  margin: 0;
}

.whois-audit-red .whois-audit-item p {
  color: #0f0e0c;
}

@media (max-width: 768px) {
  .whois-audit-section { padding: 60px 24px; }
  .whois-audit-content { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .whois-audit-section { padding: 50px 20px 40px; }
}


/* ═══ GtmWhoIsForAdvisory (inline) ═══ */

.whois-advisory-section {
  background: #0f0e0c;
  padding: 80px 32px;
  display: flex;
  justify-content: center;
  position: relative;
}

.whois-advisory-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}

.whois-advisory-container {
  width: 100%;
  max-width: 1160px;
  position: relative;
  z-index: 1;
}

.whois-advisory-header {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 232, 213, 0.12);
  margin-bottom: 60px;
}

.whois-advisory-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  border-radius: 8px;
}

.whois-advisory-col {
  padding: 32px;
  background: rgba(245, 232, 213, 0.07);
  border: 1px solid rgba(245, 232, 213, 0.12);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.whois-advisory-col:hover {
  background: rgba(245, 232, 213, 0.1);
  border-color: rgba(245, 232, 213, 0.18);
}

.whois-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(245, 232, 213, 0.08);
}

.whois-col-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.whois-col-green .whois-col-icon {
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
}

.whois-col-red .whois-col-icon {
  background: rgba(245, 232, 213, 0.08);
  color: rgba(245, 232, 213, 0.5);
}

.whois-col-title {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C27B4A;
}

.whois-col-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whois-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.whois-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.whois-item-green .whois-bullet {
  background: #C27B4A;
}

.whois-item-red .whois-bullet {
  background: rgba(245, 232, 213, 0.2);
}

.whois-item p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 232, 213, 0.8);
  margin: 0;
}

/* Advisory variant title/eyebrow overrides for dark bg */
.whois-advisory-section .whois-eyebrow {
  color: #C27B4A;
}
.whois-advisory-section .whois-eyebrow span {
  background: #C27B4A;
}
.whois-advisory-section .whois-title {
  color: #F5E8D5;
}
.whois-advisory-section .whois-title em {
  color: rgba(245, 232, 213, 0.7);
}

@media (max-width: 768px) {
  .whois-advisory-section { padding: 60px 24px; }
  .whois-advisory-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .whois-advisory-section { padding: 50px 20px 40px; }
  .whois-advisory-col { padding: 24px; }
}


/* ═══ GtmWhoIsForContent (inline) ═══ */

.whois-content-section {
  background: #ffffff;
  padding: 80px 32px;
  display: flex;
  justify-content: center;
}

.whois-content-container {
  width: 100%;
  max-width: 1160px;
}

.whois-content-header {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
  margin-bottom: 60px;
}

.whois-content-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.whois-content-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.whois-content-title {
  font-family: 'Georgia', serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
}

.whois-content-title em {
  font-style: italic;
  font-weight: 700;
  color: #7A4F2E;
}

.whois-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.whois-content-col {
  padding: 32px;
  border: 1px solid rgba(24, 24, 24, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.whois-content-col:hover {
  border-color: rgba(24, 24, 24, 0.25);
}

.whois-content-col-green {
  background: #ffffff;
}

.whois-content-col-red {
  background: #f7ece5;
}

.whois-content-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -32px -32px 28px -32px;
  padding: 20px 32px;
  border-radius: 8px 8px 0 0;
}

.whois-content-col-green .whois-content-col-header {
  background: #7A4F2E;
}

.whois-content-col-red .whois-content-col-header {
  background: #f3e2d8;
}

.whois-content-col-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.whois-content-col-icon-red {
  background: rgba(211, 47, 47, 0.12);
  color: #D32F2F;
}

.whois-content-col-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.whois-content-col-green .whois-content-col-label {
  color: #ffffff;
}

.whois-content-col-red .whois-content-col-label {
  color: #7A4F2E;
}

.whois-content-col-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whois-content-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.whois-content-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.whois-content-item-green .whois-content-bullet {
  background: #7A4F2E;
}

.whois-content-item-red .whois-content-bullet {
  background: rgba(211, 47, 47, 0.35);
}

.whois-content-item p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #7a7469;
  margin: 0;
}

@media (max-width: 768px) {
  .whois-content-section { padding: 60px 24px; }
  .whois-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .whois-content-section { padding: 50px 20px 40px; }
  .whois-content-col { padding: 24px; }
}


/* ═══ GtmProblemSection (inline) ═══ */

.gtm-problem-section {
  background: #0f0e0c;
  padding: 100px 60px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gtm-problem-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}

.gtm-problem-corner {
  position: absolute;
  width: 48px; height: 48px;
  opacity: 0.15;
  poRoboto-events: none;
}

.gtm-problem-corner-tl {
  top: 32px; left: 40px;
  border-top: 1.5px solid #C27B4A;
  border-left: 1.5px solid #C27B4A;
}

.gtm-problem-corner-br {
  bottom: 32px; right: 40px;
  border-bottom: 1.5px solid #C27B4A;
  border-right: 1.5px solid #C27B4A;
}

.gtm-problem-container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gtm-problem-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.gtm-problem-title {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: #F5E8D5;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gtm-problem-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 232, 213, 0.7);
}

.gtm-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.gtm-problem-card {
  background: rgba(245, 232, 213, 0.03);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid rgba(245, 232, 213, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
}

.gtm-problem-card:hover {
  background: rgba(245, 232, 213, 0.06);
  border-color: rgba(245, 232, 213, 0.15);
}

.gtm-problem-card-icon {
  color: #C27B4A;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.gtm-problem-card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 232, 213, 0.8);
}

.gtm-problem-closing {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.gtm-problem-closing p {
  font-family: 'Georgia', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: #C27B4A;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .gtm-problem-section { padding: 60px 24px; }
  .gtm-problem-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gtm-problem-section { padding: 40px 20px; }
  .gtm-problem-grid { grid-template-columns: 1fr; }
}


/* ═══ GtmSprintRoadmap (inline) ═══ */

.gtm-sprint-section {
  background: #ffffff;
  padding: 100px 60px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.gtm-sprint-container {
  max-width: 900px;
  margin: 0 auto;
}

.gtm-sprint-header {
  margin-bottom: 64px;
  max-width: 680px;
}

.gtm-sprint-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gtm-sprint-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.gtm-sprint-title {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  color: #181818;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gtm-sprint-title em {
  font-style: italic;
  font-weight: 700;
  color: #7A4F2E;
}

.gtm-sprint-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(24, 24, 24, 0.7);
}

.gtm-sprint-timeline {
  position: relative;
  padding-left: 40px;
}

.gtm-sprint-line {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #C27B4A, rgba(194, 123, 74, 0.15));
}

.gtm-sprint-card {
  position: relative;
  margin-bottom: 32px;
}

.gtm-sprint-card:last-child {
  margin-bottom: 0;
}

.gtm-sprint-dot {
  position: absolute;
  left: -40px;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #C27B4A;
  z-index: 1;
}

.gtm-sprint-content {
  background: #faf8f5;
  border: 1px solid rgba(74, 46, 20, 0.12);
  border-radius: 12px;
  padding: 28px 32px;
}

.gtm-sprint-label {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C27B4A;
  display: block;
  margin-bottom: 8px;
}

.gtm-sprint-card-title {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 6px;
}

.gtm-sprint-timeline-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(24, 24, 24, 0.5);
  display: inline-block;
  margin-bottom: 12px;
}

.gtm-sprint-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(24, 24, 24, 0.7);
}

@media (max-width: 768px) {
  .gtm-sprint-section { padding: 60px 24px; }
  .gtm-sprint-timeline { padding-left: 32px; }
  .gtm-sprint-dot { left: -32px; width: 18px; height: 18px; }
  .gtm-sprint-line { left: 9px; }
  .gtm-sprint-content { padding: 24px; }
}

@media (max-width: 480px) {
  .gtm-sprint-section { padding: 40px 20px; }
  .gtm-sprint-card-title { font-size: 18px; }
}


/* ═══ GtmEngagementIncludes (inline) ═══ */

.gtm-engage-section {
  background: #0f0e0c;
  padding: 80px 32px;
  display: flex;
  justify-content: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gtm-engage-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}

.gtm-engage-container {
  width: 100%;
  max-width: 1160px;
  position: relative;
  z-index: 1;
}

.gtm-engage-header {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 232, 213, 0.12);
  margin-bottom: 60px;
}

.gtm-engage-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C27B4A;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gtm-engage-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #C27B4A;
  opacity: 0.6;
}

.gtm-engage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.gtm-engage-card {
  width: calc(25% - 12px);
  background: rgba(245, 232, 213, 0.03);
  border: 1px solid rgba(245, 232, 213, 0.08);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

.gtm-engage-card:hover {
  background: rgba(245, 232, 213, 0.06);
  border-color: rgba(245, 232, 213, 0.15);
}

.gtm-engage-num {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: rgba(245, 232, 213, 0.15);
  line-height: 1;
}

.gtm-engage-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 232, 213, 0.8);
  margin: 0;
}

@media (max-width: 900px) {
  .gtm-engage-card { width: calc(33.333% - 11px); }
}

@media (max-width: 600px) {
  .gtm-engage-section { padding: 60px 24px; }
  .gtm-engage-card { width: calc(50% - 8px); }
}

@media (max-width: 420px) {
  .gtm-engage-section { padding: 50px 20px 40px; }
  .gtm-engage-card { width: 100%; }
}


/* ═══ GtmCta (inline) ═══ */

.gtm-cta-section {
  background: #0f0e0c;
  padding: 100px 60px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gtm-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}

.gtm-cta-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.15;
  poRoboto-events: none;
  z-index: 1;
}

.gtm-cta-corner-tl {
  top: 32px;
  left: 40px;
  border-top: 1.5px solid #C27B4A;
  border-left: 1.5px solid #C27B4A;
}

.gtm-cta-corner-br {
  bottom: 32px;
  right: 40px;
  border-bottom: 1.5px solid #C27B4A;
  border-right: 1.5px solid #C27B4A;
}

.gtm-cta-watermark {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: 'Georgia', serif;
  font-size: 260px;
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 232, 213, 0.03);
  line-height: 1;
  poRoboto-events: none;
  user-select: none;
  z-index: 0;
}

.gtm-cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gtm-cta-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C27B4A;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gtm-cta-eyebrow span {
  width: 28px;
  height: 1.5px;
  background: #C27B4A;
  opacity: 0.6;
}

.gtm-cta-title {
  font-family: 'Georgia', serif;
  color: #F5E8D5;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.gtm-cta-title em {
  color: rgba(245, 232, 213, 0.7);
  font-style: italic;
  font-weight: 700;
}

.gtm-cta-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(245, 232, 213, 0.5);
  margin-bottom: 36px;
  border-left: 2px solid rgba(122, 79, 46, 0.35);
  padding-left: 18px;
}

.gtm-cta-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gtm-cta-input {
  flex: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #F5E8D5;
  background: rgba(245, 232, 213, 0.06);
  border: 1px solid rgba(245, 232, 213, 0.15);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.gtm-cta-input::placeholder {
  color: rgba(245, 232, 213, 0.4);
}

.gtm-cta-input:focus {
  border-color: #C27B4A;
  background: rgba(245, 232, 213, 0.08);
}

.gtm-cta-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: #C27B4A;
  border: none;
  padding: 15px 28px;
  cursor: poRoboto;
  white-space: nowrap;
  transition: background 0.2s;
}

.gtm-cta-btn:hover {
  background: #A8653A;
}

/* GtmCta Responsive */
@media (max-width: 900px) {
  .gtm-cta-section {
    padding: 60px 24px;
  }

  .gtm-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gtm-cta-form {
    flex-direction: column;
  }

  .gtm-cta-input,
  .gtm-cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gtm-cta-section {
    padding: 40px 20px;
  }

  .gtm-cta-watermark {
    font-size: 150px;
  }

  .gtm-cta-corner {
    width: 32px;
    height: 32px;
  }

  .gtm-cta-corner-tl {
    top: 16px;
    left: 20px;
  }

  .gtm-cta-corner-br {
    bottom: 16px;
    right: 20px;
  }
}


/* ═══ BlogPage (inline) ═══ */

.pill-badge {
  display: inline-block;
  background: #F5F0EB;
  color: #7A4F2E;
  font-family: 'Roboto', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(122,79,46,0.3);
  margin-bottom: 1.75rem;
}

.card-hover {
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(122, 79, 46, 0.12);
}

.section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #7A4F2E, #B4A082);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.decor-circle {
  border-radius: 50%;
  position: absolute;
  poRoboto-events: none;
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

input:focus { outline: none; border-color: #7A4F2E !important; }

@media (max-width: 968px) {
  .blog-hero { grid-template-columns: 1fr !important; padding: 60px 5% 50px !important; }
  .blog-hero-image { order: -1; height: 350px !important; }
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 28px !important; }
}
@media (max-width: 640px) {
  .blog-hero { padding: 40px 4% 40px !important; }
  .blog-hero h1 { font-size: 2rem !important; }
  .blog-hero .hero-script { font-size: 2.5rem !important; }
  .blog-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .blog-card-img { height: 220px !important; }
  .blog-filter-btn { font-size: 0.65rem !important; padding: 0.5rem 0.85rem !important; }
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}
.blog-card:hover h3 {
  color: #7A4F2E;
}
.blog-card button:hover {
  gap: 10px;
}


/* ═══ BlogDetailPage (inline) ═══ */

@media (max-width: 968px) {
  .blog-detail-hero {
    grid-template-columns: 1fr !important;
    padding: 40px 5% !important;
    gap: 30px !important;
  }
  .blog-detail-content { grid-template-columns: 1fr !important; }
  .toc-sidebar { display: none !important; }
  .related-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
}

@media (max-width: 640px) {
  .blog-detail-hero {
    padding: 30px 4% !important;
    gap: 24px !important;
    margin-top: 60px !important;
  }
  .blog-detail-hero h1 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }
  .related-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
}


/* ═══ WorkWithMePage (inline) ═══ */

@media (max-width: 900px) {
  .wwm-hero-section {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 140px 5% 60px !important;
    margin: 0 auto !important;
  }
  .wwm-hero-content { order: 2; }
  .wwm-hero-image { order: 1; }
  .wwm-hero-image-inner { max-width: 280px !important; }
  .wwm-stats { gap: 1.5rem !important; justify-content: center !important; }
  .wwm-stats-value { font-size: 1.5rem !important; }
  .wwm-blob { display: none !important; }
  .wwm-badge {
    bottom: 8px !important; left: 8px !important;
    padding: 8px 14px !important; font-size: 10px !important;
  }
  .wwm-badge span:first-child { font-size: 16px !important; }
  .wwm-pill {
    top: 50% !important; right: 8px !important;
    transform: translateY(-50%) !important;
  }
}
@media (max-width: 480px) {
  .wwm-hero-section { padding: 120px 4% 50px !important; }
  .wwm-hero-image-inner { max-width: 220px !important; }
  .wwm-stats { gap: 1rem !important; }
  .wwm-stats-value { font-size: 1.25rem !important; }
  .wwm-pill { padding: 8px 16px !important; font-size: 10px !important; }
}
@media (max-width: 600px) {
  .wwm-calendar-container { padding: 20px !important; min-height: 350px !important; }
}


/* ═══ NewsletterPage (inline) ═══ */

@media (max-width: 900px) {
  .nl-hero-section {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 140px 5% 60px !important;
    margin: 0 auto !important;
  }
  .nl-hero-content { order: 2; }
  .nl-hero-image { order: 1; }
  .nl-hero-image-inner { max-width: 280px !important; }
  .nl-stats { gap: 1.5rem !important; justify-content: center !important; }
  .nl-stats-value { font-size: 1.5rem !important; }
  .nl-blob { display: none !important; }
  .nl-badge {
    bottom: 8px !important;
    right: 8px !important;
    padding: 8px 14px !important;
    font-size: 10px !important;
  }
  .nl-badge span:first-child { font-size: 16px !important; }
  .nl-pill {
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .nl-hero-section { padding: 120px 4% 50px !important; }
  .nl-hero-image-inner { max-width: 220px !important; }
  .nl-stats { gap: 1rem !important; }
  .nl-stats-value { font-size: 1.25rem !important; }
  .nl-pill { padding: 8px 16px !important; font-size: 10px !important; }
}
@media (max-width: 600px) {
  .nl-form-section { padding: 60px 5% !important; }
  .nl-form-container { max-width: 100% !important; }
  .nl-corner { display: none !important; }
}


/* ═══ ResourcesPage (inline) ═══ */

@media (max-width: 768px) {
  .resource-guide-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .resource-guide-grid > div {
    order: unset !important;
  }
}


/* ═══ TestimonialSection (inline) ═══ */

.testimonial-section .fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.testimonial-section .fade-in-element.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   GTM SERVICE PAGES — Converted Inline Styles
   ═══════════════════════════════════════════════════════════════ */

/* Dark section used across GtmAuditPage, GtmAdvisoryPage, FounderLedContentPage */
.gtm-page-dark-section {
  background: #0f0e0c;
  padding: 100px 60px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gtm-page-dark-section .gtm-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.18) 0%, transparent 60%);
  poRoboto-events: none;
  z-index: 0;
}

.gtm-page-dark-section .gtm-page-corner-tl {
  position: absolute;
  top: 32px;
  left: 40px;
  width: 48px;
  height: 48px;
  border-top: 1.5px solid #C27B4A;
  border-left: 1.5px solid #C27B4A;
  opacity: 0.15;
  poRoboto-events: none;
}

.gtm-page-dark-section .gtm-page-corner-br {
  position: absolute;
  bottom: 32px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-bottom: 1.5px solid #C27B4A;
  border-right: 1.5px solid #C27B4A;
  opacity: 0.15;
  poRoboto-events: none;
}

.gtm-page-dark-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.gtm-page-dark-heading {
  font-family: 'Georgia', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: #F5E8D5;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gtm-page-dark-heading em {
  font-style: italic;
  font-weight: 700;
  color: rgba(245, 232, 213, 0.7);
}

.gtm-page-dark-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 232, 213, 0.7);
  margin-bottom: 28px;
}

.gtm-page-dark-italic {
  font-family: 'Georgia', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: #C27B4A;
  line-height: 1.5;
}

/* CTA section for dark pages */
.gtm-page-dark-cta-section {
  background: #0f0e0c;
  padding: clamp(60px, 8vw, 100px) 6%;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gtm-page-dark-cta-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.gtm-page-dark-cta-heading {
  font-family: 'Georgia', serif;
  color: #F5E8D5;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gtm-page-dark-cta-body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 232, 213, 0.6);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.gtm-page-dark-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0f0e0c;
  text-decoration: none;
  padding: 18px 40px;
  background: #C27B4A;
  border: none;
  border-radius: 2px;
  transition: all 0.2s;
}

.gtm-page-dark-cta-btn:hover {
  background: #A8653A;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════
   GTM QUESTIONS SECTION (from GtmSection.jsx inline)
   ═══════════════════════════════════════════ */

.gtm {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  color: #0f0e0c;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.gtm-wrap {
  width: 100%;
  max-width: 1160px;
}

.gtm .gtm-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
}

.gtm .gtm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #7A4F2E;
  margin-bottom: 18px;
}

.gtm .gtm-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: #7A4F2E;
  opacity: 0.6;
}

.gtm .gtm-headline {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #181818;
  max-width: 700px;
  margin: 0;
}

.gtm .gtm-headline em {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  color: #7A4F2E;
}

.gtm .gtm-subtext {
  font-size: 15px;
  line-height: 1.75;
  color: #7a7469;
  font-weight: 400;
  max-width: 380px;
  align-self: end;
  padding-bottom: 6px;
}

.gtm .gtm-subtext strong {
  color: #0f0e0c;
  font-weight: 600;
}

.gtm .gtm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: rgba(24, 24, 24, 0.15);
  border: 1px solid rgba(24, 24, 24, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.gtm .gtm-card {
  background: #ffffff;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: none;
}

.gtm .gtm-card:hover {
  background: #ffffff;
}

.gtm .gtm-card-featured,
.gtm .gtm-card-featured:hover {
  background: #0f0e0c;
}

.gtm .gtm-card-accent,
.gtm .gtm-card-accent:hover {
  background: #f7ece5;
}

.gtm .gtm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #7A4F2E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gtm .gtm-card:hover::before {
  transform: scaleX(0);
}

.gtm .gtm-card-accent {
  background: #f7ece5;
}

.gtm .gtm-card-accent:hover {
  background: #f7ece5;
}

.gtm .gtm-card-featured {
  background: #0f0e0c;
  grid-row: 1 / 3;
  min-height: unset;
  padding: 44px 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gtm .gtm-card-featured > div {
  align-items: center;
}

.gtm .gtm-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196, 98, 45, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 90%, rgba(196, 98, 45, 0.3) 0%, transparent 60%);
  poRoboto-events: none;
  transform: none;
  height: auto;
}

.gtm .gtm-card-featured::after {
  content: none;
}

.gtm .gtm-card-col1 { grid-column: 1; grid-row: 1 / 3; }
.gtm .gtm-card-col4 { grid-column: 4; grid-row: 1 / 3; }

.gtm .gtm-card-num {
  font-family: 'Georgia', serif;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(122, 79, 46, 0.35);
  margin-bottom: 20px;
}

.gtm .gtm-card-featured .gtm-card-num {
  color: rgba(255, 220, 180, 0.3);
}

.gtm .gtm-card-accent .gtm-card-num {
  color: rgba(122, 79, 46, 0.5);
}

.gtm .gtm-card-q {
  font-family: 'Georgia', serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #0f0e0c;
  position: relative;
  z-index: 1;
}

.gtm .gtm-card-featured .gtm-card-q {
  color: #ffffff;
  font-size: clamp(20px, 1.9vw, 26px);
}

.gtm .gtm-card-accent .gtm-card-q {
  color: #0f0e0c;
}

.gtm .gtm-card-wm {
  font-family: 'Georgia', serif;
  font-size: 100px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
  position: absolute;
  bottom: -16px;
  right: 10px;
  color: rgba(15,14,12,0.08);
  user-select: none;
  poRoboto-events: none;
}

.gtm .gtm-card-featured .gtm-card-wm {
  color: rgba(255,255,255,0.12);
  font-size: 140px;
  bottom: -20px;
}

.gtm .gtm-card-featured:hover .gtm-card-wm {
  color: rgba(255,255,255,0.12);
}

.gtm .gtm-card-accent .gtm-card-wm {
  color: rgba(15,14,12,0.12);
}

.gtm .gtm-feat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(245,242,236,0.3);
  padding-bottom: 2px;
  width: fit-content;
  margin-top: 40px;
  transition: color 0.2s, border-color 0.2s;
  position: relative;
  z-index: 1;
}

.gtm .gtm-feat-link:hover {
  color: #c4622d;
  border-color: #c4622d;
}

.gtm .gtm-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(24, 24, 24, 0.15);
  border-top: none;
  border-radius: 0 0 2px 2px;
  padding: 16px 40px;
  gap: 24px;
}

.gtm .gtm-closing {
  font-family: 'Georgia', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  font-style: italic;
  color: #0f0e0c;
  line-height: 1.3;
}

.gtm .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.gtm .reveal.in-view { opacity: 1; transform: none; }
.gtm .reveal:nth-child(1) { transition-delay: 0ms; }
.gtm .reveal:nth-child(2) { transition-delay: 60ms; }
.gtm .reveal:nth-child(3) { transition-delay: 120ms; }
.gtm .reveal:nth-child(4) { transition-delay: 180ms; }
.gtm .reveal:nth-child(5) { transition-delay: 240ms; }
.gtm .reveal:nth-child(6) { transition-delay: 300ms; }
.gtm .reveal:nth-child(7) { transition-delay: 360ms; }
.gtm .reveal:nth-child(8) { transition-delay: 420ms; }

@media (max-width: 960px) {
  .gtm .gtm-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gtm .gtm-card-col1, .gtm .gtm-card-col4 {
    grid-column: auto;
    grid-row: auto;
  }
  .gtm .gtm-header { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .gtm { padding: 50px 20px 40px; }
  .gtm .gtm-grid { grid-template-columns: 1fr; }
  .gtm .gtm-bottom { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════
   BLOG SECTION HOMEPAGE (from BlogSection.jsx inline)
   ═══════════════════════════════════════════ */

:root {
  --ink: #0f0e0c;
  --paper: #ffffff;
  --sand: #e8e2d9;
  --rust: #c4622d;
  --rust-pale: #f7ece5;
  --muted: #7a7469;
  --border: rgba(15,14,12,0.12);
  --card-bg: #ffffff;
}

.bs-root {
  font-family: 'Roboto', sans-serif;
  background: var(--paper);
  color: var(--ink);
  padding: 96px 0 80px;
}

.bs-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.bs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}

.bs-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.bs-eyebrow-dash {
  width: 28px;
  height: 1px;
  background: var(--rust);
}

.bs-headline {
  font-family: 'Georgia', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.bs-headline em {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
  color: #7A4F2E;
}

.bs-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  margin-bottom: 6px;
}

.bs-all-link:hover {
  color: var(--rust);
  border-color: var(--rust);
}

.bs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2px;
}

.bs-featured {
  grid-row: 1 / 3;
  background: var(--ink);
  color: var(--paper);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.bs-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 10%, rgba(196,98,45,0.18) 0%, transparent 60%);
  poRoboto-events: none;
}

.bs-feat-num {
  font-family: 'Georgia', serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 20px;
  right: 32px;
  letter-spacing: -0.04em;
  user-select: none;
}

.bs-featured .bs-tag {
  color: var(--rust);
  border-color: rgba(196,98,45,0.35);
}

.bs-featured .bs-card-title {
  color: var(--paper);
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 20px 0 16px;
}

.bs-featured .bs-excerpt {
  color: rgba(245,242,236,0.62);
  max-width: 380px;
}

.bs-featured .bs-read-link {
  color: var(--paper);
  border-color: rgba(245,242,236,0.3);
  margin-top: 36px;
}

.bs-featured .bs-read-link:hover {
  color: var(--rust);
  border-color: var(--rust);
}

.bs-card {
  background: var(--card-bg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.bs-card:hover {
  background: #fdfbf8;
}

.bs-card.accent {
  background: var(--rust-pale);
}

.bs-card.accent:hover {
  background: #f3e2d8;
}

.bs-card-inner-num {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(15,14,12,0.05);
  position: absolute;
  bottom: 8px;
  right: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.bs-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 8px;
  width: fit-content;
}

.bs-card-title {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 6px;
}

.bs-excerpt {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

.bs-read-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  width: fit-content;
  margin-top: auto;
  padding-top: 12px;
  transition: color 0.2s, border-color 0.2s;
}

.bs-read-link:hover {
  color: var(--rust);
  border-color: var(--rust);
}

.bs-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--sand);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 2px 2px;
}

.bs-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 40px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.bs-stat:last-child { border-right: none; }
.bs-stat:hover { background: rgba(15,14,12,0.03); }

.bs-stat-num {
  font-family: 'Georgia', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bs-stat-label {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.bs-root .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.bs-root .reveal.in-view { opacity: 1; transform: none; }
.bs-root .reveal:nth-child(1) { transition-delay: 0ms; }
.bs-root .reveal:nth-child(2) { transition-delay: 60ms; }
.bs-root .reveal:nth-child(3) { transition-delay: 120ms; }
.bs-root .reveal:nth-child(4) { transition-delay: 180ms; }
.bs-root .reveal:nth-child(5) { transition-delay: 240ms; }
.bs-root .reveal:nth-child(6) { transition-delay: 300ms; }

@media (max-width: 860px) {
  .bs-grid {
    grid-template-columns: 1fr;
  }
  .bs-featured {
    grid-row: auto;
    min-height: 360px;
  }
  .bs-strip {
    grid-template-columns: 1fr;
  }
  .bs-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .bs-stat:last-child { border-bottom: none; }
  .bs-wrap { padding: 0 24px; }
  .bs-header { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════
   BLOG PAGE STYLES (from BlogPage.jsx inline)
   ═══════════════════════════════════════════ */

.pill-badge {
  display: inline-block;
  background: #F5F0EB;
  color: #7A4F2E;
  font-family: 'Roboto', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(122,79,46,0.3);
  margin-bottom: 1.75rem;
}

.card-hover {
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(122, 79, 46, 0.12);
}

.section-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #7A4F2E, #B4A082);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.decor-circle {
  border-radius: 50%;
  position: absolute;
  poRoboto-events: none;
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}
.blog-card:hover h3 {
  color: #7A4F2E;
}

@media (max-width: 968px) {
  .blog-hero { grid-template-columns: 1fr !important; padding: 60px 5% 50px !important; gap: 30px !important; }
  .blog-hero-image { order: -1; height: 350px !important; }
  .blog-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 28px !important; }
  .blog-detail-hero { grid-template-columns: 1fr !important; padding: 40px 5% !important; gap: 30px !important; }
  .blog-detail-content { grid-template-columns: 1fr !important; }
  .toc-sidebar { display: none !important; }
  .related-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
}

@media (max-width: 640px) {
  .blog-hero { padding: 40px 4% 40px !important; margin-top: 60px !important; }
  .blog-hero h1 { font-size: 1.8rem !important; }
  .blog-hero .hero-script { font-size: 2.2rem !important; }
  .blog-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .blog-card-img { height: 220px !important; }
  .related-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .blog-detail-hero { margin-top: 60px !important; padding: 30px 4% !important; }
  .blog-detail-hero h1 { font-size: 1.6rem !important; line-height: 1.3 !important; }
}


/* ═══════════════════════════════════════════
   TWO PATHS SECTION MOBILE FIX
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .two-paths-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}


/* ═══════════════════════════════════════════
   GTM COMPONENT HEADING RESET
   Prevents browser default h2/h3/h4 styles from
   overriding theme component styles
   ═══════════════════════════════════════════ */

[class*="gtm-"] h2,
[class*="gtm-"] h3,
[class*="gtm-"] h4,
[class*="whois-"] h2,
[class*="whois-"] h3,
[class*="whois-"] h4,
[class*="gtm-engage"] h4,
[class*="gtm-sprint"] h4,
[class*="gtm-problem"] h3 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}


/* ═══════════════════════════════════════════
   SINGLE POST CONTENT STYLES
   ═══════════════════════════════════════════ */

.blog-detail-content {
  padding-top: clamp(40px, 6vw, 60px);
  padding-bottom: 60px;
}

.blog-detail-content .blog-article {
  max-width: 760px;
}

.blog-detail-content article img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.blog-detail-content article figure {
  margin: 2rem 0;
  max-width: 100%;
}

.blog-detail-content article figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-detail-content article figcaption {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #8A8A90;
  text-align: center;
  margin-top: 0.5rem;
}

.blog-detail-content article h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #1C1C1E;
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  scroll-margin-top: 140px;
  line-height: 1.3;
}

.blog-detail-content article h3 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #1C1C1E;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-detail-content article h4 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: #1C1C1E;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-detail-content article p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4A4A4E;
  margin-bottom: 1.5rem;
}

.blog-detail-content article ul,
.blog-detail-content article ol {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #4A4A4E;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-detail-content article ol {
  list-style-type: decimal;
}

.blog-detail-content article li {
  margin-bottom: 0.75rem;
}

.blog-detail-content article blockquote {
  background: linear-gradient(135deg, #F5F0EB 0%, #EDE5DB 100%);
  border-left: 3px solid #7A4F2E;
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  margin: 2.5rem 0;
  position: relative;
}

.blog-detail-content article blockquote p {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #1C1C1E;
  line-height: 1.6;
  margin: 0;
}

.blog-detail-content article a {
  color: #7A4F2E;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.blog-detail-content article a:hover {
  color: #5a3a1e;
}

.blog-detail-content article strong {
  color: #1C1C1E;
  font-weight: 600;
}

.blog-detail-content article em {
  font-style: italic;
}

.blog-detail-content article hr {
  border: none;
  height: 1px;
  background: rgba(122, 79, 46, 0.15);
  margin: 2.5rem 0;
}

.blog-detail-content article pre {
  background: #F5F0EB;
  border: 1px solid rgba(122, 79, 46, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-detail-content article code {
  background: #F5F0EB;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.blog-detail-content article pre code {
  background: none;
  padding: 0;
}

.blog-detail-content article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
}

.blog-detail-content article th,
.blog-detail-content article td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(122, 79, 46, 0.15);
  text-align: left;
  color: #4A4A4E;
}

.blog-detail-content article th {
  background: #F5F0EB;
  font-weight: 600;
  color: #1C1C1E;
}

.blog-detail-content article .wp-block-image {
  margin: 2rem 0;
}

.blog-detail-content article .wp-block-image img {
  border-radius: 8px;
}

.blog-detail-content article .wp-block-gallery {
  margin: 2rem 0;
}

.blog-detail-content article .wp-caption-text,
.blog-detail-content article .wp-element-caption {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: #8A8A90;
  text-align: center;
  margin-top: 0.5rem;
}

/* TOC Sidebar */
.toc-sidebar a:hover {
  color: #7A4F2E !important;
}

@media (max-width: 968px) {
  .blog-detail-content {
    grid-template-columns: 1fr !important;
  }
  .toc-sidebar {
    display: none !important;
  }
}

/* ═══ Single Post Responsive Fixes ═══ */

.blog-detail-content article {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.blog-detail-content article img,
.blog-detail-content article iframe,
.blog-detail-content article video,
.blog-detail-content article embed {
  max-width: 100%;
  height: auto;
}

.blog-detail-content article pre {
  overflow-x: auto;
  max-width: 100%;
}

.blog-detail-content article table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

@media (max-width: 768px) {
  .blog-detail-content article {
    padding-bottom: 30px !important;
  }
  .blog-detail-content article p {
    font-size: 1rem;
  }
  .blog-detail-content article blockquote {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }
  .blog-detail-content article blockquote p {
    font-size: 1.05rem;
  }
}

/* Author section responsive */
@media (max-width: 640px) {
  .blog-author-wrap {
    flex-direction: column !important;
    text-align: center;
  }
  .blog-author-info {
    min-width: unset !important;
  }
}


/* ═══ Scroll Animations ═══ */

/* data-animate elements — fade up on scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for data-animate */
[data-animate][data-delay="100"] { transition-delay: 100ms; }
[data-animate][data-delay="150"] { transition-delay: 150ms; }
[data-animate][data-delay="200"] { transition-delay: 200ms; }
[data-animate][data-delay="250"] { transition-delay: 250ms; }
[data-animate][data-delay="300"] { transition-delay: 300ms; }
[data-animate][data-delay="400"] { transition-delay: 400ms; }

/* .fade-up class variant */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Blog page card stagger */
.blog-card-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.blog-card-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-card-animate:nth-child(1) { transition-delay: 0ms; }
.blog-card-animate:nth-child(2) { transition-delay: 80ms; }
.blog-card-animate:nth-child(3) { transition-delay: 160ms; }
.blog-card-animate:nth-child(4) { transition-delay: 240ms; }
.blog-card-animate:nth-child(5) { transition-delay: 320ms; }
.blog-card-animate:nth-child(6) { transition-delay: 400ms; }
