/* TicketPfofi — shared styles */
:root {
  --paper: #f4f0e8;
  --paper-deep: #e9e2d5;
  --paper-light: #fbf9f4;
  --ink: #17201e;
  --ink-soft: #53605c;
  --green: #173f38;
  --green-2: #23574e;
  --green-light: #dce8df;
  --wine: #713d43;
  --amber: #d5a64a;
  --line: rgba(23, 32, 30, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --white: #fffdf9;
  --error: #a52d2d;
  --success: #1d6648;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 55px rgba(23, 32, 30, 0.11);
  --shadow-soft: 0 10px 30px rgba(23, 32, 30, 0.07);
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  color: var(--white);
  background: var(--wine);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 82px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

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

.top-note {
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.top-note__inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
}

.top-note p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.top-note__dot {
  width: 6px;
  height: 6px;
  background: #8db6a1;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(141, 182, 161, 0.12);
}

.top-note__aside {
  display: none !important;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(244, 240, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  overflow: hidden;
  color: var(--paper-light);
  background: var(--green);
  border-radius: 50%;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand__text small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 12px;
  place-content: center;
  gap: 5px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle > span:not(.sr-only) {
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: 112px 0 auto;
  display: grid;
  padding: 22px 18px 26px;
  gap: 3px;
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.primary-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-nav > a:not(.button) {
  min-height: 48px;
  padding: 12px 5px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-cta {
  margin-top: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.76rem;
}

.button--primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 25px rgba(23, 63, 56, 0.2);
}

.button--primary:hover {
  background: var(--green-2);
  box-shadow: 0 12px 30px rgba(23, 63, 56, 0.25);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--green);
}

.button--light {
  color: var(--ink);
  background: var(--paper-light);
}

.button--light:hover {
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button--ghost:hover {
  background: var(--paper-deep);
}

.button--full {
  width: 100%;
}

.text-link,
.card-link {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 0;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition), gap var(--transition);
}

.text-link:hover,
.card-link:hover {
  gap: 13px;
  color: var(--wine);
}

.text-link--light {
  color: var(--white);
}

.eyebrow {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow span {
  display: inline-block;
}

.eyebrow--light {
  color: #c9dcd3;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 74px;
}

.hero::before {
  position: absolute;
  top: 4%;
  left: -160px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(113, 61, 67, 0.1), transparent 67%);
  content: "";
  pointer-events: none;
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: 52px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 23px;
  font-family: var(--serif);
  font-size: clamp(3rem, 14vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero h1 em,
.feature-panel h2 em,
.request-copy h2 em {
  color: var(--wine);
  font-weight: 400;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 24px;
}

.hero__benefits {
  display: flex;
  margin: 30px 0 19px;
  padding: 0;
  flex-wrap: wrap;
  gap: 11px 20px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__benefits span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--green);
  background: var(--green-light);
  border-radius: 50%;
  font-size: 0.64rem;
}

.disclaimer {
  max-width: 650px;
  margin-bottom: 0;
  color: #69716e;
  font-size: 0.68rem;
  line-height: 1.55;
}

.hero__visual {
  position: relative;
  max-width: 580px;
  margin-inline: auto;
  padding: 12px 16px 30px;
}

.hero__visual::before {
  position: absolute;
  inset: 3% 0 7% 13%;
  z-index: -1;
  background: var(--paper-deep);
  border-radius: 52% 48% 30% 70% / 45% 34% 66% 55%;
  content: "";
  transform: rotate(-3deg);
}

.hero-card--main {
  position: relative;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 130px 130px 20px 20px;
  box-shadow: var(--shadow);
}

.hero-card__image {
  overflow: hidden;
  aspect-ratio: 1 / 0.88;
  background: #c8d4c9;
}

.hero-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card__caption {
  display: flex;
  min-height: 96px;
  padding: 19px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-card__caption > div {
  display: grid;
  gap: 4px;
}

.card-kicker,
.location {
  margin-bottom: 0;
  color: var(--wine);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card__caption strong {
  font-family: var(--serif);
  font-size: 1.22rem;
}

.round-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  padding: 11px 14px;
  align-items: center;
  gap: 10px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.floating-note > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.8rem;
}

.floating-note p {
  margin: 0;
  font-size: 0.66rem;
  line-height: 1.35;
}

.floating-note--top {
  top: 19%;
  right: -5px;
}

.floating-note--bottom {
  bottom: 5px;
  left: -2px;
}

.floating-note--bottom > .floating-note__icon {
  color: var(--ink);
  background: var(--amber);
}

.trust-bar {
  color: var(--white);
  background: var(--green);
}

.trust-bar__grid {
  display: grid;
}

.trust-item {
  display: grid;
  padding: 25px 2px;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line-light);
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-item__number {
  color: #95b0a5;
  font-family: var(--serif);
  font-size: 0.75rem;
}

.trust-item h2 {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
  line-height: 1.5;
}

.section--feature {
  padding-block: 0;
  color: var(--white);
  background: var(--ink);
}

.feature-panel {
  display: grid;
  width: 100%;
  max-width: none;
}

.feature-panel__visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.feature-panel__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 32, 30, 0.35), transparent 45%);
  content: "";
}

.feature-panel__visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.feature-stamp {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 98px;
  height: 98px;
  place-content: center;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
}

.feature-stamp span {
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1;
}

.feature-stamp small {
  margin-top: 4px;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-panel__content {
  padding: 58px 20px 64px;
}

.feature-panel h2 {
  margin-bottom: 23px;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 10vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.feature-panel h2 em {
  color: #d8aa8d;
}

.feature-panel__intro {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  line-height: 1.75;
}

.feature-options {
  display: grid;
  margin-block: 29px;
  border-top: 1px solid var(--line-light);
}

.feature-options > div {
  display: grid;
  padding: 16px 0;
  align-items: center;
  grid-template-columns: 36px 1fr;
  gap: 9px;
  border-bottom: 1px solid var(--line-light);
}

.feature-options > div > span {
  color: #c4d9cf;
  font-size: 1.35rem;
}

.feature-options p {
  display: grid;
  margin: 0;
  gap: 2px;
}

.feature-options strong {
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 600;
}

.feature-options small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

.feature-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.feature-note {
  max-width: 660px;
  margin: 24px 0 0;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.53);
  border-left: 2px solid rgba(213, 166, 74, 0.7);
  font-size: 0.67rem;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  margin-bottom: 38px;
  gap: 18px;
}

.section-heading h2,
.faq__intro h2,
.feedback h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 10vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 1;
}

.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ticket-grid {
  display: grid;
  gap: 16px;
}

.ticket-card {
  padding: 24px 22px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ticket-card h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.ticket-card > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.seo-note {
  margin-top: 22px;
  padding: 24px 22px;
  background: var(--paper-deep);
  border-radius: var(--radius);
}

.seo-note h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.seo-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.experience-grid {
  display: grid;
  gap: 20px;
}

.experience-block + .experience-block {
  margin-top: 34px;
}

.collection-label {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-card {
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 7px 20px rgba(23, 32, 30, 0.035);
  transition: transform var(--transition), box-shadow var(--transition);
}

.experience-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.experience-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
}

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

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

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(23, 32, 30, 0.12);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.experience-card__body {
  display: grid;
  padding: 21px 19px 19px;
  gap: 15px;
}

.experience-card__body > div {
  display: grid;
  gap: 5px;
}

.experience-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.experience-card__body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.6;
}

.card-link {
  width: max-content;
  min-height: 38px;
  padding-block: 4px;
  font-size: 0.69rem;
}

.process {
  background: var(--paper-light);
  border-block: 1px solid var(--line);
}

.section-heading--center {
  text-align: left;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
  counter-reset: none;
}

.process-card {
  position: relative;
  padding: 27px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-card__number {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.process-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 25px 0 20px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.05rem;
}

.process-card__icon .fi::before {
  color: currentColor;
}

.process-card h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.process-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.process__note {
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: center;
}

.city-guide {
  color: var(--white);
  background: var(--wine);
}

.city-guide__grid {
  display: grid;
  gap: 50px;
}

.city-guide__intro h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 10vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.99;
}

.city-guide__intro > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.city-guide__cards {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.guide-card {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line-light);
}

.guide-card__index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--wine);
  background: #e1b48e;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 700;
}

.guide-card h3 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
}

.guide-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  line-height: 1.55;
}

.request-section {
  position: relative;
  overflow: hidden;
}

.request-section::after {
  position: absolute;
  right: -170px;
  bottom: -180px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(35, 87, 78, 0.1), transparent 68%);
  content: "";
  pointer-events: none;
}

.request-shell {
  display: grid;
  align-items: start;
  gap: 44px;
}

.request-copy h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 11vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.request-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-card {
  display: grid;
  margin-top: 30px;
  padding: 20px;
  gap: 4px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.contact-card__label {
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  width: fit-content;
  font-family: var(--serif);
  font-size: 0.96rem;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.63rem;
}

.request-form {
  position: relative;
  z-index: 1;
  padding: 24px 19px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.demo-badge {
  display: grid;
  margin-bottom: 24px;
  padding: 12px 13px;
  align-items: center;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: #34423e;
  background: #e7eee9;
  border-radius: 10px;
}

.demo-badge > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 700;
}

.demo-badge p {
  margin: 0;
  font-size: 0.66rem;
  line-height: 1.45;
}

.form-grid,
.feedback-form {
  display: grid;
  gap: 17px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.field > label,
.field legend {
  padding: 0;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.optional {
  color: var(--ink-soft);
  font-size: 0.61rem;
  font-weight: 500;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid rgba(23, 32, 30, 0.22);
  border-radius: 9px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a918f;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(23, 32, 30, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 63, 56, 0.12);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(165, 45, 45, 0.66);
}

.choice-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 7px;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.choice-row label {
  position: relative;
  cursor: pointer;
}

.choice-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-row span {
  display: grid;
  min-height: 44px;
  padding: 10px 8px;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.65rem;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.choice-row input:checked + span {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.choice-row input:focus-visible + span {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.consent {
  display: grid;
  padding: 2px 0 9px;
  align-items: start;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status:not(:empty) {
  margin-top: 14px;
  padding: 11px 13px;
  background: #e5f0e9;
  border: 1px solid rgba(29, 102, 72, 0.2);
  border-radius: 8px;
}

.noscript-note {
  margin: 12px 0 0;
  padding: 10px;
  color: var(--error);
  background: #f7e7e5;
  border-radius: 8px;
  font-size: 0.7rem;
}

.faq {
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.faq__grid {
  display: grid;
  gap: 42px;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 410px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: flex;
  min-height: 70px;
  padding: 19px 48px 19px 2px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq summary span,
.faq summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform var(--transition);
}

.faq summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq details[open] summary span::after {
  transform: rotate(0deg);
}

.faq details > p {
  max-width: 700px;
  margin: -4px 0 20px;
  padding-right: 34px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.7;
}

.feedback {
  color: var(--white);
  background: var(--green);
}

.feedback__shell {
  display: grid;
  gap: 38px;
}

.feedback h2 {
  margin-bottom: 17px;
}

.feedback__shell > div > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}

.feedback-form {
  padding: 22px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.feedback-form .field label {
  color: rgba(255, 255, 255, 0.85);
}

.consent--light {
  color: rgba(255, 255, 255, 0.7);
}

.consent--light input {
  accent-color: var(--amber);
}

.feedback-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.form-status--light {
  color: #dff4e8;
}

.form-status--light:not(:empty) {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.footer-main {
  display: grid;
  padding-block: 58px 42px;
  gap: 35px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__mark {
  color: var(--ink);
  background: var(--amber);
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.53);
}

.footer-brand > p {
  max-width: 380px;
  margin: 20px 0 16px;
  font-size: 0.78rem;
}

.prototype-label {
  display: inline-flex;
  padding: 6px 9px;
  color: #d5e7dc;
  background: rgba(122, 173, 145, 0.12);
  border: 1px solid rgba(151, 195, 172, 0.18);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact p {
  margin: 6px 0 0;
  font-size: 0.72rem;
}

.footer-contact small {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  display: grid;
  padding-block: 19px 23px;
  gap: 5px;
  border-top: 1px solid var(--line-light);
  font-size: 0.6rem;
}

.footer-bottom a {
  color: inherit;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  padding: 17px;
  gap: 13px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid rgba(23, 32, 30, 0.18);
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(10, 20, 17, 0.22);
  backdrop-filter: blur(16px);
}

.cookie-banner__icon {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

/* Legal pages */
.legal-hero {
  padding-block: 70px 55px;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  margin: 0 0 22px;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  opacity: 0.55;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.legal-hero h1 {
  max-width: 760px;
}

.legal-hero__intro {
  max-width: 690px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-meta {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(23, 63, 56, 0.08);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 750;
}

.legal-layout {
  display: grid;
  padding-block: 58px 82px;
  gap: 36px;
}

.legal-nav {
  padding: 18px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-nav h2 {
  margin-bottom: 11px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-nav ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 4px;
  list-style: none;
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.legal-content {
  max-width: 790px;
}

.legal-callout {
  margin-bottom: 35px;
  padding: 18px 20px;
  color: #31443e;
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.76rem;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-content section {
  scroll-margin-top: 115px;
  padding-block: 8px 26px;
}

.legal-content h2 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 20px 0 8px;
  font-size: 0.86rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--green);
  font-weight: 700;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-block: 18px;
}

.legal-table {
  width: 100%;
  min-width: 570px;
  border-collapse: collapse;
  font-size: 0.72rem;
}

.legal-table th,
.legal-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--paper-deep);
  font-weight: 750;
}

.legal-table td {
  color: var(--ink-soft);
  background: var(--paper-light);
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: reveal-up 650ms cubic-bezier(.2, .7, .2, 1) both;
}

.reveal--delay {
  animation-delay: 100ms;
}

@media (min-width: 520px) {
  .container {
    width: min(calc(100% - 52px), var(--container));
  }

  .hero-card__caption {
    padding-inline: 25px;
  }

  .experience-grid,
  .process-grid,
  .ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-form,
  .feedback-form {
    padding: 28px;
  }

  .form-grid,
  .feedback-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field--full,
  .feedback-form__footer,
  .feedback-form > .consent {
    grid-column: 1 / -1;
  }

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

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cookie-banner {
    right: 22px;
    bottom: 22px;
    left: auto;
    width: min(500px, calc(100% - 44px));
    grid-template-columns: 42px 1fr;
  }

  .cookie-banner__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--white);
    background: var(--wine);
    border-radius: 50%;
  }

  .cookie-banner__actions {
    grid-column: 2;
  }
}

@media (min-width: 760px) {
  .section {
    padding-block: 105px;
  }

  .top-note__inner {
    justify-content: space-between;
  }

  .top-note__aside {
    display: flex !important;
    color: rgba(255, 255, 255, 0.5);
  }

  .hero {
    padding-top: 85px;
    padding-bottom: 95px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.8fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.1vw, 6.25rem);
  }

  .hero__visual {
    width: 100%;
    padding-inline: 0;
  }

  .floating-note--top {
    right: -20px;
  }

  .floating-note--bottom {
    left: -25px;
  }

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

  .trust-item {
    padding: 30px 24px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .trust-item:first-child {
    padding-left: 0;
  }

  .trust-item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .feature-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .feature-panel__visual,
  .feature-panel__visual img {
    min-height: 720px;
  }

  .feature-panel__content {
    display: flex;
    padding: 74px clamp(38px, 6vw, 90px);
    flex-direction: column;
    justify-content: center;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    align-items: end;
  }

  .section-heading--center {
    display: block;
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .section-heading--center .eyebrow {
    justify-content: center;
  }

  .section-heading--center > p {
    margin: 14px auto 0;
  }

  .experience-block + .experience-block {
    margin-top: 48px;
  }

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

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

  .experience-card {
    grid-column: span 2;
  }

  .experience-card--wide {
    grid-column: span 3;
  }

  .experience-card--wide .experience-card__image {
    aspect-ratio: 16 / 10;
  }

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

  .process-card {
    min-height: 285px;
    padding: 30px;
  }

  .city-guide__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
    align-items: center;
    gap: 9vw;
  }

  .request-shell {
    grid-template-columns: minmax(0, 0.76fr) minmax(480px, 1fr);
    gap: 7vw;
  }

  .request-copy {
    position: sticky;
    top: 125px;
  }

  .faq__grid {
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1fr);
    gap: 8vw;
  }

  .faq__intro {
    position: sticky;
    top: 125px;
    align-self: start;
  }

  .feedback__shell {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
    align-items: start;
    gap: 7vw;
  }

  .footer-main {
    grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(120px, 0.65fr));
    gap: 44px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
  }

  .legal-layout {
    grid-template-columns: 215px minmax(0, 790px);
    align-items: start;
    gap: 8vw;
  }

  .legal-nav {
    position: sticky;
    top: 110px;
  }
}

@media (min-width: 980px) {
  body.nav-open {
    overflow: auto;
  }

  .header-inner {
    min-height: 82px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    padding: 0;
    align-items: center;
    gap: clamp(17px, 2.1vw, 31px);
    background: transparent;
    border: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-nav > a:not(.button) {
    position: relative;
    min-height: 44px;
    padding: 12px 0;
    border: 0;
    font-size: 0.72rem;
  }

  .primary-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
  }

  .primary-nav > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-cta {
    margin-top: 0;
  }

  .feature-panel__visual,
  .feature-panel__visual img {
    min-height: 760px;
  }

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

  .feature-options > div {
    padding: 14px 15px;
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .feature-options > div:first-child {
    padding-left: 0;
  }

  .feature-options > div:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (min-width: 1240px) {
  .feature-panel__visual,
  .feature-panel__visual img {
    min-height: 800px;
  }

  .feature-panel__content {
    padding-right: max(60px, calc((100vw - 1200px) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
