/* Refined public experience — aligned with the v0.7.3 booklet */
:root {
  --max: 1360px;
  --shadow: 0 24px 70px rgba(20, 33, 43, 0.12);
  --soft-shadow: 0 12px 34px rgba(20, 33, 43, 0.08);
}

html,
body {
  min-height: 100%;
  background: var(--cream);
}

body {
  background-image:
    radial-gradient(circle at 8% 7%, rgba(200, 164, 93, 0.08), transparent 27rem),
    radial-gradient(circle at 92% 36%, rgba(27, 85, 81, 0.055), transparent 30rem);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(200, 164, 93, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  background: rgba(245, 240, 230, 0.96);
}

.nav-shell {
  height: 74px;
  padding-inline: 18px;
  gap: 18px;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand b {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.desktop-nav {
  gap: 19px;
}

.nav-link {
  padding: 26px 0 21px;
  font-size: 12.5px;
}

.hero {
  padding: 24px 18px 38px;
}

.hero-grid {
  min-height: 610px;
  grid-template-columns: 0.92fr 1.08fr;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-photo,
.page-hero-img,
.story-photo,
.why-card {
  position: relative;
}

.hero-photo img,
.page-hero-img img,
.story-photo img,
.why-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  padding: 50px 50px 48px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 1;
  margin: 0 0 20px;
}

.hero p {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
}

.hero .cta-row {
  margin-top: 24px;
}

.btn {
  min-height: 44px;
  padding: 12px 19px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 33, 43, 0.16);
}

.section {
  padding: 52px 18px;
}

.section.tight {
  padding-top: 26px;
  padding-bottom: 34px;
}

.section-head {
  margin-bottom: 28px;
}

.section h2,
.story-copy h2,
.route-intro h2 {
  margin: 8px 0 14px;
  font-size: clamp(32px, 3.8vw, 54px);
}

.lead {
  margin-bottom: 0;
  font-size: clamp(17px, 1.35vw, 19px);
}

.three-steps {
  box-shadow: var(--soft-shadow);
}

.step {
  min-height: 285px;
  padding: 28px;
  position: relative;
}

.step h3 {
  margin-top: 18px;
}

.step p {
  margin-bottom: 12px;
}

.step .phase {
  margin-top: 8px;
}

.step-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.step-link::after {
  content: " →";
  color: var(--gold);
}

.journey-ribbon {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.journey-ribbon div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #536166;
  font-size: 13px;
  box-shadow: 0 7px 18px rgba(20, 33, 43, 0.04);
}

.journey-ribbon b {
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.why-camino {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 18px 58px;
}

.why-camino .section-head {
  max-width: 900px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  gap: 12px;
}

.why-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 23px;
  box-shadow: var(--soft-shadow);
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.why-card:hover img {
  transform: scale(1.025);
}

.why-card .caption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 14px 15px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, rgba(20, 33, 43, 0.93), rgba(18, 63, 61, 0.87));
  backdrop-filter: blur(8px);
}

.why-card .caption b {
  display: block;
  margin-bottom: 3px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.why-card .caption span {
  font-size: 12px;
  color: #dfe9e6;
}

.story {
  padding: 26px 18px 58px;
}

.story-photo {
  min-height: 600px;
}

.story-copy {
  padding: 44px 48px;
}

.quote {
  margin: 20px 0;
  font-size: clamp(22px, 2.2vw, 28px);
}

.route-teaser {
  padding: 0 18px 62px;
}

.route-shell {
  padding: 43px 46px;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
}

.route-shell h2 {
  margin-top: 8px;
}

.page-hero {
  padding: 28px 18px;
}

.page-hero-shell {
  min-height: 420px;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
}

.page-hero-copy {
  padding: 44px 46px;
}

.page-hero p {
  font-size: 17px;
}

.page-hero-img {
  overflow: hidden;
}

.page-hero-img img {
  min-width: 100%;
  min-height: 100%;
}

.page-hero-img.upright-bridge img,
img.upright-bridge {
  transform: rotate(90deg) scale(1.45);
}

.panel {
  padding: 27px;
  box-shadow: 0 8px 22px rgba(20, 33, 43, 0.04);
}

.detail-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.detail-card,
.experience-card {
  padding: 25px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.detail-card b,
.experience-card b {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.detail-card p,
.experience-card p {
  margin: 0;
  color: #5a666b;
}

.trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-strip div {
  padding: 22px;
  background: var(--paper);
  border-block: 1px solid var(--line);
  color: #566369;
  font-size: 13px;
}

.trust-strip div:first-child {
  border-left: 1px solid var(--line);
  border-radius: 18px 0 0 18px;
}

.trust-strip div:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 18px 18px 0;
}

.trust-strip b {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
}

.audience-cta {
  max-width: var(--max);
  margin: 20px auto 68px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.audience-card {
  min-height: 310px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 25px;
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: var(--soft-shadow);
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(20, 33, 43, 0.98), rgba(18, 63, 61, 0.88));
}

.audience-card.partner::before {
  background: linear-gradient(150deg, rgba(18, 63, 61, 0.98), rgba(27, 85, 81, 0.86));
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.audience-card h2 {
  margin: 6px 0 10px;
  color: #fff;
  font-size: clamp(31px, 3vw, 45px);
}

.audience-card p {
  max-width: 520px;
  margin: 0 0 20px;
  color: #dbe5e2;
}

.audience-card .btn {
  align-self: flex-start;
}

.route-intro {
  padding: 43px 18px 28px;
}

.route-intro img {
  height: 450px;
}

.stages {
  padding: 14px 18px 58px;
}

.stage-row {
  padding: 17px 8px;
}

.milestone img {
  height: 265px;
}

.frances {
  padding: 0 18px 62px;
}

.frances-shell img {
  min-height: 520px;
}

.contact-card {
  margin: 26px auto 64px;
  padding: 46px;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
}

.site-footer {
  margin-top: 0;
}

.footer-grid {
  padding: 44px 18px;
}

.footer-logo {
  width: 58px;
}

.is-embedded .hero,
.is-embedded .page-hero,
.is-embedded .section,
.is-embedded .story,
.is-embedded .route-teaser,
.is-embedded .route-intro,
.is-embedded .stages,
.is-embedded .frances,
.is-embedded .journey-ribbon,
.is-embedded .why-camino,
.is-embedded .trust-strip,
.is-embedded .audience-cta {
  max-width: none;
}

@media (max-width: 1050px) {
  .journey-ribbon,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .why-card:last-child {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .detail-grid,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy,
  .page-hero-copy {
    padding: 42px 34px;
  }

  .page-hero-img.upright-bridge img,
  img.upright-bridge {
    transform: rotate(90deg) scale(1.85);
  }
}

@media (max-width: 650px) {
  .nav-shell {
    height: 68px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .hero,
  .page-hero,
  .section,
  .story,
  .route-teaser,
  .route-intro,
  .stages,
  .frances,
  .journey-ribbon,
  .why-camino,
  .trust-strip,
  .audience-cta {
    padding-left: 11px;
    padding-right: 11px;
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .hero-grid,
  .page-hero-shell {
    border-radius: 20px;
  }

  .hero-copy,
  .page-hero-copy {
    padding: 31px 22px 33px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .hero-photo {
    min-height: 360px;
  }

  .journey-ribbon,
  .trust-strip,
  .why-grid,
  .detail-grid,
  .experience-grid,
  .audience-cta {
    grid-template-columns: 1fr;
  }

  .journey-ribbon div {
    min-height: 56px;
  }

  .why-card,
  .why-card:last-child {
    grid-column: auto;
    min-height: 390px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .step {
    min-height: 0;
    padding: 24px;
  }

  .story {
    padding-top: 14px;
    padding-bottom: 46px;
  }

  .story-photo {
    min-height: 390px;
  }

  .story-copy {
    padding: 29px 23px;
  }

  .route-shell {
    padding: 29px 22px;
  }

  .trust-strip div,
  .trust-strip div:first-child,
  .trust-strip div:last-child {
    border: 1px solid var(--line);
    border-radius: 15px;
  }

  .audience-cta {
    margin-bottom: 50px;
  }

  .audience-card {
    min-height: 275px;
    padding: 31px 24px;
  }

  .page-hero {
    padding-top: 15px;
  }

  .page-hero-img {
    min-height: 340px;
  }

  .page-hero-img.upright-bridge img,
  img.upright-bridge {
    transform: rotate(90deg) scale(2.05);
  }

  .route-intro img {
    height: 360px;
  }

  .contact-card {
    margin: 20px 11px 48px;
    padding: 34px 22px;
  }

  .footer-grid {
    padding: 38px 16px;
  }
}


/* 2026-08-17 microfixes */
.contact-card .cta-row.center{justify-content:center;margin-top:28px}
.contact-card .btn.light{border-color:rgba(255,255,255,.38);color:#fff;background:transparent}
.panel.dark .callout{color:var(--navy)}
.panel.dark .callout .lang-no,.panel.dark .callout .lang-en{color:var(--navy)}

.via-charge{display:flex;align-items:center;gap:22px;text-align:left}
.via-charge .charge-copy{display:grid;gap:4px}
.via-charge .charge-copy strong{font-size:18px;color:var(--teal)}
.via-charge .charge-copy>span{font-size:14px;line-height:1.45;color:var(--navy)}
.charge-battery{position:relative;display:grid;grid-template-columns:repeat(5,14px);gap:3px;padding:5px;border:3px solid var(--teal);border-radius:9px;min-width:max-content}
.charge-battery:after{content:'';position:absolute;right:-7px;top:50%;width:5px;height:16px;transform:translateY(-50%);background:var(--teal);border-radius:0 3px 3px 0}
.charge-battery span{width:14px;height:24px;border-radius:3px;background:#dfe8e3}
.charge-battery span:nth-child(-n+4){background:var(--gold)}
@media(max-width:650px){.via-charge{gap:14px;padding:18px}.charge-battery{grid-template-columns:repeat(5,10px);gap:2px;padding:4px}.charge-battery span{width:10px;height:20px}.via-charge .charge-copy strong{font-size:16px}.via-charge .charge-copy>span{font-size:12px}}


/* 2026-08-18 mobile parity QA */
@media (max-width: 650px) {
  .mobile-nav { padding-left: 14px; padding-right: 14px; }
  .mobile-nav .nav-link { min-height: 44px; display: flex; align-items: center; }
  .panel { padding: 24px 20px; }
  .contact-card .cta-row.center { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .contact-card .cta-row.center .btn { width: 100%; min-height: 46px; }
  .via-charge { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: start; text-align: left; }
  .charge-battery { width: max-content; }
  .image-tile .caption { left: 9px; right: 9px; bottom: 9px; padding: 7px 9px; border-radius: 10px; font-size: 10.5px; line-height: 1.35; background: rgba(20,33,43,.62); backdrop-filter: blur(3px); }
  .photo-note { right: 9px; bottom: 9px; padding: 5px 8px; font-size: 9px; background: rgba(20,33,43,.62); }
  .image-tile { min-height: 360px; }
}
@media (max-width: 380px) {
  .hero-copy, .page-hero-copy { padding-left: 19px; padding-right: 19px; }
  .section, .story, .route-teaser, .route-intro, .stages, .frances, .journey-ribbon, .why-camino, .trust-strip, .audience-cta { padding-left: 8px; padding-right: 8px; }
  .contact-card { margin-left: 8px; margin-right: 8px; padding-left: 18px; padding-right: 18px; }
}
