:root {
  --il-green-black: #030b08;
  --il-green-dark: #07140f;
  --il-green: #0d1d16;
  --il-green-soft: #132a20;
  --il-green-card: #11271d;
  --il-gold: #b8863b;
  --il-gold-light: #d9b56c;
  --il-gold-soft: #e7cf9d;
  --il-cream: #efe2bf;
  --il-muted: #c8b98d;
  --il-brown: #5a351f;
  --il-shadow: rgba(0,0,0,.45);
  --il-serif: Georgia, "Times New Roman", serif;
  --il-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --il-max: 1180px;
  --il-radius: 8px;
  --il-header-height: 104px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--il-cream);
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 150, 69, .14), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(90, 53, 31, .28), transparent 24rem),
    linear-gradient(rgba(7, 20, 15, .22), rgba(7, 20, 15, .86)),
    var(--il-green-dark) url("../img/damask-pattern.png") center top / 560px auto repeat;
  font-family: var(--il-sans);
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at center, transparent 0 42%, rgba(0, 0, 0, .5) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .32), transparent 18%, transparent 82%, rgba(0, 0, 0, .32));
}

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

a {
  color: inherit;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid var(--il-gold-light);
  outline-offset: 4px;
}

.screen-reader-text,
.il-skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.il-skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--il-green-dark);
  background: var(--il-gold-light);
  border-radius: var(--il-radius);
}

.il-site-main {
  overflow: hidden;
}

.il-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(rgba(7, 20, 15, .96), rgba(7, 20, 15, .9)),
    var(--il-green-dark) url("../img/damask-pattern.png") center / 520px auto repeat;
  border-bottom: 1px solid rgba(200, 150, 69, .72);
  box-shadow: 0 14px 34px var(--il-shadow);
}

.il-site-header::after {
  display: block;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--il-gold), var(--il-gold-light), var(--il-gold), transparent);
}

.il-header-inner {
  display: grid;
  grid-template-columns: minmax(190px, 300px) 1fr 78px;
  gap: 28px;
  align-items: center;
  width: min(var(--il-max), calc(100% - 48px));
  min-height: var(--il-header-height);
  margin: 0 auto;
}

.il-logo-plaque {
  position: relative;
  display: grid;
  min-height: 78px;
  align-content: center;
  justify-items: center;
  padding: 13px 24px 12px;
  color: var(--il-gold-light);
  text-decoration: none;
  background:
    url("../svg/logo-plaque-frame.svg") center / 100% 100% no-repeat,
    linear-gradient(rgba(7, 20, 15, .94), rgba(16, 37, 27, .88)),
    radial-gradient(circle at center, rgba(227, 193, 122, .12), transparent 70%);
  border: 2px solid var(--il-gold);
  border-radius: 999px 999px 16px 16px / 40px 40px 16px 16px;
  box-shadow:
    inset 0 0 0 4px rgba(227, 193, 122, .12),
    0 12px 22px rgba(0, 0, 0, .46);
}

.il-logo-plaque::before,
.il-logo-plaque::after {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 30px;
  content: "";
  border: 2px solid var(--il-gold);
  transform: translateY(-50%);
}

.il-logo-plaque::before {
  left: -10px;
  border-right: 0;
  border-radius: 16px 0 0 16px;
}

.il-logo-plaque::after {
  right: -10px;
  border-left: 0;
  border-radius: 0 16px 16px 0;
}

.il-logo-title {
  font-family: var(--il-serif);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1;
  text-shadow: 0 2px 0 #3c2413, 0 9px 18px rgba(0, 0, 0, .55);
}

.il-logo-kicker {
  margin-top: 6px;
  color: var(--il-cream);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.il-logo-paw {
  position: absolute;
  right: 18px;
  bottom: -12px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--il-green-dark);
  font-size: .78rem;
  background: var(--il-gold);
  border-radius: 50%;
}

.il-primary-nav {
  display: flex;
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  justify-content: center;
}

.il-primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--il-cream);
  font-family: var(--il-serif);
  font-size: 1rem;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .72);
}

.il-primary-nav a::after {
  position: absolute;
  left: 50%;
  bottom: -5px;
  color: var(--il-gold);
  font-size: .95rem;
  content: "🐾";
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity .2s ease, transform .2s ease;
}

.il-primary-nav a:hover,
.il-primary-nav a:focus-visible {
  color: var(--il-gold-light);
}

.il-primary-nav a:hover::after,
.il-primary-nav a:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.il-paw-button,
.il-menu-toggle {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--il-gold-light);
  background:
    url("../svg/paw-badge.svg") center / contain no-repeat,
    var(--il-green);
  border: 2px solid var(--il-gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(200, 150, 69, .12), 0 10px 22px rgba(0, 0, 0, .38);
}

.il-paw-button {
  font-size: 1.8rem;
  text-decoration: none;
}

.il-paw-button span {
  opacity: 0;
}

.il-menu-toggle {
  display: none;
  cursor: pointer;
}

.il-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--il-gold-light);
  transition: transform .2s ease, opacity .2s ease;
}

.il-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.il-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.il-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.il-hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(7, 20, 15, .98) 0%, rgba(7, 20, 15, .92) 34%, rgba(7, 20, 15, .2) 70%, rgba(7, 20, 15, .66) 100%),
    radial-gradient(circle at 77% 28%, rgba(200, 150, 69, .25), transparent 23rem),
    var(--il-green-dark) url("../img/damask-pattern.png") center / 560px auto repeat;
  border-bottom: 2px solid rgba(200, 150, 69, .78);
}

.il-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  width: min(var(--il-max), calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
}

.il-hero__copy {
  position: relative;
  z-index: 2;
  padding: 66px 0 96px;
}

.il-eyebrow {
  display: flex;
  gap: 17px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--il-gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.il-eyebrow span {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--il-gold), transparent);
}

.il-hero h1 {
  margin: 0;
  color: var(--il-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.7rem, 9vw, 8.5rem);
  font-weight: 500;
  line-height: .84;
  text-shadow: 0 3px 0 #3b2314, 0 18px 36px rgba(0, 0, 0, .6);
}

.il-hero h1 span {
  display: inline-block;
  margin-left: .1em;
  font-size: .32em;
  vertical-align: .16em;
}

.il-hero__subtitle {
  max-width: 460px;
  margin: 28px 0 18px;
  color: var(--il-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.il-ornament-line,
.il-mini-rule {
  display: flex;
  gap: 18px;
  align-items: center;
  width: min(330px, 100%);
  margin: 22px 0;
  color: var(--il-gold);
}

.il-ornament-line::before,
.il-ornament-line::after,
.il-mini-rule::before,
.il-mini-rule::after {
  flex: 1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--il-gold), transparent);
}

.il-ornament-line span {
  width: 34px;
  height: 34px;
  overflow: hidden;
  color: transparent;
  background: url("../svg/magnifier.svg") center / contain no-repeat;
}

.il-hero__tagline {
  max-width: 390px;
  margin: 0 0 30px;
  color: var(--il-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: .12em;
}

.il-button,
.il-newsletter__form button,
.wp-block-button__link {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 25px;
  color: var(--il-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(23, 52, 38, .96), rgba(7, 20, 15, .98));
  border: 2px solid var(--il-gold);
  border-radius: var(--il-radius);
  box-shadow: inset 0 0 0 2px rgba(227, 193, 122, .13), 0 12px 25px rgba(0, 0, 0, .34);
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.il-button:hover,
.il-newsletter__form button:hover,
.wp-block-button__link:hover {
  color: #fff4d2;
  background: linear-gradient(180deg, rgba(35, 75, 54, .98), rgba(9, 29, 21, 1));
  border-color: var(--il-gold-light);
  transform: translateY(-1px);
}

.il-button--small {
  min-height: 48px;
  padding: 11px 18px;
  font-size: .86rem;
}

.il-hero__media {
  position: absolute;
  right: max(-84px, calc((100vw - var(--il-max)) / -2 - 24px));
  bottom: 0;
  z-index: 1;
  width: min(65vw, 890px);
  margin: 0;
  filter: drop-shadow(-30px 24px 36px rgba(0, 0, 0, .72));
}

.il-hero__media::before {
  position: absolute;
  inset: 12% 7% 11% 33%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(200, 150, 69, .32), transparent 63%);
  filter: blur(20px);
}

.il-hero__media img {
  width: 100%;
}

.il-hero__media img::before {
  content: "";
}

.il-wave-divider {
  position: absolute;
  inset: auto -5vw -2px;
  z-index: 3;
  height: 76px;
  pointer-events: none;
  height: 150px;
  background: url("../svg/divider-hero-bottom.svg") center bottom / cover no-repeat;
}

.il-hero-divider-badge {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 6;
  width: 76px;
  height: 76px;
  background: url("../svg/paw-badge.svg") center / contain no-repeat;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .35));
  transform: translateX(-50%);
}

.il-feature-section {
  width: min(var(--il-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 62px;
}

.il-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.il-feature-card {
  position: relative;
  min-width: 0;
  padding: 25px 24px 28px;
  text-align: center;
  background:
    linear-gradient(rgba(7, 20, 15, .88), rgba(7, 20, 15, .97)),
    var(--il-green-card) url("../img/damask-pattern.png") center / 430px auto repeat;
  border: 2px solid var(--il-gold);
  box-shadow: inset 0 0 0 3px rgba(227, 193, 122, .11), 0 18px 38px rgba(0, 0, 0, .34);
}

.il-feature-card::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(217, 181, 108, .58);
  pointer-events: none;
}

.il-feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    url("../svg/card-corner.svg") top left / 72px 72px no-repeat,
    url("../svg/card-corner.svg") top left / 72px 72px no-repeat,
    url("../svg/card-corner.svg") top left / 72px 72px no-repeat,
    url("../svg/card-corner.svg") top left / 72px 72px no-repeat;
  opacity: .78;
  pointer-events: none;
}

.il-feature-card::after {
  transform: none;
  background-position: top left, top right, bottom right, bottom left;
}

.il-feature-card:nth-child(1)::after {
  background:
    url("../svg/card-corner.svg") top left / 72px 72px no-repeat,
    url("../svg/card-corner.svg") top right / 72px 72px no-repeat,
    url("../svg/card-corner.svg") bottom right / 72px 72px no-repeat,
    url("../svg/card-corner.svg") bottom left / 72px 72px no-repeat;
}

.il-feature-card__badge {
  position: absolute;
  top: -30px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--il-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  background:
    radial-gradient(circle at 35% 25%, #1a3a2d, #07140f 70%);
  border: 2px solid var(--il-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 150, 69, .13), 0 12px 24px rgba(0, 0, 0, .42);
  transform: translateX(-50%);
}

.il-feature-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0 0 24px;
  background:
    radial-gradient(circle at center, rgba(227, 193, 122, .18), transparent 60%),
    var(--il-green-dark);
  border: 2px solid var(--il-gold);
  box-shadow: inset 0 0 0 4px rgba(227, 193, 122, .12);
}

.il-feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.il-feature-card.is-inspection img {
  object-position: 30% 40%;
  transform: scale(1.26);
}

.il-feature-card.is-foodzine img {
  object-position: center;
}

.il-feature-card.is-about img {
  object-position: 34% 24%;
  transform: scale(1.18);
}

.il-feature-card h2 {
  margin: 0;
  color: var(--il-gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.78rem);
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.il-mini-rule {
  justify-content: center;
  width: min(190px, 82%);
  margin: 13px auto;
}

.il-feature-card p {
  min-height: 54px;
  margin: 0 auto 24px;
  color: var(--il-cream);
  font-size: 1rem;
  line-height: 1.45;
}

.il-newsletter {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr minmax(310px, 440px);
  gap: 26px;
  align-items: center;
  width: min(var(--il-max), calc(100% - 48px));
  margin: 0 auto 64px;
  padding: 34px 40px;
  background:
    linear-gradient(90deg, rgba(7, 20, 15, .96), rgba(23, 52, 38, .92)),
    var(--il-green) url("../img/damask-pattern.png") center / 520px auto repeat;
  border: 2px solid var(--il-gold);
  box-shadow: inset 0 0 0 3px rgba(227, 193, 122, .11), 0 16px 36px rgba(0, 0, 0, .34);
}

.il-newsletter::before {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 60px;
  height: 60px;
  content: "";
  background: url("../svg/paw-badge.svg") center / contain no-repeat;
  transform: translateX(-50%);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .35));
}

.il-newsletter__icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--il-gold-light);
  font-size: 1.8rem;
  border: 2px solid var(--il-gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(200, 150, 69, .12);
}

.il-newsletter h2 {
  margin: 0;
  color: var(--il-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.il-newsletter p {
  margin: 5px 0 0;
}

.il-newsletter__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.il-newsletter__form input {
  min-width: 0;
  min-height: 58px;
  padding: 0 18px;
  color: #26170d;
  background: #f4dfbd;
  border: 2px solid var(--il-gold);
  border-right: 0;
  border-radius: var(--il-radius) 0 0 var(--il-radius);
}

.il-newsletter__form button {
  min-height: 58px;
  border-radius: 0 var(--il-radius) var(--il-radius) 0;
  cursor: pointer;
}

.il-site-footer {
  background:
    linear-gradient(rgba(7, 20, 15, .96), rgba(7, 20, 15, .98)),
    var(--il-green-dark) url("../img/damask-pattern.png") center / 560px auto repeat;
  border-top: 2px solid rgba(200, 150, 69, .64);
}

.il-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .78fr 1fr 1.05fr;
  gap: 28px;
  width: min(var(--il-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 48px;
}

.il-footer-brand,
.il-footer-col,
.il-footer-quote {
  min-width: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(200, 150, 69, .34);
}

.il-footer-quote {
  padding-right: 0;
  border-right: 0;
}

.il-logo-plaque--footer {
  width: min(250px, 100%);
  min-height: 76px;
}

.il-logo-plaque--footer .il-logo-title {
  font-size: 1.45rem;
}

.il-footer-props {
  position: relative;
  display: block;
  width: 210px;
  max-width: 100%;
  margin-top: 22px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .42));
}

.il-footer-col h2 {
  margin: 0 0 15px;
  color: var(--il-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.il-footer-col a,
.il-footer-col span {
  display: block;
  margin: 8px 0;
  color: var(--il-cream);
  text-decoration: none;
}

.il-footer-col a:hover,
.il-footer-col a:focus-visible {
  color: var(--il-gold-light);
}

.il-footer-col nav a,
.il-footer-col > a {
  position: relative;
}

.il-footer-col[aria-label="Snel naar"] a::before {
  margin-right: 8px;
  color: var(--il-gold);
  content: "🐾";
}

.il-socials {
  display: flex;
  gap: 12px;
}

.il-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--il-gold-light);
  font-weight: 700;
  border: 1px solid var(--il-gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(200, 150, 69, .1);
}

.il-contact {
  font-style: normal;
}

.il-footer-quote {
  margin: 0;
}

.il-footer-quote::before {
  display: block;
  color: var(--il-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: .8;
  content: "“";
}

.il-footer-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.45;
}

.il-footer-quote cite {
  display: block;
  margin-top: 14px;
  color: var(--il-gold);
  font-style: normal;
}

.il-footer-bottom {
  position: relative;
  padding: 24px;
  color: rgba(243, 231, 200, .78);
  text-align: center;
  border-top: 1px solid rgba(200, 150, 69, .42);
}

.il-section-wave {
  width: 100%;
  height: 90px;
  margin-top: -24px;
  background: url("../svg/divider-section-wave.svg") center / cover no-repeat;
  opacity: .78;
  pointer-events: none;
}

.il-footer-bottom::before {
  position: absolute;
  top: -22px;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--il-gold);
  content: "🐾";
  background: var(--il-green);
  border: 1px solid var(--il-gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.il-content-template {
  width: min(100% - 48px, var(--il-max));
  margin: 0 auto;
  padding: 62px 0;
}

.il-content-template > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.il-content-template h1,
.il-content-template h2,
.il-content-template h3,
.il-post-card h2,
.il-post-card .wp-block-post-title {
  color: var(--il-gold-light);
  font-family: Georgia, "Times New Roman", serif;
}

.il-post-card {
  margin-bottom: 28px;
  padding: 24px;
  background: rgba(16, 37, 27, .86);
  border: 1px solid rgba(200, 150, 69, .58);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.il-post-card .wp-block-post-featured-image {
  margin-bottom: 18px;
  background: var(--il-green);
}

.il-post-card .wp-block-post-featured-image img {
  border: 1px solid rgba(200, 150, 69, .58);
}

.il-post-nav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 150, 69, .4);
}

.wp-block-query-pagination {
  color: var(--il-gold-light);
}

.wp-block-query-pagination a,
.wp-block-post-title a {
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

@media (max-width: 1040px) {
  .il-header-inner {
    grid-template-columns: minmax(190px, 260px) 1fr 68px;
    gap: 18px;
  }

  .il-primary-nav {
    gap: 22px;
  }

  .il-hero__inner {
    grid-template-columns: 1fr;
    min-height: 760px;
    align-items: start;
  }

  .il-hero__copy {
    padding-top: 48px;
    padding-bottom: 320px;
  }

  .il-hero__media {
    right: -130px;
    width: min(780px, 108vw);
    opacity: .88;
  }

  .il-feature-grid,
  .il-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .il-newsletter {
    grid-template-columns: auto 1fr;
  }

  .il-newsletter__form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --il-header-height: auto;
  }

  .il-header-inner,
  .il-feature-section,
  .il-newsletter,
  .il-footer-grid,
  .il-content-template {
    width: min(100% - 28px, var(--il-max));
  }

  .il-header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 86px;
    padding: 11px 0;
  }

  .il-logo-plaque {
    min-height: 68px;
    padding: 10px 20px;
  }

  .il-logo-title {
    font-size: 1.35rem;
  }

  .il-logo-kicker {
    font-size: .56rem;
  }

  .il-menu-toggle {
    display: grid;
  }

  .il-paw-button {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
  }

  .il-primary-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 6px;
    padding: 18px;
    background:
      linear-gradient(rgba(7, 20, 15, .98), rgba(16, 37, 27, .98)),
      var(--il-green-dark) url("../img/damask-pattern.png") center / 420px auto repeat;
    border: 2px solid var(--il-gold);
    border-top: 0;
    box-shadow: 0 18px 34px var(--il-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .il-site-header.is-menu-open .il-primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .il-primary-nav a {
    justify-content: center;
    min-height: 46px;
  }

  .il-hero {
    min-height: auto;
  }

  .il-hero__inner {
    width: min(100% - 28px, var(--il-max));
    min-height: 720px;
  }

  .il-hero__copy {
    padding-top: 40px;
    padding-bottom: 330px;
  }

  .il-eyebrow {
    gap: 10px;
    font-size: .68rem;
  }

  .il-eyebrow span {
    width: 34px;
  }

  .il-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .il-hero__subtitle {
    font-size: 1.45rem;
  }

  .il-hero__tagline {
    font-size: .95rem;
    letter-spacing: .08em;
  }

  .il-hero__media {
    right: -190px;
    width: 760px;
  }

  .il-feature-grid,
  .il-footer-grid,
  .il-newsletter {
    grid-template-columns: 1fr;
  }

  .il-feature-grid {
    gap: 56px;
  }

  .il-feature-card__image {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .il-newsletter {
    padding: 34px 20px 24px;
  }

  .il-newsletter__icon {
    display: none;
  }

  .il-newsletter__form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .il-newsletter__form input,
  .il-newsletter__form button {
    border: 2px solid var(--il-gold);
    border-radius: var(--il-radius);
  }

  .il-footer-brand,
  .il-footer-col,
  .il-footer-quote {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 150, 69, .28);
  }

  .il-footer-quote {
    border-bottom: 0;
  }

  .il-content-template {
    padding: 44px 0;
  }
}

@media (max-width: 440px) {
  .il-header-inner {
    grid-template-columns: 1fr auto;
  }

  .il-paw-button {
    display: none;
  }

  .il-logo-plaque::before,
  .il-logo-plaque::after {
    display: none;
  }

  .il-button,
  .il-newsletter__form button {
    width: 100%;
    padding-inline: 16px;
    font-size: .9rem;
  }
}
