:root {
  --color-ink: #0a0505;
  --color-heading: #0a0000;
  --color-gold: #9c7d3c;
  --color-gold-light: #c69329;
  --color-cream: #fcfcfc;
  --color-white: #ffffff;
  --color-muted: #5a5555;
  --color-nav: #252525;
  --color-border: #e8e4de;
  --font-display: "Rokkitt", Georgia, serif;
  --font-body: "Source Sans Pro", system-ui, sans-serif;
  --max-width: 72rem;
  --header-h: 4.5rem;
  --radius: 0.25rem;
  --shadow: 0 4px 24px rgba(10, 5, 5, 0.08);
  --paper-texture: url("/assets/2019/02/black-paper.png");
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }


/* Skip link — visually hidden until focused */
.skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  z-index: 10000;
}

.skip-link:focus {
  position: fixed !important;
  left: 1rem !important;
  top: 1rem !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0.75rem 1rem !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  background: var(--color-white) !important;
  color: var(--color-ink) !important;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .parallax-bg { transform: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05em;
  line-height: 1.65;
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-white);
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

p { margin: 0 0 1rem; }

.container {
  width: min(var(--max-width), 100% - 2rem);
  margin-inline: auto;
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.display-4 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  font-weight: 300;
  line-height: 1.35;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(100, 100, 100, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.5rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.logo img { max-width: 200px; max-height: 3.25rem; width: auto; height: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.site-nav a {
  display: block;
  padding: 1rem;
  color: var(--color-nav);
  font-family: var(--font-body);
  font-weight: 400;
  text-decoration: none;
}

.site-nav a:hover { color: var(--color-gold); text-decoration: none; }

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: var(--color-gold);
  color: var(--color-white) !important;
  font-weight: 500;
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-call:hover { opacity: 0.9; }

@media (max-width: 767px) {
  .header-right {
    flex-direction: row-reverse;
    gap: 0.5rem;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .header-actions .btn-call-desktop { display: none; }
  .site-header { position: sticky; }
  .header-inner { position: relative; flex-wrap: wrap; }
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav ul { flex-direction: row; align-items: center; }
  .site-nav a {
    padding: 0.5rem 1rem;
    line-height: 1;
  }
  .header-actions { display: flex; align-items: center; }
}

/* Heroes — match live site */
.hero {
  position: relative;
  background: var(--color-ink) center/cover no-repeat;
  overflow: hidden;
}

.hero-filter {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: var(--paper-texture) !important;
  opacity: 1;
  pointer-events: none;
}

.hero-home {
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero.hero-home {
  background-color: var(--color-ink);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero-home .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem;
}

.hero-home h1 { color: var(--color-white); margin-bottom: 0.75rem; }
.hero-home .display-4 { color: var(--color-white); margin-bottom: 1.25rem; }

.hero-parallax {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 0;
}

.hero-parallax .container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-parallax h1 {
  color: var(--color-white);
  text-align: center;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-breadcrumbs {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.75rem 0 1rem;
}

.hero-breadcrumbs .breadcrumb {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-white);
}

.hero-breadcrumbs .breadcrumb a {
  color: var(--color-white);
  text-decoration: none;
}

.hero-breadcrumbs .breadcrumb a:hover { text-decoration: underline; }

.hero-breadcrumbs .breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.hero-breadcrumbs .breadcrumb li {
  list-style: none;
  display: inline-flex;
  align-items: center;
}

.hero-breadcrumbs .breadcrumb li + li::before {
  content: "›";
  margin: 0 0.35rem;
  opacity: 0.75;
}

.hero-breadcrumbs .breadcrumb li[aria-current="page"] {
  opacity: 0.85;
}


/* Page layout — readable centered column */
.page-header {
  padding: 2.5rem 0 0;
  margin-bottom: 0;
}

.page-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d8d2d2;
  display: inline-block;
}

.page-content,
.blog-post-content {
  padding: 2rem 0 3rem;
}

.page-content.content-body > main,
.page-content.content-body main {
  margin: 0;
  padding: 0;
}

.page-content.content-body main .container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Hide duplicate title from extracted page content */
.page-content.content-body h1:first-of-type,
.blog-post-content.content-body h1:first-of-type {
  display: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white) !important;
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  background: var(--color-ink);
  color: var(--color-white) !important;
}

.btn-block { display: block; width: 100%; margin-bottom: 0.75rem; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-cream { background: var(--color-cream); }
.section-dark {
  background: var(--color-ink);
  color: var(--color-white);
  text-align: center;
}

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

.cta-parallax {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-color: var(--color-ink);
}

.hero.cta-parallax {
  background-color: var(--color-ink);
}

.parallax-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 140%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  z-index: 0;
  pointer-events: none;
}

.cta-parallax .hero-filter {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-parallax .container {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  padding-inline: 1rem;
}

.cta-inner {
  max-width: 36rem;
  width: 100%;
  margin: 0;
  padding: 1.5rem;
  text-align: center;
}

.cta-parallax .large-title {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-parallax p {
  color: var(--color-white);
  opacity: 0.95;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}



.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
}

.intro-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .intro-section { grid-template-columns: 1fr 1fr; }
}

.intro-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-heading);
}

.signature,
.page-signature img {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
}

.intro-section .signature {
  margin-top: 1.25rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 540px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card-grid-spaced { margin-top: 2.5rem; }

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(10, 5, 5, 0.12);
}

.card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-border);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1.25rem 1.25rem;
}

.card-body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
  color: var(--color-ink);
}

.card-meta { font-size: 0.875rem; color: var(--color-muted); }

/* Tour layout */
.tour-layout {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 4rem;
}

@media (min-width: 900px) {
  .tour-layout { grid-template-columns: 1fr min(22rem, 36%); align-items: start; }
}

.tour-description p { margin-bottom: 1rem; }

.tour-details-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.tour-details-title {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--color-heading);
}

.tour-details-intro {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0 0 1rem;
}

.tour-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  border-top: 1px solid var(--color-border);
}

.tour-meta-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.tour-meta-icon {
  flex-shrink: 0;
  color: var(--color-gold);
  line-height: 0;
  margin-top: 0.1rem;
}

.tour-meta-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.tour-meta-value {
  font-size: 0.95rem;
  line-height: 1.45;
}

.tour-meta-value a {
  color: var(--color-ink);
  text-decoration: none;
}

.tour-meta-value a:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.tour-includes-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.tour-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
}

.tour-includes li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.tour-includes li svg {
  flex-shrink: 0;
  color: #16b416;
  margin-top: 0.15rem;
}

.tour-details-cta {
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.tour-details-cta .btn-block { margin-bottom: 0.625rem; }
.tour-details-cta .btn-block:last-child { margin-bottom: 0; }

.content-body h2 { margin-top: 2rem; }
.content-body ul, .content-body ol { padding-left: 1.25rem; }
.content-body img { border-radius: var(--radius); margin: 1rem 0; }
.content-body .container { width: 100%; padding: 0; }
.content-body section { padding: 0; margin: 1rem 0; }

.cta-block {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.cta-block h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.cta-block p { font-size: 0.95rem; color: var(--color-muted); }

/* Testimonials */
.testimonials { display: grid; gap: 2rem; }

@media (min-width: 768px) { .testimonials { grid-template-columns: 1fr 1fr; } }

.quote {
  background: var(--color-white);
  padding: 1.5rem;
  border-left: 4px solid var(--color-gold);
  box-shadow: var(--shadow);
}

.quote h3, .quote p { font-family: var(--font-body); font-size: 1em; font-weight: 400; }
.quote p { font-style: italic; margin-bottom: 0.75rem; }
.quote cite { font-size: 0.875rem; color: var(--color-muted); font-style: normal; }

/* Media logos */
.media-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.media-logos img { max-height: 3.5rem; width: auto; }

/* Footer */
.site-footer {
  background: var(--color-ink);
  color: var(--color-white);
  padding: 3rem 0 1.5rem;
}

.site-footer a { color: var(--color-white); opacity: 0.9; }
.site-footer a:hover { opacity: 1; color: var(--color-gold-light); }

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand p { opacity: 0.85; font-size: 0.95rem; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* Blog */
.blog-list {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0 1rem;
}

.blog-item {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .blog-item { grid-template-columns: 12rem 1fr; }
  .blog-item-image { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
  .blog-item-image img { width: 100%; height: 100%; object-fit: cover; }
}

.blog-post-content { padding: 2rem 0 3rem; }
