/* ====== ROOT ====== */
:root {
  --amber: #F5A623;
  --black: #111111;
  --near-black: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(17,17,17,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
}

/* ====== NAV ====== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }

.nav-cta {
  background: var(--amber);
  color: var(--black);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ====== SECTIONS ====== */
section { padding: 140px 48px; position: relative; }
.section-light { background: var(--off-white); color: var(--near-black); }
.section-dark { background: var(--black); color: var(--white); }
.container { max-width: 1320px; margin: 0 auto; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

/* ====== HOME HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,166,35,0.08) 0%, transparent 50%),
    var(--black);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; }

.hero h1 {
  font-weight: 900;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
}
.hero h1 .accent { color: var(--amber); font-style: italic; font-weight: 800; }

.hero-sub {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  max-width: 720px;
  line-height: 1.5;
  margin-bottom: 56px;
  opacity: 0.85;
}

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  position: absolute;
  bottom: 60px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.5;
}

/* ====== PAGE HERO (for inner pages) ====== */
.page-hero {
  padding: 200px 48px 120px;
  background: var(--black);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 30%, rgba(245,166,35,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { max-width: 1320px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 {
  font-weight: 900;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.page-hero h1 .accent { color: var(--amber); font-style: italic; font-weight: 800; }
.page-hero-sub {
  font-size: clamp(18px, 1.8vw, 22px);
  max-width: 720px;
  line-height: 1.5;
  opacity: 0.85;
}

/* ====== BUTTONS ====== */
.btn-primary {
  background: var(--amber);
  color: var(--black);
  padding: 20px 36px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-primary:hover { background: var(--white); gap: 18px; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 20px 36px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 1px solid var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-secondary:hover { background: var(--white); color: var(--black); }

.section-light .btn-secondary { color: var(--near-black); border-color: var(--near-black); }
.section-light .btn-secondary:hover { background: var(--near-black); color: var(--white); }

/* ====== SECTION HEADERS ====== */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 96px;
  align-items: end;
}
.section-header h2 {
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.section-header h2 .accent { color: var(--amber); font-style: italic; font-weight: 800; }
.section-header p { font-size: 18px; line-height: 1.6; opacity: 0.85; }

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.service {
  padding: 64px 48px;
  border-bottom: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  transition: background 0.3s ease;
}
.service:nth-child(2n) { border-right: none; }
.service:hover { background: var(--white); }

.service-number {
  font-weight: 900;
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 0.18em;
  margin-bottom: 32px;
}
.service h3 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.service p { font-size: 16px; line-height: 1.6; margin-bottom: 32px; opacity: 0.85; }

.service-includes { list-style: none; }
.service-includes li {
  padding: 8px 0;
  font-size: 14px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-includes li::before { content: '+'; color: var(--amber); font-weight: 700; }

/* ====== WORK PREVIEW GRID (Home) ====== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.work-item {
  background: var(--near-black);
  border: 1px solid var(--line);
  padding: 48px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.work-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--amber);
  transition: height 0.4s ease;
}
.work-item:hover::before { height: 100%; }
.work-item:hover { border-color: var(--amber); transform: translateY(-4px); }

.work-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.work-item h3 {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.work-item p { font-size: 16px; opacity: 0.75; line-height: 1.5; margin-bottom: 32px; }
.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.work-result { color: var(--amber); font-weight: 700; opacity: 1; }

/* ====== CASE STUDY DETAIL (Work page) ====== */
.case-study {
  padding: 120px 48px;
  border-bottom: 1px solid var(--line);
}
.case-study:nth-child(even) {
  background: var(--near-black);
}
.case-study-inner { max-width: 1320px; margin: 0 auto; }

.case-study-meta {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.case-study-meta-info { display: flex; flex-direction: column; gap: 16px; }
.case-study-meta-info .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.case-study-meta-info .value {
  font-size: 15px;
  opacity: 0.85;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.case-study-meta-info .value:last-child { border-bottom: none; }

.case-study-headline h2 {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.case-study-headline p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Hero image placeholder */
.case-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(245,166,35,0.06) 0%, rgba(245,166,35,0.02) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 2px,
      transparent 2px,
      transparent 12px
    );
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 80px;
}

/* Two-column content split for case study body */
.case-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 80px;
}
.case-content h3 {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 24px;
}
.case-content p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
  opacity: 0.9;
}
.case-deliverables {
  list-style: none;
}
.case-deliverables li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.case-deliverables li::before {
  content: '+';
  color: var(--amber);
  font-weight: 700;
  font-size: 18px;
}

/* Image gallery placeholders */
.case-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.case-gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.case-img-placeholder {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(245,166,35,0.05) 0%, transparent 100%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 2px,
      transparent 2px,
      transparent 12px
    );
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.case-img-placeholder.tall { aspect-ratio: 3 / 4; }
.case-img-placeholder.wide { aspect-ratio: 16 / 9; }

/* Outcome strip */
.case-outcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--black);
  align-items: center;
}
.case-outcome-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.case-outcome h4 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.case-outcome .visit-link {
  color: var(--amber);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.case-outcome .visit-link:hover { color: var(--white); gap: 18px; }

/* ====== CLIENTS LOGO WALL ====== */
.clients-section {
  padding: 140px 48px;
  background: var(--off-white);
  color: var(--near-black);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(17,17,17,0.08);
  border: 1px solid rgba(17,17,17,0.08);
  margin-top: 64px;
}

.client-logo {
  aspect-ratio: 3 / 2;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
  transition: all 0.3s ease;
  position: relative;
}

.client-logo:hover {
  background: var(--white);
  color: var(--near-black);
}

.client-logo.empty {
  color: rgba(17,17,17,0.15);
  font-size: 10px;
}

/* ====== APPROACH ====== */
.approach {
  padding: 100px 48px;
  background: var(--near-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
}
.approach-step { position: relative; }
.approach-step::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--amber);
}
.approach-step .num {
  font-weight: 900;
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  margin-top: 40px;
  display: block;
}
.approach-step h4 {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.approach-step p { font-size: 14px; opacity: 0.7; line-height: 1.6; }

/* ====== ABOUT ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-text p { font-size: 19px; line-height: 1.6; margin-bottom: 24px; }
.about-text p:first-child {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.principles { list-style: none; }
.principles li {
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.principles li:last-child { border-bottom: none; }
.principle-num { font-weight: 900; font-size: 16px; color: var(--amber); letter-spacing: 0.1em; }
.principle-body h4 {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.principle-body p { font-size: 15px; opacity: 0.75; line-height: 1.5; }

/* ====== CONTACT ====== */
.contact {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(245,166,35,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.contact-content { position: relative; z-index: 2; }
.contact h2 {
  font-weight: 900;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  max-width: 1200px;
}
.contact h2 .accent { color: var(--amber); font-style: italic; font-weight: 800; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  margin-top: 64px;
}
.contact-info p { font-size: 18px; line-height: 1.6; margin-bottom: 32px; opacity: 0.85; }

.contact-detail { padding: 24px 0; border-top: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.contact-detail-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
}
.contact-detail-value:hover { color: var(--amber); }

/* ====== FORM ====== */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--amber);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--black); color: var(--white); }

.contact-form button {
  background: var(--amber);
  color: var(--black);
  border: none;
  padding: 22px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
  margin-top: 16px;
}
.contact-form button:hover { background: var(--white); }

/* ====== CTA STRIP ====== */
.cta-strip {
  background: var(--black);
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-strip h2 {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip h2 .accent { color: var(--amber); font-style: italic; font-weight: 800; }
.cta-strip p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== FOOTER ====== */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 64px 48px 40px;
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand h3 {
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--amber); }
.footer-brand p { opacity: 0.6; font-size: 14px; line-height: 1.6; max-width: 320px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--amber); }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ====== MOBILE ====== */
@media (max-width: 980px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  section { padding: 100px 24px; }
  .hero, .page-hero { padding: 120px 24px 60px; }
  .section-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 48px 24px; border-right: none; }
  .work-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .approach-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-meta { display: none; }
  .case-study { padding: 80px 24px; }
  .case-study-meta { grid-template-columns: 1fr; gap: 32px; }
  .case-content { grid-template-columns: 1fr; gap: 32px; }
  .case-gallery { grid-template-columns: 1fr; }
  .case-gallery-row { grid-template-columns: 1fr; }
  .case-outcome { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .case-outcome .visit-link { justify-self: start; }
  .clients-section { padding: 80px 24px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-strip { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 { animation: fadeUp 0.8s ease 0.1s both; }
.hero-sub { animation: fadeUp 0.8s ease 0.3s both; }
.hero-cta-group { animation: fadeUp 0.8s ease 0.5s both; }
.page-hero h1 { animation: fadeUp 0.6s ease both; }
.page-hero-sub { animation: fadeUp 0.6s ease 0.2s both; }
