body.home,
body.front-page {
  background: #f5eddf;
}

body.home .site-header,
body.front-page .site-header {
  display: none;
}

.kh-home {
  --kh-cream: #f5eddf;
  --kh-ivory: #fbf6ec;
  --kh-green: #17110d;
  --kh-green-2: #8f1114;
  --kh-ink: #17110d;
  --kh-ink-2: #2a1c14;
  --kh-wine: #8f1114;
  --kh-wine-2: #650b0d;
  --kh-gold: #b88332;
  --kh-text: #1d1711;
  --kh-muted: #5c4d3f;
  --kh-line: rgba(76, 48, 25, .16);
  color: var(--kh-text);
  background: var(--kh-cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  overflow: hidden;
}

.kh-home * {
  box-sizing: border-box;
}

.kh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  min-height: 86px;
  padding: 18px min(7vw, 78px);
  background: rgba(251, 246, 236, .94);
  border-bottom: 1px solid rgba(76, 48, 25, .12);
  backdrop-filter: blur(14px);
}

.kh-logo {
  color: var(--kh-green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.kh-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.kh-header nav a {
  color: var(--kh-ink);
  font-size: 1.15rem;
  text-decoration: none;
}

.kh-btn,
.kh-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  color: #fffdf4;
  background: linear-gradient(180deg, var(--kh-wine), var(--kh-wine-2));
  box-shadow: 0 14px 30px rgba(101, 11, 13, .22);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.kh-btn--header {
  min-height: 46px;
}

.kh-btn--light {
  color: var(--kh-green);
  background: #fff8e8;
}

.kh-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  min-height: 660px;
  align-items: center;
  padding: min(7vw, 82px) min(8vw, 92px);
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, .58), transparent 24%),
    linear-gradient(90deg, rgba(245, 237, 223, .98) 0 48%, rgba(245, 237, 223, .82) 60%, rgba(245, 237, 223, .46));
}

.kh-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.kh-eyebrow,
.kh-category {
  margin: 0 0 10px;
  color: #aa6d22;
  font-family: Inter, system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.kh-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--kh-green);
  font-size: clamp(3.9rem, 8vw, 6.6rem);
  line-height: .86;
  letter-spacing: 0;
}

.kh-hero h2 {
  max-width: 620px;
  margin: 36px 0 18px;
  color: #231912;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
}

.kh-home p {
  color: #261d16;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.68;
  overflow-wrap: break-word;
}

.kh-hero__copy > p:not(.kh-eyebrow) {
  max-width: 620px;
  font-size: .98rem;
  line-height: 1.78;
}

.kh-hero__art {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.kh-hero-video,
.kh-hero-video iframe,
.kh-hero-video video {
  width: 100%;
  height: 100%;
}

.kh-hero-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border: 1px solid rgba(76, 48, 25, .16);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(245, 237, 223, .04), rgba(17, 12, 9, .1)),
    var(--kh-video-poster) center / cover no-repeat;
  box-shadow: 0 30px 62px rgba(45, 24, 13, .22);
}

.kh-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 237, 223, .04), transparent 32%),
    radial-gradient(circle at 72% 45%, rgba(143, 17, 20, .08), transparent 36%);
  pointer-events: none;
}

.kh-hero-video iframe,
.kh-hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.kh-hero-video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(8, 6, 5, .08);
  color: #fff;
  cursor: pointer;
}

.kh-hero-video__play span {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 247, 220, .78);
  border-radius: 50%;
  background: rgba(111, 17, 20, .82);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.kh-hero-video__play span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 24px 0 0 31px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #fff7dc;
}

.kh-hero-video.is-loaded::after {
  display: none;
}

.kh-decor {
  position: absolute;
  z-index: 1;
  width: min(22vw, 230px);
  height: auto;
  opacity: .5;
  pointer-events: none;
}

.kh-decor--left {
  left: -28px;
  bottom: 40px;
}

.kh-decor--right {
  right: -20px;
  top: 72px;
}

.kh-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0;
}

.kh-section h2,
.kh-final h2 {
  margin: 0;
  color: var(--kh-green);
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.kh-section-copy {
  max-width: 620px;
}

.kh-book-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.kh-book-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  min-height: 620px;
  padding: 10px;
  border: 1px solid var(--kh-line);
  border-radius: 12px;
  background: rgba(255, 250, 241, .86);
  box-shadow: 0 22px 46px rgba(76, 48, 25, .13);
}

.kh-cover {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 250, 241, .28);
}

.kh-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(20, 16, 12, .2));
}

.kh-book-card .kh-category {
  margin: 18px 8px 10px;
  font-size: .66rem;
}

.kh-author {
  margin: 0 8px 10px;
  color: #3f2e20;
  font-family: Inter, system-ui, sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kh-book-card h3 {
  margin: 0 8px 10px;
  color: #111d16;
  font-size: 1.42rem;
  line-height: 1.08;
}

.kh-book-card p:not(.kh-category) {
  margin: 0 8px 18px;
  font-size: .92rem;
  line-height: 1.62;
}

.kh-card-btn {
  align-self: end;
  margin: 0 0 4px;
  min-height: 42px;
  border-radius: 7px;
  font-size: .96rem;
}

.kh-about {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.kh-about__image {
  justify-self: center;
  width: min(100%, 390px);
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(184, 131, 50, .36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 246, 226, .38), transparent 42%),
    linear-gradient(145deg, rgba(184, 131, 50, .28), rgba(255, 250, 241, .76));
  box-shadow: 0 28px 54px rgba(45, 24, 13, .17);
}

.kh-about__image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: 50%;
  filter: saturate(1.02) contrast(1.03);
}

.kh-about__copy {
  max-width: 680px;
}

.kh-about__copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: #2a2119;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.82;
}

.kh-traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.kh-traits div {
  padding-top: 12px;
  border-top: 1px solid rgba(184, 131, 50, .32);
}

.kh-traits strong {
  display: block;
  color: var(--kh-green);
  font-size: 1.05rem;
}

.kh-traits span {
  color: var(--kh-muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: .86rem;
}

.kh-final {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 18px auto 38px;
  min-height: 150px;
  padding: 30px 38px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(23, 17, 13, .98), rgba(63, 24, 18, .92)),
    radial-gradient(circle at 90% 50%, rgba(184, 131, 50, .34), transparent 32%);
  box-shadow: 0 20px 44px rgba(45, 24, 13, .18);
}

.kh-final h2,
.kh-final p {
  color: #fff5d7;
}

.kh-final p {
  max-width: 780px;
  margin: 8px 0 0;
}

.kh-delivery {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 44px;
}

.kh-delivery__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
}

.kh-delivery h2 {
  margin: 0;
  color: var(--kh-green);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.kh-price-pill,
.kh-delivery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 30px;
  border-radius: 999px;
  color: #fff9ed;
  background: #14110d;
  box-shadow: 0 18px 34px rgba(31, 26, 18, .18);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
}

.kh-delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kh-delivery-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 172px;
  padding: 30px;
  border: 1px solid rgba(184, 131, 50, .18);
  border-radius: 26px;
  background: rgba(255, 250, 241, .76);
  box-shadow: 0 18px 38px rgba(76, 48, 25, .08);
}

.kh-delivery-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fffaf0;
  background: #14110d;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.kh-delivery-card h3 {
  margin: 0 0 8px;
  color: #15120e;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.1;
}

.kh-delivery-card p {
  margin: 0;
  max-width: 420px;
  color: #2b261e;
  font-size: 1.02rem;
  line-height: 1.66;
}

.kh-delivery-cta {
  display: none;
  width: 100%;
  margin-top: 18px;
}

.kh-faq {
  padding-top: 10px;
}

.kh-faq details {
  border-bottom: 1px solid var(--kh-line);
  padding: 15px 0;
}

.kh-faq summary {
  color: var(--kh-green);
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .kh-header {
    grid-template-columns: 1fr auto;
  }

  .kh-header nav {
    display: none;
  }

  .kh-hero {
    grid-template-columns: 1fr;
    padding-right: 36px;
  }

  .kh-hero__art {
    max-width: 100%;
    margin-top: 32px;
    justify-self: stretch;
  }

  .kh-hero-video {
    min-height: 0;
  }

  .kh-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kh-about,
  .kh-final,
  .kh-delivery__head {
    grid-template-columns: 1fr;
  }

  .kh-delivery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .kh-header {
    min-height: 70px;
    padding: 14px 18px;
  }

  .kh-logo {
    font-size: 2.3rem;
  }

  .kh-btn--header {
    min-height: 40px;
    padding: 10px 12px;
    font-size: .86rem;
  }

  .kh-hero {
    min-height: 0;
    padding: 34px 18px;
  }

  .kh-hero__art {
    margin-top: 24px;
  }

  .kh-hero-video {
    border-radius: 12px;
  }

  .kh-hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.6rem);
  }

  .kh-hero h2 {
    margin-top: 24px;
    font-size: 1.8rem;
  }

  .kh-decor {
    display: none;
  }

  .kh-section {
    width: min(100% - 28px, 1120px);
    padding: 38px 0;
  }

  .kh-book-grid,
  .kh-traits {
    grid-template-columns: 1fr;
  }

  .kh-book-card {
    min-height: 0;
  }

  .kh-cover {
    aspect-ratio: 3 / 4;
  }

  .kh-about__image img {
    border-radius: 50%;
  }

  .kh-final {
    width: min(100% - 28px, 1120px);
    padding: 24px;
  }

  .kh-delivery {
    width: min(100% - 28px, 1120px);
    margin-bottom: 34px;
  }

  .kh-price-pill {
    display: none;
  }

  .kh-delivery-card {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .kh-delivery-card span {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .kh-delivery-card h3 {
    font-size: 1.42rem;
  }

  .kh-delivery-card p {
    font-size: .98rem;
  }

  .kh-delivery-cta {
    display: inline-flex;
    position: sticky;
    bottom: 12px;
    z-index: 20;
  }

  .kh-final .kh-btn,
  .kh-btn {
    width: 100%;
  }
}
