/* =========================================================
     ALOHA SMART VENDING — EASY EDIT ZONE
     =========================================================
     Hi! When you need to update content (machine count, partners,
     locations), look for the sections labeled "EDIT HERE" below
     in the HTML and assets/styles.css.
     ========================================================= */

:root {
  --ink: #0a0a0b;
  --ink-soft: #141416;
  --ink-card: #1a1a1c;
  --ivory: #f4f4f2;
  --ivory-dim: #a8a8ad;
  --grey-line: rgba(244, 244, 242, 0.08);
  --hibiscus: #ff2d20;
  --hibiscus-glow: #ff4a3d;
  --display: 'Manrope', -apple-system, sans-serif;
  --display-fun: 'Bricolage Grotesque', -apple-system, sans-serif;
  --body: 'Inter', -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('../images/bg.svg');
  pointer-events: none;
  z-index: 100;
  opacity: 0.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-line);
  opacity: 0;
  transform: translateY(-100%);
  animation: navIn 1s ease-out 4.8s forwards;
}

@keyframes navIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 32px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--display);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--hibiscus);
}

.nav-cta {
  padding: 11px 22px;
  background: var(--hibiscus);
  color: var(--ivory);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--display);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--hibiscus-glow);
  box-shadow: 0 0 24px rgba(255, 45, 32, 0.5);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 50% 40% at 30% 45%, rgba(255, 45, 32, 0.15) 0%, transparent 70%), radial-gradient(ellipse at center, #1c0808 0%, var(--ink) 70%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 11, 0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  width: 100%;
  max-width: 800px;
}

.logo-stage {
  position: relative;
  display: inline-block;
  margin-bottom: 48px;
  width: 100%;
  max-width: 560px;
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: logoFadeIn 1.2s ease-out 0.3s forwards;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Neon hibiscus — v8 screen blend, masked to hibiscus area only */
.neon-hibiscus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: neonFlicker 4s ease-out 1.2s forwards;
}

@keyframes neonFlicker {
  0% {
    opacity: 0;
    filter: drop-shadow(0 0 0 var(--hibiscus));
  }

  8% {
    opacity: 0.5;
    filter: drop-shadow(0 0 3px var(--hibiscus));
  }

  10% {
    opacity: 0;
  }

  16% {
    opacity: 0.8;
    filter: drop-shadow(0 0 5px var(--hibiscus));
  }

  18% {
    opacity: 0.15;
  }

  24% {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--hibiscus)) drop-shadow(0 0 14px var(--hibiscus-glow));
  }

  28% {
    opacity: 0.4;
    filter: drop-shadow(0 0 3px var(--hibiscus));
  }

  34% {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--hibiscus)) drop-shadow(0 0 16px var(--hibiscus-glow));
  }

  40% {
    opacity: 0.6;
  }

  46% {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--hibiscus)) drop-shadow(0 0 18px var(--hibiscus-glow)) drop-shadow(0 0 30px rgba(255, 45, 32, 0.3));
  }

  100% {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--hibiscus)) drop-shadow(0 0 16px var(--hibiscus-glow)) drop-shadow(0 0 28px rgba(255, 45, 32, 0.35));
  }
}

.neon-hibiscus.lit {
  animation: neonBuzz 4s ease-in-out infinite;
}

@keyframes neonBuzz {

  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--hibiscus)) drop-shadow(0 0 16px var(--hibiscus-glow)) drop-shadow(0 0 28px rgba(255, 45, 32, 0.35));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 11px var(--hibiscus)) drop-shadow(0 0 22px var(--hibiscus-glow)) drop-shadow(0 0 38px rgba(255, 45, 32, 0.45));
  }
}

.hero-tagline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ivory);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  opacity: 0;
  animation: fadeUp 1s ease-out 4.2s forwards;
}

.hero-tagline .accent {
  color: var(--hibiscus);
  font-weight: 500;
}

.hero-sub {
  font-size: 15px;
  color: var(--ivory-dim);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s ease-out 4.5s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease-out 4.8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--display);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--hibiscus);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--hibiscus-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 45, 32, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(244, 244, 242, 0.25);
}

.btn-secondary:hover {
  border-color: var(--ivory);
  background: rgba(244, 244, 242, 0.05);
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ivory-dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--display);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 1s ease-out 5.3s forwards, bobble 2s ease-in-out 6.3s infinite;
}

@keyframes bobble {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 1;
  }
}

section {
  padding: 100px 0;
  position: relative;
}

.section-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hibiscus);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 900px;
}

.section-title .accent {
  color: var(--hibiscus);
  font-weight: 400;
}

.serve {
  border-top: 1px solid var(--grey-line);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--grey-line);
  border: 1px solid var(--grey-line);
}

.serve-card {
  aspect-ratio: 1/1.1;
  background: var(--ink-soft);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.serve-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hibiscus);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}

.serve-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 45, 32, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.serve-card:hover {
  background: var(--ink-card);
}

.serve-card:hover::before {
  transform: scaleX(1);
}

.serve-card:hover::after {
  opacity: 1;
}

.serve-card-num {
  font-family: var(--display);
  font-size: 11px;
  color: var(--ivory-dim);
  letter-spacing: 0.25em;
  font-weight: 500;
  position: relative;
}

.serve-card-title {
  font-family: var(--display-fun);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  position: relative;
}

.serve-card-title .plus {
  color: var(--hibiscus);
  font-weight: 400;
  margin: 0 2px;
}

.serve-card-cta {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ivory-dim);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  position: relative;
}

.serve-card-cta span {
  transition: transform 0.3s;
}

.serve-card:hover .serve-card-cta {
  color: var(--hibiscus);
}

.serve-card:hover .serve-card-cta span {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .serve-card {
    padding: 20px 16px;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--ink-soft);
  border: 1px solid var(--hibiscus);
  max-width: 580px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 45, 32, 0.15);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--ivory-dim);
  font-size: 22px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  z-index: 5;
}

.modal-close:hover {
  color: var(--hibiscus);
}

.modal-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hibiscus);
  font-weight: 600;
  margin-bottom: 14px;
}

.modal h3 {
  font-family: var(--display-fun);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.modal-intro {
  color: var(--ivory-dim);
  font-size: 15px;
  margin-bottom: 28px;
}

.modal-benefits {
  list-style: none;
  margin-bottom: 28px;
}

.modal-benefits li {
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-line);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  font-size: 14px;
}

.modal-benefits li::before {
  content: '✦';
  color: var(--hibiscus);
  font-size: 11px;
  line-height: 1.6;
}

.modal .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 600px) {
  .modal {
    padding: 40px 24px;
  }
}

/* Demo form */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
}

.form-input,
.form-select {
  background: var(--ink);
  border: 1px solid var(--grey-line);
  color: var(--ivory);
  padding: 11px 13px;
  font-family: var(--body);
  font-size: 14px;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--hibiscus);
}

.form-select {
  cursor: pointer;
  background-image: url('../images/down-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-radio {
  flex: 1;
  min-width: 80px;
  position: relative;
  cursor: pointer;
}

.form-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-radio label {
  display: block;
  text-align: center;
  padding: 10px 8px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ivory-dim);
  border: 1px solid var(--grey-line);
  background: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.form-radio input:checked+label {
  border-color: var(--hibiscus);
  color: var(--hibiscus);
  background: rgba(255, 45, 32, 0.05);
}

.form-success {
  text-align: center;
  padding: 20px 0;
}

.form-success-title {
  font-family: var(--display-fun);
  font-size: 28px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1.2;
}

.form-success-sub {
  color: var(--ivory-dim);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-success .btn {
  display: inline-flex;
  width: auto;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.location-list {
  list-style: none;
  margin-bottom: 28px;
}

.location-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.location-item:last-child {
  border-bottom: none;
}

.location-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 4px;
  line-height: 1.3;
}

.location-address {
  font-size: 12px;
  color: var(--ivory-dim);
  line-height: 1.4;
}

.location-tag {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.location-tag.public {
  background: rgba(255, 45, 32, 0.15);
  color: var(--hibiscus);
  border: 1px solid var(--hibiscus);
}

.location-tag.private {
  background: rgba(244, 244, 242, 0.06);
  color: var(--ivory-dim);
  border: 1px solid var(--grey-line);
}

.island-coming-soon {
  text-align: center;
  padding: 40px 20px;
  color: var(--ivory-dim);
}

.island-coming-soon-title {
  font-family: var(--display-fun);
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
}

.island-coming-soon-sub {
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto 24px;
}

.specs-section {
  background: var(--ink-soft);
}

/* Horizontal temperature zones - tighter, side by side */
.temp-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--grey-line);
  border: 1px solid var(--grey-line);
}

.temp-zone {
  padding: 24px 20px;
  background: var(--ink-card);
  transition: all 0.4s;
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}

.temp-zone:hover {
  background: var(--ink-soft);
}

.temp-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.temp-icon-wrap img {
  max-height: 56px;
  max-width: 56px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

.temp-info {
  min-width: 0;
}

.temp-name {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
  margin-bottom: 6px;
}

.temp-range {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.temp-desc {
  font-size: 12px;
  color: var(--ivory-dim);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .temp-zones {
    grid-template-columns: 1fr;
  }

  .temp-zone {
    padding: 20px 18px;
  }
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--grey-line);
  border-left: 1px solid var(--grey-line);
}

.tech-stat {
  padding: 32px 24px;
  border-right: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}

.tech-stat-value {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 300;
  color: var(--hibiscus);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.tech-stat-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .tech-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-cta {
  margin-top: 48px;
  text-align: center;
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.big-number {
  font-family: var(--display);
  font-size: clamp(80px, 13vw, 140px);
  font-weight: 200;
  line-height: 0.9;
  color: var(--hibiscus);
  text-shadow: 0 0 40px rgba(255, 45, 32, 0.35);
  letter-spacing: -0.04em;
}

.big-number-label {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
  margin-top: 12px;
}

.counter-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.counter-stat {
  padding-top: 20px;
  border-top: 1px solid var(--grey-line);
}

.counter-stat-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -0.02em;
}

.counter-stat-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
  margin-top: 8px;
}

.hawaii-map {
  position: relative;
  width: 100%;
}

.hawaii-map img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(255, 45, 32, 0.2));
}

.island-hotspots {
  position: absolute;
  inset: 0;
}

.island-hotspot {
  position: absolute;
  background: rgba(255, 45, 32, 0.0);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
}

.island-hotspot:hover {
  background: rgba(255, 45, 32, 0.25);
  box-shadow: 0 0 30px rgba(255, 45, 32, 0.5);
}

.hotspot-niihau {
  left: 4%;
  top: 19%;
  width: 4%;
  height: 7%;
}

.hotspot-kauai {
  left: 14%;
  top: 12%;
  width: 10%;
  height: 17%;
}

.hotspot-oahu {
  left: 41%;
  top: 22%;
  width: 13%;
  height: 19%;
}

.hotspot-molokai {
  left: 59%;
  top: 26%;
  width: 11%;
  height: 12%;
}

.hotspot-lanai {
  left: 62%;
  top: 38%;
  width: 6%;
  height: 9%;
}

.hotspot-kahoolawe {
  left: 66%;
  top: 46%;
  width: 5%;
  height: 7%;
}

.hotspot-maui {
  left: 74%;
  top: 35%;
  width: 12%;
  height: 15%;
}

.hotspot-bigisland {
  left: 87%;
  top: 74%;
  width: 16%;
  height: 26%;
}

.map-helper-text {
  text-align: center;
  margin-top: 20px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
}

.map-helper-text::before {
  content: '◐';
  color: var(--hibiscus);
  margin-right: 8px;
}

@media (max-width: 900px) {
  .map-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.partners {
  border-top: 1px solid var(--grey-line);
  background: var(--ink-soft);
}

.partners-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--grey-line);
  border-left: 1px solid var(--grey-line);
}

.partner-row {
  padding: 22px 24px;
  border-right: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  color: var(--ivory);
  text-decoration: none;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partner-row .arrow {
  color: var(--ivory-dim);
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.partner-row:hover {
  background: var(--ink-card);
  color: var(--hibiscus);
  padding-left: 28px;
}

.partner-row:hover .arrow {
  color: var(--hibiscus);
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 700px) {
  .partners-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-list {
    grid-template-columns: 1fr;
  }
}

.cta-strip {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--grey-line);
  background: radial-gradient(ellipse at center, rgba(255, 45, 32, 0.08) 0%, transparent 60%), var(--ink);
}

.cta-strip .section-title {
  margin: 0 auto 24px;
  text-align: center;
}

.cta-strip-sub {
  font-size: 16px;
  color: var(--ivory-dim);
  max-width: 540px;
  margin: 0 auto 40px;
}

footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--grey-line);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-tagline {
  color: var(--ivory-dim);
  font-size: 13px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--hibiscus);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--grey-line);
  display: flex;
  justify-content: space-between;
  color: var(--ivory-dim);
  font-size: 11px;
  flex-wrap: wrap;
  gap: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.sms-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}

.sms-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--hibiscus);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(255, 45, 32, 0.4);
  transition: all 0.3s;
  animation: smsPulse 2.5s ease-in-out infinite;
}

@keyframes smsPulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(255, 45, 32, 0.4), 0 0 0 0 rgba(255, 45, 32, 0.5);
  }

  50% {
    box-shadow: 0 8px 32px rgba(255, 45, 32, 0.4), 0 0 0 14px rgba(255, 45, 32, 0);
  }
}

.sms-toggle:hover {
  transform: scale(1.05);
}

.sms-toggle svg {
  width: 26px;
  height: 26px;
}

.sms-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 320px;
  background: var(--ink-soft);
  border: 1px solid var(--hibiscus);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 45, 32, 0.15);
  padding: 22px;
  display: none;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.3s;
}

.sms-panel.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.sms-header {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.sms-sub {
  font-size: 12px;
  color: var(--ivory-dim);
  margin-bottom: 16px;
}

.sms-field {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--grey-line);
  color: var(--ivory);
  padding: 10px;
  font-family: var(--body);
  font-size: 13px;
  margin-bottom: 8px;
}

.sms-field:focus {
  outline: none;
  border-color: var(--hibiscus);
}

textarea.sms-field {
  resize: none;
  min-height: 70px;
}

.sms-send {
  width: 100%;
  padding: 11px;
  background: var(--hibiscus);
  color: var(--ivory);
  border: none;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.sms-send:hover {
  background: var(--hibiscus-glow);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}