:root {
  --orange: #f5a623;
  --orange-deep: #e98d0b;
  --orange-pale: #fff3de;
  --ink: #181817;
  --charcoal: #24231f;
  --muted: #706f69;
  --cream: #faf8f3;
  --line: #dedbd2;
  --white: #fff;
  --radius: 24px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #eeeae2;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

.page-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  background: var(--cream);
  overflow: hidden;
}

.section-wrap {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1440px, calc(100% - 80px));
  height: 90px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.brand {
  display: flex;
  width: 232px;
  height: 58px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  opacity: 0.88;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  justify-self: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 0;
}

.nav-cta span {
  margin-left: 9px;
  color: var(--orange);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 770px;
  align-items: center;
  color: var(--white);
  background: #2b261f;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.92) 0%, rgba(21, 18, 15, 0.65) 38%, rgba(20, 17, 14, 0.1) 72%),
    linear-gradient(0deg, rgba(17, 14, 10, 0.7) 0%, transparent 35%),
    url("assets/cityaudiotour-hero.png") 57% center / cover no-repeat;
  transform: scale(1.015);
  animation: heroReveal 1.2s cubic-bezier(.2,.8,.2,1) both;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 80px));
  margin: 24px auto 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
  color: #8e6b31;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 1px;
  margin-right: 12px;
  background: var(--orange);
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--orange);
  font-family: var(--serif);
  font-weight: 500;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.79);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button svg {
  width: 23px;
  fill: currentColor;
}

.button span {
  line-height: 1.05;
}

.button small {
  display: block;
  margin-bottom: 3px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
}

.button-primary:hover {
  background: #ffb43c;
}

.button-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-glass:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.13);
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(1180px, calc(100% - 80px));
  height: 84px;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.city-ticker {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.city-ticker i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--orange);
  font-style: normal;
  animation: bob 1.8s infinite;
}

.intro {
  padding: 120px 0 105px;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(43px, 5.1vw, 70px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.intro-statement {
  padding-bottom: 7px;
}

.intro-statement p,
.section-heading > p,
.pricing-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  margin-top: 16px;
  border-bottom: 1px solid var(--ink);
  padding: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange-deep);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 85px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 20px 32px;
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  font-family: var(--serif);
  font-size: 47px;
  font-weight: 600;
  line-height: 1;
}

.stats span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cities-section {
  padding: 120px 0;
  background: #f0ede5;
}

.cities-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.cities-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 26px 0 38px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.city-selector {
  border-top: 1px solid #d0cdc4;
}

.city-selector button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid #d0cdc4;
  padding: 15px 7px 15px 2px;
  color: #8b8981;
  background: transparent;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s, padding 0.2s;
}

.city-selector button:hover,
.city-selector button.active {
  padding-left: 12px;
  color: var(--ink);
}

.city-selector button.active::before {
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.city-selector button span {
  margin-left: auto;
  color: #aaa79f;
  font-size: 9px;
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  border-radius: 250px 250px 26px 26px;
  background:
    radial-gradient(circle at 50% 38%, rgba(245, 166, 35, 0.17), transparent 39%),
    #dfdcd3;
}

.map-orbit {
  position: absolute;
  border: 1px solid rgba(40, 38, 33, 0.08);
  border-radius: 50%;
}

.orbit-one {
  top: 112px;
  left: 50%;
  width: 450px;
  height: 450px;
  transform: translateX(-50%);
}

.orbit-two {
  top: 38px;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
}

.italy-map {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 460px;
  transform: translateX(-50%);
}

.italy-shape {
  pointer-events: none;
}

.route-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 5 9;
  opacity: 0.72;
}

.map-pin {
  cursor: pointer;
}

.city-map-link {
  outline: none;
}

.city-map-link:focus .map-pin circle:first-child {
  fill: var(--orange);
  stroke: var(--white);
}

.map-pin circle:first-child {
  fill: #fff;
  stroke: var(--orange);
  stroke-width: 6px;
  transition: fill 0.2s, r 0.2s;
}

.map-pin .pulse {
  fill: transparent;
  stroke: var(--orange);
  opacity: 0;
}

.map-pin text {
  fill: #3c382f;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
}

.map-pin:hover circle:first-child,
.map-pin.active circle:first-child {
  r: 20px;
  fill: var(--orange);
  stroke: #fff;
}

.map-pin.active .pulse {
  animation: mapPulse 1.8s ease-out infinite;
}

.city-preview {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  min-height: 175px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 17px;
  padding: 24px 27px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(48, 42, 31, 0.1);
  backdrop-filter: blur(16px);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-top > span {
  color: #a06d17;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.audio-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.audio-button.playing {
  color: var(--ink);
  background: var(--orange);
}

.play-icon {
  transform: translateX(1px);
  font-size: 11px;
}

.city-preview > strong {
  display: block;
  margin: -6px 0 2px;
  font-family: var(--serif);
  font-size: 32px;
}

.city-preview > p {
  max-width: 390px;
  margin: 0;
  color: #716d64;
  font-size: 11px;
  line-height: 1.5;
}

.audio-wave {
  position: absolute;
  right: 26px;
  bottom: 23px;
  display: flex;
  height: 28px;
  align-items: center;
  gap: 3px;
}

.audio-wave i {
  width: 2px;
  height: 20%;
  border-radius: 5px;
  background: var(--orange);
}

.audio-wave i:nth-child(2n) { height: 65%; }
.audio-wave i:nth-child(3n) { height: 100%; }
.audio-wave i:nth-child(5n) { height: 42%; }
.playing + .audio-wave i,
.audio-wave.active i { animation: wave .65s ease-in-out infinite alternate; }
.audio-wave i:nth-child(2) { animation-delay: -.2s; }
.audio-wave i:nth-child(3) { animation-delay: -.4s; }
.audio-wave i:nth-child(4) { animation-delay: -.1s; }
.audio-wave i:nth-child(5) { animation-delay: -.3s; }

.features-section {
  padding: 125px 0 130px;
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 110px;
  margin-bottom: 70px;
}

.section-heading > p {
  margin-bottom: 4px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid #e3dfd6;
  border-radius: var(--radius);
  padding: 35px 38px;
  background: #f1eee7;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(37, 32, 22, 0.08);
}

.feature-number {
  position: absolute;
  top: 27px;
  left: 32px;
  color: #a3a097;
  font-size: 10px;
  font-weight: 800;
}

.feature-label {
  margin-bottom: 8px;
  color: #af7413;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-card > div:last-child > p:last-child {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-audio {
  color: var(--white);
  border-color: #262521;
  background: var(--charcoal);
}

.feature-audio .feature-number,
.feature-audio > div:last-child > p:last-child {
  color: rgba(255, 255, 255, 0.54);
}

.sound-icon {
  position: absolute;
  top: 70px;
  left: 50%;
  display: flex;
  height: 125px;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.sound-icon i {
  display: block;
  width: 10px;
  height: 42px;
  border-radius: 10px;
  background: var(--orange);
  animation: soundBars 1.4s ease-in-out infinite alternate;
}

.sound-icon i:nth-child(2) { height: 85px; animation-delay: -.3s; }
.sound-icon i:nth-child(3) { height: 120px; animation-delay: -.6s; }
.sound-icon i:nth-child(4) { height: 70px; animation-delay: -.9s; }
.sound-icon i:nth-child(5) { height: 105px; animation-delay: -.4s; }
.sound-icon i:nth-child(6) { height: 58px; animation-delay: -.7s; }
.sound-icon i:nth-child(7) { height: 28px; animation-delay: -.2s; }

.route-visual {
  position: absolute;
  top: 65px;
  right: 60px;
  left: 60px;
  height: 145px;
}

.route-visual svg {
  width: 100%;
  fill: none;
  stroke: #b5b0a4;
  stroke-width: 2;
  stroke-dasharray: 4 6;
}

.route-dot {
  position: absolute;
  z-index: 2;
  display: block;
  width: 16px;
  height: 16px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.route-dot.start { bottom: 16px; left: 2px; }
.route-dot.end { top: 26px; right: 0; }

.event-date {
  position: absolute;
  top: 53px;
  left: 50%;
  display: flex;
  width: 180px;
  height: 156px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%) rotate(-3deg);
  border-radius: 12px;
  background: var(--orange);
  box-shadow: 17px 17px 0 #ded9cd;
}

.event-date span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .25em;
}

.event-date strong {
  margin: -2px 0 -9px;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 600;
}

.event-date i {
  font-family: var(--serif);
  font-size: 19px;
}

.feature-game {
  background: var(--orange);
}

.feature-game .feature-label {
  color: #644006;
}

.feature-game > div:last-child > p:last-child {
  color: #61460f;
}

.game-progress {
  position: absolute;
  top: 58px;
  left: 50%;
  width: min(340px, calc(100% - 70px));
  height: 178px;
  transform: translateX(-50%) rotate(-1.5deg);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 17px;
  padding: 21px 22px;
  background: rgba(255,255,255,.83);
  box-shadow: 0 18px 38px rgba(73,43,3,.16);
  backdrop-filter: blur(12px);
}

.game-progress-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.game-progress-head > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.game-progress-head strong {
  font-family: var(--serif);
  font-size: 24px;
  line-height: .8;
}

.game-progress-head strong small {
  color: #918b7f;
  font-family: var(--sans);
  font-size: 9px;
}

.game-progress-track {
  height: 5px;
  margin: 14px 0 17px;
  overflow: hidden;
  border-radius: 6px;
  background: #e3ded3;
}

.game-progress-track i {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.game-badges {
  display: flex;
  gap: 16px;
}

.game-badges span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #a6a094;
}

.game-badges b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #d5cfc2;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
}

.game-badges small {
  font-size: 7px;
  font-weight: 700;
}

.game-badges .unlocked {
  color: var(--ink);
}

.game-badges .unlocked b {
  border-color: var(--ink);
  color: var(--orange);
  background: var(--ink);
}

.game-progress > em {
  position: absolute;
  right: -14px;
  bottom: 20px;
  border-radius: 20px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 5px 13px rgba(0,0,0,.16);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  transform: rotate(4deg);
}

.ai-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
  color: var(--white);
  background: #1c1b18;
}

.ai-glow {
  position: absolute;
  right: -220px;
  bottom: -280px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.24), transparent 65%);
}

.ai-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  gap: 60px;
}

.ai-copy h2 {
  margin-bottom: 29px;
}

.ai-copy > p:not(.eyebrow) {
  max-width: 455px;
  color: rgba(255,255,255,.63);
  font-size: 15px;
  line-height: 1.8;
}

.ai-copy ul {
  margin: 30px 0 37px;
  padding: 0;
  list-style: none;
}

.ai-copy li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.ai-copy li span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  margin-right: 12px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
}

.phone-orbit {
  position: absolute;
  border: 1px solid rgba(245,166,35,.13);
  border-radius: 50%;
}

.orbit-a { width: 530px; height: 530px; }
.orbit-b { width: 690px; height: 690px; }

.phone {
  position: relative;
  z-index: 2;
  width: 335px;
  height: 650px;
  overflow: hidden;
  border: 8px solid #0d0d0c;
  border-radius: 47px;
  color: var(--ink);
  background: #f7f6f2;
  box-shadow: 0 40px 90px rgba(0,0,0,.42);
  transform: rotate(2deg);
}

.phone::before {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 50%;
  width: 92px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 16px;
  background: #0d0d0c;
  content: "";
}

.phone-top {
  display: flex;
  height: 51px;
  align-items: center;
  justify-content: space-between;
  padding: 0 23px;
  font-size: 9px;
  font-weight: 800;
}

.phone-top b {
  font-size: 6px;
  letter-spacing: 2px;
}

.assistant-head {
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid #e1ded5;
  padding: 10px 19px 15px;
}

.assistant-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
}

.assistant-mark svg {
  width: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.assistant-head strong,
.assistant-head span {
  display: block;
}

.assistant-head strong {
  font-size: 12px;
}

.assistant-head span {
  margin-top: 3px;
  color: #908c83;
  font-size: 8px;
}

.chat {
  padding: 18px 16px;
}

.chat-context {
  width: max-content;
  margin: 0 auto 22px;
  border: 1px solid #dedbd3;
  border-radius: 17px;
  padding: 6px 10px;
  color: #88847c;
  background: #fff;
  font-size: 8px;
}

.message {
  max-width: 84%;
  margin-bottom: 12px;
  padding: 12px 13px;
  font-size: 10px;
  line-height: 1.55;
}

.user-message {
  margin-left: auto;
  border-radius: 14px 14px 2px 14px;
  color: var(--white);
  background: var(--ink);
}

.ai-message {
  border: 1px solid #e0ddd5;
  border-radius: 2px 14px 14px 14px;
  background: #fff;
}

.suggestion {
  margin-top: 4px;
  border: 1px solid #e7a632;
  border-radius: 15px;
  padding: 8px 11px;
  color: #80560d;
  background: #fff7e7;
  font-size: 8px;
  cursor: pointer;
}

.suggestion span {
  margin-left: 6px;
}

.chat-input {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dcd9d1;
  border-radius: 23px;
  padding: 5px 6px 5px 15px;
  color: #aaa69e;
  background: #fff;
  font-size: 9px;
}

.chat-input button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
}

.floating-note {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 13px 16px;
  color: rgba(255,255,255,.86);
  background: rgba(45,43,38,.88);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
}

.floating-note span {
  margin-right: 8px;
  color: var(--orange);
}

.note-one {
  top: 160px;
  left: 10px;
  transform: rotate(-4deg);
}

.note-two {
  right: -10px;
  bottom: 160px;
  transform: rotate(3deg);
}

.pricing-section {
  padding: 130px 0 120px;
  background: var(--cream);
}

.pricing-heading {
  max-width: 700px;
  margin: 0 auto 65px;
  text-align: center;
}

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

.pricing-heading > p {
  max-width: 600px;
  margin: 23px auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 15px;
}

.price-card {
  position: relative;
  min-height: 435px;
  border: 1px solid #dfdbd1;
  border-radius: 18px;
  padding: 35px 31px 28px;
  background: #f0ede6;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.price-card:hover,
.price-card.selected {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 20px 45px rgba(46,39,27,.09);
}

.price-card.featured {
  min-height: 478px;
  color: var(--white);
  border-color: #24231f;
  padding-top: 46px;
  background: var(--charcoal);
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--ink);
  background: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.duration,
.plan-note {
  display: block;
}

.duration {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.plan-note {
  margin-top: 4px;
  color: #88847b;
  font-size: 10px;
}

.featured .plan-note {
  color: rgba(255,255,255,.47);
}

.price {
  margin: 35px 0 30px;
  font-family: var(--serif);
  font-size: 77px;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
}

.price sup {
  margin-right: 5px;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  vertical-align: top;
}

.price small {
  font-size: 36px;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  margin-bottom: 13px;
  color: #68655e;
  font-size: 11px;
}

.price-card li::before {
  margin-right: 9px;
  color: var(--orange-deep);
  content: "✓";
  font-weight: 800;
}

.featured li {
  color: rgba(255,255,255,.65);
}

.choose-plan {
  position: absolute;
  right: 29px;
  bottom: 27px;
  left: 29px;
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #cfcac0;
  border-radius: 7px;
  padding: 0 17px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.featured .choose-plan {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
}

.price-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin: 45px 0 0;
  color: #858178;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-reassurance span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
}

.price-reassurance i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aaa69c;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--ink);
  background: var(--orange);
}

.cta-pattern {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 740px;
  height: 740px;
  border: 1px solid rgba(40,32,18,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(40,32,18,.035), 0 0 0 180px rgba(40,32,18,.025);
}

.cta-grid {
  position: relative;
  display: block;
}

.final-cta .eyebrow.light {
  color: rgba(37,29,16,.64);
}

.final-cta .eyebrow > span {
  background: var(--ink);
}

.final-cta h2 em {
  color: var(--ink);
}

.final-cta h2 + p {
  max-width: 560px;
  margin: 24px 0 34px;
  color: rgba(37,29,16,.7);
  font-size: 15px;
  line-height: 1.7;
}

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

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

footer {
  padding: 70px 0 25px;
  color: var(--white);
  background: #181817;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 230px;
}

.footer-brand img {
  width: 245px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 10px;
  padding: 3px 6px;
  background: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,.45);
  font-family: var(--serif);
  font-size: 17px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links strong,
.footer-links a {
  display: block;
}

.footer-links strong {
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links a {
  margin-bottom: 12px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  height: 60px;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.34);
  font-size: 9px;
}

.footer-bottom b {
  margin-left: 4px;
  color: var(--orange);
}

.webapp-dialog {
  width: min(1060px, calc(100% - 48px));
  max-width: none;
  max-height: min(820px, calc(100dvh - 48px));
  overflow: hidden;
  border: 0;
  border-radius: 25px;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 40px 120px rgba(0,0,0,.42);
}

.webapp-dialog::backdrop {
  background: rgba(15,14,12,.76);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(30,29,26,.16);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.76);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.dialog-close:hover {
  transform: rotate(8deg);
  background: var(--orange);
}

.dialog-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 650px;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 25px 55px 58px;
}

.dialog-copy h2 {
  font-size: clamp(42px, 4.2vw, 61px);
}

.dialog-copy > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.dialog-city-list {
  border-top: 1px solid var(--line);
}

.dialog-city-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 12px 3px;
  color: #67645d;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s, padding .2s;
}

.dialog-city-list a:hover {
  padding-left: 9px;
  color: var(--ink);
}

.dialog-city-list a span {
  color: var(--orange-deep);
}

.dialog-map-wrap {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(245,166,35,.22), transparent 43%),
    #ddd9cf;
}

.dialog-map {
  width: min(470px, 90%);
  max-height: 640px;
}

.map-modal-open {
  overflow: hidden;
}

.faq-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: flex-end;
  overflow: hidden;
  padding: 155px 0 95px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(245,166,35,.08), transparent 45%),
    #1c1b18;
}

.faq-hero::before {
  position: absolute;
  top: 90px;
  right: 7%;
  width: 330px;
  height: 440px;
  border: 1px solid rgba(245,166,35,.28);
  border-radius: 180px 180px 22px 22px;
  background:
    radial-gradient(circle at 50% 37%, rgba(245,166,35,.28), transparent 4%),
    radial-gradient(circle at 50% 37%, transparent 0 21%, rgba(245,166,35,.09) 21.3% 21.6%, transparent 22%),
    linear-gradient(155deg, transparent 47%, rgba(245,166,35,.12) 47.2% 47.6%, transparent 48%);
  content: "";
  transform: rotate(5deg);
}

.faq-hero-orbit {
  position: absolute;
  top: -360px;
  right: -230px;
  width: 940px;
  height: 940px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.018), 0 0 0 200px rgba(255,255,255,.012);
}

.faq-hero-inner {
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-block;
  margin-bottom: 70px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.back-link:hover {
  color: var(--orange);
}

.faq-hero h1 {
  max-width: 820px;
  margin-bottom: 25px;
}

.faq-hero h1 em {
  color: var(--orange);
  font-family: var(--serif);
  font-weight: 500;
}

.faq-hero h1 + p {
  max-width: 570px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.75;
}

.faq-content {
  padding: 120px 0 135px;
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 100px;
}

.faq-index {
  position: sticky;
  top: 35px;
  border-top: 1px solid var(--line);
}

.faq-index > p {
  margin: 20px 0 18px;
  color: #a47a36;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.faq-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 16px 2px;
  color: #77736a;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s, padding .2s;
}

.faq-index a:hover {
  padding-left: 8px;
  color: var(--ink);
}

.faq-index a span {
  color: #aaa69d;
  font-size: 8px;
}

.faq-group {
  scroll-margin-top: 35px;
  margin-bottom: 105px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  display: flex;
  align-items: flex-start;
  gap: 21px;
  margin-bottom: 34px;
}

.faq-group-title > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  margin-top: 5px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  font-size: 9px;
  font-weight: 800;
}

.faq-group-title p {
  margin-bottom: 3px;
  color: #9a762f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.faq-group-title h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.accordion {
  border-top: 1px solid #cbc7bd;
}

.accordion details {
  border-bottom: 1px solid #cbc7bd;
}

.accordion summary {
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 30px;
  padding: 24px 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #c6c1b7;
  border-radius: 50%;
  color: #8c877d;
  font-size: 17px;
  font-weight: 400;
  transition: transform .25s, color .25s, background .25s;
}

.accordion details[open] summary span {
  color: var(--ink);
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(45deg);
}

.accordion details > p {
  max-width: 700px;
  margin: -3px 65px 25px 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.faq-contact {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--orange);
}

.faq-contact::after {
  position: absolute;
  top: -210px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(25,24,21,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(25,24,21,.035), 0 0 0 150px rgba(25,24,21,.025);
  content: "";
}

.faq-contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: 110px;
}

.faq-contact .eyebrow {
  color: rgba(24,24,23,.57);
}

.faq-contact .eyebrow > span {
  background: var(--ink);
}

.faq-contact h2 em {
  color: var(--ink);
}

.faq-contact-inner > div:last-child p {
  margin-bottom: 26px;
  color: rgba(24,24,23,.67);
  font-size: 14px;
  line-height: 1.75;
}

.faq-contact .button {
  width: max-content;
}

.contact-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: flex-end;
  overflow: hidden;
  padding: 155px 0 95px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(245,166,35,.2), transparent 4%),
    radial-gradient(circle at 78% 38%, transparent 0 18%, rgba(245,166,35,.08) 18.2% 18.5%, transparent 18.7%),
    #1c1b18;
}

.contact-hero-lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  opacity: .42;
  background:
    linear-gradient(145deg, transparent 46%, rgba(245,166,35,.3) 46.1% 46.3%, transparent 46.5%),
    linear-gradient(35deg, transparent 54%, rgba(255,255,255,.08) 54.1% 54.25%, transparent 54.4%);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  margin-bottom: 25px;
}

.contact-hero h1 em {
  color: var(--orange);
  font-family: var(--serif);
  font-weight: 500;
}

.contact-hero h1 + p {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.75;
}

.contact-content {
  padding: 120px 0 135px;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: 95px;
}

.contact-aside {
  position: sticky;
  top: 35px;
}

.contact-aside h2 {
  margin-bottom: 48px;
  font-size: 43px;
}

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

.contact-details > div {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 19px 5px 19px 41px;
}

.contact-details > div > span {
  position: absolute;
  top: 22px;
  left: 3px;
  color: #b18a48;
  font-size: 8px;
  font-weight: 800;
}

.contact-details p {
  margin-bottom: 4px;
  color: #99958b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  font-size: 12px;
  font-weight: 700;
}

.contact-faq-link {
  display: flex;
  margin-top: 27px;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--orange-pale);
  transition: transform .2s;
}

.contact-faq-link:hover {
  transform: translateY(-3px);
}

.contact-faq-link span {
  color: #8c7b60;
  font-size: 9px;
}

.contact-faq-link strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.contact-form-card {
  border: 1px solid #dfdbd1;
  border-radius: 22px;
  padding: 42px;
  background: #f0ede6;
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
  border-bottom: 1px solid #d1cdc3;
  padding-bottom: 22px;
}

.form-heading span {
  color: #a16f18;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-heading strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #746f65;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d2cec4;
  border-radius: 8px;
  outline: none;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  font: 12px var(--sans);
  transition: border-color .2s, box-shadow .2s;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,166,35,.13);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa69d;
}

.privacy-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-field input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: var(--orange);
}

.privacy-field > span {
  margin: 0 !important;
  color: #8b877e !important;
  font-size: 8px !important;
  font-weight: 600 !important;
  line-height: 1.5;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.form-submit {
  width: max-content;
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

.form-feedback {
  min-height: 18px;
  margin: -8px 0 0;
  color: #6c5a39;
  font-size: 10px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes bob {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

@keyframes mapPulse {
  from { r: 18px; opacity: .8; }
  to { r: 38px; opacity: 0; }
}

@keyframes wave {
  from { transform: scaleY(.35); }
  to { transform: scaleY(1); }
}

@keyframes soundBars {
  from { transform: scaleY(.65); }
  to { transform: scaleY(1.05); }
}

@media (max-width: 1020px) {
  .section-wrap,
  .hero-content,
  .hero-bottom {
    width: min(100% - 48px, 840px);
  }

  .site-header {
    width: calc(100% - 48px);
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
  }

  .site-header.menu-open .desktop-nav {
    position: absolute;
    top: 75px;
    right: 0;
    display: flex;
    width: 230px;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 24px;
    background: rgba(24,24,23,.95);
    backdrop-filter: blur(14px);
  }

  .intro-grid,
  .cities-grid,
  .ai-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .stats div {
    padding: 20px 18px;
  }

  .cities-grid {
    gap: 60px;
  }

  .cities-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }

  .cities-copy h2,
  .cities-copy .eyebrow {
    grid-column: 1;
  }

  .cities-copy > p:not(.eyebrow),
  .city-selector {
    grid-column: 2;
  }

  .cities-copy > p:not(.eyebrow) {
    grid-row: 1 / span 2;
    margin-top: 35px;
  }

  .city-selector {
    grid-row: 3;
  }

  .map-card {
    width: min(650px, 100%);
    margin: auto;
  }

  .section-heading {
    gap: 50px;
  }

  .feature-card {
    min-height: 400px;
    padding: 32px;
  }

  .ai-grid {
    gap: 20px;
  }

  .ai-copy {
    max-width: 650px;
  }

  .phone-stage {
    margin-top: 20px;
  }

  .faq-layout {
    grid-template-columns: 200px 1fr;
    gap: 55px;
  }

  .faq-contact-inner {
    gap: 60px;
  }

  .contact-layout {
    gap: 55px;
  }

}

@media (max-width: 720px) {
  .section-wrap,
  .hero-content,
  .hero-bottom {
    width: calc(100% - 36px);
  }

  .site-header {
    width: calc(100% - 36px);
    height: 75px;
  }

  .brand {
    width: 195px;
  }

  .brand img {
    width: 100%;
  }

  .hero {
    min-height: 740px;
    align-items: flex-end;
    padding-bottom: 150px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(15,14,12,.96) 0%, rgba(18,16,14,.66) 62%, rgba(18,16,14,.15) 100%),
      url("assets/cityaudiotour-hero.png") 67% center / cover no-repeat;
  }

  .hero-content {
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(39px, 11vw, 55px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-bottom {
    height: 88px;
  }

  .city-ticker {
    max-width: 265px;
    flex-wrap: wrap;
    gap: 7px 11px;
  }

  .scroll-cue span {
    display: none;
  }

  .intro,
  .cities-section,
  .features-section,
  .pricing-section {
    padding: 85px 0;
  }

  .intro-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }

  .stats div {
    min-height: 120px;
  }

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .stats div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .stats strong {
    font-size: 38px;
  }

  .cities-copy {
    display: block;
  }

  .cities-copy > p:not(.eyebrow) {
    margin: 23px 0 34px;
  }

  .map-card {
    min-height: 590px;
    border-radius: 170px 170px 22px 22px;
  }

  .italy-map {
    top: 16px;
    width: 360px;
  }

  .city-preview {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .audio-wave {
    display: none;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 390px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .ai-section {
    padding: 90px 0 40px;
  }

  .phone-stage {
    min-height: 660px;
    transform: scale(.9);
    transform-origin: center top;
  }

  .floating-note {
    display: none;
  }

  .orbit-b {
    width: 560px;
    height: 560px;
  }

  .price-card,
  .price-card.featured {
    min-height: 430px;
  }

  .price-reassurance {
    flex-wrap: wrap;
    line-height: 1.7;
  }

  .price-reassurance i {
    display: none;
  }

  .final-cta {
    padding: 85px 0;
  }

  .faq-hero {
    min-height: 620px;
    padding: 135px 0 70px;
  }

  .faq-hero::before {
    top: 100px;
    right: -125px;
    opacity: .65;
  }

  .back-link {
    margin-bottom: 80px;
  }

  .faq-content {
    padding: 80px 0 90px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .faq-index {
    position: static;
  }

  .faq-group {
    margin-bottom: 75px;
  }

  .faq-group-title h2 {
    font-size: 34px;
  }

  .accordion summary {
    gap: 15px;
    padding: 21px 0;
    font-size: 13px;
  }

  .accordion details > p {
    margin-right: 42px;
    font-size: 12px;
  }

  .faq-contact {
    padding: 80px 0;
  }

  .faq-contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-contact .button {
    width: 100%;
  }

  .webapp-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    border-radius: 18px;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .dialog-copy {
    padding: 65px 25px 30px;
  }

  .dialog-copy h2 {
    font-size: 42px;
  }

  .dialog-map-wrap {
    min-height: 440px;
  }

  .dialog-map {
    width: 345px;
    margin: -20px 0 -65px;
  }

  .contact-hero {
    min-height: 620px;
    padding: 135px 0 70px;
  }

  .contact-hero-lines {
    width: 100%;
    opacity: .25;
  }

  .contact-content {
    padding: 80px 0 90px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-aside {
    position: static;
  }

  .contact-aside h2 {
    font-size: 38px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-bottom {
    height: 85px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
