:root {
  color-scheme: light;
  --paper-warm: #ffffff;
  --bg-top: #ffffff;
  --bg-bottom: #ffffff;
  --ink: #341b38;
  --ink-soft: rgba(52, 27, 56, 0.76);
  --accent: #d9468f;
  --accent-deep: #9e57cb;
  --brand-gold: #d7721e;
  --line: rgba(79, 33, 86, 0.1);
  --shadow: 0 28px 70px rgba(96, 42, 109, 0.16);
  --radius-lg: 28px;
  --site-width: min(1180px, calc(100vw - 1.6rem));
  --section-surface-white: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 241, 0.94));
  --section-surface-gray: linear-gradient(180deg, rgba(245, 245, 242, 0.98), rgba(235, 232, 226, 0.95));
  --section-surface-orange: linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(249, 230, 206, 0.96));
  --section-line-soft: rgba(79, 33, 86, 0.14);
  --section-line-warm: rgba(215, 114, 30, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper-warm), var(--bg-top) 42%, var(--bg-bottom));
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 22%, rgba(0, 0, 0, 0.012) 100%);
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: none;
  opacity: 0;
  pointer-events: none;
  z-index: -4;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.page-orb {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.55;
  z-index: -2;
  pointer-events: none;
}

.page-orb-left {
  top: -10rem;
  left: -12rem;
  background: rgba(0, 0, 0, 0.035);
}

.page-orb-right {
  right: -10rem;
  bottom: -10rem;
  background: rgba(0, 0, 0, 0.03);
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--site-width);
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 40;
}

.site-header > *,
.page-sheet__grid > *,
.footer-inner > * {
  min-width: 0;
}

.menu-toggle,
.drawer-close {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.site-header__desktop {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 1rem + 2vw, 4.25rem);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__desktop .site-brand {
  padding-inline: clamp(0.9rem, 0.35rem + 1.1vw, 1.8rem);
}

.site-brand img {
  display: block;
  width: auto;
  height: clamp(6.7rem, 7.6vw, 9.2rem);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(3.35rem, 2.15rem + 2.15vw, 5rem);
  padding: 0;
}

.site-nav--left {
  justify-content: flex-end;
}

.site-nav--right {
  justify-content: flex-start;
}

.site-nav a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.site-nav__icon,
.mobile-drawer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav__icon i {
  font-size: 1.1rem;
  line-height: 1;
}

.site-nav a[aria-current="page"],
.mobile-drawer__nav a[aria-current="page"],
.footer-menu a[aria-current="page"] {
  color: var(--ink);
}

.mobile-drawer__socials a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(79, 33, 86, 0.16);
  border-radius: 0.8rem;
  color: var(--ink);
}

.site-header .bi,
.mobile-drawer__socials i {
  font-size: 1.25rem;
  line-height: 1;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(30, 16, 35, 0.28);
  backdrop-filter: blur(8px);
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 22rem);
  z-index: 45;
  padding: 1.25rem 1.15rem 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.9rem;
  background:
    radial-gradient(circle at 8% 10%, rgba(234, 93, 173, 0.2), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(158, 87, 203, 0.16), transparent 26%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 22%);
  backdrop-filter: none;
  border-left: 1px solid rgba(80, 35, 87, 0.08);
  transform: translateX(102%);
  transition: transform 320ms ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-drawer__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.drawer-close {
  width: 2.75rem;
  height: 2.75rem;
  position: relative;
  border-radius: 999px;
  background: transparent;
}

.drawer-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.drawer-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-drawer__nav {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.35rem;
  justify-items: start;
}

.mobile-drawer__nav a {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.18rem, 0.98rem + 2.2vw, 1.48rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  color: var(--ink-soft);
}

.mobile-drawer__icon {
  width: auto;
  justify-self: start;
}

.mobile-drawer__nav .mobile-drawer__icon {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.mobile-drawer__icon i {
  font-size: 1.45rem;
  line-height: 1;
}

.mobile-drawer__socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 0.45rem;
  gap: 1.55rem;
}

.mobile-drawer__socials a {
  width: 2.85rem;
  height: 2.85rem;
}

.site-main {
  position: relative;
  padding-bottom: 4rem;
}

.panel {
  position: relative;
  padding: 6rem 0 2rem;
}

.panel:first-child {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.panel-hero.panel:first-child {
  min-height: 92svh;
}

.site-main .panel {
  --section-bg: var(--section-surface-white);
  --section-line: var(--section-line-soft);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.32), transparent 40%),
    var(--section-bg);
}

.site-main .panel > .page-sheet {
  position: relative;
  padding: clamp(1.6rem, 1.1rem + 1.8vw, 2.7rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-main .panel + .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92vw, 72rem);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--section-line), transparent);
  pointer-events: none;
}

.site-main .panel + .panel::after {
  content: "";
  position: absolute;
  top: -1.3rem;
  left: 50%;
  width: min(92vw, 72rem);
  height: 2.6rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

#anasayfa {
  --section-bg: var(--section-surface-orange);
  --section-line: var(--section-line-warm);
}

#kitap {
  --section-bg: var(--section-surface-gray);
}

#yazar {
  --section-bg: var(--section-surface-orange);
  --section-line: var(--section-line-warm);
}

#blog {
  --section-bg: var(--section-surface-white);
}

#gonderi {
  --section-bg: var(--section-surface-orange);
  --section-line: var(--section-line-warm);
}

#sayfa-basi {
  --section-bg: var(--section-surface-orange);
  --section-line: var(--section-line-warm);
}

.panel-hero {
  overflow: hidden;
}

.hero-media {
  position: relative;
  order: 2;
  width: min(48rem, 128%);
  min-height: min(48rem, 72vh);
  justify-self: end;
  align-self: center;
  pointer-events: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  z-index: 0;
  transform: translate(14rem, calc(-19% + 0.95cm));
}

.hero-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.page-sheet {
  width: var(--site-width);
  margin: 0 auto;
  padding: 1.2rem 0;
}

.page-sheet__top {
  max-width: 52rem;
  margin-bottom: 2rem;
  margin-inline: auto;
  text-align: center;
}

.page-sheet--narrow {
  width: min(52rem, calc(100vw - 1.6rem));
}

.page-sheet__grid {
  display: grid;
  gap: clamp(1.4rem, 1rem + 2vw, 3rem);
  align-items: start;
}

.page-sheet__grid--hero,
.page-sheet__grid--book,
.page-sheet__grid--author,
.page-sheet__grid--blog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-sheet__grid--hero {
  grid-template-columns: minmax(22rem, 0.84fr) minmax(30rem, 1.16fr);
  min-height: calc(92svh - 10rem);
  align-items: center;
  justify-items: stretch;
}

.page-sheet__grid--book {
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-items: center;
  width: min(34rem, 100%);
  margin-inline: auto;
}

.page-sheet__grid--blog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(82rem, 100%);
  margin-inline: auto;
  align-items: stretch;
}

.page-sheet__grid--submission {
  grid-template-columns: 1fr;
  width: min(54rem, 100%);
  margin-inline: auto;
}

.page-sheet__grid--author {
  align-items: center;
}

.author-copy {
  display: grid;
  align-content: start;
  order: 2;
}

.page-sheet__grid--single {
  grid-template-columns: 1fr;
}

h1,
h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
}

h1 {
  font-size: clamp(3.5rem, 1.9rem + 5vw, 6.6rem);
}

h2 {
  font-size: clamp(1.18rem, 0.98rem + 1.15vw, 2rem);
}

.section-intro {
  max-width: 40rem;
  margin: 0.85rem auto 0;
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.08rem);
  line-height: 1.8;
  color: var(--ink-soft);
  text-align: center;
}

.page-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.hero-copy {
  align-self: center;
}

.hero-copy {
  position: relative;
  width: 100%;
  max-width: 32rem;
  align-self: center;
  justify-self: start;
  text-align: left;
  z-index: 1;
  transform: translateY(calc(-19% - 1.5cm));
}

.hero-copy .typewriter,
.hero-copy .scroll-cue {
  justify-items: start;
}

.hero-copy .typewriter__line {
  margin: 0;
  text-align: left;
}

.scroll-cue {
  display: none;
  margin-top: 1.4rem;
  justify-items: center;
  gap: 0.35rem;
}

.scroll-cue__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(79, 33, 86, 0.14);
  border-radius: 999px;
  color: var(--ink);
  animation: scrollCue 1.6s ease-in-out infinite;
}

.scroll-cue__icon i {
  font-size: 1.3rem;
  line-height: 1;
}

.scroll-cue__label {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(69, 28, 74, 0.68);
}

.hero-description,
.page-scroll p,
.footer-address,
.blog-card__content p {
  margin: 0;
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.08rem);
  line-height: 1.8;
  color: var(--ink-soft);
}

.typewriter {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  width: max-content;
  min-height: 5.8rem;
}

.typewriter__line {
  position: relative;
  width: max-content;
  min-height: 1.5em;
  margin: 0 auto;
  font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.7rem);
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}

.typewriter__line::after {
  content: "";
  position: absolute;
  right: -0.12em;
  top: 0.12em;
  width: 2px;
  height: 1.1em;
  background: var(--ink);
  opacity: 0;
}

.typewriter__line.is-active::after {
  opacity: 1;
  animation: blink 0.8s step-end infinite;
}

.typewriter__line--secondary {
  color: var(--brand-gold);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #eb6bac);
  box-shadow: 0 16px 40px rgba(217, 70, 143, 0.2);
}

.book-visual,
.author-portrait,
.blog-card__media {
  position: relative;
}

.footer-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(69, 28, 74, 0.58);
}

.book-visual::before,
.author-portrait::before {
  content: "";
  position: absolute;
  inset: auto 9% -7% 9%;
  height: 12%;
  border-radius: 999px;
  background: rgba(98, 41, 110, 0.16);
  filter: blur(18px);
}

.book-visual img {
  position: relative;
  z-index: 1;
  width: min(58rem, 100%);
  margin-inline: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.book-visual {
  justify-self: center;
  width: min(58rem, 100%);
  margin: 0 auto;
}

.panel-book .book-visual::before {
  display: none;
}

.panel-book .book-visual img {
  border-radius: 0;
  box-shadow: none;
}

.page-scroll {
  display: grid;
  gap: 1rem;
  overflow: visible;
}

.page-scroll--author {
  align-content: start;
}

.author-more {
  display: grid;
  gap: 1rem;
}

.author-more[hidden] {
  display: none;
}

.manifesto-quote {
  padding-left: 1rem;
  border-left: 2px solid rgba(217, 70, 143, 0.34);
  color: var(--ink);
}

.panel-page {
  padding-top: 9rem;
}

.panel-page:first-child {
  min-height: auto;
  display: block;
}

.page-sheet__top--article {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.page-sheet__top--author {
  max-width: 100%;
  margin: 0 0 1.35rem;
  text-align: left;
}

.page-sheet__top--author h2 {
  text-align: left;
}

.page-sheet__top--article h1 {
  font-size: clamp(2.5rem, 1.8rem + 2.6vw, 4.1rem);
}

.reading-page {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.5rem, 1.15rem + 1vw, 2.2rem);
  border: 1px solid rgba(79, 33, 86, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 46px rgba(96, 42, 109, 0.12);
}

.reading-page p,
.reading-page li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.reading-page blockquote {
  margin: 0.4rem 0 0;
  padding: 0.95rem 0 0.95rem 1.15rem;
  border-left: 2px solid rgba(217, 70, 143, 0.34);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 1.1rem + 0.8vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.reading-page__cover {
  margin: 0 0 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.reading-page__cover img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.reading-page__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.2rem;
  margin-bottom: 0.25rem;
}

.reading-page__meta span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(69, 28, 74, 0.58);
}

.blog-card__action,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(79, 33, 86, 0.16);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.author-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(79, 33, 86, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.blog-card__action {
  justify-self: start;
  margin-top: 0.25rem;
}

.back-link {
  margin: 0 auto 1.5rem;
}

.book-product {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  text-align: center;
  padding: 1rem 1.05rem 1.2rem;
}

.product-card {
  width: min(100%, 30rem);
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(79, 33, 86, 0.12);
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 56px rgba(96, 42, 109, 0.12);
}

.product-card__media {
  margin: 0;
  padding: 0.95rem 0.95rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(245, 241, 235, 0.82));
}

.product-card .book-visual {
  width: 100%;
}

.product-card .book-visual img {
  width: 100%;
}

.book-product__eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.book-product__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.26rem, 1rem + 0.7vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.book-product__price {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

.book-product__note {
  margin: 0;
  max-width: 22rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.book-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 15rem);
  min-height: 3.25rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid rgba(79, 33, 86, 0.16);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
}

.product-card .order-button {
  min-width: min(100%, 13.5rem);
  min-height: 3rem;
  border-color: rgba(215, 114, 30, 0.18);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(249, 230, 206, 0.88));
}

.submission-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.05rem;
  padding: clamp(1.4rem, 1.1rem + 0.8vw, 2rem);
  border: 1px solid rgba(79, 33, 86, 0.12);
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(180deg, rgba(255, 247, 238, 0.94), rgba(249, 230, 206, 0.92));
  box-shadow: 0 20px 48px rgba(215, 114, 30, 0.12);
}

.submission-field {
  display: grid;
  gap: 0.5rem;
}

.submission-field span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(69, 28, 74, 0.74);
}

.submission-input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(79, 33, 86, 0.14);
  border-radius: 0.95rem;
  background: rgba(255, 249, 242, 0.96);
  color: var(--ink);
  font: inherit;
}

.submission-input::placeholder {
  color: rgba(69, 28, 74, 0.42);
}

.submission-input:focus-visible {
  outline: 2px solid rgba(215, 114, 30, 0.22);
  outline-offset: 2px;
  border-color: rgba(215, 114, 30, 0.28);
}

.submission-input--file {
  padding: 0.7rem 0.8rem;
}

.submission-input--file::file-selector-button {
  margin-right: 0.85rem;
  padding: 0.72rem 0.95rem;
  border: 0;
  border-radius: 0.7rem;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(249, 230, 206, 0.88));
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.submission-form__hint,
.submission-form__actions {
  grid-column: 1 / -1;
}

.submission-form__hint {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.submission-form__actions {
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}

.submission-form__button {
  min-width: min(100%, 17rem);
}

.book-product__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(79, 33, 86, 0.1);
}

.book-product__footer p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  align-items: baseline;
}

.book-product__footer span {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(69, 28, 74, 0.62);
}

.blog-card {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(79, 33, 86, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 46px rgba(96, 42, 109, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card__media {
  margin: 0;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.blog-card__content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.65rem;
  padding: 1.1rem 1.1rem 1.15rem;
}

.blog-card__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.blog-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.32rem, 1.1rem + 0.45vw, 1.7rem);
  font-weight: 400;
  line-height: 1.12;
}

.author-portrait {
  order: 1;
  justify-self: start;
  align-self: center;
  width: min(18rem, 100%);
  aspect-ratio: 1;
  height: auto;
  margin-top: 0;
}

.author-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform-origin: center center;
}

.site-footer {
  width: var(--site-width);
  margin: 2.6rem auto 3.1rem;
  padding-top: clamp(2.8rem, 2.2rem + 1vw, 3.5rem);
  padding-bottom: clamp(0.8rem, 0.55rem + 0.5vw, 1.25rem);
  border-top: 1px solid var(--line);
}

.footer-stack {
  display: grid;
  gap: clamp(2.15rem, 1.55rem + 1.45vw, 3.4rem);
  justify-items: center;
  text-align: center;
}

.footer-contact-line,
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.15rem 2.75rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-soft);
  white-space: nowrap;
}

.footer-contact-link--text {
  cursor: default;
  white-space: normal;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 0.45rem;
  column-gap: 0;
  max-width: 100%;
  padding-top: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(69, 28, 74, 0.62);
}

.footer-legal__text {
  white-space: normal;
}

.footer-legal__credit {
  color: var(--brand-gold);
  font-weight: 600;
}

.floating-actions {
  position: fixed;
  right: max(0.45rem, calc((100vw - var(--site-width)) / 2) - 0.15rem);
  bottom: 1.25rem;
  z-index: 38;
  display: grid;
  gap: 0.85rem;
}

.floating-action {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 33, 86, 0.16);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(96, 42, 109, 0.1);
}

.floating-action i {
  font-size: 1.45rem;
  line-height: 1;
}

.floating-action--top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.45rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.floating-action--top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-action--whatsapp {
  color: #128c4a;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-payments {
  display: grid;
  justify-items: center;
  width: 100%;
  gap: 0.6rem;
}

.footer-payments img {
  width: min(18rem, 100%);
  height: auto;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: min(100%, 58rem);
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(79, 33, 86, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.footer-legal-links a[aria-current="page"] {
  border-color: rgba(215, 114, 30, 0.28);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(249, 230, 206, 0.88));
}

.footer-socials a {
  width: auto;
  height: auto;
  padding: 0.15rem;
  border: 0;
  border-radius: 0;
}

.footer-socials i {
  font-size: 1.45rem;
  line-height: 1;
}

.footer-menu a {
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.site-nav a,
.footer-contact-link,
.footer-menu a,
.footer-socials a,
.footer-legal-links a,
.mobile-drawer__nav a,
.mobile-drawer__socials a,
.blog-card__action,
.author-toggle,
.back-link,
.order-button,
.floating-action {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  transform-origin: center;
}

.footer-address {
  max-width: 20rem;
  text-align: center;
  font-style: normal;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(0.45rem);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .typewriter__line::after {
    animation: none;
  }
}

@media (hover: hover) {
  .author-portrait:hover img {
    transform: scale(1.04);
    box-shadow: 0 30px 75px rgba(96, 42, 109, 0.22);
  }

  .blog-card:hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 24px 58px rgba(96, 42, 109, 0.16);
  }

  .blog-card:hover .blog-card__media img {
    transform: scale(1.04);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .footer-contact-link:hover,
  .footer-contact-link:focus-visible,
  .footer-menu a:hover,
  .footer-menu a:focus-visible,
  .footer-socials a:hover,
  .footer-socials a:focus-visible,
  .mobile-drawer__nav a:hover,
  .mobile-drawer__nav a:focus-visible,
  .mobile-drawer__socials a:hover,
  .mobile-drawer__socials a:focus-visible,
  .blog-card__action:hover,
  .blog-card__action:focus-visible,
  .author-toggle:hover,
  .author-toggle:focus-visible,
  .back-link:hover,
  .back-link:focus-visible,
  .order-button:hover,
  .order-button:focus-visible,
  .floating-action:hover,
  .floating-action:focus-visible {
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .page-sheet__grid--hero,
  .page-sheet__grid--book,
  .page-sheet__grid--author,
  .page-sheet__grid--blog,
  .page-sheet__grid--submission {
    grid-template-columns: 1fr;
  }

  .page-sheet__grid--hero {
    min-height: auto;
    justify-items: center;
  }

  .hero-media {
    width: min(100%, 38rem);
    min-height: 26rem;
    justify-self: center;
    transform: translateY(calc(-12% + 0.4cm));
  }

  .hero-copy {
    max-width: min(100%, 30rem);
    justify-self: center;
    text-align: center;
    transform: translateY(calc(-12% - 1.07cm));
  }

  .hero-copy .typewriter,
  .hero-copy .scroll-cue {
    justify-items: center;
  }

  .hero-copy .typewriter__line {
    text-align: center;
  }

  .typewriter {
    width: 100%;
    min-height: 5.2rem;
  }

  .submission-form {
    grid-template-columns: 1fr;
  }

  .manifesto-book {
    order: 2;
    width: min(21rem, 100%);
  }

  .page-sheet__grid--book {
    width: min(100%, 32rem);
  }

  .author-portrait {
    justify-self: center;
    height: auto;
    margin-top: 0;
    margin-inline: auto;
  }

  .footer-stack {
    gap: 2.35rem;
  }

  .reading-page__cover img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  :root {
    --site-width: min(100vw - 1rem, 100%);
  }

  .site-header {
    width: 100%;
    left: 0;
    transform: none;
    padding: 0.45rem 0.35rem 0;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .site-header__desktop {
    display: none;
  }

  .site-brand--mobile {
    display: inline-flex;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 1rem);
  }

  .site-brand--mobile img {
    height: 6.3rem;
  }

  .menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
    flex: 0 0 auto;
    margin-top: 0.7rem;
  }

  .panel {
    padding: 5.45rem 0 1.5rem;
  }

  .panel-hero {
    padding: 6.2rem 0 0;
    min-height: 100svh;
  }

  .panel-hero.panel:first-child {
    min-height: 100svh;
  }

  .panel-page {
    padding-top: 7.15rem;
  }

  .page-sheet {
    padding: 0.8rem 0.05rem;
  }

  .site-main .panel > .page-sheet {
    padding: 1.1rem 0.85rem 1.25rem;
  }

  .panel-hero > .page-sheet {
    min-height: calc(100svh - 6.2rem);
    display: flex;
    align-items: center;
    padding: 0.8rem 0.2rem 0;
  }

  .typewriter {
    min-height: 4.2rem;
    width: 100%;
    margin-inline: auto;
  }

  .hero-media {
    width: min(118%, 31rem);
    max-width: none;
    min-height: 21.5rem;
    border-radius: 1.4rem;
    transform: translateY(calc(-10% + 0.3cm));
  }

  .hero-copy {
    width: min(100%, 22rem);
    justify-self: center;
    text-align: center;
    transform: translateY(calc(-10% - 0.82cm));
  }

  .page-sheet__grid--hero {
    min-height: 100%;
    width: 100%;
    align-content: center;
    justify-items: center;
    gap: 0.25rem;
  }

  .typewriter__line {
    width: max-content;
    max-width: 100%;
    font-size: clamp(1rem, 0.86rem + 0.85vw, 1.25rem);
    white-space: nowrap;
    overflow-wrap: normal;
    text-align: center;
  }

  .scroll-cue {
    display: grid;
  }

  h1 {
    max-width: 10ch;
  }

  .author-portrait,
  .book-visual img,
  .author-portrait img {
    width: 100%;
  }

  .page-sheet__grid--book,
  .page-sheet__grid--blog,
  .page-sheet__grid--submission {
    width: min(100%, 26rem);
  }

  .product-card__media {
    overflow: hidden;
  }

  .product-card .book-visual img {
    width: 130%;
    max-width: none;
    margin-left: -15%;
  }

  .mobile-drawer {
    width: 100vw;
    max-width: 100vw;
    padding: 0.7rem 0.85rem 1rem 0.35rem;
    border-left: 0;
  }

  .mobile-drawer__top {
    align-items: flex-start;
    margin-bottom: 0.1rem;
  }

  .mobile-drawer__nav {
    margin-top: 0;
    gap: 1.05rem;
  }

  .mobile-drawer__nav .mobile-drawer__icon {
    margin-top: 0.3rem;
  }

  .mobile-drawer__socials {
    gap: 1.2rem;
    margin-top: 1rem;
  }

  .author-portrait img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .floating-actions {
    right: 0.65rem;
    bottom: 1rem;
  }

  .footer-socials {
    gap: 1.15rem;
  }

  .footer-legal-links {
    gap: 0.65rem;
  }

  .footer-contact-line,
  .footer-menu {
    gap: 0.95rem 1.15rem;
  }

  .footer-stack {
    gap: 2.05rem;
  }

  .reading-page,
  .page-scroll {
    width: 100%;
  }

  .footer-contact-link,
  .footer-menu a,
  .section-intro,
  .page-scroll p,
  .footer-address,
  .mobile-drawer__nav a {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .mobile-drawer__nav a {
    padding-block: 0.15rem;
  }
}

@media (min-width: 721px) {
  .menu-toggle {
    display: none;
  }

  .site-brand--mobile {
    display: none;
  }
}
