/* ===========================
   Almas del Sol - global styles
   =========================== */

:root {
  --terracotta: #DB6643;
  --terracotta-dark: #B14E2F;
  --sand: #EAC379;
  --sand-soft: #F4DCAA;
  --pink: #E2939D;
  --pink-soft: #F2C8CE;
  --pink-deep: #B14F60;
  --pink-darker: #6B2A3A;
  --cream: #FBF1E0;
  --cream-deep: #F8E1DD;
  --ink: #6B2A3A;
  --ink-soft: #9E5A66;
  --card-shadow: 0 28px 60px -28px rgba(61, 36, 24, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 6rem;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

p {
  font-size: 1rem;
  color: var(--ink-soft);
}

p + p {
  margin-top: 1rem;
}

ul {
  color: var(--ink-soft);
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

.bg-sand {
  background: var(--sand);
}

.bg-cream-deep {
  background: var(--cream-deep);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(251, 241, 224, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 102, 67, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Serif Display', serif;
  color: var(--terracotta);
  font-size: 1.4rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links > a,
.nav-dropdown > .nav-parent {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown > .nav-parent:hover,
.nav-dropdown > .nav-parent.active,
.nav-dropdown:hover > .nav-parent,
.nav-dropdown:focus-within > .nav-parent {
  color: var(--terracotta);
}

.nav-dropdown {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-parent::after {
  content: '▾';
  font-size: 0.7rem;
  transform: translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  padding: 0.9rem;
  background: rgba(251, 241, 224, 0.98);
  border: 1px solid rgba(219, 102, 67, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px -35px rgba(61, 36, 24, 0.45);
  display: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(219, 102, 67, 0.08);
  color: var(--terracotta);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  letter-spacing: 0.15em !important;
}

.nav-cta:hover {
  background: var(--terracotta-dark);
  color: var(--cream) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: 0.3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

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

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--cream);
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7.25rem 1.5rem 2.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('home-retreat.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.8) saturate(1.05);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 36, 24, 0.1) 0%, rgba(61, 36, 24, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 760px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 6.5rem;
  left: 0;
  padding: 0 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-transform: uppercase;
  z-index: 2;
}

.hero-wordmark {
  display: block;
  width: clamp(260px, 52vw, 560px);
  margin: 0 auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.35));
}

.hero-tag {
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.85rem;
  color: var(--cream);
  opacity: 0.95;
}

.hero-subtitle {
  color: var(--cream);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.hero-cta {
  margin-top: 1.6rem;
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Home sections ---------- */
.pillars-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.pillars-intro h2 {
  margin: 0.8rem 0 1rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.pillar {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.pillar-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s;
}

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

.pillar-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--cream);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  text-align: center;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 0, 0, 0.35);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature.flip .feature-img {
  order: 2;
}

.feature-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: var(--card-shadow);
}

.feature-body .eyebrow {
  margin-bottom: 1rem;
}

.feature-body h2 {
  margin-bottom: 1.5rem;
}

.feature-body p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  padding-left: 1.6rem;
  position: relative;
  margin-top: 0.6rem;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: '☀';
  position: absolute;
  left: 0;
  color: var(--sand);
  font-size: 1.1rem;
}

.community {
  text-align: center;
  background: var(--pink);
  color: var(--cream);
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.community::before,
.community::after {
  content: '✿';
  position: absolute;
  font-size: 8rem;
  color: var(--pink-soft);
  opacity: 0.35;
}

.community::before {
  top: 2rem;
  left: 4%;
  transform: rotate(-15deg);
}

.community::after {
  bottom: 2rem;
  right: 4%;
  transform: rotate(20deg);
}

.community .eyebrow,
.community h2,
.community p {
  color: var(--cream);
}

.community h2 {
  margin: 1rem 0 1.5rem;
}

.community p {
  max-width: 680px;
  margin: 0.65rem auto;
  font-size: 1.12rem;
}

/* ---------- Retreat cards ---------- */
.upcoming {
  background: var(--cream-deep);
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.retreat-card {
  background: rgba(255, 253, 247, 0.92);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.retreat-card-img {
  aspect-ratio: 4 / 4.5;
  background-size: cover;
  background-position: center;
}

.retreat-card-body {
  padding: 2rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.retreat-card-date {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.retreat-card-body h3 {
  margin: 0.9rem 0 0.9rem;
}

.retreat-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.retreat-card-meta span {
  background: rgba(234, 195, 121, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.retreat-card-list {
  list-style: none;
  margin-bottom: 1.8rem;
}

.retreat-card-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-top: 0.55rem;
}

.retreat-card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.retreat-card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream-deep);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 0.6rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: #fffdf6;
  padding: 1.4rem 1.4rem 1rem;
  border-radius: 18px;
  border-top-left-radius: 4px;
  text-align: left;
  box-shadow: 0 12px 30px -18px rgba(61, 36, 24, 0.4);
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 14px;
  height: 14px;
  background: #fffdf6;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.testimonial-name.terracotta {
  color: var(--terracotta);
}

.testimonial-name.pink {
  color: var(--pink);
}

.testimonial-name.sand {
  color: #C49A4A;
}

.testimonial p {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}

.testimonial-reactions {
  display: inline-block;
  background: #fdf0eb;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(219, 102, 67, 0.18);
}

/* ---------- Shared retreat page ---------- */
.retreat-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.retreat-hero.compact {
  min-height: 74vh;
}

.retreat-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.76);
}

.retreat-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 36, 24, 0.08) 15%, rgba(61, 36, 24, 0.72) 100%);
}

.retreat-hero-loc {
  position: absolute;
  top: 6.5rem;
  right: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-transform: uppercase;
  z-index: 2;
}

.retreat-hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 900px;
}

.retreat-hero h1,
.retreat-hero p,
.retreat-hero strong {
  color: var(--cream);
}

.retreat-hero-copy {
  max-width: 620px;
  margin-top: 1.4rem;
  font-size: 1.08rem;
}

.meta-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 241, 224, 0.35);
}

.meta-row div {
  color: var(--cream);
}

.meta-row .eyebrow {
  color: var(--sand);
  display: block;
  margin-bottom: 0.3rem;
}

.meta-row strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
}

.retreat-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.retreat-intro h2 {
  margin: 0.9rem 0 1.5rem;
}

.includes {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: start;
}

.includes-copy h2 {
  margin: 0.8rem 0 1rem;
}

.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2rem;
}

.includes-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink);
  font-size: 0.96rem;
}

.includes-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.highlight-card {
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(219, 102, 67, 0.15);
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 18px 40px -32px rgba(61, 36, 24, 0.35);
}

.highlight-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.45rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.photo-card {
  min-height: 380px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--card-shadow);
}

.book {
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
  padding: 6rem 1.5rem;
}

.book h2,
.book p,
.book .eyebrow {
  color: var(--cream);
}

.book h2 {
  margin: 0.8rem 0 1.2rem;
}

.book p {
  max-width: 620px;
  margin: 0 auto 2rem;
}

.book .btn {
  background: var(--cream);
  color: var(--terracotta);
}

.book .btn:hover {
  background: var(--sand);
}

.book .btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.book .btn-outline:hover {
  background: var(--cream);
  color: var(--terracotta);
}

/* ---------- About page ---------- */
.about-hero {
  padding: 10rem 1.5rem 4rem;
  background: var(--cream);
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.about-hero p {
  max-width: 560px;
  margin: 1.2rem auto 0;
}

.about-portrait {
  max-width: 480px;
  margin: 3rem auto 0;
  aspect-ratio: 4 / 5;
  background-image: url('IMG_1698.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 40px 70px -25px rgba(61, 36, 24, 0.35);
}

.about-story {
  max-width: 720px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.1rem;
  margin-top: 1.4rem;
  color: var(--ink);
}

.about-story p:first-of-type::first-letter {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--terracotta);
  float: left;
  line-height: 0.9;
  margin: 0.3rem 0.6rem 0 0;
}

.about-quote {
  text-align: center;
  margin: 4rem auto;
  max-width: 640px;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--terracotta);
  line-height: 1.2;
}

.contact-block {
  background: var(--sand);
  color: var(--cream);
  text-align: center;
  padding: 6rem 1.5rem;
}

.contact-block h2,
.contact-block p,
.contact-block .eyebrow {
  color: var(--cream);
}

.contact-block h2 {
  margin: 0.8rem 0 1.2rem;
}

.contact-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-links a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--terracotta-dark);
  padding: 0.6rem 1.4rem;
  background: var(--cream);
  border-radius: 999px;
  transition: transform 0.2s;
}

.contact-links a:hover {
  transform: translateY(-3px);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--pink-darker);
  color: var(--cream);
  padding: 5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer h3 {
  color: var(--sand);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer a {
  display: block;
  padding: 0.3rem 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer a:hover {
  opacity: 1;
  color: var(--sand);
}

.footer-brand p {
  color: var(--cream);
  opacity: 0.7;
  margin-top: 1rem;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(251, 241, 224, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature,
  .includes,
  .retreat-grid,
  .highlight-grid,
  .photo-grid,
  .testimonial-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature.flip .feature-img {
    order: 0;
  }

  .retreat-card-img {
    aspect-ratio: 4 / 3;
  }

  .photo-card {
    min-height: 320px;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 1rem 1.2rem;
  }

  .hero {
    min-height: min(88svh, 760px);
    padding-bottom: 2rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    border-top: 1px solid rgba(219, 102, 67, 0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a,
  .nav-dropdown > .nav-parent {
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    min-width: auto;
    padding: 0.5rem 0 0 1rem;
    margin-top: 0.5rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-meta {
    padding: 0 1rem;
    font-size: 0.65rem;
  }

  .retreat-hero-loc {
    right: 1rem;
  }

  section {
    padding: 4rem 0;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 6.6rem 1rem 2rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  .hero-wordmark {
    width: min(84vw, 360px);
  }

  .hero-tag {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-top: 0.9rem;
  }

  .hero-cta {
    margin-top: 1.25rem;
  }

  .hero-cta,
  .button-row,
  .retreat-card-actions,
  .contact-links {
    flex-direction: column;
  }

  .btn,
  .retreat-card-actions .btn {
    width: 100%;
    text-align: center;
  }

  .meta-row {
    gap: 1.2rem;
  }
}


@media (max-height: 820px) {
  .hero {
    min-height: auto;
    padding-top: 6.8rem;
    padding-bottom: 2rem;
  }

  .hero-wordmark {
    width: clamp(240px, 44vw, 500px);
  }

  .hero-tag {
    margin-top: 0.7rem;
  }

  .hero-subtitle {
    margin-top: 0.85rem;
  }

  .hero-cta {
    margin-top: 1.15rem;
  }
}
