:root {
  --bg: #edf3f2;
  --paper: #fbfcfb;
  --paper-soft: #f3f7f6;
  --text: #1e2a32;
  --muted: #5f7078;
  --line: #d7e0de;
  --accent: #4f7171;
  --accent-dark: #2f5257;
  --deep: #15222b;
  --shadow: 0 18px 42px rgba(20, 28, 35, 0.09);
  --shadow-soft: 0 12px 28px rgba(20, 28, 35, 0.06);
  --radius: 22px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 113, 113, 0.10), transparent 24%),
    radial-gradient(circle at top right, rgba(50, 85, 104, 0.09), transparent 30%),
    linear-gradient(180deg, #f4f8f7 0%, #edf3f2 52%, #e8efee 100%);
  line-height: 1.65;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 2rem));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(244, 249, 248, 0.84);
  border-bottom: 1px solid rgba(215, 224, 222, 0.82);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.brand-lockup-main {
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.8rem;
  background: var(--deep);
  color: #eef5f4;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(20, 28, 35, 0.12);
}

.brand-name {
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.9);
}

.nav::-webkit-scrollbar {
  display: none;
}

.hero-wrap {
  padding: 1.5rem 0 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(19, 28, 33, 0.76) 0%, rgba(19, 28, 33, 0.48) 42%, rgba(19, 28, 33, 0.2) 72%),
    linear-gradient(180deg, rgba(19, 28, 33, 0.12), rgba(19, 28, 33, 0.58)),
    url("images/damian-hero.jpg") center 32% / cover no-repeat;
  box-shadow: 0 24px 60px rgba(16, 26, 34, 0.15);
}

.hero-join {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(19, 28, 33, 0.72) 0%, rgba(19, 28, 33, 0.42) 42%, rgba(19, 28, 33, 0.16) 72%),
    linear-gradient(180deg, rgba(19, 28, 33, 0.16), rgba(19, 28, 33, 0.48)),
    url("images/damian-mountains.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(16, 26, 34, 0), rgba(16, 26, 34, 0.26));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 3rem;
  padding: 4rem 3.5rem;
}

.hero-inner-wide {
  grid-template-columns: minmax(0, 1fr) 380px;
  min-height: 620px;
}

.hero-copy {
  max-width: 640px;
  align-self: center;
  padding-bottom: 0.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.62;
  max-width: 46ch;
  margin: 1rem 0 1.55rem;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: #fff;
  color: var(--deep);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-card {
  justify-self: end;
  align-self: center;
  width: 380px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 1.7rem 1.75rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.hero-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.04rem;
  line-height: 1.2;
}

.hero-card p {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.56;
}

.hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-list li {
  list-style: none;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.36;
  letter-spacing: 0;
}

.hero-list li:last-child {
  padding-bottom: 0;
}

.section {
  padding: 1.35rem 0 0.65rem;
}

.section-soft {
  padding-top: 1.55rem;
}

.section-intro {
  margin-bottom: 1.55rem;
}

.section h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-intro p {
  color: var(--muted);
  max-width: 68ch;
}

.kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.about-grid,
.info-grid,
.social-grid,
.regions-grid,
.operators-grid {
  display: grid;
  gap: 1rem;
}

.about-grid,
.info-grid,
.social-grid {
  grid-template-columns: 1fr 1fr;
}

.about-card,
.info-card,
.social-card,
.region-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.about-card p + p,
.info-card p + p {
  margin-top: 1rem;
}

.about-card p,
.info-card p,
.region-card p,
.social-card p,
.operator-card p {
  margin: 0;
  color: var(--muted);
}

.about-card h3,
.info-card h3,
.region-card h3,
.social-card h3,
.operator-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  align-items: stretch;
}

.story-image-shell,
.story-copy {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.story-image-shell {
  min-height: 520px;
  background: #d8d0c4;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 248, 243, 0.98));
  border: 1px solid var(--line);
  padding: 1.75rem;
}

.story-copy h2,
.hero-card h3 {
  font-family: inherit;
}

.story-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.story-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.story-point {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(246, 242, 235, 0.9);
  border: 1px solid rgba(230, 221, 208, 0.95);
}

.story-point strong,
.story-point span {
  display: block;
}

.story-point strong {
  margin-bottom: 0.25rem;
  font-size: 0.96rem;
}

.story-point span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.regions-grid {
  grid-template-columns: repeat(3, 1fr);
}

.region-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}

.region-image {
  margin: -1.5rem -1.5rem 1rem;
  height: 180px;
  border-radius: 26px 26px 18px 18px;
  background-size: cover;
  background-position: center;
}

.region-image-uk {
  background-image:
    linear-gradient(180deg, rgba(22, 30, 38, 0.12), rgba(22, 30, 38, 0.3)),
    url("images/damian-wales.jpg");
}

.region-image-europe {
  background-image:
    linear-gradient(180deg, rgba(22, 30, 38, 0.12), rgba(22, 30, 38, 0.3)),
    url("images/europe-amalfi-placeholder.jpeg");
  background-position: center;
}

.region-image-east {
  background-image:
    linear-gradient(180deg, rgba(22, 30, 38, 0.12), rgba(22, 30, 38, 0.3)),
    url("images/scandinavia-trollstigen-placeholder.jpeg");
  background-position: center;
}

.operators-grid {
  grid-template-columns: repeat(3, 1fr);
}

.operator-card,
.social-card,
.info-card[href],
.info-card.treadright-link {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}


.operator-card:hover,
.social-card:hover,
.info-card[href]:hover,
.info-card.treadright-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 28, 35, 0.08);
  border-color: #d7cec1;
}


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

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-quiet-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(230, 221, 208, 0.92);
  border-radius: 24px;
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.social-quiet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(20, 28, 35, 0.08);
  border-color: #d7cec1;
}

.social-quiet-card:focus,
.social-quiet-card:active {
  outline: none;
}

.social-quiet-card:focus-visible {
  outline: none;
  border-color: #cdbb9f;
  box-shadow: 0 0 0 3px rgba(126, 104, 70, 0.16);
}

.social-quiet-card h3 {
  margin: 0 0 0.18rem;
  font-size: 1rem;
}

.social-quiet-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(243, 238, 230, 0.95);
  color: var(--deep);
  flex: 0 0 auto;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-quiet-card:nth-child(2) .social-icon svg {
  fill: currentColor;
  stroke: none;
}

.social-quiet-card-instagram .social-icon {
  background: linear-gradient(135deg, rgba(255, 220, 128, 0.45), rgba(238, 101, 121, 0.28) 55%, rgba(136, 90, 241, 0.22));
  color: #c24f74;
}

.social-quiet-card-whatsapp .social-icon {
  background: rgba(219, 244, 228, 0.98);
  color: #1f9d60;
}

.social-quiet-card-contact .social-icon {
  background: rgba(224, 234, 237, 0.95);
  color: #4c6670;
}

.social-arrow {
  margin-left: auto;
  color: var(--accent-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.subtle-link {
  display: block;
  margin-top: 0.9rem;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.95rem;
  width: fit-content;
  transition: color 0.18s ease, transform 0.18s ease;
}

.subtle-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

#upcoming-tours .info-grid {
  align-items: stretch;
}

#upcoming-tours .info-card {
  min-height: 100%;
}

#upcoming-tours .info-card[href] {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,248,243,0.96));
}

#upcoming-tours .info-card[href] .subtle-link {
  margin-top: 1.05rem;
}

#upcoming-tours .info-card[href]:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,244,237,0.98));
}

#upcoming-tours .info-card:not([href]) {
  background: rgba(255, 255, 255, 0.78);
  border-style: dashed;
}

.signup-summary {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: 20px;
}

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

.signup-summary p + p {
  margin-top: 0.55rem;
}

.signup-shell {
  display: block;
}

.kit-embed-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.kit-embed-shell .formkit-form {
  margin: 0 auto;
}

.kit-embed-shell .formkit-header,
.kit-embed-shell .formkit-subheader {
  display: none;
}

.kit-embed-shell .formkit-form[data-uid="850c8af291"] [data-style="minimal"] {
  padding-top: 28px;
}

.kit-embed-shell .formkit-form[data-uid="850c8af291"] .formkit-fields {
  margin-top: 0;
}

.kit-placeholder {
  min-height: 320px;
  border: 1.5px dashed #ccbfae;
  border-radius: 22px;
  background: rgba(246, 242, 235, 0.72);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.kit-placeholder p {
  max-width: 34ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card-tall img {
  height: 100%;
  min-height: 420px;
  object-position: center;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.gallery-card-tall img {
  object-position: center;
}

.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-inner,
  .story-feature,
  .about-grid,
  .regions-grid,
  .operators-grid,
  .info-grid,
  .social-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 2rem;
    gap: 1.5rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    justify-self: start;
    align-self: start;
    width: 100%;
    max-width: 420px;
  }

  .story-image-shell {
    min-height: 360px;
  }

  .gallery-card-tall img,
  .gallery-card img {
    height: 300px;
    min-height: 0;
  }

}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .brand-mark {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.72rem;
    font-size: 1.28rem;
  }

  .topbar {
    overflow: hidden;
  }

  .nav {
    width: calc(100% + 1rem);
    margin-right: -1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.15rem 1rem 0.45rem 0;
    gap: 0.6rem;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 30px), transparent 100%);
  }

  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.62rem 0.92rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(230, 221, 208, 0.92);
    box-shadow: 0 8px 18px rgba(20, 28, 35, 0.04);
  }

  .hero-wrap {
    padding-top: 1rem;
  }

  h1 {
    max-width: 7.8ch;
  }

  .hero-card {
    width: 100%;
  }

  .hero-sub {
    max-width: 34ch;
  }

  .kit-placeholder {
    min-height: 260px;
    padding: 1.5rem;
  }

  .story-copy {
    padding: 1.35rem;
  }

  .region-image {
    height: 160px;
  }

  .gallery-card img,
  .gallery-card-tall img {
    height: 250px;
  }
}
