:root {
  --bg: #f4ecde;
  --paper: rgba(255, 251, 245, 0.72);
  --ink: #17211d;
  --muted: rgba(23, 33, 29, 0.66);
  --line: rgba(23, 33, 29, 0.12);
  --deep: #20312a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(193, 117, 72, 0.16), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(111, 133, 125, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f2e8 0%, #ece0cf 100%);
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.page {
  width: 100%;
  margin: 0;
  padding: 0 0 60px;
}

.frame {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 28px;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 14px 34px;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  box-shadow: 0 8px 24px rgba(27, 36, 31, 0.06);
}

.topbar-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  position: relative;
}

.brandlock,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 20px;
}

.brandlock {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(23, 33, 29, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(27, 36, 31, 0.08);
}

.footer-brand {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.symbol {
  width: 38px;
  flex: 0 0 38px;
  display: block;
}

.symbol img,
.wordmark img {
  width: 100%;
  display: block;
}

.wordmark {
  width: 168px;
  display: block;
}

.nav,
.footer-nav {
  display: flex;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav {
  gap: 34px;
  color: rgba(23, 33, 29, 0.62);
}

.footer-nav {
  gap: 30px;
  color: rgba(255, 255, 255, 0.66);
}

.nav a,
.footer-nav a {
  white-space: nowrap;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(23, 33, 29, 0.68);
  line-height: 1;
}

.action::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
  opacity: 0.8;
}

.curated-note {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 14px;
  color: rgba(23, 33, 29, 0.58);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.curated-note span {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(23, 33, 29, 0.22);
}

.curated-note strong {
  font: inherit;
  font-weight: 600;
}

.footer-band {
  width: 100%;
  margin-top: 28px;
  background: rgba(27, 39, 34, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 30px rgba(38, 30, 24, 0.08);
}

.footer {
  margin-top: 28px;
  padding: 18px 34px 22px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.84);
}

.footer-top {
  max-width: 1480px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer-note {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.62;
  max-width: 520px;
}

.footer-meta {
  justify-self: end;
  text-align: right;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 6;
  display: grid;
  gap: 14px;
  width: min(420px, calc(100% - 24px));
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 18px 44px rgba(43, 37, 31, 0.12);
  backdrop-filter: blur(12px);
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 29, 0.12);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-btn.primary {
  background: linear-gradient(180deg, #22322b 0%, #1b2822 100%);
  border-color: rgba(23, 33, 29, 0.1);
  color: rgba(255, 255, 255, 0.94);
}

.home-page .hero-wrap {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.home-page .hero {
  position: relative;
  min-height: 790px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(66, 54, 40, 0.12);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  animation: heroFade 24s infinite;
}

@keyframes heroFade {
  0% { opacity: 0; transform: scale(1.03); }
  6% { opacity: 1; transform: scale(1); }
  28% { opacity: 1; transform: scale(1); }
  34% { opacity: 0; transform: scale(1.015); }
  100% { opacity: 0; transform: scale(1.03); }
}

.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 26, 23, 0.02) 0%, rgba(18, 26, 23, 0.1) 34%, rgba(18, 26, 23, 0.44) 100%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 92px;
  z-index: 1;
  width: min(1480px, calc(100% - 56px));
  padding: 0 28px;
}

.hero-copy-inner {
  width: min(560px, 72%);
}

.hero h1 {
  margin: 0 0 14px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 102px);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
}

.hero p {
  margin: 0 0 22px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.62;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.cta.primary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
  border-color: rgba(255, 255, 255, 0.94);
}

.home-page .section {
  padding: 26px;
  border-radius: 34px;
  background: rgba(255, 251, 245, 0.64);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(72, 58, 44, 0.08);
  position: relative;
  z-index: 2;
}

.home-page .overlap-section {
  margin-top: -26px;
}

.home-page .cta-section {
  margin-top: 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.home-page .section h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.home-page .section .intro {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.section-link {
  color: rgba(23, 33, 29, 0.72);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.84fr;
  grid-template-rows: 186px 140px 186px 138px;
  gap: 14px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(43, 37, 31, 0.06);
  transform: translateY(0) scale(1);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.25, 1), box-shadow 0.28s ease;
}

.card:hover {
  animation: airBounce 0.42s ease-out 1;
  box-shadow: 0 22px 46px rgba(43, 37, 31, 0.11);
}

@keyframes airBounce {
  0% { transform: translateY(0) scale(1); }
  36% { transform: translateY(-8px) scale(1.006); }
  68% { transform: translateY(1px) scale(0.998); }
  100% { transform: translateY(0) scale(1); }
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 29, 0) 24%, rgba(23, 33, 29, 0.32) 100%);
  pointer-events: none;
}

.card.photo,
.card.warm {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.card.text {
  background: linear-gradient(180deg, #faf6ef, #f0e5d4);
}

.card-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.tag {
  display: inline-block;
  margin-bottom: 9px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.text .tag {
  background: rgba(23, 33, 29, 0.06);
  border-color: rgba(23, 33, 29, 0.08);
  color: rgba(23, 33, 29, 0.66);
  text-shadow: none;
}

.card h3 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 78%;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text h3 {
  color: var(--ink);
  text-shadow: none;
}

.medium h3 {
  font-size: 24px;
}

.small h3 {
  font-size: 20px;
  max-width: 86%;
}

.card-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
  max-width: 82%;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text .card-sub {
  color: rgba(23, 33, 29, 0.62);
  text-shadow: none;
}

.feature-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.center-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 18px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22322b 0%, #1b2822 100%);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 29, 0.1);
  box-shadow: 0 16px 36px rgba(41, 33, 26, 0.14);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.trust-card,
.mobile-note {
  border-radius: 24px;
  border: 1px solid var(--line);
}

.trust-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.mobile-note {
  margin-top: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.trust-card strong,
.mobile-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-card p,
.mobile-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
}

.mobile-note p {
  color: var(--muted);
  max-width: 760px;
}

.catalog-page {
  padding: 0 0 48px;
}

.catalog-page .hero-wrap {
  margin-top: -26px;
  position: relative;
  z-index: 1;
}

.catalog-hero {
  overflow: hidden;
  min-height: 360px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 18px 50px rgba(53, 46, 37, 0.1);
  position: relative;
  margin-bottom: 18px;
}

.catalog-hero-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1480px, calc(100% - 56px));
  padding: 0 28px;
  bottom: 28px;
  color: white;
}

.catalog-hero-copy-inner {
  max-width: 620px;
}

.catalog-page .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.catalog-page h1,
.catalog-page h2,
.catalog-page h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.catalog-page h1 {
  margin: 0 0 10px;
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.catalog-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: start;
}

.sidebar,
.results {
  border-radius: 30px;
  background: rgba(255, 251, 246, 0.84);
  border: 1px solid rgba(23, 33, 29, 0.1);
  box-shadow: 0 18px 50px rgba(61, 51, 40, 0.08);
}

.sidebar {
  position: sticky;
  top: 18px;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 20px;
}

.filter-title {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.04;
}

.filter-group {
  padding: 14px 0 16px;
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.filter-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.filter-group strong {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkbox-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-right: 34px;
  cursor: pointer;
}

.check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(23, 33, 29, 0.18);
  background: rgba(255, 255, 255, 0.76);
}

.check.active .box {
  background: linear-gradient(180deg, #22322b 0%, #1b2822 100%);
  border-color: rgba(27, 40, 34, 0.9);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.92);
}

.check small {
  margin-left: auto;
  color: rgba(23, 33, 29, 0.42);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.checkbox-list-tags {
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}

.range {
  display: grid;
  gap: 12px;
}

.track {
  height: 6px;
  border-radius: 999px;
  background: rgba(23, 33, 29, 0.1);
  position: relative;
}

.track::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 24%;
  top: 0;
  bottom: 0;
  border-radius: 999px;
  background: rgba(32, 49, 42, 0.78);
}

.track::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(23, 33, 29, 0.14);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.range .second {
  position: relative;
}

.range .second::after {
  content: "";
  position: absolute;
  right: 24%;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(23, 33, 29, 0.14);
  transform: translate(50%, -50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.input,
.dropdown {
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.results {
  padding: 20px;
}

.results-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.results-head h2 {
  margin: 0 0 6px;
  font-size: 38px;
  line-height: 1.04;
}

.results-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.sorts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sort {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sort.active {
  background: linear-gradient(180deg, #22322b 0%, #1b2822 100%);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(27, 40, 34, 0.9);
}

.list {
  display: grid;
  gap: 14px;
}

.row-wrap {
  position: relative;
  display: block;
}

.row-main {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.row {
  display: grid;
  gap: 16px;
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.row-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.row-heading {
  min-width: 0;
}

.row-content {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 16px;
}

.thumb {
  position: relative;
  z-index: 2;
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(23, 33, 29, 0.08);
}

.thumb.is-previewing {
  box-shadow: 0 14px 34px rgba(43, 37, 31, 0.14);
}

.row-body {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 6px 2px 4px;
}

.desc-wrap {
  position: relative;
}

.catalog-page .label {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(23, 33, 29, 0.06);
  border: 1px solid rgba(23, 33, 29, 0.08);
  color: rgba(23, 33, 29, 0.64);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.row h3 {
  margin: 0;
  font-size: 32px;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  white-space: nowrap;
}

.desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  max-width: 650px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 29, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(23, 33, 29, 0.74);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.meta {
  color: rgba(23, 33, 29, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.ai-side {
  position: relative;
  display: none;
}

.row-hover {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.desc-wrap:hover .ai-pop.desktop {
  display: block;
}

.ai-pop {
  position: absolute;
  top: 18px;
  right: 0;
  width: 340px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.96);
  border: 1px solid rgba(23, 33, 29, 0.1);
  box-shadow: 0 18px 50px rgba(39, 31, 25, 0.16);
  z-index: 7;
  display: none;
}

.ai-pop strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
}

.ai-pop p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.empty-results {
  padding: 48px 20px;
  border-radius: 26px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.empty-results h3 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.02;
}

.empty-results p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.pagebtn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.pagebtn.active {
  background: linear-gradient(180deg, #22322b 0%, #1b2822 100%);
  color: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tour-page {
  width: 100%;
  margin: 0;
  padding: 0 0 60px;
}

.tour-page .section {
  margin-top: 34px;
  position: relative;
  z-index: 3;
}

.tour-page .panel {
  border-radius: 32px;
  background: rgba(255, 251, 246, 0.84);
  border: 1px solid rgba(23, 33, 29, 0.1);
  box-shadow: 0 18px 50px rgba(61, 51, 40, 0.08);
  padding: 24px;
  margin-bottom: 18px;
  backdrop-filter: blur(12px);
}

.tour-page .hero-wrap {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #d7cab8;
  box-shadow: 0 24px 80px rgba(66, 54, 40, 0.12);
}

.tour-page .hero-stage,
.tour-page .hero-slide {
  position: absolute;
  inset: 0;
}

.tour-page .hero-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  transform: none;
  animation: none;
}

.tour-page .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 26, 23, 0.04) 0%, rgba(18, 26, 23, 0.12) 34%, rgba(18, 26, 23, 0.48) 100%);
}

.tour-page .gallery-strip {
  margin-top: 26px;
  padding: 18px 0 10px;
  background: rgba(255, 251, 246, 0.72);
  border-top: 1px solid rgba(23, 33, 29, 0.1);
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
  box-shadow: 0 18px 50px rgba(61, 51, 40, 0.08);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.tour-page .gallery-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}

.tour-page .thumb-rail {
  display: flex;
  gap: 16px;
  width: max-content;
}

.tour-page .thumb-rail .thumb {
  position: relative;
  width: clamp(260px, 28vw, 420px);
  min-width: clamp(260px, 28vw, 420px);
  min-height: 148px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 34px rgba(24, 20, 16, 0.2);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
  opacity: 0.76;
  appearance: none;
  background-color: transparent;
  scroll-snap-align: center;
}

.tour-page .thumb-rail .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 29, 0.04), rgba(23, 33, 29, 0.22));
}

.tour-page .thumb-rail .thumb:hover,
.tour-page .thumb-rail .thumb.is-active {
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(17, 13, 10, 0.28);
}

.tour-page .summary {
  display: grid;
  gap: 24px;
}

.tour-page .summary-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: end;
}

.tour-page .summary h1 {
  margin: 0;
  font-size: 58px;
  line-height: 0.94;
  max-width: 760px;
  letter-spacing: -0.03em;
}

.tour-page .summary .eyebrow {
  margin-bottom: 12px;
  background: rgba(111, 133, 125, 0.12);
  border-color: rgba(111, 133, 125, 0.16);
  color: var(--sage);
}

.tour-page .price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
  white-space: nowrap;
}

.tour-page .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22322b 0%, #1b2822 100%);
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(39, 31, 25, 0.14);
  border: 0;
}

.tour-page .description {
  display: grid;
  gap: 14px;
}

.tour-page .lead {
  margin: 0;
  max-width: 920px;
  color: rgba(23, 33, 29, 0.82);
  font-size: 21px;
  line-height: 1.58;
}

.tour-page .copy {
  display: grid;
  gap: 14px;
  max-width: 960px;
  color: rgba(23, 33, 29, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.tour-page .copy p {
  margin: 0;
}

.tour-page .route-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.tour-page .route-head h2,
.tour-page .meta-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.tour-page .route-note {
  max-width: 420px;
  color: rgba(23, 33, 29, 0.68);
  font-size: 14px;
  line-height: 1.58;
  text-align: right;
}

.tour-page .route {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 18px;
  align-items: start;
}

.tour-page .map {
  position: relative;
  min-height: 700px;
  border-radius: 30px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  overflow: hidden;
  background: rgba(255, 251, 246, 0.72);
}

.tour-page .map-frame {
  position: absolute;
  inset: 0;
}

.tour-page .map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tour-page .map-summary {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}

.tour-page .map-label {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.88);
  border: 1px solid rgba(23, 33, 29, 0.08);
  color: rgba(23, 33, 29, 0.74);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(31, 25, 19, 0.08);
}

.tour-page .map-link {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.92);
  border: 1px solid rgba(23, 33, 29, 0.1);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-page .stops {
  display: grid;
  gap: 14px;
}

.tour-page .stop {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.44);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tour-page .stop:hover,
.tour-page .stop.active {
  transform: translateY(-2px);
  border-color: rgba(23, 33, 29, 0.16);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 12px 28px rgba(39, 31, 25, 0.08);
}

.tour-page .stop-index {
  display: grid;
  place-items: center;
  width: 56px;
  min-height: 56px;
  border-radius: 999px;
  background: rgba(23, 33, 29, 0.05);
  border: 1px solid rgba(23, 33, 29, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  color: rgba(23, 33, 29, 0.84);
}

.tour-page .stop h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.tour-page .stop p {
  margin: 0;
  color: rgba(23, 33, 29, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.tour-page .meta-head {
  margin-bottom: 18px;
}

.tour-page .meta-table {
  display: grid;
  border-top: 1px solid rgba(23, 33, 29, 0.08);
}

.tour-page .meta-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.tour-page .meta-row strong {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 33, 29, 0.62);
}

.tour-page .meta-row span {
  color: rgba(23, 33, 29, 0.78);
  font-size: 15px;
  line-height: 1.58;
}

.tour-page .bottom-cta {
  display: flex;
  justify-content: center;
}

.tour-page .booking-panel {
  margin-top: 28px;
}

.tour-page .booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tour-page .booking-form label {
  display: grid;
  gap: 8px;
}

.tour-page .booking-form span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 33, 29, 0.62);
}

.tour-page .booking-form input,
.tour-page .booking-form select,
.tour-page .booking-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(23, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 16px;
  font: inherit;
  color: var(--deep);
}

.tour-page .booking-form textarea {
  min-height: 160px;
  resize: vertical;
}

.tour-page .booking-form .message-field,
.tour-page .booking-form button {
  grid-column: 1 / -1;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 23, 0.54);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.98);
  border: 1px solid rgba(23, 33, 29, 0.08);
  box-shadow: 0 28px 80px rgba(23, 18, 14, 0.22);
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  color: rgba(23, 33, 29, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-result .result-stack {
  display: grid;
  gap: 8px;
  margin: 24px 0 30px;
}

.form-result .result-stack p {
  margin: 0;
}

.mobile-filters,
.mobile-sheet-toggle,
.mobile-sheet {
  display: none;
}

@media (max-width: 1080px) {
  .home-page .hero {
    min-height: 620px;
  }

  .home-page .grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 140px 170px 140px;
  }

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

  .nav {
    gap: 18px;
  }

  .catalog-shell {
    grid-template-columns: 280px 1fr;
  }

  .row-content {
    grid-template-columns: 400px 1fr;
  }

  .row h3 {
    font-size: 28px;
  }

  .price {
    font-size: 28px;
  }

  .tour-page .hero-wrap {
    min-height: 760px;
  }

  .tour-page .summary-head .cta {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .tour-page .route {
    grid-template-columns: 1fr;
  }

  .tour-page .map {
    min-height: 460px;
  }

  .tour-page .route-note {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .catalog-page {
    padding: 0 0 34px;
  }

  .catalog-page .hero-wrap {
    margin-top: -14px;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .mobile-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 8;
    padding: 14px 14px 14px 12px;
    background: rgba(247, 241, 232, 0.92);
    border: 1px solid rgba(23, 33, 29, 0.08);
    border-left: 0;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 10px 30px rgba(27, 36, 31, 0.1);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(23, 33, 29, 0.74);
    cursor: pointer;
  }

  .mobile-sheet-toggle:checked + .mobile-filters + .mobile-sheet {
    display: block;
  }

  .mobile-sheet {
    position: fixed;
    inset: 0;
    z-index: 9;
    background: rgba(247, 241, 232, 0.98);
    overflow: hidden;
  }

  .mobile-sheet-inner {
    height: 100dvh;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    padding: 16px;
  }

  .catalog-filters-form.mobile-form {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .mobile-sheet-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  }

  .mobile-sheet-head strong {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-close {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(23, 33, 29, 0.08);
    background: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-scroll {
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 0 120px;
    display: grid;
    gap: 16px;
  }

  .mobile-group {
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  }

  .mobile-group strong {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-apply {
    position: sticky;
    bottom: 0;
    margin-top: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #22322b 0%, #1b2822 100%);
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 0;
  }

  .results {
    padding: 16px;
  }

  .results-head {
    grid-template-columns: 1fr;
  }

  .results-head h2 {
    font-size: 32px;
  }

  .row h3 {
    font-size: 26px;
  }

  .row-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: start;
  }

  .row-main {
    inset: 0 auto 0 0;
    width: calc(100% - 48px);
  }

  .catalog-hero-copy {
    width: 100%;
    padding: 0 18px;
    bottom: 22px;
  }

  .catalog-page h1 {
    font-size: 44px;
  }

  .thumb {
    min-height: 260px;
  }

  .row-header,
  .row-content {
    grid-template-columns: 1fr;
  }

  .row-header {
    gap: 8px;
  }

  .row-hover {
    display: none;
  }

  .ai-side {
    display: flex;
    padding-top: 0;
    padding-left: 6px;
    z-index: 7;
  }

  .ai-side details {
    position: relative;
  }

  .ai-side summary {
    list-style: none;
  }

  .ai-side summary::-webkit-details-marker {
    display: none;
  }

  .ai-side details[open] .ai-pop.mobile {
    display: block;
  }

  .ai-pop {
    left: 0;
    right: auto;
    top: 42px;
    width: min(320px, calc(100vw - 44px));
  }

  .price {
    font-size: 28px;
  }

  .tour-page .hero-wrap {
    min-height: 560px;
    margin-top: -18px;
  }

  .tour-page .gallery-strip {
    margin-top: 18px;
    padding: 14px 0 8px;
  }

  .tour-page .thumb-rail {
    gap: 12px;
  }

  .tour-page .thumb-rail .thumb {
    width: 68vw;
    min-width: 68vw;
    min-height: 112px;
  }

  .tour-page .panel {
    padding: 18px;
    border-radius: 26px;
  }

  .tour-page .summary-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tour-page .summary h1 {
    font-size: 40px;
  }

  .tour-page .price {
    font-size: 30px;
  }

  .tour-page .lead {
    font-size: 17px;
  }

  .tour-page .route-head {
    display: grid;
    gap: 10px;
  }

  .tour-page .route-head h2,
  .tour-page .meta-head h2 {
    font-size: 32px;
  }

  .tour-page .map {
    min-height: 360px;
  }

  .tour-page .stop {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .tour-page .stop-index {
    width: 48px;
    min-height: 48px;
    font-size: 21px;
  }

  .tour-page .stop h3 {
    font-size: 22px;
  }

  .tour-page .meta-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tour-page .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-dialog {
    width: min(720px, calc(100vw - 24px));
    padding: 24px 18px 18px;
  }
}

@media (max-width: 760px) {
  .page {
    padding: 18px 16px 34px;
  }

  .frame {
    padding: 0;
  }

  .topbar {
    padding: 10px 16px;
  }

  .topbar-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .curated-note {
    display: none;
  }

  .nav,
  .footer-nav {
    display: none;
  }

  .brandlock {
    gap: 10px;
    padding: 9px 10px;
    max-width: 100%;
  }

  .symbol {
    width: 30px;
    flex-basis: 30px;
  }

  .wordmark {
    width: 130px;
  }

  .home-page .hero-wrap {
    margin-top: -18px;
  }

  .home-page .hero {
    min-height: 560px;
  }

  .hero-copy {
    left: 50%;
    right: auto;
    width: 100%;
    padding: 0 18px;
    bottom: 64px;
  }

  .hero-copy-inner {
    width: 100%;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 15px;
  }

  .home-page .section {
    padding: 18px;
    border-radius: 26px;
  }

  .home-page .overlap-section {
    margin-top: -8px;
  }

  .home-page .cta-section {
    margin-top: 14px;
  }

  .footer {
    padding: 18px 16px 24px;
  }

  .footer-top,
  .footer-note {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }

  .section-head {
    display: block;
    margin-bottom: 18px;
  }

  .home-page .section h2 {
    font-size: 30px;
  }

  .home-page .grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .card {
    min-height: 260px;
  }

  .card.medium {
    min-height: 216px;
  }

  .card.small {
    min-height: 190px;
  }

  .card h3 {
    font-size: 30px;
    max-width: 82%;
  }

  .card.medium h3 {
    font-size: 26px;
  }

  .card.small h3 {
    font-size: 22px;
  }

  .card-sub {
    max-width: 82%;
  }

  .cookie-bar {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 12px;
  }
}
