:root {
  --bg: #fbf5ec;
  --bg-strong: #f1decb;
  --paper: #fffaf4;
  --ink: #1f1a14;
  --muted: #5f564d;
  --line: rgba(31, 26, 20, 0.12);
  --brown: #8b5e3c;
  --green: #a7c39d;
  --yellow: #f3cc63;
  --olive: #2d3212;
  --shadow: 0 18px 50px rgba(31, 26, 20, 0.09);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1200px;
  --nav-h: 68px;
  --body: "Plus Jakarta Sans", sans-serif;
  --display: "DM Serif Display", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  padding-bottom: 78px;
}

img,
iframe {
  max-width: 100%;
  display: block;
  border: 0;
}

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3,
strong,
.price-chip,
.button,
.nav-link,
.nav-cta,
.mobile-link,
.mobile-cta {
  color: var(--ink);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section-pad {
  padding: 100px 0;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(243, 227, 207, 0.52), rgba(255, 250, 244, 0.9));
}

.dark-slice {
  background: var(--olive);
  color: #faf4eb;
}

.dark-slice p,
.dark-slice h2,
.dark-slice h3,
.dark-slice .eyebrow,
.dark-slice li,
.dark-slice span,
.dark-slice strong {
  color: #faf4eb;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brown);
  margin-bottom: 14px;
  font-weight: 700;
}

.lead {
  font-size: 1.05rem;
  max-width: 700px;
}

.section-head,
.gallery-preview-head {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.section-copy {
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 245, 236, 0.84);
  border-bottom: 1px solid rgba(31, 26, 20, 0.07);
}

.nav-shell {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.brandmark img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(31, 26, 20, 0.08);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 700;
  opacity: 0.72;
}

.nav-link.current,
.nav-link:hover {
  opacity: 1;
}

.nav-cta,
.button,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav-cta,
.button-solid,
.mobile-cta {
  background: var(--ink);
  color: #fff2e4;
  box-shadow: var(--shadow);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.nav-cta:hover,
.button:hover,
.mobile-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  display: grid;
  gap: 10px;
  padding: 16px 0 18px;
}

.mobile-link,
.mobile-cta {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-weight: 700;
}

.mobile-action-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(28, 24, 19, 0.94);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.mobile-action-bar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff7ec;
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.hero,
.page-hero {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(243, 204, 99, 0.34), transparent 32%),
    radial-gradient(circle at bottom left, rgba(167, 195, 157, 0.36), transparent 30%),
    linear-gradient(180deg, #fbf6ee, #f3e3cf);
}

.hero-grid,
.page-hero-grid,
.story-split,
.location-cta-grid,
.hours-grid,
.getting-there-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual,
.page-hero-photo {
  position: relative;
}

.hero-main-photo img,
.page-hero-photo img,
.story-photo img,
.showcase-photo img,
.texture-image img,
.location-map iframe,
.extras-photo img,
.hours-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-main-photo img,
.page-hero-photo img,
.story-photo img {
  aspect-ratio: 0.95;
}

.frame-tilt {
  transform: rotate(-2deg);
}

.glass-panel {
  position: absolute;
  right: -18px;
  bottom: -28px;
  display: grid;
  gap: 14px;
  width: min(330px, 82%);
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(31, 26, 20, 0.08);
  box-shadow: var(--shadow);
}

.glass-panel div {
  display: grid;
  gap: 4px;
}

.glass-panel strong {
  font-size: 1.35rem;
  font-family: var(--display);
  font-weight: 400;
}

.trust-grid,
.process-grid,
.values-grid,
.contact-card-grid,
.team-photos,
.category-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.trust-card,
.process-card,
.value-card,
.contact-card,
.ribbon-card {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  align-content: start;
}

.trust-card img,
.process-card img,
.value-card img,
.ribbon-card img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border-radius: 16px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.showcase-row.reverse .showcase-photo {
  order: 2;
}

.showcase-row.reverse .showcase-copy {
  order: 1;
}

.showcase-photo img {
  aspect-ratio: 1.08;
}

.showcase-copy {
  display: grid;
  gap: 16px;
  padding: 12px 0;
}

.count-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  font-weight: 800;
}

.price-chip {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(243, 204, 99, 0.4);
  font-weight: 800;
}

.full-bleed-photo,
.full-story-image {
  position: relative;
  min-height: 82vh;
}

.texture-image img,
.full-story-image img {
  width: 100%;
  min-height: 82vh;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.texture-overlay,
.full-story-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(17, 14, 10, 0.7), rgba(17, 14, 10, 0.16));
}

.texture-copy,
.overlay-callout {
  max-width: 560px;
  display: grid;
  gap: 16px;
}

.texture-copy h2,
.texture-copy p,
.texture-copy .eyebrow,
.overlay-callout h2,
.overlay-callout .eyebrow {
  color: #fff8ef;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: #fff6e8;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 246, 232, 0.52);
  padding-bottom: 2px;
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(31, 26, 20, 0.1);
}

blockquote {
  margin: 0;
  font-size: 1.03rem;
  color: var(--ink);
}

.process-card span,
.route-card span {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brown);
}

.gallery-preview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 16px;
  grid-auto-rows: 220px;
}

.gallery-preview-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-large {
  grid-row: span 2;
}

.location-map iframe {
  min-height: 100%;
  height: 100%;
  min-height: 460px;
}

.detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sticky-tabs {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(251, 245, 236, 0.96);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0;
}

.tabs-row a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 0.92rem;
}

.catalog-grid,
.bundle-grid,
.dual-catalog-grid,
.getting-there-cards,
.big-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-card,
.bundle-card,
.wide-menu-card,
.route-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.catalog-card img,
.bundle-card img,
.wide-menu-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.catalog-card-copy,
.bundle-card-copy,
.wide-menu-copy {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.price-board,
.comparison-panel,
.hours-card {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.board-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.price-table {
  display: grid;
  gap: 12px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 26, 20, 0.08);
  font-weight: 700;
}

.comparison-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(31, 26, 20, 0.04);
  display: grid;
  gap: 12px;
}

.compare-card ul {
  margin: 0;
  padding-left: 18px;
}

.extras-layout,
.dual-catalog {
  display: grid;
  gap: 26px;
}

.extras-layout {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.extras-list {
  display: grid;
  gap: 18px;
}

.extras-list article {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
}

.masonry-grid {
  columns: 3 280px;
  column-gap: 18px;
}

.masonry-item {
  break-inside: avoid;
  margin: 0 0 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.masonry-wide img {
  min-height: 360px;
}

.masonry-item figcaption {
  padding: 16px 18px 18px;
  display: grid;
  gap: 6px;
}

.masonry-item figcaption span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--brown);
  font-weight: 700;
}

.crop-top {
  object-position: top center;
}

.crop-bottom {
  object-position: bottom center;
}

.crop-left {
  object-position: left center;
}

.crop-right {
  object-position: right center;
}

.contain {
  object-fit: contain !important;
  background: #293112;
  padding: 24px;
}

.cover-dark {
  background: #293112;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 800;
}

.filter-button.active {
  background: var(--ink);
  color: #fff7ed;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 84px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(139, 94, 60, 0.22);
}

.timeline-item {
  display: grid;
  grid-template-columns: 78px 28px 1fr;
  gap: 16px;
  align-items: start;
}

.year {
  font-weight: 800;
  color: var(--brown);
  padding-top: 4px;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid #fffaf3;
  box-shadow: 0 0 0 4px rgba(243, 204, 99, 0.18);
  margin-top: 6px;
}

.timeline-copy {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.team-photos figure {
  margin: 0;
  display: grid;
  gap: 12px;
}

.team-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.map-section iframe {
  width: 100%;
  min-height: 520px;
}

.hours-grid,
.getting-there-grid {
  grid-template-columns: 1fr 1fr;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(31, 26, 20, 0.08);
}

.hours-table th {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brown);
}

.contact-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 16px;
}

.big-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: rgba(11, 10, 8, 0.9);
  z-index: 70;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 980px);
  max-height: 78vh;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.lightbox p {
  color: #fff8ef;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.site-footer {
  padding: 80px 0 110px;
  background: #1b1712;
  color: #f7efe3;
}

.site-footer p,
.site-footer h3,
.site-footer a,
.site-footer span {
  color: #f7efe3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 480px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .page-hero-grid,
  .story-split,
  .location-cta-grid,
  .hours-grid,
  .getting-there-grid,
  .showcase-row,
  .extras-layout,
  .comparison-panel,
  .gallery-cta-strip {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse .showcase-photo,
  .showcase-row.reverse .showcase-copy {
    order: initial;
  }

  .glass-panel {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .trust-grid,
  .process-grid,
  .values-grid,
  .contact-card-grid,
  .team-photos,
  .category-ribbon,
  .catalog-grid,
  .bundle-grid,
  .dual-catalog-grid,
  .getting-there-cards,
  .big-cards,
  .testimonial-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .preview-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .hero,
  .page-hero {
    padding: 72px 0 56px;
  }

  .hero-notes,
  .gallery-preview-head {
    display: grid;
  }

  .trust-grid,
  .process-grid,
  .values-grid,
  .contact-card-grid,
  .team-photos,
  .category-ribbon,
  .catalog-grid,
  .bundle-grid,
  .dual-catalog-grid,
  .getting-there-cards,
  .big-cards,
  .testimonial-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .masonry-grid {
    columns: 1;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    grid-template-columns: 28px 1fr;
  }

  .year {
    grid-column: 2;
    padding-left: 0;
  }

  .timeline-dot {
    grid-row: 1 / span 2;
    margin-top: 36px;
  }

  .timeline-copy {
    grid-column: 2;
  }

  .tabs-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 14px;
  }
}
