/* ========================================
   HAACHIKO EXPORTS — STYLESHEET
   Theme: Luxury-Industrial | Deep Navy + Warm Gold
   ======================================== */

:root {
  --navy: #0A0E1A;
  --navy-mid: #111827;
  --navy-light: #1C2333;
  --gold: #C8963E;
  --gold-light: #E2B96A;
  --gold-pale: rgba(200, 150, 62, 0.12);
  --terracotta: #C4623A;
  --white: #F5F0E8;
  --white-dim: rgba(245, 240, 232, 0.7);
  --white-faint: rgba(245, 240, 232, 0.15);
  --border: rgba(200, 150, 62, 0.2);
  --card-bg: rgba(28, 35, 51, 0.8);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

#navbar {
  height: 70px;
  display: flex;
  align-items: center;
}



#navbar {
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px !important;
  max-height: 36px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
}



.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  object-fit: contain;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  max-height: 42px;
}
.nav-logo img {
  height: 42px;   /* reduce from oversized */
  width: auto;
  object-fit: contain;
}

.footer .nav-logo img {
  height: 36px;
}


.nav-logo img {
  filter: brightness(0) invert(1);
}

.logo-mark,
.logo-text {
  display: none;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.footer .nav-logo img {
  height: 45px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.1; font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; font-weight: 300; }
h3 { font-size: 1.6rem; font-weight: 400; }
h4 { font-size: 1.15rem; font-weight: 600; }

em { font-style: italic; color: var(--gold-light); }

p { color: var(--white-dim); font-size: 1rem; line-height: 1.75; }

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

/* ---- LAYOUT ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

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

.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-mid);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 1.5rem 0;
}

.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--gold); }

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 5rem;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--white-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-faint) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,150,62,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,98,58,0.12) 0%, transparent 70%);
  bottom: 0; left: -50px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  color: var(--white-dim);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat { text-align: left; }

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  writing-mode: vertical-lr;
  color: var(--white-dim);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.35);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ========================================
   MARQUEE
   ======================================== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
  align-items: center;
}

.marquee-track span {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  white-space: nowrap;
}

.marquee-track .dot { color: var(--navy); opacity: 0.5; font-size: 0.6rem; }

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

/* ========================================
   SECTION COMMON
   ======================================== */
.section-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Figtree', sans-serif;
}

.section-title { margin-bottom: 1.2rem; }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

.section-sub {
  font-size: 1rem;
  color: var(--white-dim);
  margin-top: 0.5rem;
}

/* ========================================
   ABOUT
   ======================================== */
.about { background: var(--navy-mid); }

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

.about-left p {
  margin-bottom: 1rem;
  color: var(--white-dim);
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.about-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.about-card h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.about-card p { font-size: 0.85rem; line-height: 1.6; }

/* ========================================
   PRODUCTS
   ======================================== */
.products { background: var(--navy); }

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

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.product-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.product-pattern {
  position: absolute;
  inset: 0;
}

/* Carpet pattern – geometric diamond repeat */
.carpet-pattern {
  background-color: #3D1C0A;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(200,150,62,0.4) 0, rgba(200,150,62,0.4) 2px,
      transparent 0, transparent 50%
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(180,80,40,0.3) 0, rgba(180,80,40,0.3) 2px,
      transparent 0, transparent 50%
    );
  background-size: 28px 28px;
}

/* Leather pattern – fine grain texture */
.leather-pattern {
  background-color: #1A0D05;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(120,60,20,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(80,30,10,0.4) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg, transparent, transparent 3px,
      rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px
    );
}

/* Auto pattern – hex mesh */
.auto-pattern {
  background-color: #0D1520;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(200,150,62,0.2) 0%, transparent 70%),
    repeating-linear-gradient(
      60deg,
      rgba(200,150,62,0.15) 0, rgba(200,150,62,0.15) 1px,
      transparent 1px, transparent 20px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(200,150,62,0.15) 0, rgba(200,150,62,0.15) 1px,
      transparent 1px, transparent 20px
    );
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.5rem;
}

.product-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,150,62,0.3);
  line-height: 1;
}

.product-body { padding: 1.75rem; }

.product-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.product-body p { font-size: 0.88rem; margin-bottom: 1rem; }

.product-specs {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-specs li {
  font-size: 0.82rem;
  color: var(--white-dim);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-specs li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.product-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: color 0.2s, gap 0.2s;
  display: inline-block;
}

.product-cta:hover { color: var(--gold-light); }

/* ========================================
   WHY US
   ======================================== */
.why-us { background: var(--navy-mid); }

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-left .section-sub-left {
  font-size: 1.05rem;
  color: var(--white-dim);
  margin-bottom: 2.5rem;
}

.why-features { display: flex; flex-direction: column; gap: 1.5rem; }

.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.feature p { font-size: 0.85rem; }

.why-highlight-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.highlight-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.why-highlight-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.countries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.countries-grid span {
  font-size: 0.82rem;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.highlight-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ========================================
   PROCESS
   ======================================== */
.process { background: var(--navy); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 150px;
  position: relative;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-body h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.step-body p { font-size: 0.82rem; line-height: 1.65; }

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 1.4rem;
  align-self: flex-start;
}

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--navy-mid); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: flex-start;
}

.contact-left p {
  color: var(--white-dim);
  margin-bottom: 2rem;
}

.contact-info { display: flex; flex-direction: column; gap: 0.85rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.ci-icon { font-size: 1.1rem; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Figtree', sans-serif;
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.3);
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,150,62,0.08);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.75rem;
  color: var(--white-faint);
  text-align: center;
  margin-top: 0.25rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: 12px;
}

.success-icon {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.form-success h3 { color: var(--gold-light); margin-bottom: 0.5rem; }
.form-success p { color: var(--white-dim); font-size: 0.95rem; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-dim);
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h5,
.footer-contact h5 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  font-size: 0.88rem;
  color: var(--white-dim);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 7rem 1.5rem 4rem; }

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

  .process-steps { flex-direction: column; gap: 2rem; }
  .process-connector { display: none; }

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

  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .about-right { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; }
}
