:root {
  --bg: #e9f1ee;
  --paper: rgba(248, 252, 250, 0.9);
  --card: rgba(241, 248, 245, 0.86);
  --line: rgba(22, 69, 63, 0.12);
  --text: #163834;
  --muted: #4f6b68;
  --accent: #ff7a59;
  --accent-deep: #d64f31;
  --olive: #2f7a6d;
  --gold: #f1b64c;
  --shadow: 0 28px 60px rgba(20, 54, 49, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 89, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(47, 122, 109, 0.18), transparent 22%),
    linear-gradient(180deg, #edf5f2 0%, #e6f0ec 50%, #dce9e4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(42, 94, 87, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 94, 87, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 88%);
}

.site-shell {
  width: min(calc(100% - 10px), 1840px);
  margin: 6px auto 20px;
}

.hero,
.section,
.footer,
.stats-band {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(248, 252, 250, 0.96), rgba(226, 240, 236, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 111, 50, 0.28), transparent 68%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 122, 109, 0.18), transparent 70%);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(223, 236, 231, 0.9), rgba(206, 224, 218, 0.82));
  border: 1px solid rgba(22, 69, 63, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

.brand strong,
.section-heading h2,
.hero-copy h1,
.mini-tour strong,
.story-card h2,
.contact-panel h2 {
  font-family: "Outfit", sans-serif;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 0.95;
}

.brand-title-main {
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-title-sub {
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  font-weight: 700;
  color: #2d5f59;
  letter-spacing: -0.02em;
}

.brand-slogan {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: var(--muted);
  margin-top: 2px;
  padding-bottom: 14px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-slogan::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 100%;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M6 12 C45 20, 85 2, 127 11 S211 19, 294 9' fill='none' stroke='%23d9754c' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: 0.82;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  min-height: 146px;
  padding: 6px 10px;
  border-radius: 28px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 30px rgba(18, 59, 54, 0.14));
}

.footer-logo {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(244, 249, 246, 0.82);
  border: 1px solid rgba(22, 69, 63, 0.1);
}

.topbar-links a {
  color: #456663;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.topbar-links a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  transform: translateY(-1px);
}

.cta-inline {
  padding: 12px 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.18), rgba(241, 182, 76, 0.12)) !important;
  color: var(--accent-deep) !important;
  box-shadow: 0 10px 24px rgba(214, 79, 49, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.95fr 0.55fr;
  gap: 26px;
  margin-top: 46px;
}

.eyebrow,
.mini-title {
  margin: 0 0 10px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.96;
  max-width: 18ch;
}

.hero-text,
.section-heading p,
.benefit-grid p,
.faq-list p,
.contact-panel p,
.timeline p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 110ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #e69049);
  color: white;
  box-shadow: 0 18px 28px rgba(214, 79, 49, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.button-full {
  width: 100%;
}

.form-note {
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.hero-points li {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 69, 63, 0.08);
  font-weight: 600;
}

.hero-card,
.schedule-card,
.story-card,
.contact-panel,
.faq-list details,
.tour-card,
.benefit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  backdrop-filter: blur(8px);
}

.hero-card {
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.mini-tour {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
}

.mini-tour span,
.tour-meta span,
.price-note,
.schedule-month span,
.timeline strong {
  display: block;
}

.mini-tour span,
.tour-meta span,
.schedule-month span,
.journey-list li::marker {
  font-weight: 800;
  color: var(--accent-deep);
}

.mini-tour small {
  color: var(--muted);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 18px 0 0;
}

.stats-band div {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(248, 252, 250, 0.88);
  text-align: center;
}

.stats-band strong {
  display: block;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
}

.stats-band span {
  color: var(--muted);
}

.section {
  padding: 72px 16px 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(10, 35, 33, 0.7) 100%);
  pointer-events: none;
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #f4fffb;
  font-weight: 700;
  line-height: 1.5;
  pointer-events: none;
}

.photo-tall {
  grid-row: span 2;
  min-height: 578px;
}

.photo-wide {
  grid-column: span 2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.02;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.filter-chip {
  border: 1px solid var(--line);
  background: rgba(248, 252, 250, 0.82);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.filter-chip.is-active {
  background: linear-gradient(135deg, #1d5d55, #2f7a6d);
  color: #f5fffc;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.decision-grid article,
.contact-facts article {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(248, 252, 250, 0.84);
  box-shadow: 0 18px 40px rgba(20, 54, 49, 0.08);
}

.decision-grid strong,
.contact-facts strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
}

.decision-grid p,
.contact-facts span {
  color: var(--muted);
  line-height: 1.7;
}

.contact-facts span a {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 700;
}

.tour-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transform: translateY(0);
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(72, 42, 21, 0.12);
}

.tour-card::after {
  content: "Programi Gor";
  margin-top: 14px;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 89, 0.12);
  color: var(--accent-deep);
  font-weight: 800;
}

.tour-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 16px;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 22, 20, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 60;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  position: relative;
}

.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.lightbox-counter {
  justify-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #eefaf7;
  font-weight: 700;
}

.lightbox-figure figcaption {
  color: #eefaf7;
  text-align: center;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-prev {
  left: 26px;
}

.lightbox-next {
  right: 26px;
}

.tour-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(7, 24, 22, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 25;
}

.tour-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tour-modal-card {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(245, 252, 249, 0.98), rgba(236, 247, 243, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.tour-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 69, 63, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tour-modal-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.tour-modal-head img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

.tour-modal-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 122, 109, 0.12);
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-modal-summary h3,
.tour-modal-body h4 {
  font-family: "Outfit", sans-serif;
}

.tour-modal-summary h3 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.tour-modal-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tour-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tour-modal-badges span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent-deep);
  font-weight: 800;
}

.tour-modal-price {
  display: block;
  margin-top: 18px;
  font-size: 1.2rem;
  color: var(--accent-deep);
}

.tour-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.tour-modal-gallery-wrap {
  margin-top: 24px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
}

.tour-modal-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.tour-modal-gallery-head h4 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.tour-modal-gallery-head p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.6;
}

.tour-modal-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tour-gallery-card {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 69, 63, 0.08);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tour-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(22, 69, 63, 0.14);
}

.tour-gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.tour-gallery-card figcaption {
  padding: 10px 12px 12px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text);
}

.tour-modal-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.tour-modal-body section {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.tour-modal-body h4 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.tour-modal-body ul {
  margin: 0;
  padding-left: 18px;
}

.tour-modal-body li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.tour-card.is-hidden {
  display: none;
}

.tour-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 122, 109, 0.14);
  color: var(--olive);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tour-card h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
  font-family: "Outfit", sans-serif;
}

.tour-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tour-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.tour-meta span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.tour-route {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-note {
  margin-top: 12px;
  font-weight: 800;
  color: var(--accent-deep);
}

.tour-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 800;
}

.schedule-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px;
}

.schedule-month {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.schedule-month p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.timeline article {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #18443f, #225a52);
  color: #f2fffb;
}

.timeline p {
  color: rgba(242, 255, 251, 0.78);
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-grid article {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(248, 252, 250, 0.82);
  box-shadow: 0 18px 40px rgba(20, 54, 49, 0.08);
}

.seo-grid h3 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.seo-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.seo-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

  .benefit-grid article,
  .story-card,
  .contact-panel,
  .seo-grid article {
    padding: 24px;
  }

.benefit-grid h3 {
  margin-top: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.story-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
}

.journey-list {
  margin: 0;
  padding-left: 22px;
}

.journey-list li {
  padding-left: 6px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(22, 69, 63, 0.12);
  padding: 0 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.82);
}

.lead-form textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 8px 8px;
}

.footer-brand {
  max-width: 34ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(22, 69, 63, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.footer-note {
  max-width: 44ch;
  text-align: right;
}

.quick-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a59, #e69049);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 28px rgba(214, 79, 49, 0.24);
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-card,
  .contact-panel,
  .schedule-card,
  .timeline,
  .tour-grid,
  .photo-grid,
  .tour-modal-head,
  .tour-modal-body {
    grid-template-columns: 1fr 1fr;
  }

  .tour-grid .tour-card:last-child {
    grid-column: span 2;
  }

  .photo-tall,
  .photo-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-grid,
  .contact-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 4px, 100%);
    margin: 2px auto 12px;
  }

  .hero {
    padding: 18px 0;
    border-radius: 16px;
  }

  .topbar,
  .hero-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-grid {
    gap: 18px;
    margin-top: 32px;
  }

  .hero-card {
    width: calc(100vw - 2px);
    max-width: none;
    margin-left: calc(50% - 50vw + 1px);
    margin-right: calc(50% - 50vw + 1px);
    padding: 12px 4px 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mini-tour {
    width: 100%;
    padding: 18px 18px;
    border-radius: 20px;
    margin: 0;
  }

  .topbar,
  .topbar-links,
  .hero-actions,
  .stats-band,
  .photo-grid,
  .tour-grid,
  .tour-modal-gallery,
  .schedule-card,
  .timeline,
  .benefit-grid,
  .seo-grid,
  .decision-grid,
  .contact-facts,
  .story-card,
  .contact-panel,
  .footer,
  .hero-grid,
  .tour-modal-head,
  .tour-modal-body {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .topbar {
    align-items: flex-start;
    padding: 10px;
  }

  .topbar-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 6px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .quick-cta {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 0 18px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .brand {
    gap: 12px;
  }

  .brand-logo-shell {
    width: 168px;
    min-height: 90px;
    padding: 10px 12px;
    border-radius: 22px;
  }

  .brand small {
    font-size: 0.86rem;
  }

  .tour-modal {
    padding: 10px;
  }

  .tour-modal-card {
    padding: 18px;
    border-radius: 22px;
  }

  .tour-modal-head img {
    height: 220px;
  }

  .tour-modal-gallery-head {
    align-items: flex-start;
  }

  .lightbox {
    padding: 18px 12px;
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .tour-grid .tour-card:last-child {
    grid-column: auto;
  }

  .footer-note {
    text-align: left;
  }
}
