/* Upon Arrival — site styles
   Editorial luxury aesthetic. Warm neutrals. Cormorant Garamond display + Inter body.
*/

/* Font setup — use Google Fonts CDN for the static version (no next/font) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ua-cream: #F8F4EC;
  --ua-sand: #EFE6D6;
  --ua-taupe: #D9CBB3;
  --ua-ink: #1A1A1A;
  --ua-accent: #8B6E3C;
  --ua-cream-soft: rgba(248, 244, 236, 0.92);
  --ua-ink-soft: rgba(26, 26, 26, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--ua-cream);
  color: var(--ua-ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.font-display {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* Nav — fixed, transparent on hero, cream-tinted on scroll */
.ua-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.4s ease;
}
.ua-nav--top {
  background: transparent;
}
.ua-nav--scrolled {
  background: var(--ua-cream-soft);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.ua-nav__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1rem;
  transition: color 0.3s;
}
.ua-nav--top .ua-nav__wordmark,
.ua-nav--top .ua-nav__link {
  color: var(--ua-cream);
}
.ua-nav--scrolled .ua-nav__wordmark {
  color: var(--ua-ink);
}
.ua-nav__link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: color 0.3s;
}
.ua-nav--top .ua-nav__link {
  color: rgba(248, 244, 236, 0.9);
}
.ua-nav--top .ua-nav__link:hover {
  color: var(--ua-cream);
}
.ua-nav--scrolled .ua-nav__link {
  color: rgba(26, 26, 26, 0.75);
}
.ua-nav--scrolled .ua-nav__link:hover {
  color: var(--ua-ink);
}

/* Mobile menu */
.ua-mobile-menu {
  display: none;
  background: var(--ua-cream);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding: 1.5rem 1.5rem;
}
.ua-mobile-menu.is-open {
  display: block;
}
.ua-mobile-menu a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--ua-ink);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.ua-mobile-menu a:hover {
  color: var(--ua-accent);
}

/* Hero — full-bleed */
.ua-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ua-cream);
  overflow: hidden;
}
.ua-hero--compact {
  min-height: 60vh;
}
.ua-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ua-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.ua-hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 50rem;
}
.ua-hero__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.ua-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
}
.ua-hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

/* CTA buttons */
.ua-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.5rem;
  border: 1px solid var(--ua-cream);
  color: var(--ua-cream);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.ua-btn:hover {
  background: var(--ua-cream);
  color: var(--ua-ink);
}
.ua-btn--dark {
  border-color: var(--ua-ink);
  color: var(--ua-ink);
}
.ua-btn--dark:hover {
  background: var(--ua-ink);
  color: var(--ua-cream);
}
.ua-btn--accent {
  border-color: var(--ua-accent);
  color: var(--ua-accent);
}
.ua-btn--accent:hover {
  background: var(--ua-accent);
  color: var(--ua-cream);
}

/* Nav sign-in CTA — links out to app.uponarrival.com/login.
   Sits at the right edge of the desktop nav and at the bottom of
   the mobile menu. Two color variants mirror the nav background:
     --top      cream-on-dark (over hero)
     --scrolled ink-on-cream  (after scroll / on cream pages)
   Mobile menu always renders on cream, so its variant is fixed to
   ink-on-cream regardless of nav state. */
.ua-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--ua-cream);
  color: var(--ua-cream);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  white-space: nowrap;
  margin-left: 1.5rem;
}
.ua-nav--top .ua-nav__cta:hover {
  background: var(--ua-cream);
  color: var(--ua-ink);
}
.ua-nav--scrolled .ua-nav__cta {
  border-color: var(--ua-ink);
  color: var(--ua-ink);
}
.ua-nav--scrolled .ua-nav__cta:hover {
  background: var(--ua-ink);
  color: var(--ua-cream);
}
.ua-mobile-menu .ua-nav__cta {
  display: block;
  text-align: center;
  margin: 1.25rem 0 0;
  padding: 0.85rem 1.1rem;
  border-color: var(--ua-ink);
  color: var(--ua-ink);
  margin-left: 0;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.ua-mobile-menu .ua-nav__cta:hover {
  background: var(--ua-ink);
  color: var(--ua-cream);
}
@media (max-width: 767px) {
  .ua-nav__cta { display: none; }   /* desktop-only; mobile uses .ua-mobile-menu entry */
}

/* Section */
.ua-section {
  padding: 6rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
.ua-section--cream { background: var(--ua-cream); }
.ua-section--sand { background: var(--ua-sand); }
.ua-section--ink {
  background: var(--ua-ink);
  color: var(--ua-cream);
}
.ua-section--ink .ua-section__heading { color: var(--ua-cream); }
.ua-section--ink .ua-section__eyebrow { color: var(--ua-accent); }
.ua-section--ink p { color: rgba(248, 244, 236, 0.85); }

.ua-section--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.ua-section__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ua-section__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ua-accent);
  margin: 0 0 1rem;
}
.ua-section__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 2.5rem;
  max-width: 50rem;
}
.ua-section--center .ua-section__heading,
.ua-section--center .ua-section__eyebrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.ua-section--center p {
  text-align: center;
}

/* Pillar card */
.ua-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.ua-pillar {
  display: flex;
  flex-direction: column;
}
.ua-pillar__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--ua-taupe);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.ua-pillar__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ua-pillar:hover .ua-pillar__image img {
  transform: scale(1.04);
}
.ua-pillar__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  letter-spacing: -0.005em;
}
.ua-pillar__body {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.75);
  margin: 0;
}

/* Destination tile */
.ua-destinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}
.ua-destination {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ua-taupe);
  text-decoration: none;
  color: var(--ua-cream);
  display: block;
}
.ua-destination img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ua-destination:hover img {
  transform: scale(1.05);
}
.ua-destination__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.ua-destination__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}
.ua-destination__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.25rem;
}
.ua-destination__subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.85;
  margin: 0;
}

/* Suite talk teaser */
.ua-suite-talk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .ua-suite-talk { grid-template-columns: 1fr; gap: 2rem; }
}
.ua-suite-talk__image {
  aspect-ratio: 4 / 5;
  background: var(--ua-taupe);
  overflow: hidden;
}
.ua-suite-talk__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Founder card */
.ua-founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .ua-founder { grid-template-columns: 1fr; gap: 2rem; text-align: center; justify-items: center; }
}
.ua-founder__portrait {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ua-taupe);
}
.ua-founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ua-founder__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.ua-founder__bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.75);
  margin: 0 0 2rem;
}
.ua-founder__tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ua-founder__tag-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ua-accent);
  margin: 0 0 0.25rem;
}
.ua-founder__tag-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ua-ink);
  margin: 0;
  font-style: italic;
}

/* Pull quote */
.ua-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  font-style: italic;
}

/* Testimonial */
.ua-testimonial {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}
.ua-testimonial__stars {
  color: var(--ua-accent);
  font-size: 1.25rem;
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
}
.ua-testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 2rem;
}
.ua-testimonial__attribution {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ua-ink-soft);
}

/* Service / benefit list */
.ua-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem 3rem;
  max-width: 50rem;
}
.ua-list li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.4;
}
.ua-list svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.5rem;
  color: var(--ua-accent);
  flex-shrink: 0;
}

/* Form */
.ua-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 32rem;
}
.ua-form__row { display: flex; flex-direction: column; gap: 0.5rem; }
.ua-form__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ua-ink-soft);
}
.ua-form__input,
.ua-form__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.25);
  padding: 0.65rem 0;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--ua-ink);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.ua-form__input:focus,
.ua-form__textarea:focus {
  border-color: var(--ua-accent);
}
.ua-form__textarea { min-height: 7rem; }
.ua-form__success {
  padding: 1rem 1.5rem;
  background: var(--ua-sand);
  border-left: 3px solid var(--ua-accent);
  color: var(--ua-ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  display: none;
}
.ua-form.is-submitted .ua-form__success { display: block; }
.ua-form.is-submitted .ua-form__fields { display: none; }

/* Footer */
.ua-footer {
  background: var(--ua-ink);
  color: var(--ua-cream);
  padding: 5rem 1.5rem 2rem;
}
.ua-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.ua-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .ua-footer__grid { grid-template-columns: 1fr; }
}
.ua-footer__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ua-cream);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}
.ua-footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(248, 244, 236, 0.7);
  max-width: 28rem;
  margin: 0;
}
.ua-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .ua-footer__nav { flex-direction: row; gap: 2rem; }
}
.ua-footer__nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248, 244, 236, 0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.ua-footer__nav a:hover { color: var(--ua-cream); }
.ua-footer__legal {
  border-top: 1px solid rgba(248, 244, 236, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(248, 244, 236, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Utility: text alignment & spacing */
.ua-center { text-align: center; margin-left: auto; margin-right: auto; }
.ua-mt-3 { margin-top: 3rem; }

/* ============================================================
   Motion system
   - Add `ua-reveal` to any element to fade it in on page load.
   - Add `ua-reveal-group` to a parent; children stagger in.
   - Pure CSS, no JS dependency. Works in screenshots, no-JS, and
   - print. The Ken Burns loop on hero/band backgrounds runs forever
   - so the page has subtle live motion after entry.
   ============================================================ */
@keyframes ua-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ua-fade-soft {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ua-ken-burns {
  0%   { transform: scale(1.00) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* Single element: fade up over 0.9s, 60ms after load. */
.ua-reveal {
  animation: ua-fade-up 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.06s both;
}
.ua-reveal--soft {
  animation-name: ua-fade-soft;
  animation-duration: 0.75s;
}

/* Group: each child fades up with a staggered delay so the row
   reads as a choreographed sequence rather than a uniform wash. */
.ua-reveal-group > * {
  animation: ua-fade-up 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.ua-reveal-group > *:nth-child(1) { animation-delay: 0.08s; }
.ua-reveal-group > *:nth-child(2) { animation-delay: 0.16s; }
.ua-reveal-group > *:nth-child(3) { animation-delay: 0.24s; }
.ua-reveal-group > *:nth-child(4) { animation-delay: 0.32s; }
.ua-reveal-group > *:nth-child(5) { animation-delay: 0.40s; }
.ua-reveal-group > *:nth-child(6) { animation-delay: 0.48s; }
.ua-reveal-group > *:nth-child(7) { animation-delay: 0.56s; }
.ua-reveal-group > *:nth-child(8) { animation-delay: 0.64s; }

/* Ken Burns on hero / band backgrounds (very slow, very subtle) */
.ua-hero__bg {
  animation: ua-ken-burns 22s ease-in-out infinite alternate;
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .ua-reveal,
  .ua-reveal-group > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .ua-hero__bg { animation: none; }
}

/* ============================================================
   Founder feature — large circular portrait + bio quote
   ============================================================ */
.ua-founder-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ua-founder-feature { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; justify-items: center; }
}
.ua-founder-feature__portrait {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ua-taupe);
  position: relative;
  box-shadow:
    0 30px 60px -25px rgba(26, 26, 26, 0.28),
    0 0 0 6px var(--ua-cream),
    0 0 0 7px var(--ua-accent);
}
.ua-founder-feature__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ua-founder-feature:hover .ua-founder-feature__portrait img {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .ua-founder-feature__portrait {
    width: 240px;
    height: 240px;
  }
}
.ua-founder-feature__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ua-ink);
  margin: 0 0 1.5rem;
  letter-spacing: -0.005em;
}
.ua-founder-feature__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ua-ink);
  margin: 0 0 0.25rem;
}
.ua-founder-feature__role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ua-accent);
  margin: 0 0 1.25rem;
}
.ua-founder-feature__attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.72);
  line-height: 1.65;
  margin: 0;
  max-width: 32rem;
}
@media (max-width: 768px) {
  .ua-founder-feature__attribution { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   Image band — full-bleed photo with overlaid type
   ============================================================ */
.ua-band {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ua-cream);
  overflow: hidden;
}
.ua-band--short { min-height: 48vh; }
.ua-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: ua-ken-burns 26s ease-in-out infinite alternate;
}
.ua-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.58) 100%);
  z-index: 1;
}
.ua-band__content {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  max-width: 52rem;
}
.ua-band__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.ua-band__attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.9;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .ua-band__bg { animation: none; }
}

/* ============================================================
   Hover-lift — cards lift and gain a soft shadow on hover
   ============================================================ */
.ua-lift {
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.ua-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -22px rgba(26, 26, 26, 0.18);
}

/* ============================================================
   Section accent — vertical accent rule above centered headings
   ============================================================ */
.ua-section__heading--accent::before {
  content: '';
  display: block;
  width: 1px;
  height: 2.75rem;
  background: var(--ua-accent);
  margin: 0 auto 1.5rem;
}

/* Responsive helpers */
@media (max-width: 768px) {
  .ua-section { padding: 4rem 1.25rem; }
  .ua-hero { min-height: 80vh; }
  .ua-hero--compact { min-height: 50vh; }
  .ua-pillars { gap: 3rem; }
  .ua-band { min-height: 50vh; }
  .ua-band--short { min-height: 40vh; }
}
