/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1614;
  background: #fbf6f1;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
.font-serif { font-family: 'Fraunces', serif; }
.italic-accent { font-family: 'Fraunces', serif; font-style: italic; color: #e55a1f; font-weight: 600; }
.text-center { text-align: center; }

::selection { background: #e55a1f; color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: background-color .25s, transform .2s, box-shadow .2s, border-color .25s, color .25s;
  border: 1px solid transparent;
  text-align: center;
}
.btn--lg { padding: 14px 24px; font-size: 15px; }
.btn--block { width: 100%; padding: 14px 20px; }
.btn--primary { background: #e55a1f; color: #fff; }
.btn--primary:hover { background: #cf4e15; transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(229,90,31,.5); }
.btn--outline { background: #fff; color: #1a1614; border-color: #e7d9c8; }
.btn--outline:hover { border-color: #e55a1f; transform: translateY(-1px); box-shadow: 0 8px 24px -10px rgba(0,0,0,.12); }
.btn i { width: 18px; height: 18px; }



body.booking-modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.is-open {
  display: flex;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0.62);
  backdrop-filter: blur(8px);
}

.booking-modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  border: 1px solid #f0d8c5;
  border-radius: 14px;
  background: #fbf6f1;
  box-shadow: 0 34px 90px -42px rgba(26, 22, 20, 0.55);
  padding: 30px;
}

.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ecdcc7;
  border-radius: 9999px;
  background: #fff;
  color: #3d322a;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.booking-modal__close:hover {
  border-color: #e55a1f;
  color: #e55a1f;
  transform: translateY(-1px);
}

.booking-modal__header {
  padding-right: 44px;
}

.booking-modal__title {
  margin-top: 14px;
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.12;
  color: #231914;
}

.booking-modal__copy {
  max-width: 560px;
  margin-top: 12px;
  color: #5a4c41;
  line-height: 1.65;
}

.booking-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #3d322a;
  font-size: 14px;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #ead8c7;
  border-radius: 8px;
  background: #fff;
  color: #231914;
  font-size: 15px;
  line-height: 1.4;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form textarea {
  resize: vertical;
  min-height: 112px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #e55a1f;
  box-shadow: 0 0 0 4px rgba(229, 90, 31, 0.12);
}

.booking-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.booking-form__submit {
  min-height: 48px;
  border-radius: 8px;
}

.booking-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.booking-form__status {
  min-height: 22px;
  color: #5a4c41;
  font-size: 14px;
}

.booking-form__status.is-success {
  color: #1f7a4d;
}

.booking-form__status.is-error {
  color: #b42318;
}

.pricing-trial-card {
  display: flex;
  flex-direction: column;
}

.pricing-trial-card .booking-form__submit,
.pricing-trial-card button {
  margin-top: auto;
}

@media (max-width: 767px) {
  .booking-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .booking-modal__panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 14px 14px 10px 10px;
    padding: 24px 18px 20px;
  }

  .booking-modal__header {
    padding-right: 42px;
  }

  .booking-modal__title {
    font-size: 28px;
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Navbar ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(251, 246, 241, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0e3d2;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.logo-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  background: #e55a1f;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
}
.nav__links { display: none; gap: 32px; }
.nav__links a { font-size: 15px; color: #3d322a; transition: color .2s; }
.nav__links a:hover { color: #e55a1f; }
.nav__cta { display: none; align-items: center; gap: 12px; }
.link-muted { font-size: 15px; color: #3d322a; padding: 8px 12px; transition: color .2s; }
.link-muted:hover { color: #e55a1f; }
.nav__toggle { display: inline-flex; padding: 8px; }
.nav__toggle i { width: 22px; height: 22px; }
.nav__mobile { display: none; flex-direction: column; gap: 12px; padding: 16px 20px; border-top: 1px solid #f0e3d2; background: #fbf6f1; }
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 8px 0; color: #3d322a; }
@media (min-width: 900px) {
  .nav__inner { padding: 16px 32px; }
  .nav__links, .nav__cta { display: flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* ===== Hero ===== */
.hero {
  background: radial-gradient(ellipse 90% 60% at 50% 0%, #ffe9d6 0%, #fff3e7 35%, #fbf6f1 70%);
  padding: 40px 0 80px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 64px 0 112px; } }
.hero__content { max-width: 880px; margin: 0 auto; text-align: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 9999px;
  background: #fff; border: 1px solid #f0e3d2;
  font-size: 13px; color: #4a3f37;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: #e55a1f; display: inline-block; }
.hero__title {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.05;
  margin: 24px 0 0;
  color: #231914;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero__title { font-size: 4.5rem; } }
.hero__sub { margin: 24px auto 0; color: #5a4c41; font-size: 1.125rem; max-width: 640px; }
@media (min-width: 768px) { .hero__sub { font-size: 1.25rem; } }
.hero__actions { display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: center; margin-top: 32px; }
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }
.hero__chips { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 28px; margin-top: 32px; color: #6b5a4d; font-size: 14px; }
.hero__chips span { display: inline-flex; align-items: center; gap: 8px; }
.hero__chips i { color: #e55a1f; width: 16px; height: 16px; }

/* ===== Preview Frame (Dashboard) ===== */
.preview-frame {
  margin-top: 56px;
  background: linear-gradient(135deg, #fde7d8 0%, #fcd9c1 50%, #f5b8c3 100%);
  border-radius: 24px;
  padding: 28px;
}
@media (min-width: 768px) { .preview-frame { margin-top: 80px; } }
.preview-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.18);
  overflow: hidden;
}
.dashboard { display: flex; flex-direction: column; }
@media (min-width: 768px) { .dashboard { flex-direction: row; } }
.dashboard__side { display: none; flex-direction: column; gap: 4px; padding: 20px; width: 224px; border-right: 1px solid #f0e3d2; background: #fdfaf6; }
@media (min-width: 768px) { .dashboard__side { display: flex; } }
.dashboard__brand { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.brand-square { width: 32px; height: 32px; border-radius: 8px; background: #e55a1f; color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 600; }
.brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 14px; }
.brand-tag { font-size: 10px; letter-spacing: .15em; color: #9b8674; }
.side-item { font-size: 14px; padding: 8px 12px; border-radius: 6px; color: #5a4c41; transition: background .2s; }
.side-item:hover { background: #fdf4ea; }
.side-item--active { background: #fde4d1; color: #e55a1f; font-weight: 500; }

.dashboard__main { flex: 1; padding: 20px; }
@media (min-width: 768px) { .dashboard__main { padding: 28px; } }
.dashboard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.dashboard__title { font-size: 1.25rem; font-weight: 600; }
@media (min-width: 768px) { .dashboard__title { font-size: 1.5rem; } }
.dashboard__sub { font-size: 12px; color: #9b8674; margin-top: 4px; }
.dashboard__toolbar { display: none; align-items: center; gap: 12px; }
@media (min-width: 640px) { .dashboard__toolbar { display: flex; } }
.search { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 6px; background: #fdf4ea; font-size: 12px; color: #9b8674; width: 240px; }
.search i { width: 14px; height: 14px; }
.bell { position: relative; padding: 8px; border-radius: 6px; background: #fdf4ea; }
.bell i { width: 14px; height: 14px; }
.bell span { position: absolute; top: -4px; right: -4px; width: 16px; height: 16px; border-radius: 50%; background: #e55a1f; color: #fff; font-size: 9px; display: flex; align-items: center; justify-content: center; }
.avatar { display: flex; align-items: center; gap: 8px; }
.avatar__circle { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #f6c79f, #e55a1f); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; }
.avatar__name { font-size: 12px; font-weight: 500; }
.avatar__role { font-size: 12px; color: #9b8674; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 12px; border: 1px solid #f0e3d2; border-radius: 8px; }
.stat > div { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #9b8674; }
.stat > div i { width: 12px; height: 12px; }
.stat strong { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; display: block; margin-top: 4px; }

.panels { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .panels { grid-template-columns: 2fr 1fr; } }
.panel { padding: 16px; border: 1px solid #f0e3d2; border-radius: 12px; }
.panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.panel__head span { font-size: 11px; color: #9b8674; }
.chart { width: 100%; height: 96px; }
.booking { display: flex; align-items: center; justify-content: space-between; font-size: 12px; padding: 6px 0; }
.booking span { display: inline-flex; align-items: center; gap: 8px; }
.bdot { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #f6c79f, #e55a1f); }

/* ===== Generic Section ===== */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
.section--cream { background: #fdf4ea; }
.section--light { background: #fbf6f1; }
.section__head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.pill, .pill-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #f0e3d2;
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 600;
  color: #6b5a4d;
  text-transform: uppercase;
}
.section__title { font-size: 1.875rem; font-weight: 600; margin: 20px 0 0; color: #231914; line-height: 1.15; letter-spacing: -0.01em; }
@media (min-width: 768px) { .section__title { font-size: 3rem; } }
.section__lead { margin: 20px auto 0; color: #5a4c41; max-width: 640px; }

/* ===== Cards / Grid ===== */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid #f0e3d2; border-radius: 16px; padding: 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(229,90,31,.25); border-color: #f6c79f; }
.card h3 { font-size: 1.25rem; font-weight: 600; margin: 0; color: #231914; }
.card p { margin: 8px 0 0; color: #5a4c41; font-size: 14px; }
.card--row { display: flex; align-items: flex-start; gap: 16px; }
.card--row .icon-bubble { flex-shrink: 0; }
.card--row h3 { font-size: 1.125rem; }
.card--row p { margin-top: 4px; }

.icon-bubble { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: #fde4d1; color: #e55a1f; margin-bottom: 16px; }
.icon-bubble i { width: 22px; height: 22px; }
.icon-bubble--solid { background: #e55a1f; color: #fff; }

/* ===== Steps ===== */
.steps {
  background: #fdfaf6; border: 1px solid #f0e3d2; border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; align-items: stretch; gap: 16px;
}
@media (min-width: 900px) { .steps { flex-direction: row; align-items: center; justify-content: space-between; padding: 40px; } }
.step { display: flex; align-items: center; gap: 12px; }
@media (min-width: 900px) { .step { flex-direction: column; gap: 12px; } }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: #e55a1f; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; }
.step-label { font-weight: 600; font-size: 15px; }
.step-arrow { display: none; color: #e55a1f; width: 20px; height: 20px; flex-shrink: 0; }
@media (min-width: 900px) { .step-arrow { display: inline-block; } }

/* ===== Product Showcase ===== */
.product { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .product { grid-template-columns: 1fr 2fr; } }
.product__list { display: flex; flex-direction: column; gap: 8px; }
.product__tab { text-align: left; padding: 16px; border-radius: 12px; border: 1px solid #f0e3d2; background: rgba(255,255,255,.6); transition: all .2s; }
.product__tab:hover { background: #fff; }
.product__tab.is-active { border-color: #e55a1f; background: #fff; box-shadow: 0 18px 40px -22px rgba(229,90,31,.25); }
.product__tab > div { font-size: 1.125rem; font-weight: 600; }
.product__tab p { margin: 4px 0 0; font-size: 14px; color: #5a4c41; }
.product__panel { padding: 24px; }
@media (min-width: 768px) { .product__panel { padding: 32px; } }
.product__head { display: flex; align-items: center; justify-content: space-between; }
.product__head h3 { font-size: 1.25rem; font-weight: 600; margin: 0; }
@media (min-width: 768px) { .product__head h3 { font-size: 1.5rem; } }
.product__nav { display: flex; gap: 8px; }
.product__nav button { padding: 8px; border-radius: 6px; border: 1px solid #f0e3d2; transition: border-color .2s; }
.product__nav button:hover { border-color: #e55a1f; }
.product__nav i { width: 16px; height: 16px; }
.product__desc { margin: 8px 0 0; color: #5a4c41; font-size: 14px; }
.product__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.product__tags span { padding: 4px 12px; border-radius: 9999px; background: #fdf4ea; font-size: 12px; color: #7a6450; border: 1px solid #f0e3d2; }
.product__skeleton { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
@media (min-width: 768px) { .product__skeleton { grid-template-columns: repeat(4, 1fr); } }
.product__skeleton > div { height: 80px; border-radius: 8px; background: linear-gradient(135deg, #fde7d8, #fff7ed); border: 1px solid #f0e3d2; }
.product__skeleton--big { grid-template-columns: 1fr; margin-top: 12px; }
@media (min-width: 768px) { .product__skeleton--big { grid-template-columns: 2fr 1fr; } }
.product__skeleton--big > div { height: 128px; background: linear-gradient(135deg, #fff7ed, #fde7d8); }
.product__skeleton--big > div:last-child { background: linear-gradient(135deg, #fde7d8, rgba(246, 199, 159, .4)); }

/* ===== Testimonials ===== */
.t-card { padding: 28px; }
.t-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.t-card__head span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #9b8674; font-weight: 600; }
.t-card__head i { color: #e55a1f; width: 22px; height: 22px; }
.t-card__quote { font-size: 1.125rem; line-height: 1.55; color: #231914; margin: 0; }
@media (min-width: 768px) { .t-card__quote { font-size: 1.25rem; } }
.t-card__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.t-card__author > div:last-child { display: flex; flex-direction: column; }
.t-card__author strong { font-size: 14px; font-weight: 500; }
.t-card__author span { font-size: 12px; color: #9b8674; }

/* ===== Pricing ===== */
.pricing { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 880px; margin: 0 auto; }
@media (min-width: 768px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
.plan { position: relative; padding: 32px; border-radius: 16px; border: 1px solid #f0e3d2; background: #fff; transition: box-shadow .3s; }
.plan:hover { box-shadow: 0 18px 40px -22px rgba(0,0,0,.12); }
.plan--highlight { border-color: #e55a1f; box-shadow: 0 30px 60px -30px rgba(229,90,31,.35); }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #e55a1f; color: #fff; padding: 4px 16px; border-radius: 9999px; font-size: 12px; font-weight: 500; }
.plan__name { font-size: 1.25rem; font-weight: 600; }
.plan__price { margin: 12px 0; display: flex; align-items: baseline; gap: 4px; }
.plan__price span { font-size: 3rem; font-weight: 600; color: #231914; }
.plan__price small { color: #9b8674; font-size: 14px; }
.plan__features { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.plan__features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #3d322a; }
.plan__features li i { width: 12px; height: 12px; color: #e55a1f; background: #fde4d1; padding: 4px; border-radius: 50%; box-sizing: content-box; }

/* ===== FAQ ===== */
.faq { margin-top: 20px; }
.faq__item { border-bottom: 1px solid #ecdcc7; padding: 18px 0; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 24px; }
.faq__q span:first-child { font-size: 1.125rem; font-weight: 600; }
@media (min-width: 768px) { .faq__q span:first-child { font-size: 1.25rem; } }
.faq__icon { width: 36px; height: 36px; border-radius: 50%; background: #fde4d1; color: #e55a1f; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s; }
.faq__icon i { width: 16px; height: 16px; transition: transform .3s; }
.faq__a { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .25s ease; }
.faq__a p { padding-top: 12px; margin: 0; color: #5a4c41; line-height: 1.65; }
.faq__item.is-open .faq__a { max-height: 240px; opacity: 1; }
.faq__item.is-open .faq__icon i { transform: rotate(45deg); }

/* ===== Final CTA ===== */
.cta { background: linear-gradient(180deg, #fbf6f1 0%, #fde4d1 100%); }
.cta .section__title { margin-top: 0; }

/* ===== Footer ===== */
.footer { background: #1a1614; color: #d6c6b8; padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand p { margin: 20px 0 0; color: #a59786; max-width: 320px; line-height: 1.65; }
.footer h4 { color: #fff; font-size: 16px; font-weight: 600; margin: 0 0 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: #a59786; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid #2c2520; display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: space-between; font-size: 14px; color: #a59786; }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }

/* ===== Reveal Animation ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
