/*
Theme Name: Turnover
Theme URI: https://turnover-book.com
Author: Turnover Book
Description: A cinematic, noir-inspired WordPress theme for the book TURNOVER.
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: book, author, one-page, dark, cinematic
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --color-bg: #0a0a0a;
  --color-bg-2: #111111;
  --color-bg-card: #161616;
  --color-accent: #c8a96e;
  --color-accent-dim: #9a7d4a;
  --color-text: #e8e0d4;
  --color-text-muted: #7a736a;
  --color-border: #2a2420;
  --color-white: #ffffff;

  --font-display: 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-ui: 'Open Sans', 'Helvetica Neue', sans-serif;

  --max-width: 1200px;
  --section-pad: 120px 40px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-white); }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
}

h1 { font-size: clamp(3rem, 8vw, 7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

p { margin-bottom: 1.2em; }

.label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: var(--section-pad); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =============================================
   NAVIGATION
============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s;
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 40px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.site-logo span { color: var(--color-accent); }

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

nav a:hover { color: var(--color-accent); }

.nav-toggle { display: none; }

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(200, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  flex: 1 1 50%;
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  margin-bottom: 32px;
  white-space: nowrap;
}

.title-turn {
  color: #ffffff;
}

.title-over {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  font-style: italic;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  flex: 1 1 50%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
}

.book-cover-wrap {
  position: relative;
  display: inline-block;
}

.book-cover-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-accent), transparent, var(--color-accent-dim));
  border-radius: 4px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
}

.book-cover-placeholder {
  width: 320px;
  height: 460px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 
    -8px 8px 40px rgba(0,0,0,0.6),
    inset 0 0 60px rgba(200, 169, 110, 0.03);
}

.book-cover-placeholder .book-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

.book-cover-placeholder .book-author {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-bg);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* =============================================
   QUOTE / PULL SECTION
============================================= */
#pull-quote {
  padding: 80px 40px;
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.pull-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.pull-quote-source {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* =============================================
   SYNOPSIS
============================================= */
#synopsis {
  background: var(--color-bg);
}

.synopsis-number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}

.synopsis-text {
  font-size: 1.15rem;
  color: var(--color-text);
  line-height: 1.9;
}

/* drop cap disabled */

/* =============================================
   ABOUT AUTHOR
============================================= */
#author {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
}

.author-image {
  width: 70%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(30%) contrast(1.1);
}

.author-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.author-bio { font-size: 1.05rem; color: var(--color-text); }

/* =============================================
   REVIEWS
============================================= */
#reviews {
  background: var(--color-bg);
}

#reviews h2 { text-align: center; margin-bottom: 16px; }
#reviews .label { text-align: center; display: block; margin-bottom: 64px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 36px;
  position: relative;
  transition: border-color 0.3s;
}

.review-card:hover { border-color: var(--color-accent-dim); }

.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: -20px;
}

.review-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.8;
}

.review-author {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* =============================================
   BUY / CTA
============================================= */
#buy {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

#buy h2 { margin-bottom: 16px; }
#buy .label { display: block; margin-bottom: 20px; }
#buy p { color: var(--color-text-muted); margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto; }

.buy-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-white);
}

.footer-logo span { color: var(--color-accent); }

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.footer-socials { display: flex; gap: 20px; }

.footer-socials a {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.15s; }
.fade-up.delay-2 { animation-delay: 0.3s; }
.fade-up.delay-3 { animation-delay: 0.45s; }
.fade-up.delay-4 { animation-delay: 0.6s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  #hero { flex-direction: column; padding-top: 120px; gap: 40px; }
  .hero-content { flex: none; width: 100%; max-width: 100%; }
  .hero-image-wrap { flex: none; width: 100%; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  #site-footer { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 768px) {
  /* Header: two rows — logo top, nav below */
  #site-header {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 0;
    position: fixed;
    background: rgba(10,10,10,0.98) !important;
    border-bottom: 1px solid #2a2420;
  }
  .site-logo { flex: 1; font-size: 1.1rem; }
  /* Hide hamburger — always show nav as scrollable row */
  .nav-toggle { display: none !important; }
  /* Nav: full-width row below logo, horizontally scrollable */
  #main-nav {
    width: 100%;
    order: 3;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 0 8px;
    border-top: 1px solid #2a2420;
    margin-top: 8px;
  }
  #main-nav::-webkit-scrollbar { display: none; }
  /* WordPress wraps in div — handle it */
  #main-nav > div { width: max-content; min-width: 100%; }
  #main-nav ul,
  #main-nav > div > ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0 !important;
    width: max-content;
    list-style: none;
    margin: 0;
  }
  #main-nav ul li a {
    display: block;
    padding: 4px 12px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: #e8e0d4;
    white-space: nowrap;
    border-right: 1px solid #2a2420;
  }
  #main-nav ul li:last-child a { border-right: none; }
  #main-nav ul li a:hover { color: #c8a96e; }
  /* Hero padding accounts for taller header */
  #hero { padding-top: 110px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 80px 20px; }
  .container { padding: 0 20px; }
  .book-cover-placeholder { width: 240px; height: 340px; }
  #hero { padding-top: 90px; }
}

/* Synopsis tagline */
.synopsis-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--color-text);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  opacity: 0.85;
}

/* =============================================
   HEBREW SECTION
============================================= */
.hebrew-section {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  direction: rtl;
  text-align: right;
}

.hebrew-text {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 1.1rem;
  line-height: 2;
  direction: rtl;
  text-align: right;
}

.hebrew-text p:first-child::first-letter {
  font-size: inherit !important;
  font-weight: inherit !important;
  float: none !important;
  line-height: inherit !important;
  margin: 0 !important;
  color: inherit !important;
}

.hebrew-author-note {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 20px;
  direction: rtl;
}

.hebrew-section .synopsis-number {
  font-size: 3rem;
  direction: ltr;
}

/* =============================================
   TEXT ALIGNMENT — English LTR / Hebrew RTL
============================================= */

/* Global English: left-aligned */
body,
.synopsis-text,
.synopsis-tagline,
.author-bio,
.review-text,
.review-author,
.hero-subtitle,
.pull-quote-text,
.pull-quote-source,
p, li, blockquote {
  text-align: left;
}

/* Centre-aligned exceptions */
#pull-quote .pull-quote-text,
#pull-quote .pull-quote-source,
#reviews h2,
#reviews .label,
#buy h2,
#buy .label,
#buy p {
  text-align: center;
}

/* Hebrew section: everything right-aligned */
.hebrew-section,
.hebrew-section p,
.hebrew-section h2,
.hebrew-section .label,
.hebrew-section .synopsis-text,
.hebrew-section .synopsis-tagline,
.hebrew-text,
.hebrew-author-note {
  text-align: right;
  direction: rtl;
}

/* Hebrew tagline stays centered */
.hebrew-section .synopsis-tagline {
  text-align: center;
}

/* =============================================
   HEBREW DROP CAP FIX — float right
============================================= */
/* all drop caps disabled */
.hebrew-text p:first-child::first-letter,
.hebrew-dropcap::first-letter,
.synopsis-text p:first-child::first-letter {
  font-size: inherit !important;
  font-weight: inherit !important;
  float: none !important;
  line-height: inherit !important;
  margin: 0 !important;
  color: inherit !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  
  
  
  
  
  
  
}

/* =============================================
   HEBREW DROP CAP — span-based (reliable RTL)
============================================= */
/* Remove all ::first-letter rules that fight with RTL */


/* Span injected by PHP turnover_heb_dropcap() */
/* heb-dropcap disabled */

/* =============================================
   IMAGE GALLERY
============================================= */
.image-gallery-section {
  padding: 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--color-bg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.9);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.gallery-item:hover img {
  filter: brightness(0.92) saturate(1.1);
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .image-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .image-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   IMAGE GALLERY — 4 columns, uniform cells
============================================= */
.image-gallery-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.85);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.gallery-item:hover img {
  filter: brightness(0.95) saturate(1.05);
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .image-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .image-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Author LinkedIn link */
.author-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent-dim);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.author-linkedin:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}
.author-linkedin svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* =============================================
   HEBREW BUY SECTION
============================================= */
.buy-hebrew-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--section-pad);
  text-align: center;
}

.buy-hebrew-section h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  margin-bottom: 40px;
}

.buy-hebrew-section .label {
  display: block;
  margin-bottom: 16px;
}

.buy-hebrew-section .buy-buttons {
  justify-content: center;
}

/* =============================================
   CONTACT SECTION
============================================= */
#contact {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: var(--section-pad);
}

.contact-wrap h2 { margin-bottom: 16px; }

.contact-intro {
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 48px;
  font-size: 1rem;
}

.contact-form-wrap {
  max-width: 640px;
}

/* SureForms overrides — match dark theme */
.contact-form-wrap .srfm-form-container,
.contact-form-wrap .wp-block-srfm-form {
  background: transparent !important;
  padding: 0 !important;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea {
  background: var(--color-bg-card) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 2px !important;
  color: var(--color-text) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  padding: 14px 16px !important;
  width: 100% !important;
  transition: border-color 0.3s !important;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  outline: none !important;
  border-color: var(--color-accent) !important;
}

.contact-form-wrap label {
  font-family: var(--font-ui) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--color-text-muted) !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.contact-form-wrap .srfm-submit-btn,
.contact-form-wrap button[type="submit"] {
  background: var(--color-accent) !important;
  color: var(--color-bg) !important;
  border: none !important;
  border-radius: 2px !important;
  padding: 14px 36px !important;
  font-family: var(--font-ui) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
  margin-top: 8px !important;
}

.contact-form-wrap .srfm-submit-btn:hover,
.contact-form-wrap button[type="submit"]:hover {
  background: var(--color-white) !important;
}

.contact-form-wrap .srfm-field-wrap,
.contact-form-wrap .srfm-block-single-line-input-wrap {
  margin-bottom: 24px !important;
}

/* =============================================
   FILM / TV ADAPTATION SECTION
============================================= */
#adaptation {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding: var(--section-pad);
}

.adaptation-wrap h2 { margin-bottom: 20px; }

.adaptation-text {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 640px;
  line-height: 1.8;
}

.adaptation-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.adaptation-text a:hover { color: var(--color-white); }

/* Hebrew hero subtitle */
.hero-title-hebrew {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 6.8rem);
  font-weight: 700;
  line-height: 1;
  margin-top: -16px;
  margin-bottom: 32px;
  direction: rtl;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* =============================================
   ADAPTATION SECTION WITH POSTER
============================================= */
.adaptation-with-poster {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.adaptation-text-col {
  flex: 1;
}

.adaptation-poster-col {
  flex: 0 0 auto;
}

.adaptation-poster {
  width: 280px;
  border-radius: 4px;
  box-shadow: -8px 8px 40px rgba(0,0,0,0.6);
  display: block;
}

@media (max-width: 768px) {
  .adaptation-with-poster {
    flex-direction: column;
    gap: 32px;
  }
  .adaptation-poster {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
