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

:root {
  --bg: #050F0A;
  --surface: #0C1A14;
  --text: #D1D5DB;
  --muted: #4B5563;
  --primary: #3A5A40;
  --secondary: #588157;
  --accent: #A3B18A;
  --border: rgba(88, 129, 87, 0.2);
  --off-white: #F5F3EE;
  --highlight: #FDE68A;
  --card-bg: #1a2e24;
  --offer-card-bg: #ffffff;
  --offer-card-text: #1a1a1a;
  --offer-card-bonus: #3A5A40;
  --offer-card-cta: #588157;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --max-width: 1200px;
  --nav-height: 60px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--secondary);
}

.disclosure-banner {
  background: var(--off-white);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  width: 100%;
  line-height: 1.6;
}

.disclosure-banner .highlight {
  background: var(--highlight);
  color: #1a1a1a;
  padding: 1px 4px;
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: var(--nav-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-desktop a {
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.03em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text);
  font-size: 20px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-mobile a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.nav-subpage {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-subpage a {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-subpage a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero {
  width: 100%;
  padding: 80px 24px;
  background: linear-gradient(160deg, var(--bg) 0%, #0a1f16 50%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(88, 129, 87, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  max-width: 700px;
  margin: 0 auto;
  grid-column: 1;
}

.hero-card h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--off-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-visual {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
}

.hero-img-wrap {
  max-width: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
}

.hero-img-wrap img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.offers-section {
  padding: 80px 24px;
  background-color: var(--surface);
  background-image: linear-gradient(135deg, rgba(58, 90, 64, 0.15) 0%, transparent 50%), linear-gradient(225deg, rgba(88, 129, 87, 0.1) 0%, transparent 50%);
  position: relative;
}

.offers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--off-white);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--offer-card-bg);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.offer-card-logo {
  width: 200px;
  height: 80px;
  margin: 24px auto 0;
  padding: 8px;
  background: #f8f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--offer-card-text);
  margin-bottom: 8px;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-card-bonus {
  font-size: 0.95rem;
  color: var(--offer-card-bonus);
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.offer-terms-note {
  font-size: 0.7rem;
  color: #888;
  margin-top: 4px;
}

.offer-card-desc {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.offer-cta {
  display: inline-block;
  background: var(--offer-card-cta);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
  width: 100%;
}

.offer-cta:hover {
  background: var(--primary);
  color: #fff;
}

.info-section {
  padding: 72px 24px;
  position: relative;
}

.info-section:nth-child(odd) {
  background: var(--bg);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.info-1-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.info-1-layout h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--off-white);
  margin-bottom: 20px;
}

.info-1-layout p {
  color: var(--muted);
}

.info-img-frame {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.info-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 320px;
}

.info-2-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  margin-left: 10%;
}

.info-2-layout h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--off-white);
  margin-bottom: 8px;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

.info-2-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-top: 24px;
}

.info-2-content p {
  color: var(--muted);
  flex: 1;
}

.info-2-img {
  flex-shrink: 0;
  max-width: 280px;
  border-radius: 50% 50% 4px 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-3-layout {
  text-align: center;
}

.info-3-layout h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--off-white);
  margin-bottom: 32px;
}

.info-3-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.info-3-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--accent);
}

.info-3-img {
  max-width: 360px;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
}

.info-3-card p {
  color: var(--muted);
  text-align: left;
}

.info-4-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
}

.info-4-layout h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.info-4-layout p {
  color: var(--muted);
}

.info-4-img-wrap {
  justify-self: end;
  max-width: 400px;
  transform: translateY(-20px);
}

.info-4-img-wrap img {
  border-radius: 2px 24px 2px 24px;
  border: 1px solid var(--border);
}

.info-5-layout {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0 40px 0 40px;
  padding: 48px 56px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.info-5-layout h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--off-white);
  flex-shrink: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
}

.info-5-text p {
  color: var(--muted);
}

.info-5-img {
  max-width: 240px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.info-6-layout {
  columns: 2;
  column-gap: 48px;
}

.info-6-layout h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--off-white);
  margin-bottom: 16px;
  column-span: all;
}

.info-6-layout p {
  color: var(--muted);
  break-inside: avoid;
  margin-bottom: 16px;
}

.info-6-img-float {
  float: right;
  max-width: 300px;
  margin: 0 0 16px 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-7-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 56px;
  align-items: center;
}

.info-7-accent-bar {
  width: 6px;
  min-height: 200px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  flex-shrink: 0;
}

.info-7-layout h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--off-white);
  margin-bottom: 16px;
}

.info-7-layout p {
  color: var(--muted);
}

.info-8-layout {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px;
  border: 1px dashed var(--border);
  border-radius: 4px;
}

.info-8-layout h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--off-white);
  margin-bottom: 20px;
  text-align: right;
}

.info-8-layout p {
  color: var(--muted);
  text-align: justify;
}

.info-9-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-9-layout h2 {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--off-white);
  text-align: center;
  margin-bottom: 8px;
}

.info-9-layout p {
  grid-column: 1 / 3;
  color: var(--muted);
  align-self: center;
}

.info-9-number {
  grid-column: 3;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--border);
  line-height: 1;
  text-align: right;
}

.info-10-layout {
  text-align: center;
  padding: 48px 0;
}

.info-10-layout h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--off-white);
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
}

.info-10-layout h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--accent);
}

.info-10-layout p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 32px;
  opacity: 0.85;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-badge {
  display: flex;
  align-items: center;
}

.footer-badge img {
  height: 48px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-badge a:hover img,
.footer-badge img:hover {
  opacity: 1;
}

.footer-ontario {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 24px;
  max-width: 900px;
}

.footer-copy {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 10, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.hidden {
  display: none;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 16px;
}

.modal-box p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--secondary);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
  min-width: 240px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-content {
  padding: 60px 24px 80px;
  min-height: 50vh;
}

.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--off-white);
  margin-bottom: 24px;
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--accent);
  margin: 32px 0 12px;
}

.page-content h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 24px 0 8px;
}

.page-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  color: var(--muted);
  margin: 0 0 16px 24px;
}

.page-content li {
  margin-bottom: 8px;
}

.contact-form {
  margin-top: 32px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-form label {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-error {
  color: #e57373;
  font-size: 0.85rem;
  margin: -12px 0 12px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  text-align: center;
  color: var(--accent);
  font-size: 1.05rem;
}

.form-success.hidden,
.contact-form.hidden {
  display: none;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: var(--bg);
}

.redirect-page .ad-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.redirect-page h1 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 16px;
}

.redirect-page p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 480px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 24px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.redirect-notes {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 500px;
}

.redirect-notes a {
  color: var(--accent);
}

.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

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

  .hero-card {
    grid-column: 1;
    padding: 24px;
  }

  .hero-visual {
    grid-column: 1;
    justify-content: center;
  }

  .info-1-layout,
  .info-4-layout,
  .info-7-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-4-layout {
    display: flex;
    flex-direction: column;
  }

  .info-4-img-wrap {
    transform: none;
    justify-self: auto;
  }

  .info-5-layout {
    flex-direction: column;
    padding: 32px 24px;
  }

  .info-5-layout h2 {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .info-6-layout {
    columns: 1;
  }

  .info-6-img-float {
    float: none;
    margin: 0 auto 24px;
    max-width: 100%;
  }

  .info-9-layout {
    grid-template-columns: 1fr;
  }

  .info-9-layout p,
  .info-9-number {
    grid-column: 1;
  }

  .info-9-number {
    text-align: center;
    font-size: 4rem;
  }

  .info-2-content {
    flex-direction: column;
  }

  .info-2-layout {
    margin-left: 0;
  }

  .nav-subpage {
    display: none;
  }

  .offer-card-logo {
    width: 180px;
    height: 72px;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

@media (max-width: 375px) {
  .hero-img-wrap,
  .info-img-frame,
  .info-2-img,
  .info-3-img,
  .info-4-img-wrap,
  .info-5-img,
  .info-6-img-float {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-img-wrap img {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
  }

  .info-img-frame img,
  .info-2-img img,
  .info-3-img img,
  .info-4-img-wrap img,
  .info-5-img img,
  .info-6-img-float img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
    height: auto;
  }

  .info-4-img-wrap {
    max-width: 100%;
  }

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

  .hero-img-wrap {
    max-width: 100%;
  }
}
