/* ===== FONTS ===== */
/* Google Fonts loaded via <link> in HTML for better performance */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-weight: 400;
  color: #151515;
  background: #fff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

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

a {
  color: #8C3F41;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}

a:hover {
  color: #5A4032;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 72px 0;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 40px;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  transition: all 0.33s ease-in-out;
  text-decoration: none;
}

.btn-primary {
  background-color: #8C3F41;
  color: #fff;
  box-shadow: 0 3px 6px 3px rgba(0,0,0,0.24);
}

.btn-primary:hover {
  background-color: #5A4032;
  color: #fff;
  box-shadow: 0 4px 8px 4px rgba(0,0,0,0.3);
}

.btn-outline {
  background: transparent;
  color: #8C3F41;
  border: 2px solid #8C3F41;
}

.btn-outline:hover {
  background: #8C3F41;
  color: #fff;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5A4032;
  text-transform: uppercase;
  letter-spacing: 0.143em;
  text-decoration: none;
  transition: color 0.33s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active {
  color: #8C3F41;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #5A4032;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 66.67vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(22, 10, 10, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 40px 24px;
  max-width: 800px;
  margin-top: auto;
  margin-bottom: 60px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.85);
}

/* ===== GALLERY SHOWCASE (Homepage) ===== */
.gallery-showcase {
  background: #5A4032;
  padding: 72px 0 48px;
  text-align: center;
  overflow: hidden;
}

.gallery-showcase h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
}

.gallery-showcase .section-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 18px;
}

/* Homepage carousel override */
.gallery-showcase .container { max-width: none; padding: 0; position: relative; }
.carousel-viewport { overflow: hidden; }
.gallery-showcase .gallery-grid {
  columns: unset;
  column-gap: unset;
  max-width: none;
  padding: 0;
  display: flex;
  gap: 16px;
  transition: transform 0.7s ease;
}
.gallery-showcase .gallery-grid img {
  flex: 0 0 70%;
  width: 70%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 0;
  cursor: default;
  transition: opacity 0.4s;
  opacity: 0.5;
}
.gallery-showcase .gallery-grid img.active-slide {
  opacity: 1;
}
.gallery-showcase .gallery-grid img:hover {
  transform: none;
  box-shadow: none;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover { background: rgba(199,156,106,0.6); }
.carousel-arrow--prev { left: max(12px, calc((100% - 70%) / 2 - 60px)); }
.carousel-arrow--next { right: max(12px, calc((100% - 70%) / 2 - 60px)); }

/* Carousel nav dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.carousel-dots button.active {
  background: #C79C6A;
}

@media (max-width: 768px) {
  .gallery-showcase .gallery-grid { padding: 0 10%; gap: 12px; }
  .gallery-showcase .gallery-grid img { flex: 0 0 80%; width: 80%; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 16px; }
  .carousel-arrow--prev { left: 8px; }
  .carousel-arrow--next { right: 8px; }
}

.gallery-grid {
  columns: 2;
  column-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.33s ease-in-out, box-shadow 0.33s ease-in-out;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #8C3F41;
  color: #fff;
  text-align: center;
  padding: 56px 24px;
}

.cta-banner h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 400;
}

.cta-banner .btn {
  background: #fff;
  color: #8C3F41;
}

.cta-banner .btn:hover {
  background: #F2E4CC;
  color: #5A4032;
}

/* ===== DIFFERENCE SECTION ===== */
.difference {
  background: #f6f6f6;
  padding: 72px 0;
}

.difference h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
}

.difference .subtitle {
  text-align: center;
  font-size: 20px;
  color: #575757;
  margin-bottom: 48px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.difference-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
}

.difference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Square image side */
.difference-card .diff-card-bg {
  width: 45%;
  min-height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Text content side */
.difference-card .diff-card-content {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* No-image fallback — center text */
.difference-card:not(.has-image) {
  text-align: center;
}

.difference-card:not(.has-image) .diff-card-content {
  text-align: center;
  padding: 40px 24px;
}

/* Image on right (cards in left column): text first, image second */
.difference-card.img-right {
  flex-direction: row-reverse;
}

/* Image on left (cards in right column): image first, text second — default order */
.difference-card.img-left {
  flex-direction: row;
}

.difference-card .diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(140, 63, 65, 0.12);
  color: #8C3F41;
  font-size: 19px;
  margin-bottom: 12px;
}

.difference-card h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #5A4032;
  margin-bottom: 8px;
}

.difference-card p {
  font-size: 14px;
  color: #575757;
  line-height: 1.6;
}

.difference-card .diff-icon-custom {
  background: none;
}

.difference-card .diff-icon-custom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .difference-grid {
    grid-template-columns: 1fr;
  }
  .difference-card {
    flex-direction: column !important;
  }
  .difference-card .diff-card-bg {
    width: 100%;
    min-height: 200px;
  }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: #5A4032;
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #fff;
}

.how-it-works .subtitle {
  text-align: center;
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  font-style: italic;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

.step {
  text-align: center;
  background: #F2E4CC;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.step-img {
  position: relative;
  width: 100%;
  height: 220px;
  background: rgba(255,255,255,0.04);
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-number {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #8C3F41;
  color: #fff;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  z-index: 1;
}

.step-body {
  padding: 36px 24px 28px;
}

.step h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #5A4032;
}

.step p {
  font-size: 15px;
  color: #6F6F6F;
  line-height: 1.7;
}

/* ===== FRAMES SHOWCASE ===== */
.frames-showcase {
  background: #f6f6f6;
  padding: 72px 0 48px;
  text-align: center;
  overflow: hidden;
}

.frames-showcase h2 {
  color: #5A4032;
  font-size: 32px;
  margin-bottom: 12px;
}

.frames-showcase .section-subtitle {
  color: #575757;
  font-size: 20px;
  margin-bottom: 40px;
}

.frames-showcase .container { max-width: 1200px; }

.frames-showcase .gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.frames-showcase .gallery-grid img {
  border-radius: 8px;
  margin-bottom: 16px;
  cursor: default;
}

.frames-showcase .gallery-grid img:hover {
  transform: none;
  box-shadow: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #5A4032;
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: left;
}

.testimonial-card .stars {
  color: #C79C6A;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 16px;
  font-style: normal;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.testimonial-card .attribution {
  font-size: 14px;
  font-weight: 600;
  color: #C79C6A;
}

/* ===== ABOUT THE PHOTOGRAPHER ===== */
.about-photographer {
  background: #fff;
  padding: 72px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about-image { order: -1; }
}

/* ===== FAQ ===== */
.faq {
  padding: 56px 0;
  background: #f6f6f6;
}

.faq h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid #e2e2e2;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #8C3F41;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
}

/* ===== SCHEDULE CTA ===== */
.schedule-cta {
  background: #5A4032;
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}

.schedule-cta h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #3D2B20;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #8C3F41;
  color: #fff;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-admin {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  transition: color 0.2s;
}
.footer-admin:hover {
  color: rgba(255,255,255,0.5);
}

/* ===== PORTFOLIO / INNER PAGE HERO ===== */
.page-hero {
  margin-top: 72px;
  padding: 56px 24px;
  text-align: center;
  background: #5A4032;
  color: #fff;
}

.page-hero h1 {
  font-size: 48px;
}

.page-hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  font-style: italic;
}

/* Portfolio Section Nav */
.portfolio-nav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 72px;
  z-index: 900;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.portfolio-nav-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.portfolio-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 18px;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.portfolio-nav-link:hover {
  color: #5A4032;
}

.portfolio-nav-link.active {
  color: #8C3F41;
  border-bottom-color: #8C3F41;
}

.portfolio-nav-link i {
  font-size: 14px;
}

/* Portfolio Section Styling */
.portfolio-section {
  padding: 64px 0;
}

.portfolio-section:nth-child(even) {
  background: #f6f6f6;
}

.portfolio-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(140, 63, 65, 0.1);
  color: #8C3F41;
  font-size: 20px;
  margin-bottom: 16px;
}

.portfolio-section-header h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
}

.portfolio-subtitle {
  font-size: 20px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Portfolio Inline CTA */
.portfolio-inline-cta {
  background: linear-gradient(135deg, #8C3F41, #5A4032);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
}

.portfolio-inline-cta p {
  font-size: 20px;
  font-family: 'Source Sans Pro', arial, sans-serif;
  margin-bottom: 20px;
  font-weight: 400;
}

.portfolio-inline-cta .btn-primary {
  background: #fff;
  color: #8C3F41;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.portfolio-inline-cta .btn-primary:hover {
  background: #F2E4CC;
  color: #5A4032;
}

/* Schedule CTA subtitle */
.schedule-cta-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.show-more-btn {
  display: block;
  margin: 32px auto 0;
  background: none;
  border: 2px solid #8C3F41;
  color: #8C3F41;
  padding: 10px 32px;
  border-radius: 48px;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background: #8C3F41;
  color: #fff;
}

/* ===== PRICING PAGE ===== */
.pricing-hero {
  margin-top: 72px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 24px 0;
  text-align: center;
  position: relative;
  color: #fff;
}

.pricing-hero-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-hero-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.pricing-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,10,10,0.55);
  border-radius: 12px;
}

.pricing-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.pricing-hero h1 {
  font-size: 48px;
  margin-bottom: 8px;
}

.pricing-hero p {
  font-size: 20px;
  font-weight: 400;
}

.pricing-section {
  padding: 56px 0;
}

.pricing-section:nth-child(even) {
  background: #f6f6f6;
}

.pricing-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.pricing-text {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-text p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
  margin-bottom: 16px;
}

.pricing-text ul {
  list-style: none;
  margin: 24px 0;
}

.pricing-text ul li {
  padding: 12px 0;
  padding-left: 24px;
  font-size: 16px;
  color: #575757;
  position: relative;
  border-bottom: 1px solid #e2e2e2;
}

.pricing-text ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #8C3F41;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card-body {
  padding: 20px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
  margin-bottom: 12px;
}

.product-card .price {
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8C3F41;
}

/* Products intro */
.pricing-products-intro {
  text-align: center;
  max-width: 650px;
  margin: 8px auto 0;
  font-size: 16px;
  color: #575757;
  line-height: 1.7;
}

/* Product tagline (short text shown collapsed) */
.product-tagline {
  font-size: 15px;
  color: #575757;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Product card footer with price + details btn */
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-expand-btn {
  background: none;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #8C3F41;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.product-expand-btn:hover {
  background: #F2E4CC;
  border-color: #8C3F41;
}
.product-expand-btn i {
  font-size: 10px;
  transition: transform 0.3s;
}
.product-card.expanded .product-expand-btn i {
  transform: rotate(180deg);
}

/* Expandable detail panel */
.product-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-top: 1px solid #eee;
  padding: 0 20px;
}
.product-card.expanded .product-detail {
  padding: 16px 20px 20px;
}
.product-detail p {
  font-size: 14px;
  color: #575757;
  line-height: 1.7;
  margin-bottom: 12px;
}
.product-detail-pricing {
  margin: 8px 0;
}
.product-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #575757;
}
.product-detail-row .amount {
  font-weight: 700;
  color: #8C3F41;
}
.product-detail-note {
  font-size: 13px !important;
  color: #888 !important;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0 !important;
}

/* Art-tography expandable block */
.arttography-block {
  text-align: center;
}
.arttography-teaser {
  font-size: 18px;
  color: #575757;
  font-style: italic;
  margin-bottom: 16px;
}
.arttography-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.arttography-detail p {
  text-align: left;
}
.arttography-toggle {
  background: none;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #8C3F41;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.arttography-toggle:hover {
  background: #F2E4CC;
  border-color: #8C3F41;
}
.arttography-toggle i {
  font-size: 11px;
  transition: transform 0.3s;
}

/* Digital pricing table */
.digital-pricing {
  max-width: 600px;
  margin: 32px auto 0;
}

.digital-pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
  font-size: 16px;
}

.digital-pricing-row .label {
  color: #575757;
}

.digital-pricing-row .amount {
  font-weight: 700;
  color: #8C3F41;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 64px 0;
  background: #f6f6f6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #5A4032;
}

.contact-info > p {
  font-size: 16px;
  color: #575757;
  margin-bottom: 32px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-item i {
  color: #8C3F41;
  font-size: 20px;
  margin-top: 4px;
  width: 24px;
  text-align: center;
}

.contact-detail-item strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5A4032;
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 16px;
  color: #575757;
  margin: 0;
  line-height: 1.75;
}

.contact-detail-item a {
  color: #8C3F41;
  text-decoration: none;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.contact-social p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5A4032;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #8C3F41;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-social-links a:hover {
  background: #5A4032;
  transform: scale(1.1);
}

.contact-form-wrapper {
  background: #fff;
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 16px;
  color: #151515;
  margin-bottom: 20px;
  background: #fafafa;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8C3F41;
  background: #fff;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.required::after {
  content: '*';
  color: #8C3F41;
  margin-left: 4px;
}

/* ===== DOCK DIVING PAGE ===== */
.dock-intro {
  padding: 56px 0;
}

.dock-intro-content {
  max-width: 750px;
}

.dock-intro-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.dock-intro-content p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
}

.dock-features {
  background: #f8f5f2;
  padding: 64px 0;
}

.dock-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dock-feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.dock-feature-card i {
  font-size: 32px;
  color: #8C3F41;
  margin-bottom: 16px;
}

.dock-feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.dock-feature-card p {
  font-size: 16px;
  color: #575757;
  line-height: 1.75;
}

.dock-gallery-header {
  text-align: center;
  margin-bottom: 32px;
}

.dock-gallery-header i {
  font-size: 28px;
  color: var(--accent, #8C3F41);
  margin-bottom: 12px;
  display: block;
}

.dock-gallery-header h2 {
  margin-bottom: 8px;
}

.dock-gallery-header p {
  font-size: 20px;
  color: #777;
  font-style: italic;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

/* ===== BADGES ===== */
.badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px;
}

.badges-label {
  font-family: 'Source Sans Pro', arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 24px;
}

.badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.badges img {
  height: 80px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.badges img:hover {
  opacity: 1;
}

/* ===== ADVENTURES PAGE (Redesign v2 — Field Guide) ===== */

/* --- Adventures Variables --- */
.page-adventures {
  --adv-paper: #efdfbc;
  --adv-paper-light: #fbf1dc;
  --adv-paper-deep: #dcc08f;
  --adv-ink: #4e341f;
  --adv-ink-soft: #6e5239;
  --adv-line: rgba(120, 84, 45, 0.22);
  --adv-brown: #6d4723;
  --adv-brown-dark: #4b2d16;
  --adv-gold: #c79c63;
  --adv-olive: #64714b;
  --adv-rust: #b8673c;
  --adv-slate: #7d8076;
  --adv-shadow: rgba(69, 43, 21, 0.18);
}

/* --- Adventures Page — Field Guide Typography --- */
.page-adventures {
  background-color: #FAF6F0;
  background-image: url('../images/adventures/graphics/texture-parchment.png');
  background-repeat: repeat;
  background-size: 512px 512px;
  overflow-x: hidden;
  color: var(--adv-ink);
}

.page-adventures main {
  font-family: "IM Fell English", Georgia, serif;
}

.page-adventures img {
  max-width: 100%;
  display: block;
}

/* --- Stitch Bar (below header) --- */
.page-adventures .stitch-bar {
  position: relative;
  height: 20px;
  background: linear-gradient(180deg, rgba(84, 47, 18, 0.92), rgba(117, 70, 32, 0.96));
  border-top: 1px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(66, 39, 17, 0.45);
}
.page-adventures .stitch-bar::before {
  content: "";
  position: absolute;
  inset: 7px 0 auto;
  height: 6px;
  background: linear-gradient(90deg, transparent 0 18px, rgba(220, 188, 137, 0.95) 18px 24px, transparent 24px 42px) center/42px 6px repeat-x;
}

/* --- Hero Panel --- */
.page-adventures .hero-panel {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}
.page-adventures .hero-photo {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: sepia(0.22) saturate(0.9);
}
.page-adventures .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(63, 37, 16, 0.2), rgba(33, 16, 10, 0.7)),
    radial-gradient(circle at center, transparent 0 36%, rgba(38, 19, 8, 0.24) 100%);
}
.page-adventures .hero-route-mark,
.page-adventures .hero-compass-mark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.page-adventures .hero-route-mark {
  left: 7%; right: 12%; bottom: 110px; height: 90px;
  opacity: 0.34;
  background: url("../images/adventures/graphics/route-line.svg") center/100% 100% no-repeat;
}
.page-adventures .hero-compass-mark {
  top: 54px; right: 6%; width: 170px; height: 170px;
  opacity: 0.18;
  background: url("../images/adventures/graphics/compass-rose.svg") center/contain no-repeat;
}
.page-adventures .hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  padding: 72px 20px;
  text-align: center;
  color: #fff9ef;
}
.page-adventures .hero-kicker,
.page-adventures .eyebrow {
  display: inline-block;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.88rem;
  color: var(--adv-gold);
}
.page-adventures .hero-content h1 {
  margin: 12px 0 14px;
  font-weight: 400;
  line-height: 1.06;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  text-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.page-adventures .hero-content > p {
  margin: 0 auto;
  width: min(720px, 100%);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}
.page-adventures .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.page-adventures .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  text-decoration: none;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.page-adventures .button-primary {
  color: #fff8ec;
  background: linear-gradient(180deg, #7b4b24, #573118);
  box-shadow: 0 8px 20px rgba(31, 17, 10, 0.2);
}
.page-adventures .button-secondary {
  color: #fff7ea;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.page-adventures .hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.page-adventures .hero-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.18);
  font-size: 1rem;
}
.page-adventures .hero-field-note {
  width: min(420px, 100%);
  margin: 28px auto 0;
  padding: 18px 20px 16px;
  text-align: left;
  color: #5A4032;
  background: linear-gradient(180deg, rgba(247,238,220,0.94), rgba(237,223,193,0.92));
  border: 1px solid rgba(199, 156, 106, 0.24);
  box-shadow: 0 18px 30px rgba(45, 28, 14, 0.16);
  transform: rotate(-2deg);
}
.page-adventures .hero-field-note__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  background: #7C8464;
  color: #F2E4CC;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-adventures .hero-field-note p {
  width: 100%;
  font-size: 1.08rem;
  line-height: 1.55;
}

/* --- Paper Stage (Intro) --- */
.page-adventures .paper-stage {
  position: relative;
  padding: 72px 32px;
  background:
    radial-gradient(circle at 16% 22%, rgba(255,255,255,0.28), transparent 16%),
    repeating-linear-gradient(90deg, rgba(122, 88, 51, 0.025) 0 2px, transparent 2px 122px),
    repeating-linear-gradient(180deg, rgba(122, 88, 51, 0.025) 0 2px, transparent 2px 112px),
    linear-gradient(180deg, #f1dfb8 0%, #ead3a6 100%);
}
.page-adventures .paper-stage-intro { min-height: 760px; }
.page-adventures .background-compass,
.page-adventures .background-map,
.page-adventures .background-pawtrail {
  position: absolute;
  pointer-events: none;
}
.page-adventures .background-compass {
  top: 44px; right: 6px; width: 230px; height: 230px;
  opacity: 0.26;
  background: url("../images/adventures/graphics/compass-rose.svg") center/contain no-repeat;
}
.page-adventures .background-map {
  border: 2px solid rgba(127, 88, 41, 0.18);
  background: linear-gradient(180deg, rgba(243, 224, 185, 0.8), rgba(220, 193, 145, 0.74));
  box-shadow: 0 12px 18px rgba(83, 54, 27, 0.08);
}
.page-adventures .background-map-right {
  right: 56px; top: 330px; width: 230px; height: 230px;
  opacity: 0.2; transform: rotate(-12deg);
  clip-path: polygon(4% 0, 98% 4%, 100% 94%, 92% 100%, 8% 96%, 0 14%);
}
.page-adventures .background-map-bottom {
  right: 120px; bottom: 12px; width: 180px; height: 180px;
  opacity: 0.14; transform: rotate(10deg);
  clip-path: polygon(8% 0, 100% 7%, 94% 96%, 6% 100%, 0 15%);
}
.page-adventures .background-pawtrail {
  left: 0; bottom: 46px; width: 280px; height: 180px;
  opacity: 0.28;
  background: url("../images/adventures/graphics/pawtrail.svg") left bottom/contain no-repeat;
}

/* --- Mission Card --- */
.page-adventures .mission-card {
  position: relative;
  width: min(880px, calc(100% - 220px));
  margin: 24px auto 34px;
  padding: 64px 72px 58px;
  background:
    linear-gradient(180deg, rgba(255,249,233,0.96), rgba(246,234,207,0.94)),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.3), transparent 18%);
  border: 16px solid transparent;
  border-image: linear-gradient(135deg, #7d562f, #a4753a 35%, #6b4727 65%, #9d7240) 1;
  box-shadow: 0 18px 30px var(--adv-shadow);
}
.page-adventures .mission-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px double rgba(142, 96, 49, 0.44);
}
.page-adventures .wood-plaque {
  position: absolute;
  top: -22px; left: 50%; transform: translateX(-50%);
  padding: 9px 30px 10px;
  min-width: 240px;
  text-align: center;
  color: #f5e4c1;
  background: linear-gradient(180deg, #76491f 0%, #4f2d16 50%, #7d4e24 100%);
  border-radius: 8px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.18rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 14px rgba(62, 38, 18, 0.22), inset 0 1px 0 rgba(255,255,255,0.16);
}
.page-adventures .wood-plaque::before,
.page-adventures .wood-plaque::after {
  content: "✦"; margin: 0 10px; color: #d6b47b; font-size: 0.85rem;
}
.page-adventures .card-rivet {
  position: absolute; width: 18px; height: 18px; border-radius: 3px;
  background: linear-gradient(135deg, #f4ddba, #8f6336 60%, #4f3117);
  transform: rotate(45deg);
}
.page-adventures .rivet-tl { top: 10px; left: 10px; }
.page-adventures .rivet-tr { top: 10px; right: 10px; }
.page-adventures .rivet-bl { bottom: 10px; left: 10px; }
.page-adventures .rivet-br { bottom: 10px; right: 10px; }
.page-adventures .mission-mountains {
  position: absolute; top: 20px; left: 36px; width: 156px; opacity: 0.28;
}
.page-adventures .mission-content {
  position: relative; z-index: 1; text-align: center;
}
.page-adventures .mission-content h2 {
  margin: 12px 0 14px; font-weight: 400; line-height: 1.06;
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.page-adventures .paw-divider {
  display: flex; align-items: center; gap: 18px;
  width: min(520px, 100%); margin: 0 auto 18px;
}
.page-adventures .paw-divider span {
  flex: 1; height: 12px;
  background: radial-gradient(circle at 6px 6px, transparent 4px, #8d5d2c 4.5px, #8d5d2c 5.5px, transparent 6px) 0 50%/24px 12px repeat-x;
  opacity: 0.7;
}
.page-adventures .paw-divider img { width: 36px; height: 36px; }
.page-adventures .mission-content p {
  width: min(690px, 100%); margin: 0 auto;
  font-size: clamp(1.55rem, 2vw, 2.1rem); line-height: 1.55;
}
.page-adventures .mini-map {
  position: absolute; right: 20px; bottom: -14px; width: 180px; transform: rotate(4deg);
}

/* --- Field Notes (Aside) --- */
.page-adventures .field-notes {
  position: relative;
  width: min(740px, calc(100% - 280px));
  margin-left: 170px;
  padding: 34px 44px 28px;
  background:
    linear-gradient(180deg, rgba(255,248,231,0.96), rgba(245,233,204,0.94)),
    radial-gradient(circle at 30% 16%, rgba(255,255,255,0.26), transparent 20%);
  transform: rotate(-3deg);
  clip-path: polygon(2% 4%, 98% 1%, 99% 88%, 94% 95%, 73% 93%, 59% 98%, 38% 95%, 16% 98%, 1% 91%);
  box-shadow: 0 18px 30px var(--adv-shadow);
}
.page-adventures .field-notes::before {
  content: "";
  position: absolute; inset: 16px 20px;
  border-top: 3px dashed rgba(152, 110, 58, 0.34);
  border-bottom: 1px solid rgba(152, 110, 58, 0.18);
}
.page-adventures .note-pin {
  position: absolute; top: -10px; left: 42px; width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #eccd9b, #8b5d2c 68%, #5f3917);
}
.page-adventures .field-ribbon {
  position: absolute; top: 16px; left: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 16px;
  color: #f3ead8;
  background: linear-gradient(180deg, #738253 0%, #55643b 100%);
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.page-adventures .field-ribbon::before,
.page-adventures .field-ribbon::after {
  content: ""; position: absolute; top: 0; width: 14px; height: 100%; background: inherit;
}
.page-adventures .field-ribbon::before { left: -12px; clip-path: polygon(100% 0, 0 50%, 100% 100%); }
.page-adventures .field-ribbon::after { right: -12px; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.page-adventures .field-ribbon img { width: 18px; height: 18px; filter: brightness(2.3); }
.page-adventures .field-notes p {
  position: relative; z-index: 1; margin: 44px 0 0;
  font-family: "Caveat", cursive;
  font-size: clamp(1.9rem, 2.5vw, 2.55rem); line-height: 1.4;
}

/* --- Benefits Strip (Corkboard) --- */
.page-adventures .adventure-why-guide {
  position: relative; overflow: hidden; padding: 72px 24px 48px;
  background: linear-gradient(180deg, #e6d2aa 0%, #d3ba8c 100%);
}
.page-adventures .adventure-why-guide::before {
  content: "";
  position: absolute; inset: 30px 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.08), transparent 14%),
    radial-gradient(circle at 78% 70%, rgba(255,255,255,0.05), transparent 16%),
    url("../images/adventures/graphics/tileable_corkboard.png") center/540px repeat,
    linear-gradient(180deg, #b18553 0%, #9e7446 100%);
  border: 12px solid #6f4d2c;
  box-shadow:
    inset 0 0 0 4px rgba(228, 202, 152, 0.18),
    inset 0 0 0 18px rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-adventures .adventure-why-guide__inner {
  position: relative; max-width: 1320px; margin: 0 auto;
}
.page-adventures .adventure-why-guide__heading {
  position: relative; z-index: 2; max-width: 980px; margin: 0 auto 28px; text-align: center;
}
.page-adventures .adventure-why-guide__heading h2 {
  margin: 0 0 14px;
  color: #fffdf6;
  font-family: "IM Fell English", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.98; letter-spacing: -0.01em;
  text-shadow: 0 2px 0 rgba(86, 53, 26, 0.4), 0 8px 24px rgba(32, 16, 7, 0.25);
}
.page-adventures .adventure-why-guide__divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  width: min(420px, 100%); margin: 0 auto;
}
.page-adventures .adventure-why-guide__divider span {
  flex: 1; height: 2px;
  background: linear-gradient(90deg, transparent 0 8px, rgba(199,156,106,0.75) 8px 16px) left center/16px 2px repeat-x;
}
.page-adventures .adventure-why-guide__divider img { width: 28px; height: 28px; opacity: 0.85; }
.page-adventures .adventure-why-guide__map { position: absolute; inset: 110px 0 0; pointer-events: none; }
.page-adventures .map-route {
  position: absolute; top: 220px; left: 7%; right: 8%; height: 140px;
  opacity: 0.17;
  background: url("../images/adventures/graphics/route-line.svg") center/100% 100% no-repeat;
}
.page-adventures .map-compass {
  position: absolute; top: 26px; right: 7%; width: 150px; height: 150px;
  opacity: 0.08;
  background: url("../images/adventures/graphics/compass-rose.svg") center/contain no-repeat;
}
.page-adventures .adventure-why-guide__grid {
  position: relative; z-index: 2; min-height: 560px;
}
.page-adventures .expedition-panel--graphic {
  padding: 0; background: transparent; border: 0;
  box-shadow: 0 22px 28px rgba(70, 46, 23, 0.2);
}
.page-adventures .expedition-panel--graphic::after { display: none; }
.page-adventures .expedition-panel--graphic img { width: 100%; height: auto; display: block; }
.page-adventures .expedition-panel--graphic-scenic {
  position: absolute; top: 88px; left: 2%; width: 22%; transform: rotate(-2.2deg);
}
.page-adventures .expedition-panel--graphic-relaxed {
  position: absolute; top: 118px; left: 25%; width: 24%; transform: rotate(1deg);
}
.page-adventures .expedition-panel--graphic-golden {
  position: absolute; top: 92px; left: 53%; width: 18%; transform: rotate(-1.1deg);
}
.page-adventures .expedition-panel--graphic-guarantee {
  position: absolute; top: 114px; right: 2%; width: 21%; transform: rotate(1.8deg);
}

/* --- Adventure Callout --- */
.page-adventures .adventure-callout {
  position: relative;
  padding: 64px 32px;
  background: #5A4032;
}
.page-adventures .adventure-callout__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.page-adventures .adventure-callout__text {
  text-align: left;
}
.page-adventures .adventure-callout .eyebrow {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: #C79C6A; margin-bottom: 12px;
}
.page-adventures .adventure-callout h2 {
  font-family: "IM Fell English", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2E4CC; margin: 0 0 16px;
}
.page-adventures .adventure-callout__intro {
  margin: 0 0 36px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.page-adventures .adventure-callout__list {
  display: flex; flex-direction: column; gap: 24px;
}
.page-adventures .adventure-callout__item {
  display: flex; align-items: flex-start; gap: 16px;
}
.page-adventures .adventure-callout__item i {
  font-size: 1.4rem;
  color: #C79C6A;
  flex-shrink: 0; margin-top: 3px;
}
.page-adventures .adventure-callout__item h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem; font-weight: 700;
  color: #F2E4CC; margin: 0 0 4px;
}
.page-adventures .adventure-callout__item p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 0.92rem; line-height: 1.55;
  color: rgba(255,255,255,0.7); margin: 0;
}
.page-adventures .adventure-callout__image {
  display: flex; align-items: center; justify-content: center;
}
.page-adventures .adventure-callout__image img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .page-adventures .adventure-callout__layout {
    grid-template-columns: 1fr;
  }
  .page-adventures .adventure-callout__text {
    text-align: center;
  }
  .page-adventures .adventure-callout__item {
    flex-direction: column; align-items: center; text-align: center; gap: 8px;
  }
  .page-adventures .adventure-callout__image img {
    max-width: 400px;
  }
}

/* --- Adventure FAQ --- */
.page-adventures .adventure-faq {
  background: #F2E4CC;
  padding: 64px 32px;
}
.page-adventures .adventure-faq h2 {
  font-family: "IM Fell English", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--adv-brown);
  text-align: center; margin: 0 0 36px;
}
.page-adventures .adventure-faq .faq-list {
  max-width: 760px; margin: 0 auto;
}
.page-adventures .adventure-faq .faq-item {
  border-bottom: 1px solid rgba(90,64,50,0.2);
}
.page-adventures .adventure-faq .faq-question {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: "Libre Baskerville", serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--adv-brown);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
}
.page-adventures .adventure-faq .faq-question:hover {
  color: var(--adv-gold);
}
.page-adventures .adventure-faq .faq-toggle {
  font-size: 1.4rem; font-weight: 400; transition: transform 0.3s;
}
.page-adventures .adventure-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.page-adventures .adventure-faq .faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.page-adventures .adventure-faq .faq-item.active .faq-answer {
  max-height: 300px;
}
.page-adventures .adventure-faq .faq-answer p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1rem; line-height: 1.7;
  color: #5a4a3a;
  padding: 0 0 20px;
  margin: 0;
}

/* --- Dossier Section --- */
.page-adventures .dossier-section {
  position: relative; padding: 72px 32px;
  background: #7C8464;
}
.page-adventures .section-heading {
  max-width: 780px; margin: 0 auto 34px; text-align: center;
}
.page-adventures .section-heading h2 {
  margin: 12px 0 14px; font-weight: 400; line-height: 1.06;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
}
.page-adventures .section-heading p {
  margin: 0; font-size: 1.25rem; color: var(--adv-ink-soft);
}
.page-adventures .dossier-section .section-heading .eyebrow { color: #C79C6A; }
.page-adventures .dossier-section .section-heading h2 { color: #F2E4CC; }
.page-adventures .dossier-section .section-heading p { color: rgba(255,255,255,0.8); }
.page-adventures .dossier-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: 1160px; margin: 0 auto;
}
.page-adventures .dossier-card {
  position: relative; padding: 30px 28px 24px; text-decoration: none; color: inherit;
  background: var(--card-bg, #fff);
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-adventures .dossier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 36px var(--adv-shadow);
}
.page-adventures .dossier-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent-color, var(--adv-brown));
  border-radius: 8px 8px 0 0;
}
.page-adventures .accent-green { --accent-color: #6d7a52; --card-bg: #5A4032; --card-text: #F2E4CC; --card-muted: rgba(255,255,255,0.7); }
.page-adventures .accent-rust { --accent-color: #b8673c; --card-bg: #8C3F41; --card-text: #F2E4CC; --card-muted: rgba(255,255,255,0.7); }
.page-adventures .accent-slate { --accent-color: #7f8174; --card-bg: #6F6F6F; --card-text: #F2E4CC; --card-muted: rgba(255,255,255,0.7); }
.page-adventures .accent-brown { --accent-color: #6d4723; --card-bg: #A0876E; --card-text: #F2E4CC; --card-muted: rgba(255,255,255,0.7); }
.page-adventures .stamp {
  display: inline-block; margin-bottom: 10px; padding: 4px 10px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--card-text, var(--adv-brown));
  font-family: "Oswald", Impact, sans-serif; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  transform: rotate(-2deg);
}
.page-adventures .dossier-card__icon {
  width: 48px; height: 48px; margin-bottom: 8px;
  opacity: 0.4;
}
.page-adventures .dossier-card__icon svg {
  width: 100%; height: 100%;
  stroke: var(--card-text, #5a3e20);
}
.page-adventures .dossier-card h3 {
  margin: 14px 0 10px; font-size: 1.7rem; font-weight: 400;
  color: var(--card-text, inherit);
}
.page-adventures .dossier-card .location {
  margin: 0 0 10px;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.08em;
  color: var(--card-muted, #846245);
}
.page-adventures .dossier-card .vibe { margin-top: 0; }
.page-adventures .dossier-card p {
  color: var(--card-muted, var(--adv-ink-soft)); font-size: 1.12rem; line-height: 1.55;
}
.page-adventures .dossier-card ul {
  margin: 16px 0 0; padding-left: 18px;
  color: var(--card-muted, var(--adv-ink-soft)); line-height: 1.65; font-size: 1.05rem;
}
.page-adventures .is-soon {
  opacity: 0.92;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(109, 71, 35, 0.02) 12px, rgba(109, 71, 35, 0.02) 24px);
}

/* --- Main Page Closeout --- */
.page-adventures .main-page-closeout {
  position: relative; padding: 72px 32px 80px;
  background:
    radial-gradient(circle at 80% 10%, rgba(139, 94, 48, 0.08), transparent 16%),
    linear-gradient(180deg, #fbf3df 0%, #efe0bb 100%);
}
.page-adventures .main-page-closeout__card {
  max-width: 920px; margin: 0 auto; padding: 40px 28px; text-align: center;
  background: linear-gradient(180deg, rgba(255,249,233,0.98), rgba(244,232,203,0.96));
  border: 1px solid var(--adv-line);
  box-shadow: 0 18px 30px var(--adv-shadow);
}
.page-adventures .main-page-closeout__card h2 {
  margin: 12px 0 14px; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.06;
}
.page-adventures .main-page-closeout__card p {
  margin: 0 auto; width: min(620px, 100%);
  color: var(--adv-ink-soft); font-size: 1.12rem; line-height: 1.6;
}

/* --- Booking CTA --- */
.page-adventures .booking-cta {
  padding: 80px 20px;
  background: var(--adv-paper);
  text-align: center;
}
.page-adventures .booking-cta__card {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #ffffff;
  border: 1px solid rgba(199,156,106,0.25);
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(90,64,50,0.08);
  text-align: center;
}
.page-adventures .booking-cta__card .eyebrow {
  display: block; margin-bottom: 10px;
  font-family: var(--adv-font-label); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--adv-gold);
}
.page-adventures .booking-cta__card h2 {
  margin: 0 0 14px; font-weight: 400; line-height: 1.1;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--adv-ink);
}
.page-adventures .booking-cta__card p {
  margin: 0 0 28px;
  color: var(--adv-ink-soft); font-size: 1.1rem; line-height: 1.6;
}
.page-adventures .booking-cta__card .button {
  display: inline-block; padding: 14px 36px;
  font-family: var(--adv-font-label); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  color: #fff; background: var(--adv-brown);
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.page-adventures .booking-cta__card .button:hover {
  background: var(--adv-ink);
}

/* ===== ADVENTURE DETAIL PAGES ===== */
.page-adventures .detail-hero {
  position: relative; display: flex; align-items: flex-end;
  margin-top: 92px; /* 72px header + 20px stitch bar */
}
.page-adventures .detail-hero--hub {
  align-items: center;
}
.page-adventures .detail-hero__content--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(30px, 5vw, 80px);
  text-align: left;
  overflow: hidden;
  top: 0; bottom: 0;
}
.page-adventures .hero-kicker--left {
  display: block;
  font-family: var(--adv-font-label); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--adv-gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  flex-shrink: 0;
}
.page-adventures .hero-title--right {
  text-align: right;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  margin: 0;
  font-weight: 400;
}
.page-adventures .detail-hero__photo {
  width: 100%;
  filter: sepia(0.16) saturate(0.92);
}
.page-adventures .detail-hero__photo img {
  width: 100%; height: auto; display: block;
}
.page-adventures .detail-hero__overlay {
  position: absolute; inset: 0;
  opacity: var(--hero-overlay-opacity, 1);
  background:
    linear-gradient(180deg, rgba(63,37,16,0.10), rgba(33,16,10,0.55)),
    radial-gradient(circle at center, transparent 0 36%, rgba(38,19,8,0.15) 100%);
}
.page-adventures .detail-hero--hub .detail-hero__overlay {
  background:
    linear-gradient(90deg, rgba(33,16,10,0.6) 0%, transparent 35%, transparent 65%, rgba(33,16,10,0.6) 100%),
    linear-gradient(180deg, rgba(63,37,16,0.05), rgba(33,16,10,0.35));
}
.page-adventures .detail-hero__content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  width: min(840px, calc(100% - 40px));
  padding: 72px 20px 54px; margin: 0 auto; text-align: center; color: #fff8ee;
}
/* Title vertical positions */
.page-adventures .detail-hero--title-top .detail-hero__content {
  bottom: auto; top: 0; padding-top: 40px;
}
.page-adventures .detail-hero--title-middle .detail-hero__content {
  bottom: auto; top: 50%; transform: translateY(-50%); padding-top: 0; padding-bottom: 0;
}
/* Title horizontal positions */
.page-adventures .detail-hero--title-left .detail-hero__content {
  text-align: left; margin: 0; padding-left: clamp(40px, 5vw, 100px); width: 60%;
}
.page-adventures .detail-hero--title-right .detail-hero__content {
  text-align: right; margin: 0 0 0 auto; padding-right: clamp(40px, 5vw, 100px); width: 60%;
}
/* Overlay gradients — horizontal */
.page-adventures .detail-hero--title-left .detail-hero__overlay {
  background:
    linear-gradient(90deg, rgba(33,16,10,0.6) 0%, rgba(33,16,10,0.3) 40%, transparent 70%),
    linear-gradient(180deg, rgba(63,37,16,0.05), rgba(33,16,10,0.4));
}
.page-adventures .detail-hero--title-right .detail-hero__overlay {
  background:
    linear-gradient(270deg, rgba(33,16,10,0.6) 0%, rgba(33,16,10,0.3) 40%, transparent 70%),
    linear-gradient(180deg, rgba(63,37,16,0.05), rgba(33,16,10,0.4));
}
/* Overlay gradients — top positions darken the top */
.page-adventures .detail-hero--title-top:not(.detail-hero--title-left):not(.detail-hero--title-right) .detail-hero__overlay {
  background:
    linear-gradient(180deg, rgba(33,16,10,0.55) 0%, rgba(33,16,10,0.2) 40%, transparent 60%),
    radial-gradient(circle at center, transparent 0 36%, rgba(38,19,8,0.15) 100%);
}
.page-adventures .detail-hero--title-top.detail-hero--title-left .detail-hero__overlay {
  background:
    linear-gradient(90deg, rgba(33,16,10,0.6) 0%, rgba(33,16,10,0.3) 40%, transparent 70%),
    linear-gradient(180deg, rgba(33,16,10,0.5) 0%, transparent 50%);
}
.page-adventures .detail-hero--title-top.detail-hero--title-right .detail-hero__overlay {
  background:
    linear-gradient(270deg, rgba(33,16,10,0.6) 0%, rgba(33,16,10,0.3) 40%, transparent 70%),
    linear-gradient(180deg, rgba(33,16,10,0.5) 0%, transparent 50%);
}
/* Overlay gradients — middle positions use a vignette */
.page-adventures .detail-hero--title-middle:not(.detail-hero--title-left):not(.detail-hero--title-right) .detail-hero__overlay {
  background:
    radial-gradient(circle at center, rgba(33,16,10,0.45) 0%, transparent 70%);
}
.page-adventures .detail-hero--title-middle.detail-hero--title-left .detail-hero__overlay {
  background:
    linear-gradient(90deg, rgba(33,16,10,0.6) 0%, rgba(33,16,10,0.3) 40%, transparent 70%);
}
.page-adventures .detail-hero--title-middle.detail-hero--title-right .detail-hero__overlay {
  background:
    linear-gradient(270deg, rgba(33,16,10,0.6) 0%, rgba(33,16,10,0.3) 40%, transparent 70%);
}
.page-adventures .detail-hero__content h1 {
  margin: 12px 0 14px; font-weight: 400; line-height: 1.04;
  font-size: clamp(3rem, 6vw, 5.6rem);
  text-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.page-adventures .detail-hero__content p {
  margin: 0 auto; width: min(680px, 100%); font-size: clamp(1.2rem, 2vw, 1.8rem);
}
.page-adventures .quick-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px;
}
.page-adventures .quick-badge {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(38, 20, 10, 0.2);
  color: #fff7ea;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
}

/* --- Detail Sections --- */
.page-adventures .detail-section,
.page-adventures .detail-grid-section,
.page-adventures .detail-closeout {
  position: relative; padding: 72px 32px;
  background:
    radial-gradient(circle at 16% 22%, rgba(255,255,255,0.28), transparent 16%),
    repeating-linear-gradient(90deg, rgba(122, 88, 51, 0.025) 0 2px, transparent 2px 122px),
    repeating-linear-gradient(180deg, rgba(122, 88, 51, 0.025) 0 2px, transparent 2px 112px),
    linear-gradient(180deg, #f1dfb8 0%, #ead3a6 100%);
}
.page-adventures .detail-grid-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 80% 16%, rgba(255,255,255,0.24), transparent 16%),
    linear-gradient(180deg, #fbf3df 0%, #efe0bb 100%);
}

/* Gallery section decoration */
.page-adventures .detail-grid-section--gallery { padding-top: 94px; padding-bottom: 94px; }
.page-adventures .detail-grid-section--gallery::before,
.page-adventures .detail-grid-section--gallery::after {
  content: ""; position: absolute; left: 32px; right: 32px; height: 12px;
  background: linear-gradient(180deg, rgba(84, 47, 18, 0.92), rgba(117, 70, 32, 0.96));
  border-top: 1px solid rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(66, 39, 17, 0.4);
  box-shadow: 0 6px 14px rgba(72, 47, 24, 0.12);
}
.page-adventures .detail-grid-section--gallery::before { top: 28px; }
.page-adventures .detail-grid-section--gallery::after { bottom: 28px; }
.page-adventures .detail-grid-section--gallery .detail-section__heading { margin-bottom: 36px; }

/* Detail section heading */
.page-adventures .detail-section--placard { padding-top: 58px; }
.page-adventures .detail-section__heading {
  max-width: 780px; margin: 0 auto 28px; text-align: center;
}
.page-adventures .detail-section__heading h2 {
  margin: 12px 0 14px; font-weight: 400; line-height: 1.06;
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.page-adventures .detail-section__heading p {
  margin: 0; color: var(--adv-ink-soft); font-size: 1.2rem;
}

/* Placard (At a Glance) */
.page-adventures .placard {
  max-width: 1160px; margin: 0 auto; position: relative; padding: 28px;
  background:
    linear-gradient(180deg, rgba(247,236,212,0.98), rgba(236,222,190,0.96)),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.26), transparent 18%);
  border: 1px solid var(--adv-line);
  box-shadow: 0 18px 30px var(--adv-shadow);
}
.page-adventures .placard::before {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(199, 156, 106, 0.24); pointer-events: none;
}
.page-adventures .placard-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 24px;
}
.page-adventures .placard-grid div {
  padding: 6px 0 12px;
  border-bottom: 1px dashed rgba(118, 81, 43, 0.22);
}
.page-adventures .placard-grid strong {
  display: block;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-color, var(--adv-brown));
}
.page-adventures .placard-grid span {
  display: block; margin-top: 4px; font-size: 1.08rem; line-height: 1.45;
}

/* --- Session Gallery (Masonry) --- */
.page-adventures .session-gallery {
  display: block; max-width: 1160px; margin: 0 auto;
  column-count: 3; column-gap: 24px;
}
.page-adventures .gallery-item {
  min-height: 0; break-inside: avoid; margin-bottom: 24px;
}
.page-adventures .session-gallery .route-photo {
  min-height: 0;
  border-radius: 28px;
  border: 1px solid rgba(120, 84, 45, 0.16);
  box-shadow: 0 18px 30px rgba(69, 43, 21, 0.16), inset 0 0 0 1px rgba(255, 248, 233, 0.28);
  overflow: hidden;
}
.page-adventures .session-gallery .route-photo img {
  width: 100%; height: auto;
  filter: sepia(0.16) saturate(0.88) contrast(0.96);
}

/* PHP Gallery Override — style the dynamic gallery to match */
.page-adventures .gallery-grid {
  display: block;
  column-count: 3;
  column-gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.page-adventures .gallery-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(120, 84, 45, 0.16);
  box-shadow: 0 18px 30px rgba(69, 43, 21, 0.16), inset 0 0 0 1px rgba(255, 248, 233, 0.28);
}
.page-adventures .gallery-grid .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(0.16) saturate(0.88) contrast(0.96);
}

/* Gallery note cards */
.page-adventures .gallery-note {
  display: flex; flex-direction: column; justify-content: center; min-height: 100%;
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(255,249,233,0.98), rgba(244,232,203,0.96));
  border: 1px solid var(--adv-line);
  box-shadow: 0 18px 30px var(--adv-shadow);
}
.page-adventures .gallery-note h3 { margin: 0 0 12px; font-size: 1.7rem; font-weight: 400; }
.page-adventures .gallery-note p {
  color: var(--adv-ink-soft); font-size: 1.12rem; line-height: 1.6; margin: 0;
}

/* --- Planning Cards (Triptych) --- */
.page-adventures .details-triptych {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px; align-items: start; max-width: 1100px; margin: 0 auto;
}
.page-adventures .planning-card {
  padding: 28px; height: 100%;
  background: linear-gradient(180deg, rgba(255,249,233,0.98), rgba(244,232,203,0.96));
  border: 1px solid var(--adv-line);
  box-shadow: 0 18px 30px var(--adv-shadow);
}
.page-adventures .planning-card h3 {
  margin: 0 0 10px; font-size: 1.55rem; font-weight: 400;
}
.page-adventures .planning-card p {
  margin: 0; color: var(--adv-ink-soft); font-size: 1.08rem; line-height: 1.6;
}
.page-adventures .planning-card ul {
  margin: 14px 0 0; padding-left: 18px;
  color: var(--adv-ink-soft); line-height: 1.7; font-size: 1.05rem;
}

/* --- Detail Closeout --- */
.page-adventures .detail-closeout__card {
  max-width: 940px; margin: 0 auto; padding: 40px 28px; text-align: center;
  background: linear-gradient(180deg, rgba(255,249,233,0.98), rgba(244,232,203,0.96));
  border: 1px solid var(--adv-line);
  box-shadow: 0 18px 30px var(--adv-shadow);
}
.page-adventures .detail-closeout__card h2 {
  margin: 12px 0 14px; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.06;
}
.page-adventures .detail-closeout__card p {
  margin: 0 auto; width: min(620px, 100%);
  color: var(--adv-ink-soft); font-size: 1.12rem; line-height: 1.6;
}

/* --- Trail Map Navigation --- */
.page-adventures .trail-map-nav {
  position: relative;
  background:
    url('../images/adventures/graphics/texture-parchment.png') repeat,
    linear-gradient(180deg, var(--adv-paper-light), var(--adv-paper));
  border-bottom: 2px solid rgba(120, 84, 45, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px var(--adv-shadow);
  overflow: visible;
}
.page-adventures .trail-map-nav__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 24px 18px;
  position: relative;
}
.page-adventures .trail-map-nav__hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--adv-ink-soft);
  margin-right: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
  border-right: 1px dashed var(--adv-line);
  transition: color 0.2s;
}
.page-adventures .trail-map-nav__hub:hover {
  color: var(--adv-gold);
}
.page-adventures .trail-map-nav__hub.is-active {
  color: var(--adv-gold);
}
.page-adventures .trail-map-nav__hub-icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, filter 0.25s;
}
.page-adventures .trail-map-nav__hub-icon img {
  width: 100%; height: 100%; object-fit: contain;
}
.page-adventures .trail-map-nav__hub:hover .trail-map-nav__hub-icon {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.page-adventures .trail-map-nav__hub.is-active .trail-map-nav__hub-icon {
  transform: scale(1.12);
}
.page-adventures .trail-map-nav__hub-label {
  display: none;
}
.page-adventures .trail-map-nav__stops {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  position: relative;
}
.page-adventures .trail-map-nav__stops::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  height: 0;
  border-top: 2px dashed var(--adv-gold);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.page-adventures .trail-map-nav__stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--adv-ink-soft);
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}
.page-adventures .trail-map-nav__stop:hover {
  transform: translateY(-3px);
  color: var(--adv-ink);
}
.page-adventures .trail-map-nav__stop:focus-visible {
  outline: 2px solid var(--adv-gold);
  outline-offset: 6px;
  border-radius: 4px;
}
.page-adventures .trail-map-nav__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 20%, #f8f0e0);
  border: 2px solid rgba(120, 84, 45, 0.35);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px var(--adv-shadow);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.page-adventures .trail-map-nav__stop:hover .trail-map-nav__icon-wrap {
  border-color: var(--adv-gold);
  box-shadow: 0 4px 14px rgba(199, 156, 99, 0.3);
}
.page-adventures .trail-map-nav__icon-wrap svg {
  width: 30px; height: 30px;
  opacity: 1;
  stroke: #5a3e20;
}
.page-adventures .trail-map-nav__name {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 6px;
  text-align: center; line-height: 1.3; max-width: 90px;
}
/* Trail accent colors */
.page-adventures [data-trail="minnewaska"] { --trail-color: #6d7a52; }
.page-adventures [data-trail="schunnemunk"] { --trail-color: #b8673c; }
.page-adventures [data-trail="delaware"] { --trail-color: #7f8174; }
.page-adventures [data-trail="ramapo"] { --trail-color: #6d4723; }
/* Active state */
.page-adventures .trail-map-nav__stop.is-active .trail-map-nav__icon-wrap {
  border-color: var(--trail-color);
  border-width: 3px;
  transform: scale(1.12);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(109, 71, 35, 0.1), 0 4px 14px var(--adv-shadow);
}
.page-adventures .trail-map-nav__stop.is-active .trail-map-nav__name {
  color: var(--trail-color);
  font-weight: 600;
}
.page-adventures .trail-map-nav__stop.is-active {
  transform: none;
  cursor: default;
}

/* --- Adventures Responsive --- */
@media (max-width: 1100px) {
  .page-adventures .mission-card,
  .page-adventures .field-notes {
    width: 100%; margin-left: 0;
  }
  .page-adventures .field-notes { margin-top: 24px; transform: none; }
  .page-adventures .details-triptych,
  .page-adventures .placard-grid {
    grid-template-columns: 1fr;
  }
  .page-adventures .session-gallery,
  .page-adventures .gallery-grid { column-count: 2; }
  .page-adventures .dossier-grid { grid-template-columns: 1fr; }
  .page-adventures .map-route,
  .page-adventures .map-compass { display: none; }
}
@media (max-width: 820px) {
  .page-adventures .trail-map-nav__stops { gap: clamp(16px, 4vw, 28px); }
  .page-adventures .trail-map-nav__icon-wrap { width: 44px; height: 44px; }
  .page-adventures .trail-map-nav__icon-wrap svg { width: 24px; height: 24px; }
  .page-adventures .trail-map-nav__name { font-size: 0.6rem; }
  .page-adventures .trail-map-nav__hub-label { display: none; }
  .page-adventures .trail-map-nav__stops::before { top: 22px; }
  .page-adventures .hero-content h1 { font-size: clamp(2.7rem, 12vw, 4.3rem); }
  .page-adventures .hero-field-note { transform: none; }
  .page-adventures .paper-stage,
  .page-adventures .dossier-section,
  .page-adventures .main-page-closeout,
  .page-adventures .detail-section,
  .page-adventures .detail-grid-section,
  .page-adventures .detail-closeout {
    padding: 52px 18px;
  }
  .page-adventures .mission-card { padding: 56px 22px 36px; }
  .page-adventures .mission-mountains { width: 110px; left: 22px; }
  .page-adventures .mini-map { width: 118px; right: 8px; bottom: 6px; }
  .page-adventures .field-notes { padding: 28px 22px 24px; }
  .page-adventures .field-ribbon {
    position: relative; top: auto; left: auto; margin-bottom: 14px;
  }
  .page-adventures .field-notes p { margin-top: 0; }
  .page-adventures .dossier-grid { grid-template-columns: 1fr; }
  .page-adventures .detail-hero__content h1 { font-size: clamp(2.7rem, 12vw, 4.3rem); }
  .page-adventures .quick-badge { width: 100%; text-align: center; }
  .page-adventures .detail-grid-section--gallery { padding-top: 84px; padding-bottom: 84px; }
  .page-adventures .detail-grid-section--gallery::before,
  .page-adventures .detail-grid-section--gallery::after { left: 18px; right: 18px; }
  .page-adventures .session-gallery,
  .page-adventures .gallery-grid { column-count: 1; }
  .page-adventures .background-compass,
  .page-adventures .background-map-right,
  .page-adventures .background-map-bottom { opacity: 0.12; }
  .page-adventures .adventure-why-guide { padding: 56px 18px 40px; }
  .page-adventures .adventure-why-guide__heading { margin-bottom: 24px; }
  .page-adventures .adventure-why-guide__grid {
    min-height: auto; display: grid; grid-template-columns: 1fr; gap: 20px;
  }
  .page-adventures .expedition-panel--graphic-scenic,
  .page-adventures .expedition-panel--graphic-relaxed,
  .page-adventures .expedition-panel--graphic-golden,
  .page-adventures .expedition-panel--graphic-guarantee {
    position: relative; top: auto; left: auto; right: auto; width: 100%; transform: none;
  }
}
@media (max-width: 540px) {
  .page-adventures .trail-map-nav__strip {
    padding: 14px 12px 10px;
    gap: 0;
  }
  .page-adventures .trail-map-nav__hub {
    margin-right: 10px; padding-right: 10px;
  }
  .page-adventures .trail-map-nav__stops { gap: clamp(10px, 3vw, 20px); }
  .page-adventures .trail-map-nav__stops::before { display: none; }
  .page-adventures .trail-map-nav__icon-wrap { width: 40px; height: 40px; }
  .page-adventures .trail-map-nav__icon-wrap svg { width: 22px; height: 22px; }
  .page-adventures .trail-map-nav__name { font-size: 0.55rem; letter-spacing: 0.04em; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .gallery-grid {
    columns: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portfolio-nav-inner {
    justify-content: flex-start;
  }

  .portfolio-nav-link {
    padding: 14px 14px;
    font-size: 12px;
  }

  .dock-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .section-padding {
    padding: 40px 0;
  }

  h2 {
    font-size: 26px !important;
  }

  .gallery-grid {
    columns: 1;
    column-gap: 8px;
  }

  .pricing-hero h1 {
    font-size: 48px;
  }

  .badges img {
    height: 60px;
  }
}

/* ===== RESPONSIVE: LARGER SCREENS ===== */
@media (min-width: 1536px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .gallery-showcase h2,
  .how-it-works h2,
  .testimonials h2,
  .faq h2,
  .schedule-cta h2,
  .difference h2 {
    font-size: 36px;
  }
}
