/* ==========================================================================
   WINZKER.NET — MINIMALIST 2-COLUMN LANDING PAGE STYLES
   Colors: Forest Green (#0F2D14), Sand Gold (#C2B280), Ivory (#EDE7D3), White (#FFFFFF)
   Typography: Instrument Serif (Headlines), Inter (Body & UI)
   Layout: 2-Column Split (Problem/Solution + Simple Clean Visual)
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFFFFF;
  color: #151815;
}

body {
  font-family: var(--font-sans, "Inter", -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  background: #FFFFFF;
  color: #151815;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-weight: 400;
  color: #151815;
  text-wrap: balance;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); letter-spacing: -0.01em; }
h4 { font-family: var(--font-sans, "Inter", sans-serif); font-size: 1.15rem; font-weight: 600; }

p { color: #4A504A; line-height: 1.65; }
em, .accent { font-style: italic; color: #19451F; }

a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Eyebrows & Tags ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #19451F;
  margin-bottom: 1rem;
  background: #EEF4EE;
  padding: 6px 14px;
  border-radius: 9999px;
}

.eyebrow--dark {
  color: #C2B280;
  background: rgba(194, 178, 128, 0.12);
  border: 1px solid rgba(194, 178, 128, 0.25);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15, 45, 20, 0.12); }
.btn:active { transform: scale(0.98); }

.btn-primary { background: #0F2D14; color: #EDE7D3; border: 1px solid #0F2D14; }
.btn-primary:hover { background: #19451F; border-color: #19451F; }

.btn-gold { background: #C2B280; color: #0F2D14; border: 1px solid #C2B280; font-weight: 700; }
.btn-gold:hover { background: #D2C494; border-color: #D2C494; box-shadow: 0 8px 24px rgba(194, 178, 128, 0.35); }

.btn-on-dark { background: rgba(237, 231, 211, 0.08); color: #EDE7D3; border: 1px solid rgba(237, 231, 211, 0.25); }
.btn-on-dark:hover { background: rgba(237, 231, 211, 0.18); border-color: #EDE7D3; }

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

/* ---- Vector SVG Icons ---- */
.brand-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.brand-icon--sm { width: 0.95rem; height: 0.95rem; }
.brand-icon--lg { width: 1.75rem; height: 1.75rem; }
.brand-icon-check {
  width: 18px;
  height: 18px;
  stroke: #2E7D32;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Header ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21, 24, 21, 0.06);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand-mark {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-serif, "Instrument Serif", serif); font-size: 1.45rem; color: #151815;
}
.brand-mark .monogram {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #0F2D14; color: #C2B280;
  font-family: var(--font-serif, "Instrument Serif", serif); font-style: italic; font-size: 1.15rem;
}
.nav-links { display: none; align-items: center; gap: 1.75rem; list-style: none; }
.nav-link { font-size: 0.925rem; font-weight: 500; color: #4A504A; transition: color 0.2s; }
.nav-link:hover { color: #19451F; }
.nav-link--highlight {
  color: #8A7A45; font-weight: 700;
  background: #F7F4EA; padding: 4px 10px; border-radius: 9999px;
  border: 1px solid rgba(194, 178, 128, 0.3);
}
.nav-link--highlight:hover { color: #0F2D14; background: #EFE9D7; }

@media (min-width: 960px) { .nav-links { display: flex; } }

/* ==========================================================================
   HERO SECTION & HIGH-CONVERTING SIGNUP FORM
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: calc(72px + clamp(2.5rem, 5vw, 4.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: radial-gradient(circle at 80% 20%, #F5F7F3 0%, #FFFFFF 70%);
  border-bottom: 1px solid rgba(21, 24, 21, 0.06);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem); align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-title { margin-bottom: 1.25rem; }
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #4A504A;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-trust-row {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.925rem; font-weight: 600; color: #151815;
}
.trust-badge .brand-icon {
  stroke: #19451F;
}

/* Hero Signup Card */
.hero-signup-card {
  background: #FFFFFF;
  border: 1px solid rgba(21, 24, 21, 0.12);
  border-radius: 20px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: 0 16px 40px rgba(15, 45, 20, 0.08);
  position: relative;
}
.signup-card-header { margin-bottom: 1.25rem; }
.signup-badge {
  display: inline-block;
  font-size: 0.725rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #19451F;
  background: #EEF4EE; padding: 4px 10px; border-radius: 9999px;
  margin-bottom: 0.4rem;
}
.signup-card-header h2 { font-size: 1.65rem; margin-bottom: 0.35rem; }
.signup-card-header p { font-size: 0.9rem; color: #5F645F; line-height: 1.45; }

.signup-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: #151815; }
.form-group input, .form-group select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(21, 24, 21, 0.18);
  font-family: inherit; font-size: 0.95rem;
  background: #FFFFFF; color: #151815;
  transition: all 0.2s ease;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #0F2D14;
  box-shadow: 0 0 0 3px rgba(15, 45, 20, 0.12);
}
.signup-submit-btn { width: 100%; margin-top: 0.35rem; }
.signup-micro-copy {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 0.75rem; color: #8A8F8A; text-align: center; margin-top: 0.2rem;
}

/* Success Card */
.form-success-card {
  display: none;
  padding: 2.25rem 1.5rem;
  background: #EEF4EE;
  border-radius: 14px;
  border: 1px solid rgba(15, 45, 20, 0.2);
  text-align: center;
}
.success-icon-wrap { margin-bottom: 0.75rem; }
.form-success-card h3 { font-size: 1.5rem; color: #0F2D14; margin-bottom: 0.4rem; }
.form-success-card p { font-size: 0.925rem; color: #3E423E; }

/* ==========================================================================
   2-COLUMN STORY SECTIONS (MINIMALIST PROBLEM/SOLUTION + VISUAL)
   ========================================================================== */
.story-section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(21, 24, 21, 0.06);
}
.story-section--alt {
  background: #FAFAF6;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .story-grid--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .story-grid--reverse .story-text {
    order: 2;
  }
  .story-grid--reverse .story-visual {
    order: 1;
  }
}

/* Story Text Column (Bold, Large, Clear) */
.story-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.story-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #19451F;
  background: #EEF4EE;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.story-tag--gold {
  color: #C2B280;
  background: rgba(194, 178, 128, 0.15);
  border: 1px solid rgba(194, 178, 128, 0.3);
}

.story-title {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  line-height: 1.2;
  color: #151815;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}

.story-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: #4A504A;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.story-lead strong {
  color: #151815;
}

.story-actions {
  display: flex;
  align-items: center;
}

/* Story Visual Column */
.story-visual {
  width: 100%;
}

.visual-panel {
  background: #FFFFFF;
  border: 1px solid rgba(21, 24, 21, 0.1);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}
.story-section--alt .visual-panel {
  background: #FFFFFF;
  border-color: rgba(21, 24, 21, 0.08);
}

.visual-panel-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(21, 24, 21, 0.08);
}
.visual-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2E7D32;
  box-shadow: 0 0 6px rgba(46, 125, 50, 0.5);
}
.visual-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #151815;
}
.visual-subtag {
  margin-left: auto;
  font-size: 0.725rem;
  font-weight: 700;
  color: #8A7A45;
  background: #F7F4EA;
  padding: 3px 8px;
  border-radius: 9999px;
}

/* ---- 1. Email Flow Visual ---- */
.visual-flow-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.visual-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #FAFAF6;
  border: 1px solid rgba(21, 24, 21, 0.08);
  border-radius: 12px;
}
.visual-flow-item--success {
  background: #EEF4EE;
  border-color: rgba(46, 125, 50, 0.25);
}
.flow-item-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(21, 24, 21, 0.08);
  color: #151815;
  flex-shrink: 0;
  margin-top: 2px;
}
.flow-item-badge--green {
  background: #2E7D32;
  color: #FFFFFF;
}
.flow-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.flow-item-body strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #151815;
}
.flow-item-body span {
  font-size: 0.85rem;
  color: #5F645F;
}
.flow-arrow-down {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2E7D32;
}

/* ---- 2. Support Chat Visual ---- */
.visual-chat-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 90%;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  font-size: 0.925rem;
  line-height: 1.45;
}
.chat-sender {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chat-time {
  font-size: 0.725rem;
  opacity: 0.75;
  align-self: flex-end;
}
.chat-msg--user {
  background: #FAFAF6;
  border: 1px solid rgba(21, 24, 21, 0.08);
  align-self: flex-start;
  color: #151815;
}
.chat-msg--bot {
  background: #0F2D14;
  color: #EDE7D3;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg--bot p { color: #EDE7D3; }
.chat-msg--bot .chat-sender { color: #C2B280; }
.chat-msg--bot .chat-time { color: rgba(237, 231, 211, 0.7); }

/* ---- 3. Knowledge Base RAG Visual ---- */
.visual-rag-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rag-sources-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: #FAFAF6;
  border: 1px solid rgba(21, 24, 21, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  color: #3E423E;
}
.rag-pill .brand-icon {
  stroke: #5F645F;
}
.rag-query {
  background: #FAFAF6;
  border-left: 3px solid #0F2D14;
  padding: 0.85rem 1rem;
  border-radius: 0 8px 8px 0;
}
.rag-query-label {
  display: block;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #5F645F;
  margin-bottom: 0.2rem;
}
.rag-query p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #151815;
}
.rag-answer {
  background: #EEF4EE;
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 10px;
  padding: 1rem 1.15rem;
}
.rag-answer-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #2E7D32;
  margin-bottom: 0.4rem;
}
.rag-answer-header strong {
  font-size: 0.85rem;
}
.rag-answer p {
  font-size: 0.925rem;
  color: #151815;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.rag-cite {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2E7D32;
}

/* ---- 4. Voice AI Call Visual ---- */
.visual-call-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.call-status-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: #FAFAF6;
  border: 1px solid rgba(21, 24, 21, 0.08);
  border-radius: 12px;
}
.call-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EEF4EE;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.call-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.call-meta strong {
  font-size: 0.925rem;
  color: #151815;
}
.call-meta span {
  font-size: 0.775rem;
  color: #5F645F;
}
.call-live-pill {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #2E7D32;
  padding: 3px 8px;
  border-radius: 9999px;
  animation: pulseLive 1.8s infinite;
}
@keyframes pulseLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.call-log-box {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.45;
}
.call-log-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  background: #FAFAF6;
  border-radius: 8px;
}
.call-speaker {
  font-weight: 700;
  color: #0F2D14;
  flex-shrink: 0;
}
.call-log-line--action {
  background: #EEF4EE;
  border: 1px solid rgba(46, 125, 50, 0.2);
}
.call-log-line--action .call-speaker {
  color: #2E7D32;
}

/* ---- 5. Webdesign Metrics Visual ---- */
.visual-web-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.metric-score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: #EEF4EE;
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 12px;
}
.metric-number {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: #0F2D14;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.metric-desc {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2E7D32;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.visual-web-sub {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3E423E;
  padding: 0.75rem 1rem;
  background: #FAFAF6;
  border-radius: 10px;
}

/* ==========================================================================
   SECTION 6 (HIGHLIGHT): AI ACT READY
   Luxury Dark Ground, High Authority, Certified EU AI Act
   ========================================================================== */
.story-section--highlight {
  background: #111512;
  color: #EDE7D3;
  border-bottom: 1px solid rgba(194, 178, 128, 0.2);
}
.story-section--highlight .story-title {
  color: #EDE7D3;
}
.story-section--highlight .story-lead {
  color: #E2DDD0;
}
.story-section--highlight .story-lead p {
  color: #E2DDD0 !important;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}
.story-section--highlight .story-lead strong {
  color: #FFFFFF !important;
}

/* Official AI Act Ready Certificate Box */
.ai-act-card {
  background: #181E19;
  border: 1px solid rgba(194, 178, 128, 0.3);
  border-radius: 20px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.ai-act-seal {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(194, 178, 128, 0.2);
}
.ai-act-seal .brand-icon {
  stroke: #C2B280;
}
.ai-act-seal-text {
  display: flex;
  flex-direction: column;
}
.ai-act-seal-text strong {
  font-family: var(--font-serif, "Instrument Serif", Georgia, serif);
  font-size: 1.5rem;
  color: #C2B280;
  letter-spacing: 0.04em;
}
.ai-act-seal-text span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(237, 231, 211, 0.65);
}

.ai-act-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #EDE7D3;
  line-height: 1.45;
}
.check-row .brand-icon-check {
  stroke: #C2B280;
  margin-top: 1px;
}

/* ==========================================================================
   BOTTOM CONVERSION TUNNEL
   ========================================================================== */
.bottom-cta-section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #0E120F;
  color: #EDE7D3;
}
.bottom-cta-card {
  text-align: center;
  background: #181E19;
  border: 1px solid rgba(194, 178, 128, 0.25);
  border-radius: 24px;
  padding: clamp(2.25rem, 5vw, 3.75rem);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.bottom-cta-card h2 {
  color: #EDE7D3;
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
.bottom-cta-card p {
  color: rgba(237, 231, 211, 0.75);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2.25rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.cta-guarantees {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  color: rgba(237, 231, 211, 0.65);
}
.cta-guarantees span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.cta-guarantees .brand-icon {
  stroke: #C2B280;
}

/* ==========================================================================
   MINIMAL FOOTER
   ========================================================================== */
.site-footer {
  padding: 2.25rem 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(21, 24, 21, 0.08);
  font-size: 0.875rem;
  color: #8A8F8A;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #151815;
  font-weight: 500;
}
.footer-brand .monogram {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0F2D14;
  color: #C2B280;
  display: grid;
  place-items: center;
  font-family: var(--font-serif, "Instrument Serif", serif);
  font-style: italic;
  font-size: 0.85rem;
}
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
}
.footer-links a:hover {
  color: #0F2D14;
}
