/* ============================================
   Design tokens — calm, meditative, editorial
   ============================================ */
@font-face {
  font-family: 'Gulash';
  src: url('font/Gulash-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

   :root {
  /* Palette — inspired by the blue flowers and soft cream of renanaorlev.com */
  --cream: #ffffff;
  --cream-dark: #ede7d9;
  --sand: #d4c5a0;
  --sand-soft: #e8dfc8;
  
  --blue: #8aa8b8;
  --blue-deep: #4682B4;
  --blue-soft: #c8d6de;

  --sage: #9db08f;
  --ink: #2d3b42;
  --ink-soft: #5a6b72;
  --hairline: rgba(45, 59, 66, 0.12);

  /* Typography */
  --font-body: 'Heebo', system-ui, -apple-system, sans-serif;
  --font-display: 'Gulash', 'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-titles: 'Frank Ruhl Libre', 'Times New Roman', serif;
  /* Spacing */
  --container: 1140px;
  --pad: clamp(1rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   Reset & base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
a { color: var(--blue-deep); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { padding-inline-start: 1.2em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ============================================
   Ambient background — breathing circles
   ============================================ */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.breath-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 168, 184, 0.18) 0%, transparent 65%);
  top: -150px;
  right: -150px;
  animation: breathe 12s ease-in-out infinite;
  filter: blur(40px);
}
.breath-circle--two {
  top: auto;
  right: auto;
  bottom: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 197, 160, 0.22) 0%, transparent 65%);
  animation-duration: 16s;
  animation-delay: -4s;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ============================================
   Header
   ============================================ */
.site-header {
  padding: 0.3rem 0;        
  border-bottom: 1px solid var(--hairline);
  background: var(--blue-deep);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1.0rem;
  font-family: var(--font-display);
  color:var(--cream);
  font-size: 3.0rem;
  font-weight: 500;
}
.brand-name {
  transform: translateY(-0.15em);
}
.brand-mark {
  font-size: 2.0rem;
  color: var(--cream);
  line-height: 0;
  display: flex;
  align-items: center;
}
.header-nav a {
  font-size: 0.95rem;
  color: var(--cream);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease);
}
.header-nav a:hover { background: var(--cream-dark); color: var(--ink); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem);
  text-align: center;
  overflow: hidden;
  
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg.png') center/cover no-repeat;
  opacity: 0.4;          /* 40% opaque = 60% transparent */
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 740px;
  position: relative;  
  z-index: 1;
  animation: fadeUp 0.9s var(--ease) both;
}
.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--blue-deep);
  text-transform: uppercase;
  margin: 0 0 0.3rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-titles);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title--accent {
  color: var(--blue-deep);
  font-style: italic;
  font-weight: 400;
}
.hero-lede {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1.6px solid var(--blue-deep);
  border-radius: 16px;
  color: var(--blue-deep);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.hero-cta:hover {
  background: var(--blue-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

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

/* ============================================
   Bundle card — featured
   ============================================ */
.bundle-section { padding: 3rem 0 4rem; }
.bundle-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #fdfbf5 0%, #f0ebdb 100%);
  border-radius: 24px;
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 60px -30px rgba(45, 59, 66, 0.15);
  overflow: hidden;
}
.bundle-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 168, 184, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.bundle-card__ribbon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.4rem 1rem;
  background: var(--deep-blue);
  color: var(--blue);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  font-weight: 500;
}
.bundle-card__content {
  position: relative;
}

.bundle-card__content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: url('images/full_pack.png') center/contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

/* lift the actual text/list above the background mandala */
.bundle-card__content > * {
  position: relative;
  z-index: 1;
}
.bundle-card__title {
  font-family: var(--font-titles);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.bundle-card__desc {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}
.bundle-card__perks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bundle-card__perks li {
  padding: 0.5rem 0;
  padding-inline-start: 1.8rem;
  position: relative;
  color: var(--ink);
}
.bundle-card__perks li::before {
  content: '◦';
  position: absolute;
  inset-inline-start: 0;
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 1;
  top: 0.6rem;
}
.bundle-card__pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  padding-inline-start: 2rem;
  border-inline-start: 1px solid var(--hairline);
}
.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.bundle-price-old {
  color: var(--ink-soft);
  text-decoration: line-through;
  font-size: 1.1rem;
}
.bundle-price {
  font-family: var(--font-titles);
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

@media (max-width: 820px) {
  .bundle-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bundle-card__pricing {
    padding-inline-start: 0;
    border-inline-start: none;
    border-top: 1px solid var(--hairline);
    padding-top: 2rem;
  }
}

/* ============================================
   Products grid
   ============================================ */
.products-section { padding: 4rem 0; }
.section-title {
  font-family: var(--font-titles);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.5rem;
  color:var(--blue-deep);
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 0 3rem;
  font-size: 1.05rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: #fdfbf5;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(45, 59, 66, 0.2);
  border-color: var(--blue-soft);
}
.product-card__number {
  font-family: var(--font-titles);
  font-style: italic;
  color: var(--blue);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.product-card__title {
  font-family: var(--font-titles);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}
.product-card__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  flex-grow: 1;
}
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}
.product-card__price {
  font-family: var(--font-titles);
  font-size: 1.5rem;
  font-weight: 500;
}
.product-card__price-unit {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue-deep);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -8px rgba(45, 59, 66, 0.4);
}
.btn--primary:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn--full { width: 100%; }

/* ============================================
   Info section
   ============================================ */
.info-section {
  padding: 5rem 0;
  background: var(--cream-dark);
  margin-top: 2rem;
}
.info-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 900px;
}
.info-col h3 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--blue-deep);
}
.info-col ol, .info-col ul {
  color: var(--ink-soft);
  line-height: 1.9;
}
.info-col li { padding: 0.25rem 0; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--hairline);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   Modal
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal[aria-hidden="false"] { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 59, 66, 0.5);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s var(--ease);
}
.modal__dialog {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s var(--ease);
}
.modal__close {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  font-size: 1.8rem;
  color: var(--ink-soft);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.modal__close:hover { background: var(--cream-dark); color: var(--ink); }
.modal__title {
  font-family: var(--font-titles);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.modal__desc {
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.checkout-form { display: flex; flex-direction: column; gap: 1rem; }
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field > span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fdfbf5;
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(138, 168, 184, 0.2);
}
.modal__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--cream-dark);
  border-radius: 10px;
  margin-top: 0.5rem;
  font-size: 1rem;
}
.modal__summary strong {
  font-family: var(--font-titles);
  font-size: 1.3rem;
  font-weight: 500;
}
.modal__note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin: 0.5rem 0 0;
}
.checkout-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #fce4e4;
  color: #8b2c2c;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Responsive tweaks
   ============================================ */
@media (max-width: 640px) {
  .site-header { padding: 1rem 0; }
  .hero { padding-top: 3rem; }
  .bundle-card__ribbon { top: 1rem; left: 1rem; font-size: 0.75rem; }
}

/* ============================================
   Thank-you page
   ============================================ */
.ty-main {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.ty-inner {
  max-width: 580px;
  text-align: center;
  animation: fadeUp 0.9s var(--ease) both;
}

.ty-leaf {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: breathe 4s ease-in-out infinite;
}

.ty-title {
  font-family: var(--font-titles);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.ty-lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0 auto 2.5rem;
  max-width: 480px;
}

.ty-download-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.ty-download-item {
  width: 100%;
  max-width: 420px;
}

.ty-download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--blue-deep);
  color: var(--cream);
  border-radius: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 20px -8px rgba(70, 130, 180, 0.5);
}

.ty-download-link:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(70, 130, 180, 0.6);
  color: var(--cream);
}

.ty-download-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.ty-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 0 3rem;
  line-height: 1.7;
}

.ty-back {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid var(--blue-deep);
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.ty-back:hover {
  background: var(--blue-deep);
  color: var(--cream);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .ty-main {
    padding-top: 2rem;
    align-items: flex-start;
  }
}