/* ============================================================
   MAXARÁ AESTHETICS — SHARED STYLESHEET
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --color-oyster:      #F5F0E8;
  --color-oyster-dark: #EDE6D6;
  --color-charcoal:    #2C2C2C;
  --color-walnut:      #5C3D2E;
  --color-terracotta:  #C4673A;
  --color-gold:        #B89A5A;
  --color-cream-pure:  #FAF7F2;
  --color-mist:        rgba(245, 240, 232, 0.92);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Josefin Sans', sans-serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-oyster);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.85;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   SCROLL PROGRESS
============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1001;
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ============================================================
   NAVIGATION (subpage default — frosted)
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-mist);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(184, 154, 90, 0.2);
  transition:
    padding 0.5s var(--ease-expo),
    transform 0.45s var(--ease-expo);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav__logo {
  height: 40px;
  mix-blend-mode: multiply;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav__links a {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  position: relative;
  transition: color 0.4s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-expo);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  border: 1px solid rgba(44, 44, 44, 0.3);
  padding: 0.65rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s;
}

.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
  z-index: 0;
}

.nav__cta:hover::before { transform: scaleX(1); }
.nav__cta span { position: relative; z-index: 1; }
.nav__cta:hover span { color: var(--color-cream-pure); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-charcoal);
  transition: transform 0.3s var(--ease-expo), opacity 0.3s, background 0.3s;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-walnut);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-expo);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-cream-pure);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-expo), color 0.3s;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.4s; }

.mobile-menu a:hover {
  color: var(--color-terracotta);
}

/* ============================================================
   SHARED UTILITIES
============================================================ */
.eyebrow {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
  transition: width 1s var(--ease-expo);
}

.eyebrow.in-view::before {
  width: 40px;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  color: var(--color-charcoal);
}

.section-headline em {
  font-style: italic;
  font-weight: 300;
}

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.63rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-expo);
  z-index: 0;
}

.btn:hover::before { transform: scaleX(1); }
.btn > span { position: relative; z-index: 1; transition: color 0.4s ease; }
.btn--dark { color: var(--color-charcoal); }
.btn--dark:hover > span { color: var(--color-cream-pure); }
.btn--light { color: var(--color-oyster); }
.btn--light:hover > span { color: var(--color-charcoal); }
.btn--light::before { background: var(--color-oyster); }
.btn--terracotta { color: var(--color-terracotta); }
.btn--terracotta:hover > span { color: var(--color-cream-pure); }

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 1s var(--ease-expo);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 1.1s var(--ease-expo);
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 1.1s var(--ease-expo);
}

.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   IMAGE PLACEHOLDER
============================================================ */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-walnut) 0%, #3d2518 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder__label {
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  text-align: center;
  padding: 1rem;
  line-height: 1.8;
  z-index: 1;
}

.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.img-placeholder img.img-hidden {
  display: none;
}

/* ============================================================
   MARQUEE STRIP
============================================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--color-walnut);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(184, 154, 90, 0.25);
  border-bottom: 1px solid rgba(184, 154, 90, 0.25);
}

.marquee-strip--dark {
  background: var(--color-charcoal);
}

.marquee-strip--lg .marquee-strip__track span {
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  padding: 0 4rem;
}

.marquee-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-strip__track:hover {
  animation-play-state: paused;
}

.marquee-strip__track span {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
  padding: 0 3rem;
}

.marquee-strip__track span.dot {
  color: var(--color-terracotta);
  padding: 0;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURE SPLIT SECTIONS
============================================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
}

.feature-split--reverse {
  direction: rtl;
}

.feature-split--reverse > * {
  direction: ltr;
}

.feature-split__media {
  position: relative;
  overflow: hidden;
}

.feature-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 2s var(--ease-expo);
}

.feature-split__media.in-view img {
  transform: scale(1);
}

.feature-split__media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--color-walnut) 0%, #3d2518 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-split__media-placeholder span {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
}

.feature-split__content {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1.2s var(--ease-expo);
}

.feature-split--reverse .feature-split__content {
  transform: translateX(-40px);
}

.feature-split__content.in-view {
  opacity: 1;
  transform: translateX(0);
}

.feature-split__content--walnut {
  background: var(--color-walnut);
  color: var(--color-oyster);
}

.feature-split__content--walnut .eyebrow {
  color: var(--color-gold);
}

.feature-split__content--walnut .section-headline {
  color: var(--color-oyster);
}

.feature-split__content--oyster {
  background: var(--color-oyster);
}

.feature-split__content .section-headline {
  margin-bottom: 1.5rem;
}

.feature-split__content p {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  color: rgba(44, 44, 44, 0.72);
}

.feature-split__content--walnut p {
  color: rgba(245, 240, 232, 0.72);
}

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq {
  padding: 9rem 8%;
  background: var(--color-oyster);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.faq__left .section-headline {
  margin-bottom: 1rem;
}

.faq__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--color-walnut);
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(184, 154, 90, 0.3);
}

.faq__question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}

.faq__question-label {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.5;
}

.faq__chevron {
  width: 14px;
  height: 14px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-expo);
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-expo), padding 0.5s var(--ease-expo);
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.93rem;
  color: rgba(44, 44, 44, 0.68);
  line-height: 1.85;
}

/* ============================================================
   CTA / BOOKING
============================================================ */
.cta-section {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.cta__bg {
  position: absolute;
  inset: -12%;
  background: var(--color-walnut);
  filter: blur(3px) brightness(0.55) saturate(0.85);
  will-change: transform;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.4);
}

.cta__content {
  position: relative;
  z-index: 2;
  color: var(--color-oyster);
  max-width: 640px;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1.1s var(--ease-expo);
}

.cta__content.in-view {
  opacity: 1;
  transform: translateY(0);
}

.cta__content .eyebrow {
  justify-content: center;
  color: rgba(245, 240, 232, 0.7);
}

.cta__content .eyebrow::before {
  background: rgba(245, 240, 232, 0.4);
}

.cta__content h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-cream-pure);
  margin-bottom: 1.25rem;
}

.cta__content p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   POLICY PAGE STYLES
============================================================ */
.policy-header {
  padding: 9rem 8% 4rem;
  text-align: center;
}

.policy-header__eyebrow {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 1.5rem;
}

.policy-header__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  color: var(--color-charcoal);
}

.policy-header__date {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(44, 44, 44, 0.5);
  margin-top: 1.25rem;
}

.policy-header__rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 2.5rem auto 0;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 8% 6rem;
}

.policy-content__intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-charcoal);
  margin-bottom: 3rem;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  color: var(--color-charcoal);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184, 154, 90, 0.2);
}

.policy-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-walnut);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(44, 44, 44, 0.85);
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.policy-content ul {
  list-style: none;
  padding-left: 0;
}

.policy-content ul li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(44, 44, 44, 0.85);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 1px;
  background: var(--color-terracotta);
}

.policy-content ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.policy-content ol li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(44, 44, 44, 0.85);
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.policy-content strong {
  font-weight: 400;
  color: var(--color-charcoal);
}

.policy-content a {
  color: var(--color-terracotta);
  border-bottom: 1px solid rgba(196, 103, 58, 0.3);
  transition: border-color 0.3s;
}

.policy-content a:hover {
  border-color: var(--color-terracotta);
}

.policy-content__contact-block {
  background: var(--color-oyster-dark);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
}

.policy-content__contact-block p {
  margin-bottom: 0.25rem;
}

.policy-content__copyright {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.35);
  margin-top: 3rem;
  text-align: center;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--color-charcoal);
  padding: 5rem 8% 2.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(184, 154, 90, 0.2);
  margin-bottom: 2.5rem;
}

.footer__logo {
  height: 44px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  transition: color 0.3s;
}

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

.footer__col-title {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--color-cream-pure); }

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.footer__contact-label {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.footer__contact-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
}

a.footer__contact-value {
  text-decoration: none;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.3s ease;
}

a.footer__contact-value:hover {
  color: var(--color-terracotta);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  transition: color 0.3s;
}

.footer__legal a:hover { color: rgba(245, 240, 232, 0.7); }

/* ============================================================
   RESPONSIVE — SHARED COMPONENTS
============================================================ */
@media (max-width: 1100px) {
  .feature-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-split--reverse {
    direction: ltr;
  }

  .feature-split__media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .feature-split__media-placeholder {
    min-height: 0;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 7rem 6%;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer__top > *:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav {
    padding: 1.25rem 5%;
  }

  .feature-split__content {
    padding: 3.5rem 5%;
  }

  .feature-split__media {
    aspect-ratio: 3 / 2;
  }

  .faq {
    padding: 5rem 5%;
    gap: 2rem;
  }

  .policy-header {
    padding: 7rem 5% 3rem;
  }

  .policy-content {
    padding: 0 5% 5rem;
  }

  .policy-content__contact-block {
    padding: 1.5rem;
  }

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

  .footer__top > *:first-child {
    grid-column: span 1;
  }

  .footer {
    padding: 4rem 5% 2rem;
  }
}

@media (max-width: 480px) {
  .feature-split__content {
    padding: 2.5rem 5%;
  }

  .feature-split__media {
    aspect-ratio: 4 / 3;
  }

  .faq {
    padding: 4rem 5%;
    gap: 1.5rem;
  }

  .policy-header {
    padding: 6rem 5% 2.5rem;
  }

  .policy-content {
    padding: 0 5% 4rem;
  }
}
