/* Samyama Ayurveda — Design System */
:root {
  --terracotta: #8B4A2B;
  --terracotta-deep: #6E3A22;
  --terracotta-soft: #A65D3A;
  --cream: #FAF6F0;
  --cream-deep: #F0E8DC;
  --ink: #2A211C;
  --ink-soft: #5C4F46;
  --ink-muted: #7A6B60;
  --sage: #6B8F71;
  --chartreuse: #C4E86B;
  --white: #FFFFFF;
  --border: rgba(42, 33, 28, 0.12);
  --shadow: 0 12px 40px rgba(42, 33, 28, 0.08);
  --radius: 4px;
  --radius-lg: 12px;
  --max: 1120px;
  --measure: 68ch;
  --header-h: 72px;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  --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.7;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 232, 107, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(139, 74, 43, 0.07), transparent 50%),
    var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--terracotta-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1.1em;
  max-width: var(--measure);
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(250, 246, 240, 0.96);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max));
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 560;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand:hover {
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem 0.95rem;
  flex-wrap: nowrap;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

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

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav .btn {
  margin-left: 0.35rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.86rem;
  white-space: nowrap;
}

.nav .btn::after {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  color: var(--white);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

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

.btn-accent {
  background: var(--chartreuse);
  color: var(--ink);
  border-color: var(--chartreuse);
}

.btn-accent:hover {
  background: #b5d85a;
  color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 246, 240, 0.45);
  padding-bottom: 0.1rem;
}

.link-arrow:hover {
  color: var(--chartreuse);
  border-bottom-color: var(--chartreuse);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.25) 0%, rgba(20, 14, 10, 0.45) 45%, rgba(20, 14, 10, 0.78) 100%),
    linear-gradient(90deg, rgba(20, 14, 10, 0.35) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5rem;
  max-width: 40rem;
  animation: rise 1s var(--ease) both;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chartreuse);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  max-width: 28ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

/* Page hero (interior) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(139, 74, 43, 0.05), transparent 70%);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 48ch;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.section-head p {
  color: var(--ink-soft);
}

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

/* Trust points */
.trust {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.15s; }
.trust-item:nth-child(2) { animation-delay: 0.3s; }
.trust-item:nth-child(3) { animation-delay: 0.45s; }

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(139, 74, 43, 0.1);
  color: var(--terracotta);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: none;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-media {
  position: relative;
  max-width: 320px;
  width: 100%;
  justify-self: start;
}

.split-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media.portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 18%;
  max-height: 400px;
}

.split-copy h1,
.split-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.split-copy .lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.pull-quote {
  margin: 2rem 0 0;
  padding: 1.4rem 1.5rem 1.4rem 1.6rem;
  border-left: 3px solid var(--chartreuse);
  background: linear-gradient(90deg, rgba(196, 232, 107, 0.18), rgba(196, 232, 107, 0.04));
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--ink);
  max-width: none;
}

/* Full-bleed break */
.bleed-break {
  position: relative;
  min-height: 42vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.bleed-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bleed-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.25), rgba(20, 14, 10, 0.45));
}

.bleed-break .bleed-caption {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  text-align: center;
  padding: 2rem;
  max-width: 28ch;
}

/* Services */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.02rem;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(107, 143, 113, 0.15);
  color: var(--sage);
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}

.check-list .check svg {
  width: 14px;
  height: 14px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.panel h2,
.panel h3 {
  margin-bottom: 1rem;
}

.contact-panel {
  background:
    linear-gradient(160deg, rgba(139, 74, 43, 0.95), rgba(110, 58, 34, 0.98)),
    var(--terracotta);
  color: var(--white);
  border: 0;
}

.contact-panel h3 {
  color: var(--white);
  font-size: 1.6rem;
}

.contact-panel p,
.contact-panel a {
  color: rgba(255, 255, 255, 0.92);
}

.contact-panel a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-panel a:hover {
  color: var(--chartreuse);
  border-bottom-color: var(--chartreuse);
}

.contact-meta {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 1.75rem;
}

.contact-meta div {
  display: grid;
  gap: 0.15rem;
}

.contact-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.services-visual {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.services-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Shop grid */
.intro-line {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.shop-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 160px;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.shop-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 74, 43, 0.35);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.shop-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.shop-card p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin: 0;
  max-width: none;
}

.shop-card .shop-cta {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.shop-banner {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.shop-banner img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Ayurveda */
.ayurveda-intro {
  display: grid;
  grid-template-columns: 1.15fr minmax(280px, 420px);
  gap: 3rem;
  align-items: center;
  margin-bottom: 1rem;
}

.ayurveda-intro img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 564 / 540;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  justify-self: center;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.help-item {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease);
}

.help-item:hover {
  border-color: rgba(107, 143, 113, 0.45);
}

.help-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(107, 143, 113, 0.12);
  color: var(--sage);
  margin-bottom: 1.1rem;
}

.help-icon svg {
  width: 22px;
  height: 22px;
}

.help-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.help-item p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: none;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--terracotta);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.testimonial-card footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-weight: 650;
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial-slot {
  border: 1.5px dashed rgba(139, 74, 43, 0.28);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.45);
  min-height: 100%;
}

.testimonial-slot p {
  max-width: 22ch;
  margin: 0.5rem auto 0;
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  margin: 0 0 0;
  padding: 4rem 0;
  background:
    linear-gradient(120deg, rgba(42, 33, 28, 0.92), rgba(139, 74, 43, 0.88)),
    url("../images/ayurvedic-ingredients.png") center/cover;
  color: var(--white);
}

.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.4rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.78);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer .brand {
  color: var(--cream);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.site-footer p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.95rem;
}

.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(250, 246, 240, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--chartreuse);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(250, 246, 240, 0.65);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

/* Responsive */
@media (max-width: 960px) {
  .trust-grid,
  .shop-grid,
  .help-grid,
  .footer-grid,
  .services-layout,
  .ayurveda-intro,
  .testimonial-grid,
  .shop-banner,
  .split {
    grid-template-columns: 1fr;
  }

  .split-media {
    max-width: 280px;
    justify-self: center;
  }

  .ayurveda-intro img {
    max-width: 360px;
    padding: 2rem 1.75rem;
  }

  .services-visual {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: grid;
    gap: 5px;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a::after {
    display: none;
  }

  .nav .btn {
    margin: 0.75rem 0 0;
    width: 100%;
  }

  .hero {
    min-height: 85vh;
    align-items: end;
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }

  .trust-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .services-visual {
    grid-template-columns: 1fr;
  }

  .services-visual img {
    height: 200px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .hero-media img {
    transform: none;
  }
}
