.elementor-44 .elementor-element.elementor-element-58b5fff{--display:flex;}/* Start custom CSS */:root {
  --sky-pale:   #EAF4FB;
  --sky:        #B5DAF0;
  --sky-deep:   #6FA9CC;

  --sun-glow:   #FEEAB0;
  --sun:        #F4C530;
  --sun-deep:   #C99617;

  --field-pale: #FBF1D1;
  --field:      #E8C547;
  --field-warm: #D4A017;
  --path:       #C99550;

  --leaf-pale:  #D8E8C0;
  --leaf:       #7CB342;
  --leaf-deep:  #4F7A28;

  --paper:      #FFF8E7;
  --paper-warm: #FDEFC3;
  --ink:        #2C2317;
  --ink-soft:   #5D4E37;
  --ink-faint:  #8C7B5F;
  --border:     rgba(44, 35, 23, 0.12);

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Spectral', 'Georgia', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 760px; }
section { padding: 100px 0; position: relative; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun-deep);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h2 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
h2 em { font-style: italic; color: var(--sun-deep); }
h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }


/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--sun-deep);
  border-color: var(--sun-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 150, 23, 0.35);
}
.btn--sun {
  background: var(--sun);
  color: var(--ink);
  border-color: var(--sun);
}
.btn--sun:hover {
  background: var(--sun-deep);
  border-color: var(--sun-deep);
  color: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 150, 23, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }


/* ====================================================
   HERO
   ==================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, var(--sun-glow) 0%, transparent 60%),
    linear-gradient(180deg, var(--sky-pale) 0%, var(--paper) 70%, var(--paper-warm) 100%);
  position: relative;
  overflow: hidden;
}
.hero__sun {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--sun) 0%, var(--sun) 30%, transparent 60%);
  opacity: 0.35;
  border-radius: 50%;
  z-index: 0;
  filter: blur(20px);
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -100px;
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero__text { animation: fadeUp 1.1s ease-out 0.1s both; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun-deep);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero__tag::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--sun-deep);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--ink);
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--sun-deep); }
.hero__sub {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 44px;
}
.hero__meta {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-faint);
  flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.hero__meta-val { color: var(--ink); font-weight: 500; font-size: 15px; }

.hero__cover-wrap {
  animation: fadeIn 1.4s ease-out 0.3s both;
  position: relative;
  max-width: 360px;
  margin-left: auto;
}
.hero__cover {
  width: 100%;
  aspect-ratio: 800 / 1170;
  background: var(--sky-pale);
  border-radius: 2px 6px 6px 2px;
  box-shadow:
    0 1px 1px rgba(44,35,23,0.05),
    0 8px 16px rgba(44,35,23,0.08),
    0 30px 60px rgba(44,35,23,0.22),
    -6px 0 12px rgba(44,35,23,0.08);
  position: relative;
  overflow: hidden;
  transform: perspective(2000px) rotateY(-3deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero__cover:hover { transform: perspective(2000px) rotateY(0deg) translateY(-6px); }
.hero__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__cover::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(90deg,
    rgba(44,35,23,0.18) 0%,
    rgba(44,35,23,0.04) 50%,
    transparent 100%);
  pointer-events: none;
}


/* ====================================================
   HOOK
   ==================================================== */
.hook {
  background: var(--sky-pale);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hook::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 197, 48, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hook__inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.hook p {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hook p em { font-style: italic; color: var(--sun-deep); font-weight: 400; }


/* ====================================================
   SYNOPSIS
   ==================================================== */
.synopsis { background: var(--paper); position: relative; overflow: hidden; }
.synopsis::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--leaf-pale) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.synopsis__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.synopsis__head { position: sticky; top: 40px; }
.synopsis__body p { margin-bottom: 24px; font-size: 19px; line-height: 1.75; }
.synopsis__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.1em 0 -0.05em;
  color: var(--sun-deep);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.synopsis__body p em { font-style: italic; color: var(--sun-deep); }


/* ====================================================
   FOR WHOM
   ==================================================== */
.for-whom {
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--paper) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.for-whom::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--leaf-pale) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.for-whom > .container { position: relative; z-index: 1; }
.for-whom h2 { margin-bottom: 64px; }
.for-whom__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.for-whom__item {
  background: var(--paper);
  padding: 36px 28px;
  border-radius: 16px;
  position: relative;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid var(--border);
}
.for-whom__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(44,35,23,0.08);
  border-color: var(--sun);
}
.for-whom__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--sun);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-style: italic;
}
.for-whom__item p { font-size: 16px; line-height: 1.55; color: var(--ink); }


/* ====================================================
   EXCERPT
   ==================================================== */
.excerpt { background: var(--paper); position: relative; overflow: hidden; }
.excerpt::before {
  content: '';
  position: absolute;
  top: 80px;
  right: 8%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--sun) 0%, var(--sun-glow) 60%, transparent 80%);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}
.excerpt__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.excerpt__head { text-align: center; margin-bottom: 56px; }
.excerpt__chapter {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
  font-weight: 600;
}
.excerpt__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.excerpt__body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.85;
  color: var(--ink);
}
.excerpt__body p { margin-bottom: 22px; }
.excerpt__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5.5em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.1em 0 -0.05em;
  color: var(--sun-deep);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.excerpt__fade-cta {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin: 32px 0 24px;
}
.excerpt__cta-wrap { text-align: center; }


/* ====================================================
   PULL QUOTE
   ==================================================== */
.pull-quote {
  background:
    radial-gradient(ellipse at 50% 50%, var(--sky-deep) 0%, var(--ink) 70%);
  color: var(--paper);
  text-align: center;
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--sun) 0%, var(--sun-deep) 30%, transparent 70%);
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(40px);
  pointer-events: none;
}
.pull-quote__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.pull-quote q {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--paper);
  font-style: italic;
  display: block;
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  quotes: '„' '"';
}
.pull-quote q::before { content: open-quote; color: var(--sun); }
.pull-quote q::after  { content: close-quote; color: var(--sun); }
.pull-quote__attr {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun-glow);
  font-weight: 600;
}


/* ====================================================
   AUTHOR
   ==================================================== */
.author { background: var(--paper); }
.author__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.author__photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--sun-glow), var(--paper-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faint);
  border: 1px solid var(--border);
  text-align: center;
  line-height: 1.4;
}
.author h2 { margin-bottom: 24px; }
.author p { color: var(--ink-soft); font-size: 18px; }


/* ====================================================
   BUY
   ==================================================== */
.buy {
  background:
    radial-gradient(ellipse at 50% 0%, var(--sun-glow) 0%, transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.buy h2 { margin-bottom: 24px; }
.buy__intro {
  max-width: 580px;
  margin: 0 auto 56px;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.buy__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 24px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.buy__option {
  background: var(--paper);
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.buy__option:hover {
  border-color: var(--sun);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44,35,23,0.10);
}
.buy__format {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.buy__detail {
  font-size: 15px;
  color: var(--ink-soft);
  flex-grow: 1;
  line-height: 1.55;
}
.buy__option .btn { width: 100%; justify-content: center; }


/* ====================================================
   FAQ
   ==================================================== */
.faq { background: var(--sky-pale); }
.faq h2 { text-align: center; }
.faq__list { max-width: 720px; margin: 56px auto 0; }
.faq__item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq__item summary {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  gap: 24px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--sun-deep);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 16px 0 8px; color: var(--ink-soft); line-height: 1.7; }


/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background:
    radial-gradient(ellipse at 50% 0%, var(--sky-deep) 0%, var(--ink) 70%);
  color: var(--paper);
  padding: 80px 32px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--sun) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
footer .container { max-width: 720px; position: relative; z-index: 1; }
footer h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 16px;
  font-size: 28px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 1.3;
}
footer p { color: rgba(255, 248, 231, 0.7); font-size: 14px; margin-bottom: 32px; }
footer nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 248, 231, 0.15);
}
footer nav a { color: rgba(255, 248, 231, 0.6); transition: color 0.2s; }
footer nav a:hover { color: var(--sun-glow); }


/* === Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }


/* === Responsive === */
@media (max-width: 880px) {
  section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .hero { padding: 80px 0 64px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__cover-wrap { margin: 0 auto; max-width: 280px; }
  .hero__cover { transform: none; }
  .hero__sun { width: 120px; height: 120px; top: 5%; right: 5%; }
  .synopsis__grid { grid-template-columns: 1fr; gap: 40px; }
  .synopsis__head { position: static; }
  .author__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .author__photo { margin: 0 auto; width: 200px; height: 200px; }
  .pull-quote { padding: 80px 24px; }
  .hero__meta { gap: 24px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
}/* End custom CSS */