/* Home page only — requires css/base.css first */
/* =============================================
   HERO
============================================= */
#hero {
  padding: 96px var(--page-gutter) 36px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Trusty-style atmosphere: top-right light + rays + central bloom (gold) */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Diffused “lamp” from upper-right — kept off the copy column */
.hero-corner-glow {
  position: absolute;
  width: 150%;
  height: 130%;
  top: -22%;
  right: -35%;
  background: radial-gradient(
    ellipse 58% 62% at 88% 8%,
    rgba(226, 192, 104, 0.2) 0%,
    rgba(201, 168, 76, 0.09) 38%,
    transparent 68%
  );
  filter: blur(36px);
  animation: heroCornerPulse 20s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 36%, rgba(0,0,0,0.35) 48%, #000 58%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 36%, rgba(0,0,0,0.35) 48%, #000 58%);
}

/* Volumetric beams — clipped + masked so they don’t wash over left-column text */
.hero-rays {
  position: absolute;
  top: -15%;
  right: -10%;
  bottom: -12%;
  left: 40%;
  transform-origin: 100% 0%;
  background: conic-gradient(
    from 228deg at 100% 0%,
    transparent 0deg,
    rgba(201, 168, 76, 0.065) 2.2deg,
    transparent 5.5deg,
    transparent 10deg,
    rgba(226, 192, 104, 0.05) 13deg,
    transparent 18deg,
    transparent 24deg,
    rgba(201, 168, 76, 0.055) 28deg,
    transparent 35deg,
    transparent 43deg,
    rgba(201, 168, 76, 0.04) 48deg,
    transparent 56deg,
    transparent 66deg,
    rgba(226, 192, 104, 0.035) 72deg,
    transparent 82deg,
    transparent 94deg,
    rgba(201, 168, 76, 0.03) 100deg,
    transparent 112deg,
    transparent 122deg,
    rgba(201, 168, 76, 0.018) 128deg,
    transparent 138deg,
    transparent 180deg
  );
  opacity: 0.82;
  animation: heroRaysShift 32s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 12%, #000 28%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 12%, #000 28%);
}

/* Halo — upper-right / CTA zone instead of behind the name */
.hero-bloom {
  position: absolute;
  width: min(95vw, 680px);
  height: min(95vw, 680px);
  left: auto;
  right: -8%;
  top: 32%;
  transform: translate(0, -50%);
  background: radial-gradient(
    ellipse 52% 50% at 58% 42%,
    rgba(226, 192, 104, 0.11) 0%,
    rgba(201, 168, 76, 0.05) 42%,
    transparent 70%
  );
  filter: blur(44px);
  animation: heroBloomDrift 24s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 32%, rgba(0,0,0,0.4) 45%, #000 55%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 32%, rgba(0,0,0,0.4) 45%, #000 55%);
}

@keyframes heroCornerPulse {
  0%, 100% {
    opacity: 0.88;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04) translate(1%, -0.5%);
  }
}

@keyframes heroRaysShift {
  0%, 100% {
    transform: rotate(-1.25deg);
    opacity: 0.72;
  }
  50% {
    transform: rotate(1.75deg);
    opacity: 0.88;
  }
}

@keyframes heroBloomDrift {
  0%, 100% {
    transform: translate(0, -50%) scale(1);
    opacity: 0.85;
  }
  40% {
    transform: translate(-1.5%, -52%) scale(1.05);
    opacity: 0.95;
  }
  70% {
    transform: translate(1.5%, -48%) scale(0.98);
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-corner-glow,
  .hero-rays,
  .hero-bloom {
    animation: none;
  }
}

.hero-inner {
  /* Wider than body copy sections so the hero can breathe on large screens */
  max-width: min(calc(100vw - var(--sidebar-w) - 80px), 1380px);
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px) clamp(24px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.hero-copy { min-width: 0; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-name .gold { color: var(--gold); }

.hero-title {
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: none;
  width: 100%;
  line-height: 1.65;
}

.hero-title strong {
  color: var(--white);
  font-weight: 500;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 48px;
  width: 100%;
}

.badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: start;
  /* Sits beside the headline block, above the body copy */
  padding-top: clamp(1.75rem, 5vw, 3.75rem);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 1px solid rgba(245,240,232,0.2);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.hero-stats {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px clamp(20px, 4vw, 32px);
  width: 100%;
  max-width: 626px;
}

@media (min-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(12px, 1.8vw, 22px);
    row-gap: 0;
  }
}

.stat-item {
  text-align: left;
  min-width: 0;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* =============================================
   SECTION SHARED
============================================= */
section { padding: var(--section-pad); }

.section-inner {
  max-width: var(--max-w);
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}


.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 64px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-bio {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.85;
}

.about-bio p + p { margin-top: 20px; }

.about-bio strong { color: var(--gold); font-weight: 600; }

.credential-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin-bottom: 14px;
  border-radius: 2px;
  transition: background 0.2s;
}

.credential-card:hover { background: rgba(201,168,76,0.06); }

.cred-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.cred-sub {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

/* =============================================
   WORK / CASE STUDIES
============================================= */
#work { background: var(--black); }

.work-grid {
  display: grid;
  gap: 32px;
}

.case-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  transition: transform 0.25s, box-shadow 0.25s;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
}

.case-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brand-logo case headers (PrizePicks, Cartoon Network, FanDuel, …) — full-bleed; half natural height (crop top/bottom, center) */
.case-visual.case-visual--brand-logo {
  display: block;
  padding: 0;
  min-height: 0;
  background: none;
  aspect-ratio: 1024 / 288;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.case-visual--brand-logo .case-brand-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}
@supports (image-rendering: high-quality) {
  .case-visual--brand-logo .case-brand-image {
    image-rendering: high-quality;
  }
}

/* Cartoon Network card — decorative fallback only when not using brand header image */
.case-card:nth-child(2) .case-visual:not(.case-visual--brand-logo) {
  background: linear-gradient(135deg, #1a0f2e 0%, #0f1e3a 50%, #0a1628 100%);
}

/* FanDuel / design-systems-style card — decorative fallback only when not using brand header image */
.case-card:nth-child(3) .case-visual:not(.case-visual--brand-logo) {
  background: linear-gradient(135deg, #1a1208 0%, #231a0a 50%, #1a1208 100%);
}

/* Decorative SVG mockups inside case visuals */
.visual-mockup {
  width: 80%;
  max-width: 300px;
  opacity: 0.9;
}

/* CN mockup — circles and playful grid */
.cn-mockup {
  position: relative;
  width: 260px; height: 200px;
}
.cn-dot {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.5);
}
.cn-dot-1 { width:80px; height:80px; top:10px; left:20px; border-color: var(--gold); }
.cn-dot-2 { width:50px; height:50px; top:20px; left:80px; background: rgba(201,168,76,0.1); }
.cn-dot-3 { width:120px; height:120px; bottom:10px; right:10px; border-color: rgba(201,168,76,0.3); }
.cn-bar { position:absolute; height:6px; background: var(--gold); border-radius:3px; }
.cn-bar-1 { width:100px; bottom:50px; left:20px; }
.cn-bar-2 { width:60px; bottom:36px; left:20px; opacity:0.5; }

/* DS mockup — grid of components */
.ds-mockup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  width: 220px;
}
.ds-tile {
  aspect-ratio: 1;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-tile-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
}
.ds-tile:first-child { background: rgba(201,168,76,0.18); }
.ds-tile:first-child .ds-tile-dot { background: var(--gold); }

.case-content {
  padding: 36px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.case-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}

.case-company {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.case-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.case-desc {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.case-outcomes {
  margin-bottom: 32px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
}

.outcome-item::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.case-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.case-link:hover { gap: 14px; }

.case-link::after {
  content: '→';
  font-size: 0.9rem;
}

/* =============================================
   EXPERIENCE / RESUME
============================================= */
#experience { background: var(--navy); }

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 52px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}

.timeline-date {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-role {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.timeline-company {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.75;
}

.skills-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.skills-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.skill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.skill-name {
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 400;
}

.skill-bar-wrap {
  width: 120px;
  height: 3px;
  background: rgba(201,168,76,0.12);
  border-radius: 2px;
  overflow: hidden;
}

.skill-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}

.edu-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 28px 32px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.edu-degree {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.edu-school {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

.resume-cta {
  margin-top: 24px;
  text-align: center;
}

/* =============================================
   AWARDS
============================================= */
#awards {
  background: var(--black);
  padding: 28px var(--page-gutter) 48px;
}

.awards-inner {
  max-width: min(calc(100vw - var(--sidebar-w) - 80px), 1380px);
  margin-left: 0;
  margin-right: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
}

.award-tile {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
  transition: background 0.2s;
}

.award-tile:hover { background: var(--gold-glow); }

.award-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.award-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.award-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* =============================================
   CONTACT
============================================= */
#contact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--white);
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

.contact-link-item:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.contact-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px; height: 16px;
  fill: var(--gold);
}

.contact-link-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

.contact-link-value {
  font-size: 0.88rem;
  color: var(--white);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(139,139,139,0.5);
}

.form-submit {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 32px var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

/* =============================================
   SCROLL REVEAL ANIMATION
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .hero-inner {
    max-width: min(calc(100vw - 40px), 1380px);
  }

  .awards-inner {
    max-width: min(calc(100vw - 40px), 1380px);
  }

  .about-grid,
  .exp-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .case-content {
    padding: 28px 24px 36px;
  }

  .case-visual { min-height: 220px; }
  .case-visual.case-visual--brand-logo {
    min-height: 0;
    padding: 0;
  }

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

  .hero-stats {
    column-gap: 24px;
    row-gap: 28px;
  }

  .hero-top {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
    padding-top: 8px;
    width: 100%;
  }

  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root {
    --page-gutter: 20px;
    --section-pad: 72px var(--page-gutter);
  }
  .form-row { grid-template-columns: 1fr; }
  .awards-inner { grid-template-columns: 1fr 1fr; }
}
