:root {
  --lb-bg: #364449;
  --lb-text: #E7E4D1;

  /* Buttons */
  --lb-btn-bg: #E7E4D1;
  --lb-btn-text: #364449;
  --lb-btn-ghost-text: #E7E4D1;

  /* Accent for subtle lines only */
  --lb-accent: #0D5925;

  --lb-card: rgba(231, 228, 209, 0.06);
  --lb-border: rgba(231, 228, 209, 0.18);
  --lb-border-soft: rgba(231, 228, 209, 0.12);
  --lb-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--lb-bg);
  color: var(--lb-text);
  font-family: "Cormorant Garamond", serif;
}

/* Make images behave predictably (prevents footer icons from blowing up) */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body, main, section, header, footer, div,
h1, h2, h3, h4, h5, h6,
p, span, li, ol, ul, label,
a, button {
  color: var(--lb-text);
  font-family: "Cormorant Garamond", serif;
}

a { text-decoration: none; }

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 18px 80px;
}

/* Subtle background texture */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 450px at 12% 10%, rgba(231, 228, 209, 0.06), transparent 60%),
    radial-gradient(680px 520px at 90% 18%, rgba(161, 191, 170, 0.05), transparent 58%),
    radial-gradient(800px 560px at 40% 92%, rgba(231, 228, 209, 0.05), transparent 60%);
}

/* HERO */
.hero {
  position: relative;
  padding: 34px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 10px;
  opacity: 0.88;
}

h1 {
  font-size: 45px;
  line-height: 1.08;
  font-weight: 500;
  margin: 0 0 12px;
}

.lead {
  font-size: 21px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.92;
  max-width: 52ch;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--lb-border);
  transition: transform 140ms ease, opacity 140ms ease;
  min-width: 140px;
  font-weight: 600;
  font-size: 17px;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--lb-btn-bg);
  color: var(--lb-btn-text);
  border-color: rgba(231, 228, 209, 0.35);
}

.btn-primary:hover { opacity: 0.92; }

.btn-ghost {
  background: transparent;
  color: var(--lb-btn-ghost-text);
  border-color: rgba(231, 228, 209, 0.35);
}

.btn-ghost:hover { opacity: 0.9; }

.hero-micro {
  margin-top: 18px;
  padding: 14px 14px;
  border: 1px solid var(--lb-border-soft);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.micro-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
}

.micro-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(231, 228, 209, 0.85);
  box-shadow: 0 0 0 6px rgba(231, 228, 209, 0.06);
}

.micro-text {
  font-size: 17px;
  opacity: 0.92;
}

/* HERO VISUAL (works with placeholder) */
.hero-visual {
  display: grid;
  gap: 12px;
  align-content: start;
}

.visual-card {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--lb-border);
  background: linear-gradient(135deg, rgba(231, 228, 209, 0.10), rgba(161, 191, 170, 0.10));
  box-shadow: var(--lb-shadow);
}

.visual-bloom {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(231, 228, 209, 0.18), transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(161, 191, 170, 0.16), transparent 42%),
    radial-gradient(circle at 55% 70%, rgba(231, 228, 209, 0.14), transparent 45%);
  filter: blur(2px);
}

.visual-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(231, 228, 209, 0.20);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.visual-title {
  font-size: 17px;
  letter-spacing: 0.02em;
}

.visual-subtitle {
  font-size: 15px;
  opacity: 0.9;
  margin-top: 4px;
}

.visual-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.strip-pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--lb-border-soft);
  background: rgba(231, 228, 209, 0.06);
  font-size: 15px;
  opacity: 0.95;
}

/* SECTIONS */
.section {
  padding: 46px 0 0;
  position: relative;
}

.section-alt {
  margin-top: 34px;
  padding-top: 38px;
  border-top: 1px solid var(--lb-border-soft);
}

.section-head h2 {
  margin: 0;
  font-weight: 500;
  font-size: 29px;
  line-height: 1.2;
}

.subhead {
  margin: 10px 0 0;
  font-size: 19px;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 68ch;
}

/* JOURNEY / CARDS / HOW (these were missing - they control the homepage layout) */
.journey {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.journey-step {
  background: var(--lb-card);
  border: 1px solid var(--lb-border-soft);
  border-radius: 18px;
  padding: 18px 16px;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 228, 209, 0.14);
  border: 1px solid rgba(231, 228, 209, 0.25);
  margin-bottom: 10px;
}

.journey-step h3 {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 21px;
}

.journey-step p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.9;
}

.cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid var(--lb-border-soft);
  border-radius: 20px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 35% 35%, rgba(231, 228, 209, 0.14), transparent 45%),
    radial-gradient(circle at 75% 45%, rgba(161, 191, 170, 0.12), transparent 48%);
  opacity: 0.6;
  pointer-events: none;
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(231, 228, 209, 0.25);
  background: rgba(231, 228, 209, 0.10);
}

.card-tag {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

.card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 21px;
}

.card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.9;
}

.how {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.how-item {
  background: var(--lb-card);
  border: 1px solid var(--lb-border-soft);
  border-radius: 18px;
  padding: 18px 16px;
}

.how-line {
  width: 54px;
  height: 2px;
  background: rgba(231, 228, 209, 0.55);
  border-radius: 999px;
  margin-bottom: 10px;
}

.how-item h3 {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 21px;
}

.how-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.9;
}

.cta-bar {
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(231, 228, 209, 0.22);
  background: linear-gradient(135deg, rgba(231, 228, 209, 0.10), rgba(161, 191, 170, 0.10));
  box-shadow: var(--lb-shadow);
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-title {
  font-size: 19px;
  font-weight: 500;
}

.cta-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 4px;
}

.brand-note {
  padding-top: 36px;
}

.brand-note p {
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
  opacity: 0.92;
  max-width: 78ch;
}

/* FOOTER (this fixes enlarged icons) */
.site-footer {
  padding: 44px 18px;
  border-top: 1px solid var(--lb-border-soft);
  margin-top: 28px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--lb-border-soft);
  background: rgba(231, 228, 209, 0.06);
  transition: opacity 140ms ease, transform 140ms ease;
}

.footer-social a:hover { opacity: 0.9; }
.footer-social a:active { transform: translateY(1px); }

.footer-social img {
  width: 22px;
  height: 22px;
}

.footer-copy {
  margin-top: 14px;
  font-size: 15px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: 39px; }
  .visual-card { height: 280px; }
  .journey, .cards, .how { grid-template-columns: 1fr; }
  .cta-bar { align-items: flex-start; }
}
