@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/cormorant-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url(fonts/cormorant-italic.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(fonts/inter.woff2) format('woff2');
}

:root {
  --gold: #CC2936;
  --gold-light: #E8656F;
  --gold-dark: #A8212C;
  --cream: #FDF8F6;
  --ink: #1A1611;
  --ink-soft: #3D352A;
  --ink-muted: #6B5F50;
  --warm-white: #F9F3F0;
  --border: #E8D8D3;
  --nav-bg: rgba(253, 248, 246, .92);
  --hero-glow: rgba(204, 41, 54, .06);
  --card-shadow: rgba(204, 41, 54, .08);
  --vis-bg: #2A1215;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}

nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

nav .logo {
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
}

nav .nl {
  display: flex;
  gap: 2rem;
}

nav .nl a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .3s;
}

nav .nl a:hover {
  color: var(--gold-dark);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  background: linear-gradient(180deg, var(--cream), var(--warm-white));
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--hero-glow), transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: .5rem 1.5rem;
  margin-bottom: 3rem;
}

.hero-cover {
  width: 280px;
  height: auto;
  box-shadow: 0 20px 60px rgba(26, 22, 17, .2), 0 8px 24px rgba(26, 22, 17, .1);
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: Cormorant Garamond, serif;
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-sub {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
}

.btn:hover {
  background: var(--gold-dark);
}

.sh {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-muted);
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* SECTIONS */
section {
  padding: 6rem 2rem;
}

.inner {
  max-width: 960px;
  margin: 0 auto;
}

.lbl {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.hdg {
  font-family: Cormorant Garamond, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 700px;
}

.prose {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 640px;
}

.prose p + p {
  margin-top: 1.25rem;
}

/* ABOUT */
.about {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.agrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.dets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.det {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.det-k {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  min-width: 100px;
  flex-shrink: 0;
}

.det-v {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.gld {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}

/* VISION */
.vis {
  background: var(--vis-bg);
  color: var(--cream);
  text-align: center;
  padding: 8rem 2rem;
}

.vis .lbl {
  color: var(--gold-light);
}

.vis .hdg {
  color: var(--cream);
  margin-left: auto;
  margin-right: auto;
}

.vis .prose {
  color: rgba(253, 250, 243, .7);
  margin: 0 auto;
  text-align: center;
}

.vq {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--gold-light);
  max-width: 700px;
  margin: 3rem auto 0;
  line-height: 1.5;
}

/* FEATURED */
.featured {
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--border);
}

.featured .hdg {
  margin-left: auto;
  margin-right: auto;
}

/* BUY */
.buy {
  background: var(--cream);
}

.buy-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  background: var(--warm-white);
  padding: 2.5rem;
}

.buy-cover {
  width: 100%;
  height: auto;
  box-shadow: 0 12px 40px rgba(26, 22, 17, .15);
}

.buy-info {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.buy-title {
  font-family: Cormorant Garamond, serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.buy-subtitle {
  font-family: Cormorant Garamond, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.4;
}

.buy-author {
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}

.buy-meta {
  display: flex;
  gap: 1.5rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: .75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: .5rem 0;
}

.buy-region {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: .5rem 0;
}

.buy-region-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.region-tabs {
  display: flex;
  gap: .4rem;
}

.region-tab {
  padding: .5rem 1.1rem;
  font-family: Inter, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  cursor: pointer;
  transition: all .25s;
}

.region-tab:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.region-tab.active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}

.buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

.buy-retailer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 1.2rem;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s;
}

.buy-retailer:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px var(--card-shadow);
}

.buy-retailer-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}

.buy-retailer-arrow {
  font-size: .9rem;
  color: var(--gold-dark);
  transition: transform .25s;
}

.buy-retailer:hover .buy-retailer-arrow {
  transform: translateX(4px);
}

/* AUTHOR */
.author {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.author-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.author-img {
  width: 100%;
  height: auto;
  box-shadow: 0 12px 40px rgba(26, 22, 17, .12);
}

@media (max-width: 768px) {
  .author-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .author-img {
    max-width: 280px;
  }
}

/* PUBLISHER */
.pub {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}

.plogos {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.plogo {
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-muted);
  padding: .75rem 1.5rem;
  border: 1px solid var(--border);
  white-space: nowrap;
  text-decoration: none;
  transition: border-color .3s, color .3s;
}

.plogo:hover {
  border-color: var(--gold);
  color: var(--ink);
}

/* APPLY */
.apply {
  background: linear-gradient(180deg, var(--cream), var(--warm-white));
  border-top: 1px solid var(--border);
}

.abox {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.abox .hdg {
  margin-left: auto;
  margin-right: auto;
}

.abox .prose {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.aform {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.aform input,
.aform textarea,
.aform select {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  font-family: Inter, sans-serif;
  font-size: .9rem;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
  border-radius: 0;
  -webkit-appearance: none;
}

.aform input:focus,
.aform textarea:focus,
.aform select:focus {
  border-color: var(--gold);
}

.aform textarea {
  resize: vertical;
  min-height: 120px;
}

.aform input::placeholder,
.aform textarea::placeholder {
  color: var(--ink-muted);
}

.sbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-family: Inter, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .3s;
  width: 100%;
}

.sbtn:hover {
  background: var(--gold-dark);
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(253, 250, 243, .5);
  padding: 3rem 2rem;
  text-align: center;
  font-size: .8rem;
  line-height: 1.8;
}

footer a {
  color: var(--gold-light);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .fl {
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  display: block;
}

/* LEGAL PAGES */
.legal .hdg {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.legal-updated {
  font-size: .8rem;
  color: var(--ink-muted);
  margin-bottom: 3rem;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 720px;
}

.legal-content h2 {
  font-family: Cormorant Garamond, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 1.5rem 0 .75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0 0 1.25rem 1.5rem;
}

.legal-content li {
  margin-bottom: .4rem;
}

.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--ink);
}

.legal-contact {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  margin: 1rem 0 1.5rem;
  max-width: 360px;
}

.legal-contact p {
  margin-bottom: .5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav .nl {
    display: none;
  }

  .agrid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .buy-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .buy-cover {
    max-width: 200px;
    margin: 0 auto;
  }

  .region-tabs {
    flex-wrap: wrap;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .plogos {
    gap: 1rem;
  }

  .plogo {
    font-size: .85rem;
    padding: .5rem 1rem;
  }
}

/* Embed placeholder */
.embed-placeholder {
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--ink-muted);
  background: var(--warm-white);
}
.embed-placeholder p { margin-bottom: .5rem; }
.embed-placeholder a { color: var(--gold); }

/* Cookie Consent */
:root {
  --cc-bg: var(--cream);
  --cc-primary-color: var(--ink);
  --cc-secondary-color: var(--ink-soft);
  --cc-btn-primary-bg: var(--gold);
  --cc-btn-primary-color: #fff;
  --cc-btn-primary-hover-bg: var(--gold-dark);
  --cc-btn-secondary-bg: var(--warm-white);
  --cc-btn-secondary-color: var(--ink);
  --cc-btn-secondary-hover-bg: var(--border);
  --cc-separator-border-color: var(--border);
  --cc-cookie-category-block-bg: var(--warm-white);
  --cc-cookie-category-block-bg-hover: #F3EAE5;
  --cc-toggle-readonly-bg: var(--ink-muted);
  --cc-toggle-on-bg: var(--gold);
  --cc-overlay-bg: rgba(26, 22, 17, .5);
  --cc-modal-border-radius: 8px;
  --cc-btn-border-radius: 4px;
}
#cc-main .cm, #cc-main .pm {
  font-family: Inter, -apple-system, sans-serif;
}
#cc-main .cm__title, #cc-main .pm__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}
