:root{
  --cream:#f7f0e6;
  --paper:#fffdf9;
  --ink:#2b211b;
  --burgundy:#7b2d29;
  --burgundy-dark:#5c211e;
  --gold:#b88746;
  --line:#ddcfbd;
  --soft:#fff8ef;
  --shadow:rgba(54,37,24,.14);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:Georgia,"Times New Roman",serif;
  line-height:1.65;
}
a{color:inherit}
.site-header{
  background:rgba(255,253,249,.97);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:blur(6px);
}
.nav-wrap{
  width:min(1140px,calc(100% - 32px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}
.brand{
  font-weight:700;
  text-decoration:none;
  letter-spacing:.02em;
}
nav{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
nav a{
  text-decoration:none;
  border-bottom:2px solid transparent;
  padding:4px 0;
}
nav a:hover,
nav a[aria-current="page"]{
  border-color:var(--burgundy);
}
.page-shell{
  width:min(1140px,calc(100% - 32px));
  margin:34px auto 56px;
}
.hero,
.section{
  background:var(--paper);
  border:1px solid var(--line);
  padding:clamp(26px,5vw,56px);
}
.hero{
  text-align:center;
  box-shadow:0 14px 34px var(--shadow);
}
.section{
  margin-top:42px;
}
.hero-logo{
  width:min(620px,100%);
  height:auto;
  display:block;
  margin:0 auto 24px;
}
.eyebrow{
  color:var(--burgundy);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.83rem;
  font-weight:700;
}
h1,h2,h3{line-height:1.2}
h1{
  margin:8px 0 18px;
  font-size:clamp(2.2rem,5vw,4.2rem);
}
h2{
  color:var(--burgundy);
  font-size:clamp(1.7rem,3vw,2.35rem);
  margin:0 0 20px;
}
.hero-copy{
  max-width:820px;
  margin:0 auto;
  font-size:clamp(1.05rem,2vw,1.24rem);
}
.find-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 24px;
}
.find-item{
  padding:16px 18px;
  border-left:4px solid var(--gold);
  background:var(--soft);
}
.bookshelf{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:30px;
  align-items:start;
}
.book-card{
  display:flex;
  flex-direction:column;
  height:100%;
}
.cover-wrap{
  min-height:380px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:14px;
  border-bottom:11px solid #75482f;
  box-shadow:0 8px 14px rgba(63,36,20,.18);
  background:#eee3d4;
}
.cover-wrap img{
  max-width:100%;
  max-height:350px;
  width:auto;
  height:auto;
  display:block;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}
.book-card h3{
  margin:18px 0 8px;
  font-size:1.23rem;
}
.book-card p{
  margin:0 0 18px;
  flex-grow:1;
}
.button{
  display:inline-block;
  align-self:flex-start;
  text-decoration:none;
  background:var(--burgundy);
  color:#fff;
  padding:10px 16px;
  border-radius:3px;
  font-weight:700;
}
.button:hover{background:var(--burgundy-dark)}
.coming-soon{
  text-align:center;
  border:1px dashed var(--gold);
  padding:32px 20px;
  background:var(--soft);
}
.coming-soon h3{
  font-size:2rem;
  margin:6px 0;
}
.subtitle{
  font-style:italic;
  color:var(--burgundy);
  font-size:1.12rem;
}
.about-layout{
  display:grid;
  grid-template-columns:minmax(280px,360px) 1fr;
  gap:42px;
  align-items:start;
}
.author-photo-wrap{
  background:var(--soft);
  border:1px solid var(--line);
  padding:10px;
  box-shadow:0 10px 24px var(--shadow);
}
.author-photo{
  width:100%;
  height:auto;
  display:block;
}
.about-copy p{
  margin:0 0 18px;
}
.contact-box{max-width:760px}
.contact-line{
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.contact-line strong{
  display:block;
  color:var(--burgundy);
  margin-bottom:3px;
}
.contact-line a{
  color:var(--burgundy);
  font-weight:700;
  text-decoration:none;
}
.contact-line a:hover{text-decoration:underline}
.site-footer{
  text-align:center;
  padding:36px 20px 50px;
  border-top:1px solid var(--line);
  background:var(--paper);
}
.footer-logo{
  width:min(280px,70%);
  height:auto;
  margin-bottom:10px;
}
.small-note{
  font-size:.92rem;
  color:#6e5f55;
}
@media(max-width:940px){
  .bookshelf{grid-template-columns:repeat(2,minmax(0,1fr))}
  .about-layout{grid-template-columns:1fr}
  .author-photo-wrap{max-width:460px}
}
@media(max-width:640px){
  .nav-wrap{
    align-items:flex-start;
    flex-direction:column;
  }
  nav{gap:12px 18px}
  .find-grid,
  .bookshelf{
    grid-template-columns:1fr;
  }
  .cover-wrap{min-height:0}
  .cover-wrap img{max-height:440px}
  .page-shell{
    width:min(100% - 18px,1140px);
    margin-top:10px;
  }
}


/* Iyeška feature page */
.book-hero-grid,
.person-grid,
.split-feature{
  display:grid;
  grid-template-columns:minmax(240px,360px) 1fr;
  gap:42px;
  align-items:center;
}
.book-cover-large img,
.person-image img,
.feature-image img,
.wide-image img,
.map-wrap img{
  width:100%;
  height:auto;
  display:block;
}
.book-cover-large img,
.person-image img{
  box-shadow:0 12px 28px rgba(54,37,24,.18);
}
.lead{
  font-size:1.2rem;
  max-width:720px;
}
.story-section p,
.person-section p,
.sanctuary-section p,
.closing-section p{
  max-width:900px;
}
.pull-quote{
  font-size:clamp(1.35rem,2.5vw,1.8rem);
  color:var(--burgundy);
  font-style:italic;
  border-left:4px solid var(--gold);
  padding-left:18px;
  margin:28px 0;
}
.wide-image{
  margin:20px 0 26px;
}
.wide-image img{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
}
.map-wrap{
  max-width:820px;
  margin:0 auto 28px;
}
.landscape-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:30px;
}
.landscape-grid figure{
  margin:0;
  background:var(--soft);
  border:1px solid var(--line);
}
.landscape-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.landscape-grid figcaption{
  padding:12px 14px;
  font-size:.94rem;
  color:#67564c;
}
.closing-section{
  text-align:center;
}
.closing-section .pull-quote{
  border-left:0;
  padding-left:0;
  max-width:none;
}
.closing-section .button{
  margin-top:12px;
}
@media(max-width:820px){
  .book-hero-grid,
  .person-grid,
  .split-feature{
    grid-template-columns:1fr;
  }
  .person-section.alt .person-grid > div:first-child{
    order:2;
  }
  .person-section.alt .person-grid > div:last-child{
    order:1;
  }
  .landscape-grid{
    grid-template-columns:1fr;
  }
  .landscape-grid img{
    height:auto;
  }
}

/* Final Iyeška image refinements */
.jason-image{
  transform:scale(1.22);
  transform-origin:center center;
  margin:28px 22px;
}
@media(max-width:820px){
  .jason-image{
    transform:none;
    margin:0;
  }
}

/* The Rock Road feature page */
.rock-hero{background:linear-gradient(135deg,#fffdf9 0%,#f3e8da 100%)}
.rock-hero-grid{display:grid;grid-template-columns:minmax(240px,360px) 1fr;gap:42px;align-items:center}
.rock-tagline{font-size:clamp(1.45rem,3vw,2.1rem);font-style:italic;color:var(--burgundy);margin:0 0 18px}
.rock-page h3{color:var(--burgundy);font-size:1.45rem;margin-top:34px}
.image-note{font-size:.92rem;color:#6e5f55;font-style:italic;margin:10px 0 0!important}
.map-photo{max-width:760px;margin:32px auto 0}
.portrait-memory img{max-height:720px;object-fit:cover}
.album-feature{display:grid;grid-template-columns:minmax(180px,300px) 1fr;gap:34px;align-items:center;margin-top:36px;padding:24px;background:var(--soft);border:1px solid var(--line)}
.album-feature img{width:100%;height:auto;display:block;box-shadow:0 10px 22px var(--shadow)}
.album-feature h3{margin-top:0}
.pearl-section{border-top:5px solid var(--burgundy)}
.pearl-section h3{margin-top:42px}
@media(max-width:820px){.rock-hero-grid,.album-feature{grid-template-columns:1fr}.album-feature img{max-width:300px;margin:0 auto}.portrait-memory img{max-height:none}}

/* The WTF Dating Files feature page */
.wtf-hero{background:linear-gradient(135deg,#fffdf9 0%,#f1e5d4 100%)}
.wtf-hero-grid{display:grid;grid-template-columns:minmax(220px,330px) 1fr;gap:42px;align-items:center}
.wtf-tagline{font-size:clamp(1.4rem,3vw,2rem);font-style:italic;color:var(--burgundy);margin:0 0 20px}
.wtf-page h3{color:var(--burgundy);font-size:1.45rem;margin-top:28px}
.wtf-paper-section{background:#fff9ef}
.wtf-files-section{background:#f5eadc}
.wtf-gallery{margin-top:32px}
.wtf-gallery img,.journey-image img{width:100%;height:auto;max-height:none;object-fit:contain;border:1px solid #cdb99e;box-shadow:0 14px 30px rgba(54,37,24,.18)}
.wtf-journey-section{background:linear-gradient(180deg,#fffdf9 0%,#fff4e3 100%)}
.journey-image{margin-top:34px}
.wtf-live-learn{font-size:clamp(2rem,5vw,3.2rem);margin:34px 0 12px}
@media(max-width:820px){.wtf-hero-grid{grid-template-columns:1fr}.wtf-hero .book-cover-large{max-width:300px;margin:0 auto}}

/* Amazon availability callouts */
.amazon-availability{
  margin-top:24px;
  padding:22px 28px;
  text-align:center;
  background:var(--soft);
  border:1px solid var(--gold);
}
.amazon-availability p{
  margin:8px auto 0;
  max-width:760px;
  font-size:1.08rem;
}
.author-availability{
  margin:24px 0 30px;
  padding:16px 18px;
  border-left:4px solid var(--gold);
  background:var(--soft);
  color:var(--burgundy);
}

/* The Redhead's Story Drawer */
.story-drawer-callout{
  text-align:center;
  padding:12px 0;
}
.story-drawer-callout h2{
  margin:8px 0 14px;
  font-size:clamp(2rem,4vw,3.2rem);
}
.story-drawer-callout p{
  max-width:760px;
  margin:0 auto 18px;
  font-size:1.1rem;
}
.drawer-feature{
  padding:18px 20px;
  background:var(--soft);
  border:1px solid var(--line);
}
.drawer-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:26px;
  margin-top:30px;
}
.story-card{
  padding:28px;
  background:var(--soft);
  border:1px solid var(--line);
  box-shadow:0 10px 24px var(--shadow);
}
.story-card h2{margin-bottom:8px}
.story-card p{margin:0 0 18px}
.story-meta{
  color:var(--burgundy);
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.82rem;
}
.story-page{
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
}
.story-header{
  text-align:center;
  padding-bottom:28px;
  margin-bottom:30px;
  border-bottom:1px solid var(--line);
}
.story-header h1{margin-bottom:10px}
.story-intro{
  color:#6e5f55;
  font-style:italic;
  font-size:1.08rem;
}
.story-body{
  font-size:clamp(1.05rem,2vw,1.18rem);
  line-height:1.82;
}
.story-body p{margin:0 0 1.35em}
.story-ending{
  color:var(--burgundy);
  font-size:1.25rem;
  text-align:center;
  margin-top:38px;
}
.drawer-return{
  text-align:center;
  margin-top:40px;
}
@media(max-width:700px){
  .drawer-grid{grid-template-columns:1fr}
  .story-card{padding:22px}
  .story-page{padding:26px 22px}
}

/* Adventures in Ubering feature page */
.uber-hero{background:linear-gradient(135deg,#fffdf9 0%,#f0e4d6 58%,#ead8c6 100%)}
.uber-hero-grid{display:grid;grid-template-columns:minmax(230px,340px) 1fr;gap:46px;align-items:center;text-align:left}
.uber-subtitle{font-size:1.08rem;text-transform:uppercase;letter-spacing:.08em;font-weight:700;color:#6e5f55;margin-top:-8px}
.uber-tagline{font-size:clamp(1.45rem,3vw,2.05rem);font-style:italic;color:var(--burgundy);margin:16px 0 22px}
.uber-page h2{margin-bottom:18px}
.uber-backseat{background:linear-gradient(180deg,#fffdf9 0%,#fff7ec 100%)}
.uber-beats{display:flex;flex-wrap:wrap;gap:10px;margin:28px 0 30px}
.uber-beats span{display:inline-block;padding:8px 12px;border:1px solid var(--gold);background:var(--paper);color:var(--burgundy);font-size:.82rem;font-weight:700;letter-spacing:.06em}
.uber-rhythm{margin:26px 0}.uber-rhythm p{margin:7px 0;font-size:1.08rem}
.language-card{max-width:610px;margin:34px auto 8px;padding:26px 30px;background:#2b211b;color:#fffdf9;border-left:7px solid var(--gold);box-shadow:0 12px 26px var(--shadow);font-size:1.13rem}
.language-card div{margin:5px 0}.language-card em{color:#f3cf93}.language-punchline{font-size:1.6rem!important;color:#f3cf93;font-style:italic;margin-top:12px!important}
.uber-driver-story{border-top:5px solid var(--burgundy)}
.uber-heart{background:#fff9ef}.uber-main-quote{font-size:clamp(1.5rem,3vw,2.05rem);margin-top:34px}
.uber-closing{background:linear-gradient(180deg,#fffdf9 0%,#f3e8da 100%)}
.uber-buckle{font-size:clamp(1.7rem,4vw,2.5rem);font-style:italic;color:var(--burgundy);font-weight:700;margin:30px 0 22px}
@media(max-width:820px){.uber-hero-grid{grid-template-columns:1fr;text-align:center}.uber-hero .book-cover-large{max-width:300px;margin:0 auto}.uber-hero .lead{margin-left:auto;margin-right:auto}.language-card{text-align:left}}

.ubering-memory-board{
  max-width:1100px;
  margin:32px auto 30px;
  padding:0;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 42px rgba(43,33,27,.22);
  background:#2b211b;
}
.ubering-memory-board img{
  display:block;
  width:100%;
  height:auto;
}
@media(max-width:700px){
  .ubering-memory-board{margin:24px -8px 26px;border-radius:12px}
}
