
:root {
  --bg-cream: #f4ede3;
  --bg-paper: #faf6ef;
  --bg-deep: #1f2530;
  --bg-deep-2: #2a3140;
  --gold: #d6aa4d;
  --gold-dark: #b68423;
  --rust: #8e3d2f;
  --forest: #325447;
  --text-dark: #2c2621;
  --text-soft: #5b5249;
  --white: #ffffff;
  --border-soft: rgba(126, 97, 57, 0.18);
  --shadow: 0 18px 40px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.65;
}

img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(18, 22, 29, 0.48);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #231a0b !important;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #10151c;
}

.video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-shell iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 15, 0.42);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,8,12,0.25) 0%, rgba(6,8,12,0.50) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding-top: 72px;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.1rem, 7vw, 6rem);
  line-height: 1.04;
  text-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.hero-tagline {
  max-width: 760px;
  margin: 18px auto 0;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  color: rgba(255,255,255,0.95);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.section {
  padding: 84px 0;
}

.section-light {
  background: linear-gradient(180deg, var(--bg-paper), #f6eee3);
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-deep-2));
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
}

.section-heading span {
  height: 1px;
  background: rgba(111, 85, 49, 0.25);
}

.section-heading h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #3b2d1b;
}

.section-heading-light span {
  background: rgba(255,255,255,0.18);
}

.section-heading-light h2 {
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.about-image-card {
  background: linear-gradient(180deg, #d8bf97, #a87442);
  padding: 12px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.about-copy {
  font-size: 1.08rem;
  color: var(--text-soft);
}

.about-copy p {
  margin: 0 0 18px;
}

.text-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--rust);
  font-weight: 600;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 34px;
}

.book-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.book-cover-wrap {
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 18px;
}

.book-cover-wrap img {
  width: 100%;
  max-width: 245px;
  height: 420px;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.26));
}

.book-card h3 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: #fff6e8;
}

.book-card p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.82);
  min-height: 72px;
}

.tour-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.tour-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(66, 26, 16, 0.25), rgba(17, 21, 27, 0.58)),
    radial-gradient(circle at top left, rgba(214,170,77,0.18), transparent 30%),
    linear-gradient(135deg, var(--rust), var(--forest) 55%, #18212b 100%);
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.18), rgba(17,17,17,0.35));
}

.tour-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tour-title {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.tour-copy {
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.93);
}

.tour-pills {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 600;
}

.booking-wrap {
  max-width: 920px;
}

.booking-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.booking-form {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

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

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #4c3a24;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d2b996;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text-dark);
  background: rgba(255,255,255,0.96);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-actions {
  text-align: center;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #241b0d;
  box-shadow: 0 12px 22px rgba(182,132,35,0.22);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.72);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-book {
  min-width: 210px;
  margin: 0 auto;
}

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy {
    text-align: center;
  }

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

@media (max-width: 760px) {
  .nav-wrap {
    min-height: auto;
    padding: 12px 0;
    flex-direction: column;
  }

  .nav {
    justify-content: center;
    gap: 14px;
  }

  .hero-content {
    padding-top: 106px;
  }

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

  .booking-form {
    padding: 20px;
  }

  .book-cover-wrap {
    min-height: 410px;
  }

  .book-cover-wrap img {
    height: 380px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn {
    width: min(280px, 100%);
  }
}
