/* ============================================
   ROWE'S BEACH HOUSE — Custom Styles
   Palette: Deep Navy (#0f3760) + Warm Gold (#c8a45a)
   Fonts: Cormorant Garamond (serif) + Montserrat (sans)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

.skip-link:focus {
  z-index: 9999;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Labels & Titles ---------- */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45a;
  margin-bottom: 12px;
}

.section-label--light {
  color: #e8be44;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #0a2748;
  margin-bottom: 20px;
}

.section-title--light {
  color: #f4f9f8;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  font-size: 1.05rem;
  color: #5299cc;
  line-height: 1.7;
}

.section--navy .section-header p {
  color: #a8cce6;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section--light {
  background-color: #fefdfb;
}

.section--navy {
  background-color: #0a2748;
}

.section--sand {
  background-color: #fdf8ee;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.nav.scrolled {
  background: rgba(10, 39, 72, 0.97);
  box-shadow: 0 2px 24px rgba(10, 39, 72, 0.15);
  padding: 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f4f9f8;
  letter-spacing: 0.02em;
}

.nav__logo-icon {
  color: #e8be44;
}

.nav__logo-text {
  transition: color 0.3s;
}

.nav.scrolled .nav__logo-text {
  color: #f4f9f8;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 249, 248, 0.8);
  transition: color 0.25s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #e8be44;
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: #e8be44;
}

.nav__link:hover::after {
  width: 100%;
}

.btn-nav {
  background: rgba(200, 164, 90, 0.15);
  border: 1px solid rgba(200, 164, 90, 0.4);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.btn-nav:hover {
  background: rgba(200, 164, 90, 0.25);
  border-color: #e8be44;
  color: #e8be44;
}

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

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

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #f4f9f8;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 39, 72, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav__link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #f4f9f8;
  transition: color 0.25s;
}

.mobile-nav__link:hover {
  color: #e8be44;
}

.mobile-nav__link--cta {
  margin-top: 12px;
  padding: 12px 32px;
  border: 1px solid rgba(200, 164, 90, 0.5);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8be44;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

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

.btn--gold {
  background: #c8a45a;
  color: #0a2748;
  border-color: #c8a45a;
}

.btn--gold:hover {
  background: #e8be44;
  border-color: #e8be44;
  box-shadow: 0 8px 24px rgba(200, 164, 90, 0.3);
}

.btn--outline-light {
  background: transparent;
  color: #f4f9f8;
  border-color: rgba(244, 249, 248, 0.5);
}

.btn--outline-light:hover {
  background: rgba(244, 249, 248, 0.1);
  border-color: #f4f9f8;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a2748;
}

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 50, 0.55);
}

.hero__scrim-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 26, 50, 0.3) 0%,
    rgba(6, 26, 50, 0.1) 40%,
    rgba(6, 26, 50, 0.5) 80%,
    rgba(6, 26, 50, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 120px 24px 80px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8be44;
  background: rgba(200, 164, 90, 0.12);
  border: 1px solid rgba(200, 164, 90, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #f4f9f8;
  margin-bottom: 24px;
}

.hero__title-accent {
  color: #e8be44;
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(244, 249, 248, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244, 249, 248, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(244, 249, 248, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---------- Intro ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.intro__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #154a80;
  margin-bottom: 16px;
}

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

.intro__image {
  position: relative;
  height: 560px;
}

.image-frame {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 39, 72, 0.12);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

.image-frame:first-child {
  width: 70%;
  top: 0;
  left: 0;
  z-index: 1;
}

.image-frame--offset {
  width: 55%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid #fefdfb;
}

/* ---------- Values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.values__item {
  background: #fefdfb;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(200, 164, 90, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 39, 72, 0.08);
}

.values__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 164, 90, 0.1);
  border-radius: 14px;
  color: #c8a45a;
  margin-bottom: 20px;
}

.values__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a2748;
  margin-bottom: 10px;
}

.values__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #154a80;
}

/* ---------- Amenities ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.amenity-card {
  background: rgba(244, 249, 248, 0.06);
  border: 1px solid rgba(244, 249, 248, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.amenity-card__img {
  height: 220px;
  overflow: hidden;
}

.amenity-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.amenity-card:hover .amenity-card__img img {
  transform: scale(1.05);
}

.amenity-card__body {
  padding: 28px 32px;
}

.amenity-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #f4f9f8;
  margin-bottom: 8px;
}

.amenity-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(168, 204, 230, 0.85);
}

.stay-cta {
  text-align: center;
  padding: 48px;
  background: rgba(244, 249, 248, 0.04);
  border: 1px solid rgba(244, 249, 248, 0.08);
  border-radius: 24px;
}

.stay-cta__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #a8cce6;
  margin-bottom: 24px;
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #154a80;
  margin-bottom: 24px;
}

.location__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.location__list li {
  font-size: 1rem;
  line-height: 1.6;
  color: #154a80;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.location__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c8a45a;
  font-weight: 500;
  transition: color 0.2s;
}

.location__list a:hover {
  color: #e8be44;
  text-decoration: underline;
}

.location__note {
  font-size: 0.9rem;
  color: #5299cc;
  font-style: italic;
}

.map-placeholder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 39, 72, 0.12);
  aspect-ratio: 4/3;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  aspect-ratio: 3/3.75;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 39, 72, 0.2), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 16px;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 26, 50, 0.9) 0%,
    rgba(6, 26, 50, 0.7) 60%,
    rgba(6, 26, 50, 0.4) 100%
  );
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 80px 0;
}

.cta-banner__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #f4f9f8;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(168, 204, 230, 0.9);
  margin-bottom: 32px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #154a80;
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 164, 90, 0.1);
  border-radius: 12px;
  color: #c8a45a;
}

.contact-detail strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a2748;
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: #154a80;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: #c8a45a;
  text-decoration: underline;
}

/* ---------- Form ---------- */
.form {
  background: #fefdfb;
  border: 1px solid rgba(200, 164, 90, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(10, 39, 72, 0.06);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #154a80;
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #0a2748;
  background: #fdf8ee;
  border: 1.5px solid rgba(200, 164, 90, 0.25);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #a8cce6;
}

.form__input:focus,
.form__textarea:focus {
  border-color: #c8a45a;
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.12);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(200, 164, 90, 0.1);
  border: 1px solid rgba(200, 164, 90, 0.3);
  border-radius: 12px;
  color: #6d5729;
  font-size: 0.9rem;
  font-weight: 500;
}

.form__success.visible {
  display: flex;
}

.form__success svg {
  color: #c8a45a;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: #061a32;
  color: rgba(168, 204, 230, 0.7);
  padding: 72px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(168, 204, 230, 0.1);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f4f9f8;
  margin-bottom: 16px;
}

.footer__logo svg {
  color: #e8be44;
}

.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__links {
  display: flex;
  gap: 48px;
}

.footer__col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8be44;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(168, 204, 230, 0.7);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: #e8be44;
}

.footer__col span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(168, 204, 230, 0.4);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal:nth-child(2) { transition-delay: 0.08s; }
  .reveal:nth-child(3) { transition-delay: 0.16s; }
  .reveal:nth-child(4) { transition-delay: 0.24s; }
  .reveal:nth-child(5) { transition-delay: 0.32s; }
  .reveal:nth-child(6) { transition-delay: 0.4s; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .intro,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro__image {
    height: 400px;
    order: -1;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    aspect-ratio: 3/2;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__content {
    padding: 100px 20px 60px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .intro__image {
    height: 320px;
  }

  .image-frame:first-child {
    width: 75%;
  }

  .image-frame--offset {
    width: 65%;
  }

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

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    aspect-ratio: 4/3;
  }

  .cta-banner {
    min-height: auto;
  }

  .cta-banner__content {
    padding: 60px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
  }

  .form {
    padding: 28px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__badge {
    font-size: 0.65rem;
  }

  .section-header {
    margin-bottom: 40px;
  }
}
