/* =========================
   Base / Reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --max-width: 980px;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --border: 1px solid rgba(255, 255, 255, 0.12);
  --pad: clamp(16px, 3vw, 28px);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100svh;
  line-height: 1.45;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul {
  padding-left: 18px;
  margin: 10px 0 0;
}

li {
  margin: 6px 0;
}

main,
header,
section {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

/* My extras */

.linkreturn {
  display: flex;
  place-self: center;
}

.linkreturn:hover {
  text-decoration: underline;
}

/* Extra for % */

.note-row {
  border-bottom: none;
  opacity: 0.9;
  font-style: italic;
}

.note-label {
  letter-spacing: 0.3px;
}

.note-value {
  font-weight: 800;
}

/* City: make notes glow a bit */
body.city .note-row {
  color: rgba(0, 255, 224, 0.92);
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.18);
}

/* Sandy: make notes look stamped */
body.sandy .note-row {
  color: rgba(122, 59, 28, 0.9);
}

/* A nice default container spacing */
.hero,
.locations,
.contact,
#price-container {
  margin-top: 28px;
}

/* Shared button style */
.btn {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.6px;
  border: var(--border);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

/* =========================
   Index: Combined style
========================= */
body.index {
  color: rgba(255, 255, 255, 0.92);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    /* split vibe */ linear-gradient(
    90deg,
    rgba(5, 5, 10, 1) 0%,
    rgba(5, 5, 10, 1) 50%,
    rgba(242, 226, 195, 1) 50%,
    rgba(242, 226, 195, 1) 100%
  );
  position: relative;
  overflow-x: hidden;
}

/* Add soft texture and vignette */
body.index::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      1200px 700px at 15% 10%,
      rgba(0, 255, 224, 0.12),
      transparent 60%
    ),
    radial-gradient(
      1200px 700px at 85% 20%,
      rgba(182, 90, 43, 0.16),
      transparent 60%
    ),
    radial-gradient(
      1000px 800px at 50% 110%,
      rgba(0, 0, 0, 0.55),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35),
      transparent 30%,
      rgba(0, 0, 0, 0.35)
    );
  mix-blend-mode: multiply;
  opacity: 0.9;
}

/* Fake “grain” with layered gradients */
body.index::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 2px,
      transparent 4px
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    );
  opacity: 0.22;
}

body.index .hero {
  padding: clamp(18px, 3vw, 30px);
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(
    135deg,
    rgba(0, 255, 224, 0.1),
    rgba(255, 105, 180, 0.08),
    rgba(182, 90, 43, 0.1)
  );
  backdrop-filter: blur(10px);
}

body.index .hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: 1px;
}

body.index .hero p {
  margin: 6px 0 0;
  opacity: 0.9;
  font-weight: 600;
}

body.index .locations {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  padding-bottom: 18px;
}

@media (min-width: 860px) {
  body.index .locations {
    grid-template-columns: 1fr 1fr;
  }
}

/* Location cards */
.location-card {
  position: relative;
  padding: var(--pad);
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.22);
}

/* City card vibe */
.city-card {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.68),
    rgba(0, 255, 224, 0.08),
    rgba(255, 105, 180, 0.06)
  );
  color: rgba(255, 255, 255, 0.92);
}

.city-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(
      800px 500px at 20% 10%,
      rgba(0, 255, 224, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 450px at 70% 40%,
      rgba(255, 105, 180, 0.14),
      transparent 62%
    );
  opacity: 0.9;
  pointer-events: none;
}

.city-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.8px;
  text-shadow: 0 0 18px rgba(0, 255, 224, 0.35);
}

.city-card .btn {
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 22px rgba(0, 255, 224, 0.18);
}

/* Sandy card vibe */
.sandy-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55),
    rgba(241, 226, 198, 0.85),
    rgba(182, 90, 43, 0.1)
  );
  color: rgba(60, 30, 12, 0.92);
  border-color: rgba(60, 30, 12, 0.18);
}

.sandy-card::before {
  content: "";
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(
      900px 520px at 30% 20%,
      rgba(182, 90, 43, 0.14),
      transparent 65%
    ),
    radial-gradient(
      800px 520px at 80% 60%,
      rgba(122, 59, 28, 0.1),
      transparent 60%
    );
  opacity: 0.9;
  pointer-events: none;
}

.sandy-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.6px;
}

.sandy-card .btn {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(60, 30, 12, 0.22);
}

body.index .contact {
  padding: 16px 2px 40px;
}

body.index .contact h3 {
  margin: 0 0 8px;
}

.fineprint {
  opacity: 0.75;
  font-size: 0.95rem;
}

/* =========================
   City page: Neon Grunge
========================= */
body.city {
  background: #07070c;
  color: rgba(245, 245, 255, 0.92);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Neon glow + grime */
body.city::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      900px 600px at 20% 0%,
      rgba(0, 255, 224, 0.2),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 90% 25%,
      rgba(255, 105, 180, 0.18),
      transparent 62%
    ),
    radial-gradient(
      1000px 650px at 60% 110%,
      rgba(255, 200, 0, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 550px at 50% 50%,
      rgba(0, 0, 0, 0.55),
      transparent 55%
    );
  opacity: 0.95;
}

/* Scanlines + subtle flicker */
body.city::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 2px,
    transparent 6px
  );
  opacity: 0.22;
  animation: cityFlicker 7s infinite;
}

@keyframes cityFlicker {
  0%,
  100% {
    opacity: 0.22;
  }
  48% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.26;
  }
  52% {
    opacity: 0.19;
  }
  70% {
    opacity: 0.24;
  }
}

body.city header {
  padding: 26px 0 8px;
}

body.city h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 1.1px;
  text-shadow:
    0 0 18px rgba(0, 255, 224, 0.35),
    0 0 28px rgba(255, 105, 180, 0.22);
}

body.city #price-container section {
  margin: 18px auto;
  padding: var(--pad);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* neon border accent */
body.city #price-container section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 224, 0.55),
    rgba(255, 105, 180, 0.55),
    rgba(255, 200, 0, 0.35)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

body.city #price-container h2 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 255, 224, 0.92);
  text-shadow: 0 0 18px rgba(0, 255, 224, 0.25);
}

/* Price rows */
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.price-row:last-child {
  border-bottom: none;
}

body.city .price-row span:last-child {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 12px rgba(255, 105, 180, 0.18);
}

/* =========================
   Sandy page: Dusty Retro
========================= */
body.sandy {
  background: #f1e2c6;
  color: rgba(60, 30, 12, 0.92);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  position: relative;
  overflow-x: hidden;
}

/* Paper texture + sun fade */
body.sandy::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      900px 600px at 50% 0%,
      rgba(255, 255, 255, 0.55),
      transparent 60%
    ),
    radial-gradient(
      1000px 800px at 50% 110%,
      rgba(122, 59, 28, 0.1),
      transparent 55%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(122, 59, 28, 0.035) 0px,
      rgba(122, 59, 28, 0.035) 2px,
      transparent 4px,
      transparent 9px
    );
  opacity: 0.85;
}

/* Slight vignette to feel “photo/poster” */
body.sandy::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 45%,
    transparent 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
  opacity: 0.35;
}

body.sandy header {
  padding: 26px 0 8px;
}

body.sandy h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0.6px;
}

body.sandy #price-container section {
  margin: 18px auto;
  padding: var(--pad);
  border-radius: var(--radius);
  border: 2px solid rgba(122, 59, 28, 0.22);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  position: relative;
}

/* “Stamp” header */
body.sandy #price-container h2 {
  margin: 0 0 12px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  border: 2px solid rgba(182, 90, 43, 0.35);
  background: rgba(182, 90, 43, 0.1);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

body.sandy .price-row {
  border-bottom: 1px dotted rgba(122, 59, 28, 0.25);
}

body.sandy .price-row span:last-child {
  font-weight: 900;
  color: rgba(122, 59, 28, 0.95);
}

/* =========================
   Small improvements for both pages
========================= */
#price-container {
  padding-bottom: 40px;
}

/* Make long names wrap nicely */
.price-row span:first-child {
  max-width: 70%;
  overflow-wrap: anywhere;
}

/* On very small screens, stack label/value */
@media (max-width: 420px) {
  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-row span:last-child {
    opacity: 0.95;
  }
}
