/* ===== DGH Legal — Brand Stylesheet ===== */
/* Colors: Navy #01003B, Gold #C08A51, Dark #01002A, Light Grey #EFEFEF */

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

:root {
  --navy: #01003B;
  --gold: #C08A51;
  --dark: #01002A;
  --light: #EFEFEF;
  --text: #333333;
  --text-muted: #666666;
  --white: #FFFFFF;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(1,0,59,.08);
  --shadow-lg: 0 8px 32px rgba(1,0,59,.12);
  --transition: .25s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 { font-family: 'DM Serif Display', Georgia, serif; color: var(--navy); line-height: 1.2; font-weight: 400; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: .75rem; }
h4 { font-size: 1.1rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
strong { color: var(--navy); }

/* ===== Layout ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--grey { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4, .section--navy strong { color: var(--gold); }
.section--navy p, .section--navy li { color: rgba(255,255,255,.85); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--gold); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(1,0,59,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,138,81,.15);
  transition: var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar__logo { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.4rem; color: var(--white); text-decoration: none; letter-spacing: .5px; }
.navbar__logo span { color: var(--gold); }
.navbar__links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.navbar__links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .9rem; transition: var(--transition); letter-spacing: .3px; }
.navbar__links a:hover { color: var(--gold); }
.navbar__cta {
  background: var(--gold); color: var(--white) !important; padding: .55rem 1.3rem;
  border-radius: var(--radius); font-weight: 600; font-size: .85rem !important;
  transition: var(--transition);
}
.navbar__cta:hover { background: #d4994f; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 12px; -webkit-tap-highlight-color: transparent; position: relative; z-index: 1100; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: var(--radius); font-size: .95rem;
  font-weight: 600; text-decoration: none; transition: var(--transition); border: none; cursor: pointer;
  letter-spacing: .3px;
}
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #d4994f; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(192,138,81,.35); }
.btn--outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--light); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--dark); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn svg, .btn .arrow { transition: transform var(--transition); }
.btn:hover svg, .btn:hover .arrow { transform: translateX(4px); }

/* ===== Hero ===== */
.hero {
  position: relative; padding: 10rem 0 6rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark) 100%);
  color: var(--white); overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%; background: linear-gradient(135deg, transparent 40%, rgba(192,138,81,.06) 100%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero__badge {
  display: inline-block; padding: .35rem 1rem; border: 1px solid rgba(192,138,81,.4);
  border-radius: 50px; font-size: .8rem; color: var(--gold); margin-bottom: 1.5rem;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 span { color: var(--gold); }
.hero__subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.85); margin-bottom: 1rem; line-height: 1.6; }
.hero__text { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 2.5rem; max-width: 600px; }
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Social proof bar */
.proof-bar {
  background: var(--dark); border-top: 1px solid rgba(192,138,81,.15);
  padding: 1.2rem 0;
}
.proof-bar__inner {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  font-size: .9rem; color: rgba(255,255,255,.7);
}
.proof-bar__item strong { color: var(--gold); font-size: 1.1rem; }

/* ===== Section Headers ===== */
.section__header { max-width: 680px; margin: 0 auto 3rem; }
.section__header p { color: var(--text-muted); }
.section--navy .section__header p { color: rgba(255,255,255,.7); }
.section__label {
  display: inline-block; font-size: .75rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); font-weight: 600; margin-bottom: .75rem;
}

/* ===== Grid ===== */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* ===== Cards ===== */
.card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid rgba(0,0,0,.04);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon { font-size: 2rem; margin-bottom: 1rem; }
.card__label {
  display: inline-block; font-size: .7rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gold); font-weight: 700; margin-bottom: .75rem;
}
.card__title { font-size: 1.15rem; margin-bottom: .75rem; }
.card__text { font-size: .92rem; color: var(--text-muted); margin-bottom: 1rem; }
.card__services { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold); text-decoration: none; font-size: .9rem; font-weight: 600;
  transition: var(--transition);
}
.card__link:hover { gap: .7rem; }

/* Product cards */
.grid--5 { gap: 1.25rem; }
#produkty .container { max-width: 1400px; }
.grid--5 .product-card { display: grid; grid-template-rows: subgrid; grid-row: span 4; }

.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid rgba(0,0,0,.04);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__header { background: var(--navy); padding: 1.25rem; display: flex; flex-direction: column; justify-content: center; }
.product-card__header h3 { color: var(--gold); margin-bottom: .25rem; font-size: clamp(1rem, 1.3vw, 1.2rem); }
.product-card__header p { color: rgba(255,255,255,.65); font-size: .78rem; margin-bottom: 0; }
.product-card__problem { padding: 1.25rem 1.25rem 0; }
.product-card__features { padding: .5rem 1.25rem 0; }
.product-card__bottom { padding: .75rem 1.25rem 1.25rem; display: flex; flex-direction: column; justify-content: flex-end; }
.product-card__bottom p:last-of-type { margin-bottom: 0; }
.product-card__problem h4, .product-card__features h4 { font-size: .85rem; color: var(--navy); margin-bottom: .4rem; }
.product-card__problem p, .product-card__features p, .product-card__bottom p { font-size: .82rem; }
.product-card__features ul { list-style: none; margin-bottom: .5rem; }
.product-card__features li { position: relative; padding-left: 1.1rem; font-size: .8rem; margin-bottom: .3rem; color: var(--text-muted); line-height: 1.45; }
.product-card__features li::before { content: ''; position: absolute; left: 0; top: .45rem; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ===== Case Study Cards ===== */
.case-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  border-left: 4px solid var(--gold); box-shadow: var(--shadow);
}
.case-card__label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 700; margin-bottom: .5rem; }
.case-card__title { font-size: 1.2rem; margin-bottom: .75rem; }
.case-card__meta { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; color: var(--text-muted); }
.case-card__result { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--light); font-weight: 600; color: var(--navy); font-size: .95rem; }

/* ===== Why Us (features) ===== */
.feature {
  display: flex; gap: 1.25rem; margin-bottom: 2rem;
}
.feature__number {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--white); display: flex; align-items: center;
  justify-content: center; font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
}
.feature__content h4 { margin-bottom: .3rem; }
.feature__content p { font-size: .92rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== Pain Points (subpages) ===== */
.pain {
  background: var(--white); border-radius: var(--radius); padding: 3rem;
  box-shadow: var(--shadow); margin-bottom: 2.5rem;
}
.pain__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; background: rgba(192,138,81,.12);
  color: var(--gold); font-weight: 700; font-size: .9rem; margin-bottom: 1rem;
}
.pain__tag { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 700; margin-bottom: .5rem; }
.pain h3 { margin-bottom: 1rem; }
.pain__situation, .pain__consequence, .pain__solution { margin-bottom: 1.5rem; }
.pain__situation h4, .pain__consequence h4, .pain__solution h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .5rem; }
.pain ul { list-style: none; margin-bottom: 1rem; }
.pain li { position: relative; padding-left: 1.4rem; margin-bottom: .4rem; font-size: .92rem; }
.pain li::before { content: ''; position: absolute; left: 0; top: .55rem; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.pain__example {
  background: var(--light); border-radius: var(--radius); padding: 1.5rem;
  border-left: 3px solid var(--gold); font-size: .9rem;
}
.pain__example strong { display: block; margin-bottom: .25rem; }

/* ===== Timeline (Pogotowie) ===== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--gold); }
.timeline__step { position: relative; margin-bottom: 3rem; }
.timeline__step:last-child { margin-bottom: 0; }
.timeline__dot {
  position: absolute; left: -2.5rem; top: .2rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; z-index: 1;
}
.timeline__label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 700; margin-bottom: .25rem; }
.timeline__step h3 { margin-bottom: .5rem; }
.timeline__step p { font-size: .92rem; color: var(--text-muted); }
.timeline__step ul { list-style: none; margin-top: .5rem; }
.timeline__step li { position: relative; padding-left: 1.2rem; margin-bottom: .3rem; font-size: .9rem; color: var(--text-muted); }
.timeline__step li::before { content: ''; position: absolute; left: 0; top: .55rem; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ===== Pricing (Pogotowie) ===== */
.pricing-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.pricing-table th { text-align: left; padding: .75rem 1rem; background: var(--navy); color: var(--gold); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.pricing-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--light); font-size: .95rem; }
.pricing-table tr:hover td { background: rgba(192,138,81,.04); }

/* ===== Team ===== */
.team-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card__photo {
  height: 280px; background: linear-gradient(135deg, var(--navy), var(--dark));
  display: flex; align-items: center; justify-content: center;
}
.team-card__initials {
  font-family: 'DM Serif Display', Georgia, serif; font-size: 3rem;
  color: var(--gold); opacity: .6;
}
.team-card__body { padding: 2rem; }
.team-card__name { font-size: 1.3rem; margin-bottom: .15rem; }
.team-card__role { font-size: .85rem; color: var(--gold); font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .5px; }
.team-card__bio { font-size: .92rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.team-card__contact { font-size: .85rem; color: var(--text-muted); }
.team-card__contact a { color: var(--gold); text-decoration: none; }
.team-card__contact a:hover { text-decoration: underline; }

/* ===== Values ===== */
.value-card {
  text-align: center; padding: 2rem;
}
.value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card__title { font-size: 1.1rem; margin-bottom: .5rem; }
.value-card__text { font-size: .9rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(160deg, var(--navy), var(--dark));
  padding: 5rem 0; text-align: center; color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 2rem; }
.cta-section .btn { margin: 0 .5rem; }
.cta-contact { margin-top: 2rem; font-size: .9rem; color: rgba(255,255,255,.5); }
.cta-contact a { color: var(--gold); text-decoration: none; }
.cta-contact a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.footer {
  background: var(--dark); color: rgba(255,255,255,.5); padding: 3rem 0 2rem;
  font-size: .85rem; border-top: 1px solid rgba(192,138,81,.1);
}
.footer .container { display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 2rem; }
.footer__col { min-width: 200px; }
.footer__col h4 { color: var(--gold); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer__col a { color: rgba(255,255,255,.5); text-decoration: none; display: block; margin-bottom: .4rem; transition: var(--transition); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: .8rem; }

/* ===== Stat Bar ===== */
.stat-bar {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding: 1.5rem 0; margin-top: 2rem;
}
.stat { text-align: center; }
.stat__number { font-family: 'DM Serif Display', Georgia, serif; font-size: 2rem; color: var(--gold); display: block; }
.stat__label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.section--navy .stat__label { color: rgba(255,255,255,.6); }

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); border-top: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(1,0,59,.25);
}
.cookie-banner__inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p { color: rgba(255,255,255,.8); font-size: .88rem; margin: 0; flex: 1; min-width: 280px; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__buttons { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-banner .btn { padding: .55rem 1.25rem; font-size: .85rem; }

/* ===== Legal pages ===== */
.section ol, .section ul { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.section ol li, .section ul li { margin-bottom: .4rem; line-height: 1.65; }
.section ol ul { margin-top: .5rem; margin-bottom: .5rem; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  #produkty .container { max-width: 1140px; }
}
@media (max-width: 840px) {
  .grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 8rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .grid--5, .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .grid--5 .product-card { grid-row: auto; display: flex; flex-direction: column; }
  #produkty .container { max-width: 100%; }
  .proof-bar__inner { flex-direction: column; align-items: center; gap: .75rem; }
  .stat-bar { gap: 1.5rem; }
  .pain { padding: 1.5rem; }

  /* Mobile nav */
  .navbar__links {
    position: fixed; top: 0; left: 0; right: 0; height: 100vh; height: 100dvh;
    background: rgba(1,0,59,.99); flex-direction: column; align-items: center;
    justify-content: center; gap: 0;
    padding: 0 2rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1050;
  }
  .navbar__links.active { opacity: 1; visibility: visible; pointer-events: auto; }
  .navbar__links li { list-style: none; width: 100%; text-align: center; }
  .navbar__links a { font-size: 1.15rem; padding: .85rem 1rem; display: block; color: rgba(255,255,255,.9); }
  .navbar__links a:hover, .navbar__links a:active { color: var(--gold); }
  .navbar__cta { margin-top: .5rem; padding: .75rem 2rem !important; font-size: 1rem !important; display: inline-block !important; border-radius: var(--radius); }
  .hamburger { display: flex; }

  /* Hero mobile */
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .hero__buttons .btn { text-align: center; justify-content: center; }
  .hero__subtitle { font-size: 1rem; }
  .hero__text { font-size: .9rem; }

  /* Cards / touch targets */
  .card { padding: 1.5rem; }
  .card__link { padding: .5rem 0; min-height: 44px; display: inline-flex; align-items: center; }
  .btn { min-height: 48px; justify-content: center; }

  /* Product cards */
  .product-card__header { padding: 1.25rem 1.5rem; }
  .product-card__problem { padding: 1.5rem 1.5rem 0; }
  .product-card__features { padding: .5rem 1.5rem 0; }
  .product-card__bottom { padding: .75rem 1.5rem 1.5rem; }

  /* Timeline */
  .timeline { padding-left: 2.25rem; }

  /* Pricing table */
  .pricing-table { font-size: .85rem; }
  .pricing-table th, .pricing-table td { padding: .6rem .5rem; }

  /* Team cards */
  .team-card__photo { height: 200px; }

  /* Footer */
  .footer .container { flex-direction: column; gap: 1.5rem; }
  .footer__col { min-width: unset; }

  /* Cookie banner mobile */
  .cookie-banner { padding: 1rem; }
  .cookie-banner__inner { flex-direction: column; gap: 1rem; }
  .cookie-banner p { min-width: unset; font-size: .82rem; }
  .cookie-banner__buttons { width: 100%; }
  .cookie-banner__buttons .btn { flex: 1; text-align: center; justify-content: center; min-height: 44px; }

  /* CTA section */
  .cta-section .btn { width: 100%; text-align: center; justify-content: center; }
  .cta-contact { font-size: .85rem; }
}
@media (max-width: 480px) {
  .hero { padding: 7rem 0 3rem; }
  .btn--lg { padding: .85rem 1.25rem; font-size: .9rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 1rem; }
  .hero__badge { font-size: .7rem; padding: .3rem .75rem; }
  .proof-bar__item { font-size: .82rem; }
  .section__header { margin-bottom: 2rem; }
  .card__services { font-size: .8rem; }
  .case-card { padding: 1.25rem; }
  .pain { padding: 1.25rem; }
  .pain__example { padding: 1rem; font-size: .85rem; }
  .team-card__body { padding: 1.25rem; }
  .feature { gap: 1rem; }
  .feature__number { width: 40px; height: 40px; font-size: 1rem; }
  .navbar .container { height: 60px; }
  .navbar__logo { font-size: 1.2rem; }
}
@media (max-width: 360px) {
  .container { padding: 0 .75rem; }
  h1 { font-size: 1.6rem; }
  .hero { padding: 6rem 0 2.5rem; }
  .btn--lg { padding: .75rem 1rem; font-size: .85rem; }
}
