/* Jimmy Hassan — lightweight campaign site */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap");

:root {
  --navy: #0c2340;
  --navy-mid: #16345c;
  --navy-soft: #1e446f;
  --gold: #c4a35a;
  --gold-dark: #a8863f;
  --gold-on-navy: #e0c878;
  --ink: #1a2332;
  --ink-muted: #4a5568;
  --paper: #f2f4f7;
  --paper-warm: #e8ecf1;
  --white: #ffffff;
  --line: rgba(12, 35, 64, 0.12);
  --shadow: 0 12px 40px rgba(12, 35, 64, 0.12);
  --font-display: "Palatino Linotype", Palatino, "Book Antiqua", "Palatino LT STD", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1100px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

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

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar {
  background: #081829;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.75rem;
  width: min(100% - 2 * var(--pad), 1200px);
  margin-inline: auto;
  padding: 0.55rem 0;
}

.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-on-navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

.site-header {
  position: relative;
  background: rgba(12, 35, 64, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(100% - 2 * var(--pad), 1200px);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle span:nth-child(1) {
  top: 12px;
}
.nav-toggle span:nth-child(2) {
  top: 19px;
}
.nav-toggle span:nth-child(3) {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(72vh, 720px);
  display: grid;
  align-items: end;
  color: var(--navy);
  overflow: hidden;
  background: #d8dde3;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__portrait {
  position: absolute;
  top: 0;
  right: clamp(7.5rem, 24vw, 18rem);
  bottom: 0;
  left: auto;
  z-index: 2;
  width: auto;
  height: 100%;
  max-width: min(48vw, 460px);
  object-fit: contain;
  object-position: right bottom;
  transform: none;
  opacity: 1;
  animation: none;
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    right 0.5s var(--ease),
    left 0.5s var(--ease),
    max-width 0.5s var(--ease),
    width 0.5s var(--ease),
    object-position 0.5s var(--ease);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 2 * var(--pad), var(--max));
  margin: 0 auto;
  padding: clamp(2.25rem, 6vh, 3.5rem) 0;
  overflow: visible;
  animation: fade-in 0.85s var(--ease) both;
}

.hero__content > * {
  max-width: 32rem;
}

.hero__content > .hero__title-block {
  max-width: none;
}

.hero__title-block {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--navy);
  overflow: visible;
  white-space: nowrap;
  padding: 0.1em 0.08em 0.15em 0.06em;
  margin-left: -0.06em;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 560px) {
  .hero__brand {
    white-space: normal;
    line-height: 1.35;
  }

  .hero__title-block {
    display: block;
    width: 100%;
    margin-bottom: 1.85rem;
  }

  .hero__role {
    position: static;
    text-align: right;
    margin: 0.25rem 0 1.1rem;
  }

  .hero__lead {
    margin-top: 0.5rem;
  }
}

.hero__reelect {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.1rem;
}

.hero__role {
  position: absolute;
  right: 0.08em;
  top: 100%;
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
  text-align: right;
}

.hero__lead {
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 1.75rem;
  max-width: 28rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn--ghost {
  color: var(--navy);
  border-color: var(--navy);
}

.hero .btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--alt {
  background: var(--paper);
}

.section--navy {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 163, 90, 0.16), transparent 50%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255, 255, 255, 0.9);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section__head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.section__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section--navy .section__eyebrow {
  color: var(--gold-on-navy);
}

.section__head h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 0.4em;
}

.section__head p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 1.1rem;
}

.section--navy .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about__media {
  display: grid;
  gap: 0.85rem;
}

.about__photo {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(12, 35, 64, 0.45), transparent);
  pointer-events: none;
}

.about .roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about .roles li {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-mid);
  background: rgba(12, 35, 64, 0.06);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

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

/* Platform preview strips */
.platform-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.platform-item {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.platform-item:hover {
  background: rgba(12, 35, 64, 0.03);
}

.platform-item:hover h3 {
  color: var(--gold);
}

.platform-item__img {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
}

.platform-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.platform-item:hover .platform-item__img img {
  transform: scale(1.04);
}

.platform-item h3 {
  font-size: 1.35rem;
  margin: 0 0 0.35em;
  transition: color 0.2s;
}

.platform-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
}

.platform-item .more {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}

.section__cta {
  margin-top: 2rem;
}

/* Endorsements */
.endorsements {
  display: grid;
  gap: 2rem;
}

.endorsement {
  max-width: 42rem;
}

.endorsement__quote {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.endorsement__person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.endorsement__person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.endorsement__person strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.endorsement__person span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.endorsement-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.endorsement-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
}

.endorsement-nav button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.endorsement.is-hidden {
  display: none;
}

/* Social feeds (Facebook + X) */
.social-feeds {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.social-feed {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.social-feed__frame {
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(12, 35, 64, 0.04);
  border: 1px solid var(--line);
}

.social-feed__frame iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

.social-feed__frame--x {
  padding: 1rem;
  background: var(--white);
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.social-feed__frame--x .twitter-tweet {
  margin: 0 auto !important;
}

.social-feed__cta {
  margin: 1.25rem 0 0;
  text-align: center;
}

#social .section__head {
  text-align: center;
  margin-inline: auto;
}

@media (max-width: 800px) {
  .social-feeds {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 4.5rem) 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(196, 163, 90, 0.22), transparent 45%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  z-index: 0;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  margin: 0 0 0.35em;
  animation: rise 0.7s var(--ease) both;
}

.page-hero p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  animation: rise 0.7s 0.08s var(--ease) both;
}

/* Content blocks (platform / initiatives / accomplishments) */
.content-blocks {
  display: grid;
  gap: 0;
}

.content-block {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.content-block:first-child {
  padding-top: 0;
}

.content-block__media {
  overflow: hidden;
  border-radius: 2px;
  background: var(--paper-warm);
  aspect-ratio: 4 / 3;
}

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

.content-block h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 0.5em;
}

.content-block p {
  margin: 0;
  color: var(--ink-muted);
}

.content-block:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
}

.content-block:nth-child(even) .content-block__media {
  order: 2;
}

/* Contact / Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding-top: clamp(3rem, 6vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-contact h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.35em;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.contact-links {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.contact-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.contact-links a:hover {
  color: var(--gold-on-navy);
}

.social {
  display: flex;
  gap: 0.75rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .top-bar__inner {
    gap: 0.35rem 1.1rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .top-bar__inner::-webkit-scrollbar {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--pad) 1.25rem;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__text {
    order: -1;
  }

  .platform-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .platform-item__img {
    max-width: 320px;
  }

  .content-block,
  .content-block:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .content-block:nth-child(even) .content-block__media {
    order: 0;
  }

  .content-block__media {
    max-width: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(58vh, 560px);
    align-items: end;
    padding-top: 32%;
  }

  .hero__media {
    width: auto;
    opacity: 1;
  }

  /* LOCKED CHECKPOINT 2026-08-10 — mobile hero portrait (restore on request)
     right: 0; object-position: right bottom; transform: none; opacity: 0.28;
     max-width: min(78vw, 380px); fully on-screen, shoulder at right edge */
  .hero__portrait {
    left: auto;
    right: 0;
    width: auto;
    max-width: min(78vw, 380px);
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: none;
    transform-origin: right bottom;
    opacity: 0.28;
  }

  .hero__content {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .hero__title-block {
    margin-bottom: 1.75rem;
  }

  .hero__lead {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 520px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero__portrait,
  .hero__content,
  .page-hero h1,
  .page-hero p,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
