/* ============================================
   HOMESTEAD HALL — Styles
   Palette: Terracotta (#B85C38) + Sand (#F5F0EB)
   Fonts: Cormorant Garamond + Inter
   ============================================ */

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #2C2420;
  background-color: #FDFCFA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: #2C2420;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: #B85C38;
  color: #fff;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 0;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 92, 56, 0.1);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(44, 36, 32, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: #B85C38;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before,
.logo-mark::after {
  content: '';
  position: absolute;
  background: rgba(253, 252, 250, 0.7);
}
.logo-mark::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo-mark::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #2C2420;
}

.logo--light .logo-text {
  color: #F5F0EB;
}

/* ---------- NAV ---------- */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2C2420;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #B85C38;
  transition: width 0.3s ease;
}

.primary-nav a:hover {
  color: #B85C38;
}
.primary-nav a:hover::after {
  width: 100%;
}

/* ---------- HAMBURGER ---------- */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hamburger {
  width: 20px;
  height: 1px;
  background: #2C2420;
  position: relative;
  transition: background 0.3s ease;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: #2C2420;
  left: 0;
  transition: transform 0.3s ease;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #B85C38;
  color: #fff;
  border: 1px solid #B85C38;
}
.btn--primary:hover {
  background: #9E4D2E;
  border-color: #9E4D2E;
}

.btn--outline {
  background: transparent;
  color: #B85C38;
  border: 1px solid #B85C38;
}
.btn--outline:hover {
  background: #B85C38;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #2C2420;
  border: 1px solid rgba(44, 36, 32, 0.25);
}
.btn--ghost:hover {
  border-color: #2C2420;
}

.btn--white {
  background: #fff;
  color: #B85C38;
  border: 1px solid #fff;
}
.btn--white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--outline-light {
  background: transparent;
  color: #F5F0EB;
  border: 1px solid rgba(245, 240, 235, 0.5);
}
.btn--outline-light:hover {
  border-color: #F5F0EB;
  color: #fff;
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.btn--full {
  width: 100%;
}

/* ---------- SECTION COMMON ---------- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-header {
  margin-bottom: 4rem;
}
.section-header--centered {
  text-align: center;
}
.section-subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #6B5E58;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #FDFCFA;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: #2C2420;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #6B5E58;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

.hero-image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(184, 92, 56, 0.25);
  border-radius: 2px;
  z-index: -1;
}

.hero-stat {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 1px solid #B85C38;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: #B85C38;
  line-height: 1.3;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 300;
  color: #6B5E58;
  letter-spacing: 0.03em;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 8rem 0;
  background: #F5F0EB;
}

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

.service-card {
  background: #FDFCFA;
  padding: 2.5rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(184, 92, 56, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(184, 92, 56, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 32, 0.06);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: #B85C38;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #2C2420;
}

.service-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #6B5E58;
  line-height: 1.75;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 8rem 0;
  background: #FDFCFA;
}

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

.about-image-stack {
  position: relative;
}

.about-img-main img,
.about-img-secondary img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.about-img-main {
  aspect-ratio: 56/70;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border: 6px solid #FDFCFA;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 32/22;
}

.about-accent-line {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-top: 1px solid #B85C38;
  border-right: 1px solid #B85C38;
  z-index: -1;
}

.about-text-col {
  padding-left: 1rem;
}

.about-body {
  font-size: 1rem;
  font-weight: 300;
  color: #6B5E58;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-values {
  display: flex;
  gap: 0.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  color: #2C2420;
}

.value-line {
  width: 32px;
  height: 1px;
  background: rgba(184, 92, 56, 0.35);
  flex-shrink: 0;
}

/* ---------- APPROACH ---------- */
.approach {
  padding: 8rem 0;
  background: #2C2420;
  color: #F5F0EB;
}

.approach .section-eyebrow {
  color: #D4915A;
}

.approach .section-title {
  color: #F5F0EB;
}

.approach .section-subtitle {
  color: rgba(245, 240, 235, 0.65);
}

.approach-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 0 1.5rem;
}

.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(184, 92, 56, 0.4);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #F5F0EB;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.65);
  line-height: 1.75;
}

.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 1.2rem;
}
.step-connector::before {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(184, 92, 56, 0.5);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 8rem 0;
  background: #F5F0EB;
}

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

.testimonial {
  background: #FDFCFA;
  padding: 2.5rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(184, 92, 56, 0.08);
  position: relative;
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  color: #B85C38;
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1rem;
  font-weight: 300;
  color: #6B5E58;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-footer {
  border-top: 1px solid rgba(184, 92, 56, 0.15);
  padding-top: 1.25rem;
}

.testimonial-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: #2C2420;
}

/* ---------- CTA ---------- */
.cta {
  padding: 8rem 0;
  background: #B85C38;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(253, 252, 250, 0.1);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(253, 252, 250, 0.08);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-content {
  flex: 1;
}

.cta-eyebrow {
  color: rgba(245, 240, 235, 0.7);
}

.cta-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #F5F0EB;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-body {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.75);
  line-height: 1.75;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 8rem 0;
  background: #FDFCFA;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
}

.contact-intro {
  font-size: 1rem;
  font-weight: 300;
  color: #6B5E58;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184, 92, 56, 0.12);
}
.contact-item:last-child {
  border-bottom: none;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B85C38;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 300;
  color: #2C2420;
  line-height: 1.7;
}

.contact-item-value a {
  color: #2C2420;
  border-bottom: 1px solid rgba(44, 36, 32, 0.2);
  transition: color 0.2s, border-color 0.2s;
}
.contact-item-value a:hover {
  color: #B85C38;
  border-color: #B85C38;
}

.contact-map {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(184, 92, 56, 0.1);
}

/* ---------- FORM ---------- */
.contact-form-col {
  padding-left: 1rem;
}

.form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #2C2420;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B5E58;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: #2C2420;
  background: #F5F0EB;
  border: 1px solid transparent;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A89890;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #B85C38;
  background: #FDFCFA;
}

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

.form-group select {
  cursor: pointer;
}

.form-success {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(184, 92, 56, 0.06);
  border: 1px solid rgba(184, 92, 56, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.success-icon {
  width: 24px;
  height: 24px;
  color: #B85C38;
  flex-shrink: 0;
  margin-top: 2px;
}

.success-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #2C2420;
  margin-bottom: 0.25rem;
}

.success-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: #6B5E58;
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #2C2420;
  color: #F5F0EB;
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.6);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.65);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #F5F0EB;
}

.footer-address {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.65);
  line-height: 1.75;
  font-style: normal;
}
.footer-address a {
  color: rgba(245, 240, 235, 0.65);
  border-bottom: 1px solid rgba(245, 240, 235, 0.2);
  transition: color 0.2s, border-color 0.2s;
}
.footer-address a:hover {
  color: #F5F0EB;
  border-color: #F5F0EB;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 235, 0.1);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.4);
}

.footer-disclaimer {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 240, 235, 0.3);
  max-width: 400px;
  line-height: 1.6;
}

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- MOBILE NAV ---------- */
.mobile-overlay {
  display: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 3rem;
  }

  .about-grid,
  .contact-grid {
    gap: 3rem;
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 252, 250, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .primary-nav.open {
    transform: translateX(0);
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .primary-nav a {
    font-size: 1.125rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }

  .hero-visual {
    order: -1;
    max-width: 50%;
  }

  .hero-image-accent {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    text-align: center;
  }

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-stack {
    max-width: 400px;
  }

  .about-img-secondary {
    right: -16px;
    bottom: -24px;
  }

  .about-accent-line {
    display: none;
  }

  .approach-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step-connector {
    display: none;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-headline {
    font-size: 2rem;
  }

  .services,
  .about,
  .approach,
  .testimonials,
  .cta,
  .contact {
    padding: 5rem 0;
  }

  .hero-visual {
    max-width: 60%;
  }
}
