/* ============================================================
   AUTOMATIC MONDAY — GLOBAL STYLESHEET
   ============================================================ */

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

:root {
  --bg:       #faf7f2;
  --text:     #1c1a18;
  --accent:   #d43b2e;
  --white:    #ffffff;
  --muted:    #999999;
  --border:   #e8e4de;
  --dark:     #1c1a18;
  --f-head:   'Archivo', sans-serif;
  --f-body:   'DM Sans', sans-serif;
  --max:      1200px;
  --radius:   3px;
  --shadow:   0 1px 3px rgba(28,26,24,0.06), 0 4px 16px rgba(28,26,24,0.04);
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* CONTAINER */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.eyebrow {
  font-family: var(--f-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.eyebrow.light { color: rgba(250,247,242,0.4); }
.eyebrow.light::before { background: var(--accent); }

.section-headline {
  font-family: var(--f-head);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

.section-headline.light { color: var(--bg); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text);
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 25px;
  border-radius: var(--radius);
  border: 1px solid var(--text);
  cursor: pointer;
  transition: all 0.15s;
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--accent);
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-white:hover { background: #f0ede8; }

/* ============================================================
   LOGO
   ============================================================ */

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

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.logo-text.light { color: var(--bg); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  opacity: 0.65;
  transition: opacity 0.15s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta { padding: 10px 18px; font-size: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-inner { padding: 0 24px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }

  .nav-links.open a { font-size: 16px; opacity: 1; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 148px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 13px;
  margin-bottom: 28px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-tag span {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-headline {
  font-family: var(--f-head);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.97;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: var(--f-head);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stats {
    flex-direction: row;
    gap: 2px;
  }
  .stat-card { flex: 1; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero-stats { flex-direction: column; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */

.problem {
  background: var(--dark);
  padding: 100px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 48px;
}

.problem-left .section-headline { margin-bottom: 24px; }

.problem-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250,247,242,0.6);
  margin-bottom: 16px;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.problem-stat-row {
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(250,247,242,0.08);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.problem-stat-number {
  font-family: var(--f-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--accent);
  flex-shrink: 0;
}

.problem-stat-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(250,247,242,0.5);
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   HOW IT WORKS PREVIEW
   ============================================================ */

.how-preview {
  padding: 100px 0;
}

.how-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.how-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.step-num {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-time {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.step-title {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}

.step-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.step-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--bg);
}

.step-cta-text {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

@media (max-width: 900px) {
  .how-header { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================================
   PRICING PREVIEW
   ============================================================ */

.pricing-preview {
  background: var(--dark);
  padding: 100px 0;
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.pricing-preview-body {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(250,247,242,0.55);
  margin-top: 20px;
  max-width: 480px;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-tier-row {
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(250,247,242,0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-tier-row.featured {
  background: rgba(212,59,46,0.12);
  border-color: rgba(212,59,46,0.25);
}

.tier-name {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  color: rgba(250,247,242,0.6);
  letter-spacing: 0.05em;
}

.tier-name.accent { color: var(--accent); }

.tier-badge {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  color: rgba(250,247,242,0.35);
  margin-top: 2px;
}

.tier-price {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--bg);
}

.tier-period {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.4;
}

@media (max-width: 900px) {
  .pricing-preview-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   GUARANTEE
   ============================================================ */

.guarantee {
  background: var(--accent);
  padding: 80px 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.guarantee-headline {
  font-family: var(--f-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin: 14px 0 16px;
}

.guarantee-body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
}

@media (max-width: 768px) {
  .guarantee-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   INDUSTRIES
   ============================================================ */

.industries {
  padding: 100px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}

.industry-card:hover { transform: translateY(-2px); }

.industry-name {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.industry-value {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.industry-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FOOTER CTA
   ============================================================ */

.footer-cta {
  padding: 100px 0;
}

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

.footer-cta-sub {
  font-size: 18px;
  color: var(--text);
  opacity: 0.6;
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,247,242,0.08);
}

.footer-logo { margin-bottom: 16px; }

.footer-desc {
  font-size: 14px;
  color: rgba(250,247,242,0.5);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col-label {
  font-family: var(--f-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(250,247,242,0.5);
  transition: color 0.15s;
}

.footer-nav a:hover { color: rgba(250,247,242,0.85); }

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(250,247,242,0.25);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   INTERNAL PAGE HERO
   ============================================================ */

.page-hero {
  padding: 140px 0 72px;
}

.page-hero-narrow {
  max-width: 640px;
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */

.layers-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 16px;
}

.layer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
  box-shadow: var(--shadow);
}

.layer-number {
  font-family: var(--f-head);
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--border);
  line-height: 1.0;
}

.layer-timing {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}

.layer-title {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.layer-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 12px;
}

.layer-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
}

@media (max-width: 768px) {
  .layer-card { grid-template-columns: 1fr; gap: 16px; }
  .layer-number { font-size: 56px; }
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--f-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.pricing-tier-label {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-tier-label { color: rgba(250,247,242,0.4); }

.pricing-price {
  font-family: var(--f-head);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price { color: var(--bg); }

.pricing-period-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-period-label { color: rgba(250,247,242,0.35); }

.pricing-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-desc {
  color: rgba(250,247,242,0.45);
  border-bottom-color: rgba(250,247,242,0.1);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.pricing-card.featured .pricing-features li { color: rgba(250,247,242,0.75); }

.pricing-features li::before {
  content: '→';
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-card .btn-secondary,
.pricing-card .btn-primary { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */

.industry-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
  box-shadow: var(--shadow);
  margin-bottom: 2px;
}

.industry-detail-eyebrow { margin-bottom: 14px; }

.industry-detail-headline {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.industry-detail-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 24px;
}

.industry-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (max-width: 768px) {
  .industry-detail-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

.about-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.72;
  margin-bottom: 20px;
}

.about-sig {
  font-size: 15px;
  color: var(--muted);
  margin-top: 28px;
}

.credential-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.credential-company {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.credential-role {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   CONTACT / BOOK PAGE
   ============================================================ */

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
}

.expect-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.expect-num {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 900;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.expect-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.calendar-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 8px;
}

.calendar-placeholder-label {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.calendar-placeholder-note {
  font-size: 13px;
  color: var(--muted);
}

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

/* ============================================================
   UTILITIES
   ============================================================ */

.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }

.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.section-pad { padding: 100px 0; }

/* Booking Card */
.booking-card {
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 3px;
  padding: 48px 40px;
  align-self: start;
  position: sticky;
  top: 100px;
}
.booking-card-inner {}
.booking-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.booking-icon {
  font-size: 16px;
  width: 24px;
  text-align: center;
}
.booking-btn {
  display: block;
  text-align: center;
  margin-top: 32px;
  width: 100%;
  box-sizing: border-box;
}
